forked from vortex-data/vortex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 760 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 760 Bytes
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
{
"name": "vortex-benchmarks-website",
"version": "2.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run vite\"",
"vite": "vite",
"server": "node server.js",
"build": "vite build",
"preview": "vite preview"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"chart.js": "^4.4.4",
"chartjs-plugin-zoom": "^2.0.1",
"downsample": "^1.4.0",
"hammerjs": "^2.0.8",
"lucide-react": "^0.563.0",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"concurrently": "^8.2.2",
"vite": "^7.3.1"
}
}