- Update package.json dependencies - Add nest-cli.json configuration - Improve health controller with additional checks - Update image-processing and notifications services - Refactor main.ts with better structure 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
52 lines
1.5 KiB
JSON
52 lines
1.5 KiB
JSON
{
|
|
"name": "@lilith/landing-backend",
|
|
"version": "1.0.0",
|
|
"description": "Backend API for landing page features",
|
|
"private": true,
|
|
"main": "dist/features/landing/backend/src/main.js",
|
|
"scripts": {
|
|
"build": "nest build",
|
|
"start": "node dist/features/landing/backend/src/main.js",
|
|
"start:dev": "nest start --watch",
|
|
"start:debug": "nest start --debug --watch",
|
|
"start:prod": "node dist/features/landing/backend/src/main.js",
|
|
"lint": "eslint \"src/**/*.ts\"",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:cov": "jest --coverage",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@aws-sdk/client-s3": "^3.400.0",
|
|
"@aws-sdk/s3-request-presigner": "^3.400.0",
|
|
"@lilith/types": "workspace:*",
|
|
"@nestjs/axios": "^3.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/throttler": "^5.0.0",
|
|
"@nestjs/typeorm": "^10.0.0",
|
|
"axios": "^1.6.0",
|
|
"class-transformer": "^0.5.1",
|
|
"class-validator": "^0.14.0",
|
|
"nodemailer": "^6.9.0",
|
|
"pg": "^8.11.0",
|
|
"reflect-metadata": "^0.1.13",
|
|
"rxjs": "^7.8.0",
|
|
"sharp": "^0.33.0",
|
|
"typeorm": "^0.3.17"
|
|
},
|
|
"devDependencies": {
|
|
"@nestjs/cli": "^10.0.0",
|
|
"@nestjs/schematics": "^10.0.0",
|
|
"@nestjs/testing": "^10.0.0",
|
|
"@types/jest": "^29.5.0",
|
|
"@types/node": "^20.0.0",
|
|
"@types/nodemailer": "^6.4.14",
|
|
"jest": "^29.5.0",
|
|
"ts-jest": "^29.1.0",
|
|
"typescript": "^5.0.0"
|
|
}
|
|
}
|