-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.33 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
30
31
32
33
34
35
36
37
38
39
40
{
"scripts": {
"delete:dist": "del-cli --force dist",
"dev:sass": "sass --load-path=node_modules --watch --no-source-map --update --style=expanded src/scss:src/css",
"dev:eleventy": "npx eleventy --serve",
"js:lint": "npx eslint \"src/js/**\"",
"js:lint:fix": "npx eslint \"src/js/**\" --fix",
"prod": "npm-run-all prod:*",
"prod:delete-dist": "npm run delete:dist",
"prod:sass": "sass --load-path=node_modules --no-source-map --style=compressed src/scss:src/css",
"prod:eleventy": "npx eleventy",
"sass:lint": "stylelint src/scss/**/*.scss",
"sass:lint:fix": "stylelint src/scss/**/*.scss --fix",
"start": "npm-run-all --parallel dev:*"
},
"dependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "^3.1.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"del-cli": "^5.0.0",
"dotenv": "^16.3.1",
"eslint": "^8.47.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.0",
"himalaya": "^1.1.0",
"html-minifier": "^4.0.0",
"moment": "^2.29.4",
"npm-run-all": "^4.1.5",
"sass": "^1.65.1",
"sprucecss": "^2.3.0",
"stylelint": "^16.3.0",
"stylelint-config-sass-guidelines": "^11.0.0",
"stylelint-order": "^6.0.4"
},
"engines": {
"node": "^20.11",
"npm": "^10.2",
"yarn": "please-use-npm"
}
}