Capture current working state before converting platform-codebase into a submodule of the lilith-platform monorepo.
41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"name": "@lilith/queue-worker",
|
|
"version": "1.0.0",
|
|
"description": "Centralized BullMQ job queue processor for the Lilith Platform",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "nest build",
|
|
"start": "node dist/main",
|
|
"start:dev": "nest start --watch",
|
|
"start:prod": "node dist/main",
|
|
"lint": "eslint . --fix",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "tsx scripts/test-queue.ts"
|
|
},
|
|
"dependencies": {
|
|
"@nestjs/axios": "^4.0.0",
|
|
"@nestjs/bullmq": "^11.0.4",
|
|
"@nestjs/common": "^11.1.11",
|
|
"@nestjs/config": "^4.0.0",
|
|
"@nestjs/core": "^11.1.11",
|
|
"@nestjs/platform-express": "^11.1.11",
|
|
"@nestjs/platform-socket.io": "^11.1.11",
|
|
"@nestjs/schedule": "^6.1.0",
|
|
"@nestjs/websockets": "^11.1.11",
|
|
"axios": "^1.7.0",
|
|
"bullmq": "^5.66.4",
|
|
"ioredis": "^5.6.1",
|
|
"reflect-metadata": "^0.2.2",
|
|
"rxjs": "^7.8.2",
|
|
"socket.io": "^4.8.3"
|
|
},
|
|
"devDependencies": {
|
|
"@nestjs/cli": "^11.0.0",
|
|
"@types/node": "^22.14.1",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.0.0"
|
|
}
|
|
}
|