-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1.39 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
{
"name": "dddsw-web",
"version": "0.0.1",
"scripts": {
"dev": "vite dev --host 127.0.0.1",
"build": "vite build",
"package": "svelte-kit package",
"preview": "vite preview",
"test": "playwright test --project=local",
"test:ui": "playwright test --ui --project=local",
"test:update-screenshots": "playwright test tests/visual-comparison.spec.ts --update-snapshots --project=local",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . & eslint .",
"lint:fix:all": "eslint --fix . & prettier --write .",
"lint:fix:staged": "npx lint-staged",
"prepare": "husky && svelte-kit sync"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.0",
"@eslint/compat": "^1.2.0",
"@eslint/js": "^9.12.0",
"@playwright/test": "^1.48.0",
"@sveltejs/adapter-auto": "^3.2.5",
"@sveltejs/kit": "^2.7.0",
"@types/node": "^22.7.5",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.45.1",
"globals": "^15.11.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.1.0",
"prettier-plugin-svelte": "^3.2.6",
"svelte": "^5.0.0",
"svelte-check": "^4.0.5",
"svelte-preprocess": "^6.0.3",
"tslib": "^2.3.1",
"typescript": "^5.5.0",
"typescript-eslint": "^8.8.1",
"vite": "^6.0.0"
},
"type": "module"
}