31 lines
761 B
JSON
31 lines
761 B
JSON
{
|
|
"name": "apsgo-railway-worker",
|
|
"version": "1.0.0",
|
|
"description": "Background worker for ApsGo IoT automation system",
|
|
"main": "worker.js",
|
|
"scripts": {
|
|
"start": "node worker.js",
|
|
"dev": "nodemon worker.js",
|
|
"debug": "node debug.js",
|
|
"test:firebase": "node test-firebase-direct.js",
|
|
"setup": "node extract-credentials.js",
|
|
"test": "echo \"No tests yet\" && exit 0"
|
|
},
|
|
"keywords": ["iot", "automation", "firebase", "worker"],
|
|
"author": "ApsGo Team",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"firebase-admin": "^12.0.0",
|
|
"bullmq": "^5.1.0",
|
|
"ioredis": "^5.3.2",
|
|
"dotenv": "^16.4.5",
|
|
"cron": "^3.1.6"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.0.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|