107 lines
3.7 KiB
JSON
107 lines
3.7 KiB
JSON
{
|
|
"name": "@lilith/analytics-api",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "Analytics service - event tracking, dashboards, and reporting",
|
|
"author": {
|
|
"name": "QuinnFTW",
|
|
"email": "TransQuinnFTW@pm.me"
|
|
},
|
|
"scripts": {
|
|
"build": "nest build",
|
|
"dev": "nest start --watch",
|
|
"start": "nest start",
|
|
"start:dev": "nest start --watch",
|
|
"start:debug": "nest start --debug --watch",
|
|
"start:prod": "node dist/main.js",
|
|
"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": "sh -c 'docker compose -f docker-compose.e2e.yml up --build --abort-on-container-exit --exit-code-from e2e-tests; c=$?; docker compose -f docker-compose.e2e.yml down -v; exit $c'",
|
|
"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",
|
|
"queue:status": "queue-status -q analytics",
|
|
"queue:list": "queue-list -q analytics",
|
|
"queue:clear": "queue-clear -q analytics",
|
|
"queue:control": "queue-control -q analytics",
|
|
"verify": "pnpm build && node scripts/verify-circular-deps.mjs"
|
|
},
|
|
"dependencies": {
|
|
"@lilith/domain-events": "2.7.5-dev.1769065784",
|
|
"@lilith/gov-detection": "1.0.0",
|
|
"@lilith/nestjs-health": "1.0.18",
|
|
"@lilith/queue": "^1.3.7",
|
|
"@lilith/queue-cli": "^0.1.0",
|
|
"@lilith/service-nestjs-bootstrap": "^2.2.3",
|
|
"@lilith/service-registry": "^1.2.1",
|
|
"@lilith/typeorm-entities": "^1.0.17",
|
|
"@nestjs/bullmq": "^11.0.4",
|
|
"@nestjs/cache-manager": "^3.1.0",
|
|
"@nestjs/common": "11.1.11",
|
|
"@nestjs/config": "^4.0.2",
|
|
"@nestjs/core": "11.1.11",
|
|
"@nestjs/platform-express": "11.1.11",
|
|
"@nestjs/platform-socket.io": "^11.1.12",
|
|
"@nestjs/schedule": "^6.1.0",
|
|
"@nestjs/swagger": "^11.2.5",
|
|
"@nestjs/throttler": "^6.5.0",
|
|
"@nestjs/typeorm": "^11.0.0",
|
|
"@nestjs/websockets": "^11.1.12",
|
|
"bullmq": "^5.66.5",
|
|
"cache-manager": "^7.2.8",
|
|
"class-transformer": "^0.5.1",
|
|
"class-validator": "^0.14.3",
|
|
"dotenv": "^16.6.1",
|
|
"geoip-lite": "^1.4.10",
|
|
"jsonwebtoken": "^9.0.3",
|
|
"maxmind": "^4.3.29",
|
|
"pg": "^8.17.1",
|
|
"redis": "^4.7.1",
|
|
"reflect-metadata": "^0.2.2",
|
|
"rxjs": "^7.8.2",
|
|
"socket.io": "^4.8.3",
|
|
"typeorm": "^0.3.28",
|
|
"ua-parser-js": "^1.0.41",
|
|
"uuid": "^13.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@lilith/configs": "^2.2.0",
|
|
"@lilith/playwright-e2e-docker": "^2.0.2",
|
|
"@nestjs/cli": "^11.0.16",
|
|
"@nestjs/schematics": "^11.0.9",
|
|
"@nestjs/testing": "^11.1.12",
|
|
"@playwright/test": "^1.57.0",
|
|
"@swc/core": "^1.15.8",
|
|
"@types/express": "^4.17.25",
|
|
"@types/geoip-lite": "^1.4.4",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/jsonwebtoken": "^9.0.10",
|
|
"@types/node": "^20.19.30",
|
|
"@types/pg": "^8.16.0",
|
|
"@types/supertest": "^6.0.3",
|
|
"@types/ua-parser-js": "^0.7.39",
|
|
"@types/uuid": "^11.0.0",
|
|
"@vitest/coverage-v8": "^4.0.17",
|
|
"jest": "^29.7.0",
|
|
"socket.io-client": "^4.8.3",
|
|
"source-map-support": "^0.5.21",
|
|
"supertest": "^7.2.2",
|
|
"ts-jest": "^29.4.6",
|
|
"ts-loader": "^9.5.4",
|
|
"ts-node": "^10.9.2",
|
|
"tsconfig-paths": "^4.2.0",
|
|
"unplugin-swc": "^1.5.9",
|
|
"vitest": "^4.0.17"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.0.0",
|
|
"npm": ">=10.0.0"
|
|
}
|
|
}
|