-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
49 lines (49 loc) · 1.32 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
49
{
"private": true,
"type": "module",
"scripts": {
"start": "eleventy --serve --quiet",
"build": "rm -rf dist && eleventy",
"test": "npm run editorconfig && npm run html && npm run css && npm run javascript",
"editorconfig": "editorconfig-checker",
"html": "w3c-html-validator dist --ignore-config=.validator",
"css": "stylelint \"src/styles/**/*.css\"",
"javascript": "eslint"
},
"engines": {
"node": "20"
},
"browserslist": [
"Chrome > 0 and last 2.5 years",
"ChromeAndroid > 0 and last 2.5 years",
"Edge > 0 and last 2.5 years",
"Firefox > 0 and last 2.5 years",
"FirefoxAndroid > 0 and last 2.5 years",
"Safari > 0 and last 2.5 years",
"iOS > 0 and last 2.5 years",
"not dead"
],
"dependencies": {
"focus-trap": "^7.6.2"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-img": "^5.0.0",
"@11ty/eleventy-plugin-rss": "^2.0.2",
"@shikijs/markdown-it": "^1.25.1",
"@sindresorhus/slugify": "^2.2.1",
"editorconfig-checker": "^6.0.0",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"html-minifier-terser": "^7.2.0",
"js-yaml": "^4.1.0",
"lightningcss": "^1.28.2",
"linkedom": "^0.18.6",
"pretty-data": "^0.40.0",
"remove-markdown": "^0.6.0",
"stylelint": "^16.12.0",
"stylelint-order": "^6.0.4",
"w3c-html-validator": "^1.8.2"
}
}