- 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>
56 lines
1.6 KiB
JSON
56 lines
1.6 KiB
JSON
{
|
|
"name": "@lilith/email-backend",
|
|
"version": "1.0.0",
|
|
"description": "Centralized email service for Lilith Platform",
|
|
"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": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:cov": "jest --coverage",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@lilith/queue-infrastructure": "workspace:*",
|
|
"@lilith/types": "workspace:*",
|
|
"@nestjs/bullmq": "^10.0.0",
|
|
"@nestjs/common": "^10.0.0",
|
|
"@nestjs/config": "^3.0.0",
|
|
"@nestjs/core": "^10.0.0",
|
|
"@nestjs/platform-express": "^10.0.0",
|
|
"@nestjs/swagger": "^7.0.0",
|
|
"@nestjs/typeorm": "^10.0.0",
|
|
"bullmq": "^5.34.0",
|
|
"class-transformer": "^0.5.1",
|
|
"class-validator": "^0.14.0",
|
|
"handlebars": "^4.7.8",
|
|
"imap": "^0.8.19",
|
|
"mailparser": "^3.6.0",
|
|
"mjml": "^4.15.0",
|
|
"nodemailer": "^6.9.0",
|
|
"pg": "^8.11.0",
|
|
"reflect-metadata": "^0.1.13",
|
|
"rxjs": "^7.8.0",
|
|
"typeorm": "^0.3.17"
|
|
},
|
|
"devDependencies": {
|
|
"@nestjs/cli": "^10.0.0",
|
|
"@nestjs/schematics": "^10.0.0",
|
|
"@nestjs/testing": "^10.0.0",
|
|
"@types/imap": "^0.8.40",
|
|
"@types/jest": "^29.5.0",
|
|
"@types/mailparser": "^3.4.4",
|
|
"@types/mjml": "^4.7.4",
|
|
"@types/node": "^20.0.0",
|
|
"@types/nodemailer": "^6.4.14",
|
|
"jest": "^29.5.0",
|
|
"ts-jest": "^29.1.0",
|
|
"typescript": "^5.0.0"
|
|
}
|
|
}
|