-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.92 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "cecsmsui",
"version": "1.0.1",
"private": true,
"type": "module",
"scripts": {
"predev": "node ../../scripts/verify-local-backend-ready.mjs",
"dev": "node ../../scripts/run-vite-dev.mjs",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --max-warnings 0",
"audit:dead-code": "knip --reporter compact",
"test": "node --test test/*.test.mjs",
"test:fuzz": "node --test fuzz/*.fuzz.js",
"audit": "npm audit --omit=dev --audit-level=high",
"audit:display": "node --env-file=../../.env.docker ../../scripts/audit-frontend-display.mjs",
"audit:communication": "node --env-file=../../.env.docker ../../scripts/audit-frontend-backend-communication.mjs",
"check": "npm run lint && npm run audit:dead-code && npm run test && npm run test:fuzz && npm run build && npm run audit"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.2",
"@fontsource/inter": "^5.3.0",
"@fontsource/playfair-display": "^5.3.0",
"@lucide/vue": "^1.33.0",
"axios": "^1.19.0",
"echarts": "^6.1.0",
"element-plus": "^2.14.4",
"pinia": "^4.0.3",
"three": "^0.185.1",
"vue": "^3.5.41",
"vue-router": "^5.2.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@vitejs/plugin-vue": "^6.0.8",
"eslint": "10.8.1",
"eslint-plugin-vue": "10.10.0",
"fast-check": "4.9.0",
"globals": "17.11.0",
"knip": "6.32.2",
"sass": "^1.102.0",
"unplugin-vue-components": "^32.1.0",
"vite": "^8.2.1",
"vue-eslint-parser": "10.4.1"
},
"engines": {
"node": ">=24.19.0 <25",
"npm": ">=12.0.2 <13"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=24.19.0 <25",
"onFail": "error"
},
"packageManager": {
"name": "npm",
"version": ">=12.0.2 <13",
"onFail": "error"
}
},
"packageManager": "npm@12.0.2",
"allowScripts": {
"@parcel/watcher": false
}
}