-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 1.09 KB
/
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
{
"type": "module",
"scripts": {
"delete:dist": "del-cli --force dist",
"eleventy:serve": "npx eleventy --serve",
"eleventy:build": "npx eleventy",
"js:lint": "semistandard src/js/*.js",
"js:fix": "semistandard src/js/*.js --fix",
"build": "npm-run-all delete:dist sass:compile eleventy:build",
"sass:dev": "sass --load-path=node_modules --watch --no-source-map --update --style=expanded src/scss:src/css",
"sass:compile": "sass --load-path=node_modules --load-path=scss --no-source-map --style=compressed src/scss:src/css",
"sass:fix": "stylelint src/scss/**/*.scss --fix",
"sass:lint": "stylelint src/scss/**/*.scss",
"start": "npm-run-all --parallel eleventy:serve sass:dev"
},
"dependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"del-cli": "^6.0.0",
"html-minifier": "^4.0.0",
"moment": "^2.30.1",
"npm-run-all": "^4.1.5",
"sass": "^1.83.0",
"semistandard": "^17.0.0",
"sprucecss": "^2.3.3",
"stylelint": "^16.11.0",
"stylelint-config-sass-guidelines": "^12.1.0"
}
}