Files
Syco 48d6584b7d
ci/woodpecker/push/woodpecker Pipeline was successful
Add Apps page with local icons, favicon, and React Router navigation
- Move app links to dedicated /apps page with grouped icon tiles
- Download all icons locally to public/icons/ (no CDN dependency)
- Add favicon and replace header logo-mark with custom icon
- Fix icon names: synology, termix, docsight-light, dbgate (png)
- Add nav tabs in header for Dashboard/Apps routing

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-15 20:12:13 +02:00

34 lines
915 B
JSON

{
"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",
"react-router-dom": "^6.24.0",
"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"
}
}