- Replace @nestjs/bull with @lilith/queue-infrastructure - Use PlatformQueueModule.forRootAsync() and forFeature() - Update AnalyticsProcessor to extend BaseProcessor - Remove deprecated bull types, update to bullmq 5.34.0 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
88 lines
2.9 KiB
JSON
88 lines
2.9 KiB
JSON
{
|
|
"name": "@lilith/analytics-service",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Analytics service - event tracking, dashboards, and reporting",
|
|
"author": {
|
|
"name": "QuinnFTW",
|
|
"email": "TransQuinnFTW@pm.me"
|
|
},
|
|
"scripts": {
|
|
"build": "nest build",
|
|
"start": "nest start",
|
|
"start:dev": "nest start --watch",
|
|
"start:debug": "nest start --debug --watch",
|
|
"start:prod": "node dist/main",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:cov": "vitest run --coverage",
|
|
"test:e2e": "playwright test --config e2e/playwright.config.ts",
|
|
"test:e2e:docker": "docker compose -f docker-compose.e2e.yml up --build --abort-on-container-exit && docker compose -f docker-compose.e2e.yml down -v",
|
|
"test:e2e:down": "docker compose -f docker-compose.e2e.yml down -v",
|
|
"migration:generate": "typeorm migration:generate -d dist/database/data-source.js",
|
|
"migration:run": "typeorm migration:run -d dist/database/data-source.js",
|
|
"migration:revert": "typeorm migration:revert -d dist/database/data-source.js",
|
|
"migration:show": "typeorm migration:show -d dist/database/data-source.js"
|
|
},
|
|
"dependencies": {
|
|
"@lilith/queue-infrastructure": "workspace:*",
|
|
"@nestjs/bullmq": "^10.0.0",
|
|
"@nestjs/cache-manager": "^2.0.0",
|
|
"@nestjs/common": "^11.0.0",
|
|
"@nestjs/config": "^3.3.0",
|
|
"@nestjs/core": "^11.0.0",
|
|
"@nestjs/platform-express": "^11.0.0",
|
|
"@nestjs/platform-socket.io": "^11.0.0",
|
|
"@nestjs/schedule": "^4.0.0",
|
|
"@nestjs/swagger": "^8.0.0",
|
|
"@nestjs/throttler": "^6.0.0",
|
|
"@nestjs/typeorm": "^10.0.0",
|
|
"@nestjs/websockets": "^11.0.0",
|
|
"bullmq": "^5.34.0",
|
|
"cache-manager": "^5.0.0",
|
|
"class-transformer": "^0.5.1",
|
|
"class-validator": "^0.14.0",
|
|
"dotenv": "^16.3.1",
|
|
"jsonwebtoken": "^9.0.0",
|
|
"maxmind": "^4.3.23",
|
|
"pg": "^8.11.0",
|
|
"redis": "^4.0.0",
|
|
"reflect-metadata": "^0.2.0",
|
|
"rxjs": "^7.8.1",
|
|
"socket.io": "^4.6.0",
|
|
"typeorm": "^0.3.17",
|
|
"ua-parser-js": "^1.0.40"
|
|
},
|
|
"devDependencies": {
|
|
"@nestjs/cli": "^11.0.0",
|
|
"@nestjs/schematics": "^11.0.0",
|
|
"@nestjs/testing": "^11.1.10",
|
|
"@swc/core": "^1.10.0",
|
|
"@types/express": "^4.17.17",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/jsonwebtoken": "^9.0.0",
|
|
"@types/node": "^20.0.0",
|
|
"@types/pg": "^8.11.0",
|
|
"@types/supertest": "^6.0.2",
|
|
"@types/ua-parser-js": "^0.7.39",
|
|
"@playwright/test": "^1.40.0",
|
|
"@vitest/coverage-v8": "^2.0.0",
|
|
"jest": "^29.7.0",
|
|
"socket.io-client": "^4.6.0",
|
|
"source-map-support": "^0.5.21",
|
|
"supertest": "^7.0.0",
|
|
"ts-jest": "^29.4.1",
|
|
"ts-loader": "^9.4.3",
|
|
"ts-node": "^10.9.1",
|
|
"tsconfig-paths": "^4.2.0",
|
|
"typescript": "^5.6.0",
|
|
"unplugin-swc": "^1.5.1",
|
|
"vitest": "^2.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.0.0",
|
|
"npm": ">=10.0.0"
|
|
}
|
|
}
|