-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.73 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,
"engines": {
"node": ">=20.6"
},
"type": "module",
"scripts": {
"dev": "node --env-file=.env node_modules/vite/bin/vite",
"build": "node --env-file=.env node_modules/vite/bin/vite build",
"preview": "node --env-file=.env node_modules/vite/bin/vite preview",
"lint": "npx eslint src/js/**/* tests/**/*.mjs",
"lint-fix": "npx eslint src/js/**/* tests/**/*.mjs --fix",
"postinstall": "rm -f .eslintcache",
"size": "size-limit",
"test": "node --env-file=.env node_modules/@playwright/test/cli test",
"test:absolute-links": "lychee src/index.html",
"test:ui": "node --env-file=.env node_modules/@playwright/test/cli test --ui"
},
"dependencies": {
"idb-keyval": "6.1.0",
"normalize.css": "^8.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.24.1",
"@babel/plugin-proposal-private-methods": "^7.14.5",
"@babel/preset-env": "^7.24",
"@fullhuman/postcss-purgecss": "^6.0.0",
"@playwright/test": "^1.41.2",
"@rollup/plugin-eslint": "^9.0.5",
"@size-limit/preset-app": "^11",
"browserslist": "^4.22.3",
"browserslist-to-esbuild": "^2.1.0",
"cssnano": "^6",
"eslint": "^8",
"eslint-formatter-codeframe": "^7.32.1",
"postcss-dark-theme-class": "^1.2.1",
"postcss-preset-env": "^9",
"postcss-scss": "^4.0.9",
"postcss-size": "^5.0.0",
"size-limit": "^11.0.0",
"vite": "^5",
"vite-plugin-html": "^3.2.1",
"vite-plugin-singlefile": "^2.0"
},
"overrides": {
"has": "npm:@nolyfill/has@latest",
"hasown": "npm:@nolyfill/hasown@latest"
}
}