97 lines
3.4 KiB
JSON
97 lines
3.4 KiB
JSON
{
|
|
"name": "@lilith/marketplace-api",
|
|
"version": "1.0.0",
|
|
"description": "Backend API for marketplace - search, inbox, agreements",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "dist/main.js",
|
|
"scripts": {
|
|
"build": "nest build",
|
|
"start": "node dist/main.js",
|
|
"start:dev": "nest start --watch",
|
|
"dev": "nest start --watch",
|
|
"start:debug": "nest start --debug --watch",
|
|
"start:prod": "node dist/main.js",
|
|
"lint": "eslint \"src/**/*.ts\"",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:cov": "vitest run --coverage",
|
|
"test:e2e": "vitest run --config vitest.e2e.config.ts",
|
|
"typecheck": "tsc --noEmit",
|
|
"migration:run": "typeorm migration:run -d src/data-source.ts",
|
|
"migration:revert": "typeorm migration:revert -d src/data-source.ts",
|
|
"migration:generate": "typeorm migration:generate -d src/data-source.ts",
|
|
"migration:show": "typeorm migration:show -d src/data-source.ts",
|
|
"queue:status": "queue-status -q subscription-renewals",
|
|
"queue:list": "queue-list -q subscription-renewals",
|
|
"queue:clear": "queue-clear -q subscription-renewals",
|
|
"queue:control": "queue-control -q subscription-renewals",
|
|
"verify": "bun run build && node scripts/verify-circular-deps.mjs",
|
|
"seed:dev": "bun run scripts/seed-dev-profiles.ts",
|
|
"seed:dev:force": "bun run scripts/seed-dev-profiles.ts --force"
|
|
},
|
|
"dependencies": {
|
|
"@lilith/client-intel-shared": "*",
|
|
"@lilith/content-moderation-api": "^0.1.0",
|
|
"@lilith/domain-events": "^2.9.0",
|
|
"@lilith/geo-utils": "^1.2.0",
|
|
"@lilith/marketplace-shared": "*",
|
|
"@lilith/minio": "^1.2.2",
|
|
"@lilith/nestjs-auth": "^1.0.3",
|
|
"@lilith/nestjs-health": "^1.0.0",
|
|
"@lilith/payments": "*",
|
|
"@lilith/queue": "^1.3.7",
|
|
"@lilith/queue-cli": "^0.1.0",
|
|
"@lilith/reviews-shared": "*",
|
|
"@lilith/service-nestjs-bootstrap": "^2.2.6",
|
|
"@lilith/service-registry": "^1.4.0",
|
|
"@lilith/trust-shared": "*",
|
|
"@lilith/typeorm-entities": "^1.0.33",
|
|
"@lilith/typeorm-pgcrypto": "^1.0.0",
|
|
"@lilith/types": "*",
|
|
"@nestjs/axios": "^4.0.0",
|
|
"@nestjs/bullmq": "^11.0.4",
|
|
"@nestjs/common": "11.1.11",
|
|
"@nestjs/config": "^4.0.2",
|
|
"@nestjs/core": "11.1.11",
|
|
"@nestjs/event-emitter": "^2.1.0",
|
|
"@nestjs/jwt": "^11.0.2",
|
|
"@nestjs/platform-express": "11.1.11",
|
|
"@nestjs/platform-socket.io": "^11.1.12",
|
|
"@nestjs/schedule": "^4.1.2",
|
|
"@nestjs/swagger": "^11.2.5",
|
|
"@nestjs/throttler": "^6.5.0",
|
|
"@nestjs/typeorm": "^11.0.0",
|
|
"@nestjs/websockets": "^11.1.12",
|
|
"axios": "^1.7.9",
|
|
"bullmq": "^5.66.5",
|
|
"class-transformer": "^0.5.1",
|
|
"class-validator": "^0.14.3",
|
|
"ioredis": "^5.9.2",
|
|
"pg": "^8.17.1",
|
|
"reflect-metadata": "^0.2.2",
|
|
"rxjs": "^7.8.2",
|
|
"socket.io": "^4.8.3",
|
|
"typeorm": "^0.3.28",
|
|
"uuid": "^11.0.5"
|
|
},
|
|
"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",
|
|
"@testcontainers/postgresql": "^10.28.0",
|
|
"@types/express": "^5.0.6",
|
|
"@types/node": "^20.19.30",
|
|
"@types/supertest": "^6.0.2",
|
|
"@vitest/coverage-v8": "^4.0.17",
|
|
"supertest": "^7.0.0",
|
|
"testcontainers": "^10.28.0",
|
|
"typescript": "^5.9.3",
|
|
"unplugin-swc": "^1.5.9",
|
|
"vitest": "^4.0.17"
|
|
}
|
|
}
|