-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
27 lines (27 loc) · 974 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
{
"scripts": {
"eleventy:serve": "eleventy --serve",
"eleventy:build": "eleventy",
"eleventy:test": "eleventy --dryrun",
"sass:watch": "sass src/_scss:dist/css --watch --update --color",
"sass:build": "sass src/_scss:dist/css --no-source-map --style=compressed",
"clean": "del dist",
"start": "run-p -l clean sass:build sass:watch eleventy:serve",
"build": "run-s -l clean eleventy:build sass:build",
"test": "npm run eleventy:test"
},
"devDependencies": {
"@11ty/eleventy": "3.0.0-alpha.10",
"@11ty/eleventy-plugin-rss": "^1.1.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.6",
"del": "^2.2.2",
"del-cli": "^3.0.1",
"dotenv": "^10.0.0",
"eleventy-plugin-nesting-toc": "^1.3.0",
"eleventy-plugin-page-assets": "github:maxboeck/eleventy-plugin-page-assets",
"eleventy-plugin-svg-contents": "^0.7.0",
"markdown-it-anchor": "^7.1.0",
"npm-run-all": "^4.1.5",
"sass": "^1.34.0"
}
}