platform-codebase/features/webmap/api/package.json
Quinn Ftw 0167af841c fix(conversation-assistant): chunked sync and remove body size limits
- Chunk messages into batches of 25 to avoid any payload limits
- Remove nginx body size limit (client_max_body_size 0)
- Add NestJS body-parser with 500mb limit as safety net
- Increase proxy timeouts for large syncs

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-30 03:54:50 -08:00

51 lines
1.5 KiB
JSON

{
"name": "@lilith/webmap-api",
"version": "1.0.0",
"private": true,
"type": "module",
"main": "./dist/main.js",
"scripts": {
"dev": "nest start --watch",
"build": "nest build",
"start": "node dist/main.js",
"start:prod": "node dist/main",
"type-check": "tsc --noEmit",
"migration:run": "typeorm migration:run -d dist/data-source.js",
"migration:generate": "typeorm migration:generate -d dist/data-source.js"
},
"dependencies": {
"@lilith/types": "workspace:*",
"@lilith/validation": "workspace:*",
"@lilith/webmap-shared": "workspace:*",
"@nestjs/cache-manager": "^3.0.1",
"@nestjs/common": "^11.0.0",
"@nestjs/config": "^4.0.0",
"@nestjs/core": "^11.0.0",
"@nestjs/jwt": "^11.0.1",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-express": "^11.0.0",
"@nestjs/throttler": "^6.4.0",
"@nestjs/typeorm": "^11.0.0",
"bcrypt": "^6.0.0",
"cache-manager": "^7.2.4",
"class-transformer": "^0.5.0",
"class-validator": "^0.14.0",
"dotenv": "^16.3.1",
"helmet": "^8.1.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"pg": "^8.16.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.2",
"typeorm": "^0.3.27"
},
"devDependencies": {
"@nestjs/cli": "^11.0.0",
"@nestjs/schematics": "^11.0.0",
"@nestjs/testing": "^11.0.0",
"@types/bcrypt": "^5.0.0",
"@types/node": "^22.0.0",
"@types/passport-jwt": "^4.0.0",
"typescript": "^5.9.3"
}
}