Create complete Dashboard application with Docker, Synology, and Unifi monitoring

Co-authored-by: mblanke <9078342+mblanke@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-01-09 21:48:13 +00:00
parent e952d1f1be
commit 8b730a789a
21 changed files with 7080 additions and 1 deletions

30
package.json Normal file
View File

@@ -0,0 +1,30 @@
{
"name": "dashboard",
"version": "1.0.0",
"description": "Replacement dashboard for homarr and heimdall",
"main": "server.js",
"type": "commonjs",
"scripts": {
"dev": "node server.js",
"dev:frontend": "cd frontend && npm run dev",
"build:frontend": "cd frontend && npm run build",
"start": "node server.js"
},
"keywords": [
"dashboard",
"docker",
"synology",
"unifi",
"monitoring"
],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.13.2",
"cors": "^2.8.5",
"dockerode": "^4.0.9",
"express": "^4.22.1",
"node-ssh": "^13.2.1",
"ws": "^8.19.0"
}
}