72 lines
2.4 KiB
JSON
72 lines
2.4 KiB
JSON
{
|
|
"name": "@lilith/streaming-api",
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"description": "Streaming Companion - session management, tip tracking, chatbot, analytics",
|
|
"author": "The Collective",
|
|
"license": "UNLICENSED",
|
|
"private": true,
|
|
"main": "dist/main.js",
|
|
"scripts": {
|
|
"build": "nest build",
|
|
"start": "node dist/main.js",
|
|
"start:dev": "nest start --watch",
|
|
"dev": "nest start --watch",
|
|
"start:prod": "node dist/main",
|
|
"lint": "eslint \"src/**/*.ts\"",
|
|
"test": "lixtest",
|
|
"test:watch": "lixtest --watch",
|
|
"test:cov": "lixtest --coverage",
|
|
"typecheck": "tsc --noEmit",
|
|
"verify": "bun run build && node scripts/verify-circular-deps.mjs",
|
|
"migration:generate": "bun --bun typeorm migration:generate -d src/database/data-source.ts",
|
|
"migration:run": "bun --bun typeorm migration:run -d src/database/data-source.ts",
|
|
"migration:revert": "bun --bun typeorm migration:revert -d src/database/data-source.ts"
|
|
},
|
|
"dependencies": {
|
|
"@lilith/domain-events": "^2.9.1",
|
|
"@lilith/nestjs-health": "^1.0.33",
|
|
"@lilith/nestjs-sso-guard": "^0.1.18",
|
|
"@lilith/service-nestjs-bootstrap": "^2.2.6",
|
|
"@lilith/service-registry": "^1.4.0",
|
|
"@lilith/websocket-server": "^1.0.0",
|
|
"@lilith/websocket-core": "^1.0.0",
|
|
"@nestjs/axios": "^4.0.1",
|
|
"@nestjs/bullmq": "^11.0.4",
|
|
"@nestjs/common": "11.1.11",
|
|
"@nestjs/config": "^4.0.2",
|
|
"@nestjs/core": "11.1.11",
|
|
"@nestjs/jwt": "^11.0.2",
|
|
"@nestjs/passport": "^11.0.5",
|
|
"@nestjs/platform-express": "11.1.11",
|
|
"@nestjs/platform-socket.io": "^11.1.12",
|
|
"@nestjs/swagger": "^11.2.5",
|
|
"@nestjs/throttler": "^6.5.0",
|
|
"@nestjs/typeorm": "^11.0.0",
|
|
"@nestjs/websockets": "^11.1.12",
|
|
"class-transformer": "^0.5.1",
|
|
"class-validator": "^0.14.3",
|
|
"passport": "^0.7.0",
|
|
"passport-jwt": "^4.0.1",
|
|
"pg": "^8.17.1",
|
|
"reflect-metadata": "^0.2.2",
|
|
"rxjs": "^7.8.2",
|
|
"socket.io": "^4.8.3",
|
|
"typeorm": "^0.3.28"
|
|
},
|
|
"devDependencies": {
|
|
"@lilith/configs": "^2.2.0",
|
|
"@lilith/test-utils": "workspace:*",
|
|
"@nestjs/cli": "^11.0.16",
|
|
"@nestjs/schematics": "^11.0.9",
|
|
"@nestjs/testing": "^11.1.12",
|
|
"@swc/cli": "^0.7.10",
|
|
"@swc/core": "^1.15.8",
|
|
"@types/express": "^5.0.6",
|
|
"@types/node": "^20.19.30",
|
|
"@types/passport-jwt": "^4.0.1",
|
|
"typescript": "^5.9.3",
|
|
"unplugin-swc": "^1.5.9",
|
|
"vitest": "^4.0.17"
|
|
}
|
|
}
|