syco.me Homelab Dashboard

This commit is contained in:
2026-05-10 21:23:42 +02:00
parent 933e492d15
commit 90de2c1674
45 changed files with 6666 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
{
"name": "homelab-dashboard",
"version": "0.1.0",
"scripts": {
"dev": "concurrently -n client,server -c cyan,yellow \"vite\" \"tsx watch server/index.ts\"",
"dev:client": "vite",
"dev:server": "tsx watch server/index.ts",
"build": "vite build && tsc -p tsconfig.server.json",
"start": "node dist-server/index.js"
},
"dependencies": {
"axios": "^1.7.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"socket.io-client": "^4.8.3"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.14.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"concurrently": "^8.2.2",
"tsx": "^4.15.6",
"typescript": "^5.4.5",
"vite": "^5.3.1"
}
}