-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.26 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
{
"name": "nullprox",
"version": "0.1.0",
"private": true,
"description": "nullprox — mobile-first PWA to manage one or more Proxmox VE hosts",
"scripts": {
"dev": "cross-env NODE_ENV=development tsx server.ts",
"build": "next build",
"start": "cross-env NODE_ENV=production tsx server.ts",
"typecheck": "tsc --noEmit",
"lint": "next lint",
"test": "vitest run",
"test:watch": "vitest",
"e2e": "playwright test"
},
"dependencies": {
"@novnc/novnc": "^1.5.0",
"@tanstack/react-query": "^5.59.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"better-sqlite3": "^11.3.0",
"next": "15.5.24",
"react": "18.3.1",
"react-dom": "18.3.1",
"ws": "^8.18.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@playwright/test": "^1.47.2",
"@tailwindcss/typography": "^0.5.15",
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^20.16.10",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.0",
"@types/ws": "^8.5.12",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-next": "15.5.24",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.13",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"vitest": "^3.2.7"
}
}