platform-codebase/features/payments/backend-api/package.json
Lilith b5d0763dcf deps-upgrade(payments/backend-api): ⬆️ Update dependencies in package.json for backend API module
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-02-18 13:00:08 -08:00

77 lines
2.5 KiB
JSON

{
"name": "@lilith/payments-api",
"version": "0.0.1",
"type": "module",
"description": "Payment processing backend for lilith-platform (Segpay integration)",
"author": "The Collective",
"license": "UNLICENSED",
"private": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./providers/*": {
"types": "./dist/providers/*.d.ts",
"default": "./dist/providers/*.js"
}
},
"scripts": {
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"**/*.ts\" --fix",
"test": "vitest run --passWithNoTests",
"test:unit": "vitest run --config vitest.unit.config.ts",
"test:unit:watch": "vitest --config vitest.unit.config.ts",
"test:unit:cov": "vitest run --coverage --config vitest.unit.config.ts",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"test:e2e": "vitest run --config test/vitest.e2e.config.ts",
"test:e2e:up": "docker-compose -f ./test/docker-compose.yml up -d && sleep 3 && vitest run --config test/vitest.e2e.config.ts",
"test:e2e:down": "docker-compose -f ./test/docker-compose.yml down",
"verify": "bun run build && node scripts/verify-circular-deps.mjs"
},
"dependencies": {
"@lilith/domain-events": "^2.8.0",
"@lilith/service-nestjs-bootstrap": "^1.0.0",
"@lilith/nestjs-health": "^1.0.0",
"@lilith/service-registry": "^1.3.0",
"@nestjs/axios": "^4.0.1",
"@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/throttler": "^6.5.0",
"@nestjs/typeorm": "^11.0.0",
"axios": "^1.13.2",
"bullmq": "^5.66.5",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.3",
"mysql2": "^3.16.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/express": "^4.17.25",
"@types/node": "^20.19.30",
"@types/supertest": "^6.0.3",
"supertest": "^7.2.2",
"typescript": "^5.9.3",
"vitest": "^4.0.17"
}
}