-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.62 KB
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
49
{
"type": "module",
"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 src/_includes/ui/scss:src/_includes/ui/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": "^3.1.2",
"@11ty/eleventy-fetch": "^5.1.1",
"@11ty/eleventy-img": "^6.0.4",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2",
"date-fns": "^4.1.0",
"del-cli": "^7.0.0",
"dotenv": "^17.3.1",
"himalaya": "^1.1.1",
"html-minifier": "^4.0.0",
"jsdom": "^28.1.0",
"markdown-it": "^14.1.1",
"markdown-it-anchor": "^9.2.0",
"npm-run-all": "^4.1.5",
"pagefind": "^1.4.0",
"sass": "^1.98.0",
"semistandard": "^17.0.0",
"slugify": "^1.6.6",
"sprucecss": "^2.3.5",
"stylelint": "^17.4.0",
"stylelint-config-sass-guidelines": "^13.0.0",
"stylelint-order": "^8.0.0"
},
"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"
}
}