-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.39 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.39 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
{
"$schema": "https://json.schemastore.org/package",
"name": "web",
"version": "5.0.0",
"readme": "README.md",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10.9.0"
},
"volta": {
"node": "24.15.0",
"pnpm": "10.33.2"
},
"packageManager": "pnpm@10.33.2",
"type": "module",
"scripts": {
"build": "vite build",
"preview": "pnpm build && vite preview",
"start": "pnpm build && node start.js",
"dev": "vite",
"clean:dist": "pnpm exec rimraf dist",
"clean:node_modules": "pnpm exec rimraf node_modules",
"lint": "cross-env TIMING=1 eslint --cache .",
"lint:fix": "cross-env TIMING=1 eslint --cache --fix .",
"format": "prettier --cache --write .; eslint --cache --fix .",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "vue-tsc --noEmit"
},
"dependencies": {
"finalhandler": "^2.1.1",
"serve-static": "^2.2.1",
"ui-common": "workspace:*",
"vue": "^3.5.33",
"vue-router": "^5.0.6",
"vue-toast-notification": "^3.1.3"
},
"devDependencies": {
"@tsconfig/node24": "^24.0.4",
"@types/jsdom": "^28.0.1",
"@vitejs/plugin-vue": "^6.0.6",
"@vitejs/plugin-vue-jsx": "^5.1.5",
"@vitest/coverage-v8": "^4.1.5",
"@vue/test-utils": "^2.4.10",
"@vue/tsconfig": "^0.9.1",
"jsdom": "^29.1.1",
"vite": "^8.0.10",
"vitest": "^4.1.5",
"vue-tsc": "^3.2.7"
}
}