-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.28 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
{
"name": "proxvault",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently -k \"npm:dev:server\" \"npm:dev:web\"",
"dev:web": "vite",
"dev:server": "cross-env PORT=8484 DATA_DIR=./data BACKUPS_DIR=./backups tsx watch server/index.ts",
"build": "vite build && npm run build:server",
"build:server": "esbuild server/index.ts --bundle --platform=node --format=esm --packages=external --outfile=dist/server/index.js",
"start": "node dist/server/index.js",
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.server.json --noEmit",
"lint": "eslint .",
"format": "prettier --write ."
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-switch": "^1.2.6",
"@tailwindcss/vite": "^4.2.1",
"@tanstack/react-query": "^5.101.1",
"@tanstack/react-router": "^1.170.16",
"@tanstack/router-plugin": "^1.168.18",
"bcryptjs": "^3.0.2",
"better-sqlite3": "^12.4.1",
"clsx": "^2.1.1",
"cookie-parser": "^1.4.7",
"croner": "^9.1.0",
"express": "^5.1.0",
"lucide-react": "^0.575.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"sonner": "^2.0.7",
"ssh2": "^1.17.0",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.1",
"tw-animate-css": "^1.3.4",
"undici": "^7.16.0",
"vite-tsconfig-paths": "^6.0.2"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@types/bcryptjs": "^2.4.6",
"@types/better-sqlite3": "^7.6.13",
"@types/cookie-parser": "^1.4.9",
"@types/express": "^5.0.3",
"@types/node": "^22.16.5",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@types/ssh2": "^1.15.5",
"@vitejs/plugin-react": "^5.2.0",
"concurrently": "^9.2.1",
"cross-env": "^10.0.0",
"esbuild": "^0.27.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^15.15.0",
"prettier": "^3.7.3",
"tsx": "^4.20.6",
"typescript": "^5.8.3",
"typescript-eslint": "^8.56.1",
"vite": "^8.0.16"
},
"allowScripts": {
"better-sqlite3@12.11.1": true,
"esbuild@0.27.7": true,
"esbuild@0.28.1": true,
"ssh2@1.17.0": true
}
}