-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.63 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.63 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
53
54
55
56
{
"name": "linux-update-dashboard",
"version": "0.1.0",
"type": "module",
"packageManager": "pnpm@10.33.0",
"engines": {
"node": "24.14.1"
},
"scripts": {
"dev": "APP_VERSION=dev-$(date -u +'%Y%m%d%H%M'); VITE_APP_VERSION=\"$APP_VERSION\" LUDASH_APP_VERSION=\"$APP_VERSION\" pnpm run dev:server & VITE_APP_VERSION=\"$APP_VERSION\" LUDASH_APP_VERSION=\"$APP_VERSION\" pnpm run dev:client",
"dev:server": "tsx watch server/index.ts",
"dev:client": "vite",
"build": "vite build && tsup",
"start": "node dist/server/index.js",
"test": "vitest run",
"check": "tsc --noEmit"
},
"dependencies": {
"@hono/node-server": "1.19.14",
"@hono/node-ws": "1.3.0",
"@simplewebauthn/server": "^13.3.0",
"@types/sortablejs": "^1.15.9",
"bcryptjs": "3.0.3",
"better-sqlite3": "12.9.0",
"croner": "^10.0.1",
"drizzle-orm": "^0.45.1",
"hono": "^4.12.9",
"jose": "^6.2.2",
"mqtt": "^5.15.1",
"mustache": "^4.2.0",
"nodemailer": "^8.0.2",
"openid-client": "^6.3.0",
"sortablejs": "^1.15.7",
"ssh2": "^1.16.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.2",
"@tanstack/react-query": "^5.95.2",
"@types/better-sqlite3": "7.6.13",
"@types/node": "^24.12.2",
"@types/nodemailer": "^8.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/ssh2": "^1.15.0",
"@vitejs/plugin-react": "^6.0.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.13.2",
"tailwindcss": "^4.2.2",
"tsup": "8.5.1",
"tsx": "4.21.0",
"typescript": "^6.0.2",
"vite": "8.0.8",
"vitest": "4.1.4"
}
}