-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.41 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.41 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
{
"name": "hubarr",
"private": true,
"license": "GPL-3.0-only",
"version": "2.1.0",
"type": "module",
"scripts": {
"dev": "tsx watch src/server/index.ts",
"dev:client": "vite",
"build": "npm run build:client && npm run build:server",
"build:client": "vite build",
"build:server": "tsc -p tsconfig.server.json",
"start": "node dist/server/server/index.js",
"check": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.server.json",
"test:e2e": "playwright test",
"test:e2e:auth": "playwright test --project=auth-setup"
},
"dependencies": {
"@tailwindcss/vite": "^4.2.4",
"better-sqlite3": "^12.9.0",
"express": "^5.2.1",
"express-rate-limit": "^8.5.1",
"helmet": "^8.1.0",
"lucide-react": "^1.14.0",
"p-limit": "^7.3.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-router-dom": "^7.15.0",
"sharp": "^0.34.5",
"tailwindcss": "^4.2.2",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@types/better-sqlite3": "^7.6.12",
"@types/express": "^5.0.1",
"@types/node": "^25.6.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/xml2js": "^0.4.14",
"@vitejs/plugin-react": "^6.0.1",
"dotenv": "^17.4.2",
"tsx": "^4.19.4",
"typescript": "^6.0.3",
"vite": "^8.0.11"
}
}