platform-codebase/features/attributes/backend-api/package.json
Lilith e0f111d469 chore(backend-api): 🔧 Update 28 feature modules' package.json dependencies across backend APIs
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-02-20 14:13:43 -08:00

56 lines
1.9 KiB
JSON

{
"name": "@lilith/attributes-api",
"version": "1.0.0",
"private": true,
"type": "module",
"main": "./dist/main.js",
"scripts": {
"dev": "nest start --watch --entryFile main-simple",
"dev:full": "nest start --watch",
"start:dev": "nest start --watch",
"build": "nest build",
"start": "node dist/main.js",
"start:prod": "node dist/main",
"type-check": "tsc --noEmit",
"seed": "ts-node --esm src/seeds/run-seed.ts",
"seed:image-semantics": "ts-node --esm src/seeds/run-image-semantics-seed.ts",
"migration:run": "typeorm migration:run -d dist/data-source.js",
"migration:generate": "typeorm migration:generate -d dist/data-source.js",
"attribute:relevance:sync": "ts-node --esm src/scripts/sync-category-relevance.ts",
"attribute:relevance:stats": "ts-node --esm src/scripts/sync-category-relevance.ts --stats",
"verify": "bun run build && node scripts/verify-circular-deps.mjs"
},
"dependencies": {
"@lilith/ml-provider-clients": "^1.0.28",
"@lilith/nestjs-health": "^1.0.0",
"@lilith/service-nestjs-bootstrap": "^2.2.6",
"@lilith/service-registry": "^1.3.0",
"@lilith/typeorm-entities": "^1.0.33",
"@nestjs/common": "11.1.11",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "11.1.11",
"@nestjs/platform-express": "11.1.11",
"@nestjs/throttler": "^6.5.0",
"@nestjs/typeorm": "^11.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.3",
"dotenv": "^16.6.1",
"helmet": "^8.1.0",
"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",
"@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/node": "^22.19.7",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}