Containerize the monitor with production and dev compose stacks, fix healthchecks and port handling, and make the dashboard base path configurable for direct or proxied access. Co-authored-by: Cursor <cursoragent@cursor.com>
22 lines
518 B
JSON
22 lines
518 B
JSON
{
|
|
"name": "wxcc-monitor",
|
|
"version": "2.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "node src/server.js",
|
|
"dev": "nodemon"
|
|
},
|
|
"dependencies": {
|
|
"cookie-parser": "^1.4.6",
|
|
"dotenv": "^16.4.5",
|
|
"express": "^4.19.2",
|
|
"node-cron": "^3.0.3",
|
|
"node-fetch": "^3.3.2",
|
|
"socket.io": "^4.7.5",
|
|
"winston": "^3.13.0",
|
|
"winston-daily-rotate-file": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.1.0"
|
|
}
|
|
}
|