Replace boilerplate NestJS bootstrap code with standardized bootstrap helper: - analytics, attributes, conversation-assistant, email, feature-flags - image-generator, landing, marketplace, profile, seo, sso Benefits: Consistent CORS, Swagger, validation, and error handling across all services 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
44 lines
1.3 KiB
JSON
44 lines
1.3 KiB
JSON
{
|
|
"name": "@lilith/feature-flags-api",
|
|
"version": "1.0.0",
|
|
"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"
|
|
},
|
|
"dependencies": {
|
|
"@lilith/feature-flags": "workspace:*",
|
|
"@lilith/service-nestjs-bootstrap": "^1.0.0",
|
|
"@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.3",
|
|
"@nestjs/typeorm": "^11.0.0",
|
|
"class-transformer": "^0.5.1",
|
|
"class-validator": "^0.14.0",
|
|
"pg": "^8.11.0",
|
|
"reflect-metadata": "^0.1.13",
|
|
"rxjs": "^7.8.0",
|
|
"typeorm": "^0.3.17"
|
|
},
|
|
"devDependencies": {
|
|
"@nestjs/cli": "^11.0.14",
|
|
"@nestjs/schematics": "^11.0.9",
|
|
"@nestjs/testing": "^11.1.11",
|
|
"@types/express": "^4.17.0",
|
|
"@types/node": "^20.0.0",
|
|
"typescript": "^5.0.0",
|
|
"vitest": "^4.0.16"
|
|
}
|
|
}
|