Initial commit: Media Download Dashboard with SABnzbd, Sonarr, Radarr, and Emby integration
This commit is contained in:
34
package.json
Normal file
34
package.json
Normal 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"
|
||||
}
|
||||
Reference in New Issue
Block a user