Files
unraid-monitor/backend/package.json
T
Pit Friedrich 84c9e3f855 Initial commit
2025-11-15 14:58:44 +01:00

37 lines
1.1 KiB
JSON

{
"name": "unraid-monitor-backend",
"version": "1.0.0",
"description": "Backend API for Unraid Monitor PWA",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"lint": "eslint src --ext .ts",
"hash": "ts-node-dev --transpile-only src/hash.ts"
},
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"jsonwebtoken": "^9.0.2",
"bcryptjs": "^2.4.3",
"dockerode": "^4.0.2",
"systeminformation": "^5.12.20",
"express-validator": "^7.0.1",
"helmet": "^7.1.0",
"express-rate-limit": "^7.1.5",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/cors": "^2.8.17",
"@types/jsonwebtoken": "^9.0.5",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.10.6",
"typescript": "^5.3.3",
"ts-node-dev": "^2.0.0",
"@types/uuid": "^9.0.7",
"@types/dockerode": "3.3.46"
}
}