-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1014 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "jeremywells.io.v2",
"version": "1.0.0",
"description": "Code for blog found at jeremywells.io",
"main": "index.js",
"scripts": {
"watch:sass": "sass --watch _sass:_includes/styles",
"build:sass": "sass --no-source-map _sass:_includes/styles",
"watch:eleventy": "npx @11ty/eleventy --serve --quiet",
"build:eleventy": "npx @11ty/eleventy",
"start": "npm-run-all build:sass --parallel watch:*",
"debug": "DEBUG=Eleventy* npx @11ty/eleventy --serve --quiet",
"build": "npm-run-all build:*",
"test": "jest"
},
"author": "@jsheridanwells",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-plugin-bundle": "^1.0.4",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"clean-css": "^5.3.2",
"dotenv": "^16.0.3",
"eleventy-gist": "^1.2.2",
"jest": "^29.5.0",
"luxon": "^3.3.0",
"markdown-it-attrs": "^4.1.6",
"npm-run-all": "^4.1.5",
"sass": "^1.62.0",
"terser": "^5.18.0"
}
}