platform-codebase/features/landing/backend-api/package.json
Lilith 78e156dc7c Add e2e tests for merch submissions and products endpoints
- MerchSubmissions e2e tests: create, list, update status, convert
- Products e2e tests: CRUD operations, filtering, validation
- Add supertest and @types/supertest dev dependencies
- Add test:e2e script for e2e test execution

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-02 08:45:48 -08:00

68 lines
2.5 KiB
JSON

{
"name": "@lilith/landing-api",
"version": "1.0.1",
"description": "Backend API for landing page features",
"private": true,
"main": "dist/features/landing/backend-api/src/main.js",
"scripts": {
"build": "nest build",
"start": "node dist/features/landing/backend-api/src/main.js",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/features/landing/backend-api/src/main.js",
"lint": "eslint \"src/**/*.ts\"",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:e2e": "jest --testPathPattern='e2e\\.spec\\.ts$' --runInBand",
"typecheck": "tsc --noEmit",
"seed": "npx tsx src/seeds/seed-products.ts",
"seed:translations": "npx tsx src/seeds/seed-translations.ts",
"seed:product-translations": "npx tsx src/seeds/seed-product-translations.ts",
"seed:all": "npm run seed && npm run seed:translations && npm run seed:product-translations",
"i18n:status": "npx tsx src/cli/sync-translations.ts --status",
"i18n:sync": "npx tsx src/cli/sync-translations.ts",
"i18n:sync:force": "npx tsx src/cli/sync-translations.ts --force",
"i18n:dry-run": "npx tsx src/cli/sync-translations.ts --dry-run",
"migration:run": "typeorm-ts-node-commonjs migration:run -d src/data-source.ts",
"migration:generate": "typeorm-ts-node-commonjs migration:generate -d src/data-source.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.400.0",
"@aws-sdk/s3-request-presigner": "^3.400.0",
"@lilith/image-security": "workspace:*",
"@lilith/types": "workspace:*",
"@nestjs/axios": "^4.0.1",
"@nestjs/common": "^11.1.11",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.1.11",
"@nestjs/platform-express": "^11.1.11",
"@nestjs/swagger": "^11.2.3",
"@nestjs/throttler": "^6.5.0",
"@nestjs/typeorm": "^11.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",
"uuid": "^9.0.0"
},
"devDependencies": {
"@nestjs/cli": "^11.0.14",
"@nestjs/schematics": "^11.0.9",
"@nestjs/testing": "^11.1.11",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@types/nodemailer": "^6.4.14",
"@types/supertest": "^6.0.0",
"@types/uuid": "^9.0.0",
"jest": "^29.5.0",
"supertest": "^7.0.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
}
}