-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.14 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
{
"name": "openalphastack-dashboard",
"private": true,
"version": "0.1.0",
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"dev": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/dev-stop.ps1 && concurrently -k -n API,WEB -c blue,green \"npm run backend:dev\" \"npm run dashboard:dev\"",
"backend:dev": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/dev-backend.ps1",
"dashboard:dev": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/dev-frontend.ps1",
"dashboard:build": "tsc -p dashboard/tsconfig.json && vite build --config dashboard/vite.config.ts",
"dashboard:test": "vitest run --config dashboard/vite.config.ts"
},
"dependencies": {
"@vitejs/plugin-react": "^5.2.0",
"@xyflow/react": "^12.11.0",
"echarts": "^6.1.0",
"lucide-react": "1.17.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"vite": "^7.3.6"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"concurrently": "^9.2.4",
"typescript": "^5.7.2",
"vitest": "^4.1.10"
}
}