-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.45 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.45 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": "-",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"dev": "vite",
"dev:server": "node server/index.js",
"dev:all": "npm-run-all2 --parallel dev:server dev",
"build": "run-p type-check \"build-only {@}\" --",
"prebuild": "npm run generate-manifest && npm run setup-balance-calculator",
"build-only": "npm run generate-manifest && vite build",
"generate-manifest": "node scripts/generate-snapshot-manifest.js",
"setup-balance-calculator": "node scripts/setup-balance-calculator.js",
"type-check": "vue-tsc --build",
"format": "prettier --write src/",
"test": "vitest"
},
"dependencies": {
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"chart.js": "^4.5.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.2",
"multer": "^2.0.2",
"papaparse": "^5.5.3",
"pinia": "^3.0.3",
"vue": "^3.5.22",
"vue-chartjs": "^5.3.3",
"vue-i18n": "^9.14.0",
"vue-router": "^4.6.3"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.2",
"@types/node": "^22.18.11",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.8.1",
"happy-dom": "^20.0.10",
"jsdom": "^27.2.0",
"npm-run-all2": "^8.0.4",
"prettier": "3.6.2",
"typescript": "~5.9.0",
"vite": "^7.1.11",
"vitest": "^4.0.14",
"vue-tsc": "^3.1.1"
}
}