platform-codebase/features/profile/backend-api/package.json
2026-02-24 05:44:20 -08:00

70 lines
2.2 KiB
JSON

{
"name": "@lilith/profile-api",
"version": "1.0.0",
"type": "module",
"description": "Backend API for profile management",
"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": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"verify": "bun run build && node scripts/verify-circular-deps.mjs",
"test:e2e": "vitest run --config vitest.config.e2e.ts",
"test:e2e:up": "docker compose -f test/docker-compose.yml up -d",
"test:e2e:down": "docker compose -f test/docker-compose.yml down -v",
"dev:showcase": "nest start --watch --entryFile main-simple"
},
"dependencies": {
"@lilith/domain-events": "2.9.0",
"@lilith/identifier-utils": "*",
"@lilith/nestjs-auth": "^1.0.3",
"@lilith/nestjs-health": "^1.0.0",
"@lilith/service-nestjs-bootstrap": "^2.2.6",
"@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/jwt": "^11.0.2",
"@nestjs/platform-express": "11.1.11",
"@nestjs/swagger": "^11.2.5",
"@nestjs/throttler": "^6.5.0",
"@nestjs/typeorm": "^11.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.3",
"express": "^5.2.1",
"ioredis": "^5.9.3",
"pg": "^8.17.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"typeorm": "^0.3.28"
},
"devDependencies": {
"@lilith/test-utils": "*",
"@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/express": "^5.0.6",
"@types/node": "^20.19.30",
"@types/supertest": "^6.0.3",
"@types/uuid": "^9.0.8",
"supertest": "^7.2.2",
"typescript": "^5.9.3",
"unplugin-swc": "^1.5.0",
"uuid": "^9.0.1",
"vitest": "^3.2.4"
}
}