platform-codebase/features/platform-assistant/backend-api/package.json
Lilith 0481d4d251 chore(platform-assistant): 🔧 Add CLI-based deployment automation scripts for platform integration
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-02-24 09:21:17 -08:00

54 lines
1.6 KiB
JSON

{
"name": "@lilith/platform-assistant-api",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "NestJS backend for platform-assistant — AI-guided conversational assistant",
"scripts": {
"build": "lixbuild",
"start": "nest start",
"dev": "nest start --watch",
"start:prod": "node dist/main",
"typecheck": "tsc --noEmit",
"test": "lixtest",
"test:watch": "lixtest --watch",
"test:cov": "lixtest --coverage",
"verify": "lixrun"
},
"dependencies": {
"@lilith/nestjs-auth": "^1.0.0",
"@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/axios": "^4.0.1",
"@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/typeorm": "^11.0.0",
"axios": "^1.13.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.3",
"pg": "^8.17.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"typeorm": "^0.3.28"
},
"devDependencies": {
"@lilith/configs": "^2.2.0",
"@lilith/lix-configs": "^1.0.1",
"@lilith/lix-test": "^1.0.0",
"@lilith/test-utils": "*",
"@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": "^4.17.25",
"@types/node": "^20.19.30",
"typescript": "^5.9.3",
"unplugin-swc": "^1.5.9"
}
}