- 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>
41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"name": "@lilith/attributes-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",
|
|
"seed": "ts-node --esm src/seeds/run-seed.ts",
|
|
"migration:run": "typeorm migration:run -d dist/data-source.js",
|
|
"migration:generate": "typeorm migration:generate -d dist/data-source.js"
|
|
},
|
|
"dependencies": {
|
|
"@nestjs/common": "^11.0.0",
|
|
"@nestjs/config": "^4.0.0",
|
|
"@nestjs/core": "^11.0.0",
|
|
"@nestjs/platform-express": "^11.0.0",
|
|
"@nestjs/throttler": "^6.4.0",
|
|
"@nestjs/typeorm": "^11.0.0",
|
|
"class-transformer": "^0.5.0",
|
|
"class-validator": "^0.14.0",
|
|
"dotenv": "^16.3.1",
|
|
"helmet": "^8.1.0",
|
|
"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/node": "^22.0.0",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|