-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.18 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.18 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
{
"private": true,
"type": "module",
"scripts": {
"start": "eleventy --serve --quiet",
"build": "rm -rf dist && eleventy",
"feed": "node scripts/feed.js",
"test": "npm run editorconfig && npm run stylelint && npm run eslint",
"editorconfig": "editorconfig-checker",
"stylelint": "stylelint \"src/styles/**/*.css\"",
"eslint": "eslint"
},
"engines": {
"node": ">=24"
},
"browserslist": [
"baseline widely available, safari 15"
],
"dependencies": {
"focus-trap": "^8.0.1"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.5",
"@11ty/eleventy-img": "^6.0.4",
"@11ty/eleventy-plugin-rss": "^3.0.0",
"@eslint/js": "^10.0.1",
"@minify-html/node": "^0.18.1",
"@netlify/blobs": "^10.7.4",
"@shikijs/markdown-it": "^4.0.2",
"@sindresorhus/slugify": "^3.0.0",
"editorconfig-checker": "^6.1.1",
"esbuild": "^0.27.4",
"eslint": "^10.1.0",
"globals": "^17.4.0",
"js-yaml": "^4.1.1",
"lightningcss": "^1.32.0",
"linkedom": "^0.18.12",
"pretty-data": "^0.40.0",
"remove-markdown": "^0.6.3",
"stylelint": "^17.5.0",
"stylelint-config-pepelsbey": "^1.2.0",
"stylelint-order": "^8.1.1"
},
"stylelint": {
"extends": [
"stylelint-config-pepelsbey"
]
}
}