Initial commit: Media Download Dashboard with SABnzbd, Sonarr, Radarr, and Emby integration

This commit is contained in:
2026-05-15 10:36:29 +01:00
commit 5d04d2796b
16 changed files with 1219 additions and 0 deletions

34
package.json Normal file
View File

@@ -0,0 +1,34 @@
{
"name": "media-download-dashboard",
"version": "1.0.0",
"description": "Dashboard for tracking SABnzbd downloads matched to Sonarr/Radarr activity by user",
"main": "server/index.js",
"scripts": {
"dev": "concurrently \"npm run server:dev\" \"npm run client:dev\"",
"server:dev": "nodemon server/index.js",
"client:dev": "cd client && npm run dev",
"server:start": "node server/index.js",
"client:build": "cd client && npm run build",
"install:all": "npm install && cd client && npm install"
},
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"axios": "^1.6.0",
"node-cron": "^3.0.3"
},
"devDependencies": {
"nodemon": "^3.0.1",
"concurrently": "^8.2.2"
},
"keywords": [
"sabnzbd",
"sonarr",
"radarr",
"emby",
"dashboard"
],
"author": "",
"license": "MIT"
}