-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.35 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
{
"private": true,
"engines": {
"node": ">=20.6"
},
"type": "module",
"scripts": {
"dev": "node --env-file=.env node_modules/vite/bin/vite --mode=development",
"build": "node --env-file=.env node_modules/vite/bin/vite build --mode=production",
"preview": "node --env-file=.env node_modules/vite/bin/vite preview",
"lint": "npx eslint --ext .js,.mjs ./",
"lint-fix": "npx eslint --fix --ext .js,.mjs ./",
"postinstall": "rm -f .eslintcache && husky",
"prepare": "husky",
"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"
},
"devDependencies": {
"@axe-core/playwright": "^4.7",
"@playwright/test": "^1.40.1",
"@size-limit/preset-app": "^11.1.2",
"axe-html-reporter": "^2.2.3",
"cssnano": "^7",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-playwright": "^2",
"husky": "^9",
"postcss-preset-env": "^10",
"postcss-scss": "^4.0.9",
"postcss-size": "^5.0",
"size-limit": "^11.0.0",
"vite": "^6",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-html": "^3.2.1"
}
}