84 lines
2.7 KiB
JSON
84 lines
2.7 KiB
JSON
{
|
|
"name": "@lilith/email-api",
|
|
"version": "1.0.0",
|
|
"description": "Centralized email service for Lilith Platform",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "dist/main.js",
|
|
"scripts": {
|
|
"build": "nest build",
|
|
"dev": "nest start --watch",
|
|
"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": "lixtest",
|
|
"test:watch": "lixtest --watch",
|
|
"test:cov": "lixtest --coverage",
|
|
"test:e2e": "lixtest --e2e",
|
|
"test:e2e:up": "docker compose -f test/docker-compose.yml up -d",
|
|
"test:e2e:down": "docker compose -f test/docker-compose.yml down -v",
|
|
"typecheck": "tsc --noEmit",
|
|
"queue:status": "queue-status -q email",
|
|
"queue:list": "queue-list -q email",
|
|
"queue:clear": "queue-clear -q email",
|
|
"queue:control": "queue-control -q email",
|
|
"verify": "bun run build && node scripts/verify-circular-deps.mjs",
|
|
"test:unit": "lixtest --unit",
|
|
"test:coverage": "lixtest --coverage",
|
|
"test:e2e:headed": "lixtest --e2e --headed",
|
|
"test:e2e:debug": "lixtest --e2e --debug",
|
|
"test:ui": "lixtest --ui"
|
|
},
|
|
"dependencies": {
|
|
"@lilith/domain-events": "^2.7.0",
|
|
"@lilith/nestjs-health": "^1.0.0",
|
|
"@lilith/queue": "^1.3.7",
|
|
"@lilith/queue-cli": "^0.1.0",
|
|
"@lilith/service-nestjs-bootstrap": "^2.2.3",
|
|
"@lilith/service-registry": "^1.3.0",
|
|
"@lilith/types": "*",
|
|
"@nestjs/bullmq": "^11.0.4",
|
|
"@nestjs/common": "11.1.11",
|
|
"@nestjs/config": "^4.0.2",
|
|
"@nestjs/core": "11.1.11",
|
|
"@nestjs/platform-express": "11.1.11",
|
|
"@nestjs/schedule": "^4.1.2",
|
|
"@nestjs/swagger": "^11.2.5",
|
|
"@nestjs/throttler": "^6.5.0",
|
|
"@nestjs/typeorm": "^11.0.0",
|
|
"bullmq": "^5.66.5",
|
|
"class-transformer": "^0.5.1",
|
|
"class-validator": "^0.14.3",
|
|
"handlebars": "^4.7.8",
|
|
"imap": "^0.8.19",
|
|
"mailparser": "^3.9.1",
|
|
"mjml": "^4.18.0",
|
|
"nodemailer": "^6.10.1",
|
|
"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/imap": "^0.8.43",
|
|
"@types/mailparser": "^3.4.6",
|
|
"@types/mjml": "^4.7.4",
|
|
"@types/node": "^20.19.30",
|
|
"@types/nodemailer": "6.4.17",
|
|
"@types/supertest": "^6.0.2",
|
|
"supertest": "^7.0.0",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^3.1.4",
|
|
"unplugin-swc": "^1.5.5",
|
|
"@lilith/test-utils": "*"
|
|
}
|
|
}
|