platform-codebase/features/queue-worker/package.json
Lilith dcae150ea6 chore: snapshot before monorepo consolidation
Capture current working state before converting platform-codebase
into a submodule of the lilith-platform monorepo.
2026-01-29 07:04:30 -08:00

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"
}
}