platform-codebase/features/feature-flags/backend-api/package.json

53 lines
1.6 KiB
JSON

{
"name": "@lilith/feature-flags-api",
"version": "1.0.0",
"type": "module",
"description": "Feature flags management backend service",
"private": true,
"main": "dist/main.js",
"scripts": {
"build": "nest build",
"start": "node dist/main.js",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"src/**/*.ts\"",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"verify": "pnpm build && node scripts/verify-circular-deps.mjs"
},
"dependencies": {
"@lilith/feature-flags": "workspace:*",
"@lilith/nestjs-health": "1.0.18",
"@lilith/service-nestjs-bootstrap": "^2.2.3",
"@lilith/service-registry": "1.3.0-dev.1769368894",
"@lilith/typeorm-entities": "^1.0.17",
"@lilith/types": "workspace:*",
"@nestjs/common": "11.1.11",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "11.1.11",
"@nestjs/platform-express": "11.1.11",
"@nestjs/swagger": "^11.2.5",
"@nestjs/throttler": "^6.5.0",
"@nestjs/typeorm": "^11.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.3",
"express": "^5.2.1",
"pg": "^8.17.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"typeorm": "^0.3.28"
},
"devDependencies": {
"@lilith/configs": "^2.2.0",
"@lilith/vite-plugin-dependency-startup": "1.1.1-dev.1769404137",
"@nestjs/cli": "^11.0.16",
"@nestjs/schematics": "^11.0.9",
"@nestjs/testing": "^11.1.12",
"@types/express": "^4.17.25",
"@types/node": "^20.19.30",
"typescript": "^5.9.3",
"vitest": "^4.0.17"
}
}