-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.54 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.54 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "server-management-platform",
"version": "1.0.0",
"description": "Web-based server management platform with SSH, FTP, tunneling, and file editing",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "tsx watch src/backend/server.ts",
"dev:frontend": "vite",
"build": "npm run build:frontend && npm run build:backend",
"build:frontend": "vite build",
"build:backend": "tsc -p tsconfig.backend.json",
"start": "node dist/backend/server.js",
"preview": "vite preview"
},
"dependencies": {
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@types/minio": "^7.1.0",
"@types/multer": "^2.0.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/xterm": "^5.5.0",
"axios": "^1.7.7",
"basic-ftp": "^5.0.5",
"bcrypt": "^5.1.1",
"better-sqlite3": "^11.5.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-session": "^1.18.1",
"guacamole-common-js": "^1.5.0",
"guacamole-lite": "^1.2.0",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.555.0",
"mammoth": "^1.11.0",
"minio": "^8.0.6",
"multer": "^2.0.2",
"mysql2": "^3.15.3",
"node-cron": "^4.2.1",
"node-rdpjs-2": "^0.3.5",
"pdfjs-dist": "^5.4.530",
"pg": "^8.16.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.0",
"sonner": "^2.0.7",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"ssh2": "^1.16.0",
"tailwind-merge": "^3.4.0",
"ws": "^8.18.0",
"xlsx": "^0.18.5",
"zustand": "^5.0.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/better-sqlite3": "^7.6.12",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/express-session": "^1.18.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.9.0",
"@types/node-cron": "^3.0.11",
"@types/pg": "^8.16.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/ssh2": "^1.15.1",
"@types/ws": "^8.5.13",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.15",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vite": "^5.4.10"
}
}