-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.15 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
{
"name": "gansys-dashboard",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.9.0"
},
"scripts": {
"dev": "next dev",
"dev:server": "tsx server.ts",
"build": "next build",
"start": "node scripts/start-standalone.js",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"migrate": "tsx scripts/migrate.ts"
},
"dependencies": {
"@neondatabase/serverless": "^0.10.4",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.40.0",
"lucide-react": "^1.8.0",
"mqtt": "^5.15.1",
"next": "^16.2.2",
"postgres": "^3.4.9",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"recharts": "^2.15.1",
"server-only": "^0.0.1",
"ws": "^8.18.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.13.10",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/ws": "^8.5.13",
"@vitejs/plugin-react": "^4.3.4",
"dotenv": "^17.4.2",
"drizzle-kit": "^0.30.4",
"eslint": "^9.22.0",
"eslint-config-next": "^16.2.2",
"fast-check": "^3.22.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vitest": "^3.0.7"
}
}