-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.55 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.55 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
50
51
52
{
"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.11.1",
"@eslint/compat": "^2.0.3",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.58.2",
"@sveltejs/adapter-auto": "^7.0.1",
"@sveltejs/kit": "^2.55.0",
"@tailwindcss/vite": "^4.2.1",
"@types/node": "^25.5.0",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.15.2",
"globals": "^17.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.5.1",
"svelte": "^5.55.0",
"svelte-check": "^4.4.5",
"svelte-preprocess": "^6.0.3",
"tailwindcss": "^4.2.1",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vite": "^8.0.0"
},
"overrides": {
"vite": "^8.0.0"
},
"type": "module",
"dependencies": {
"@panzoom/panzoom": "^4.6.0"
}
}