-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.56 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
41
42
43
44
45
46
47
48
{
"scripts": {
"dist:delete": "del-cli --force dist",
"eleventy:serve": "npx eleventy --serve",
"eleventy:build": "npx eleventy",
"build": "npm-run-all dist:delete sass:compile eleventy:build",
"js:lint": "semistandard src/js/*.js",
"js:fix": "semistandard src/js/*.js --fix",
"sass:watch": "sass --watch --update --load-path=node_modules --no-source-map --style=expanded src/scss:src/css",
"sass:fix": "stylelint src/scss/**/*.scss --fix",
"sass:lint": "stylelint src/scss/**/*.scss",
"sass:compile": "sass --load-path=node_modules --no-source-map --style=compressed src/scss:src/css",
"start": "npm-run-all --parallel sass:watch eleventy:serve"
},
"dependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-fetch": "^5.0.1",
"@11ty/eleventy-img": "^5.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"del-cli": "^6.0.0",
"dotenv": "^16.4.5",
"himalaya": "^1.1.0",
"html-minifier": "^4.0.0",
"jsdom": "^25.0.1",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"moment": "^2.30.1",
"npm-run-all": "^4.1.5",
"pagefind": "^1.2.0",
"sass": "^1.81.0",
"slugify": "^1.6.6",
"sprucecss": "^2.3.3",
"semistandard": "^17.0.0",
"stylelint": "^16.10.0",
"stylelint-config-sass-guidelines": "^12.1.0",
"stylelint-order": "^6.0.4"
},
"engines": {
"node": "^21",
"npm": "^10",
"yarn": "please-use-npm"
},
"devDependencies": {
"@types/linkify-it": "^5.0.0",
"@types/markdown-it": "^14.1.2",
"@types/mdurl": "^2.0.0"
}
}