platform-codebase/features/sso/backend-api/package.json
2026-02-25 16:13:04 -08:00

92 lines
2.9 KiB
JSON

{
"name": "@lilith/sso-api",
"version": "0.1.0",
"description": "Single Sign-On authentication service for lilith-platform",
"author": "lilith-platform",
"private": true,
"license": "UNLICENSED",
"type": "module",
"scripts": {
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "node dist/main.js",
"start:dev": "nest build && bun --watch dist/main.js",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main.js",
"typecheck": "tsc --noEmit",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "lixtest",
"test:watch": "lixtest --watch",
"test:cov": "lixtest --coverage",
"verify": "bun run build && node scripts/verify-circular-deps.mjs"
},
"dependencies": {
"@features/bot-defense-backend-api": "workspace:*",
"@lilith/domain-events": "^2.7.0",
"@lilith/email-client": "workspace:*",
"@lilith/nestjs-health": "^1.0.0",
"@lilith/service-nestjs-bootstrap": "^2.2.6",
"@lilith/service-registry": "^1.4.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/passport": "^11.0.5",
"@nestjs/platform-express": "11.1.11",
"@nestjs/schedule": "^5.0.1",
"@nestjs/throttler": "^6.5.0",
"@nestjs/typeorm": "^11.0.0",
"axios": "^1.13.2",
"bcryptjs": "^3.0.3",
"bullmq": "^5.66.5",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.3",
"hbs": "^4.2.0",
"ioredis": "^5.9.2",
"otplib": "^12.0.1",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"pg": "^8.17.1",
"qrcode": "^1.5.4",
"redis": "^4.7.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"typeorm": "^0.3.28",
"uuid": "^9.0.1"
},
"devDependencies": {
"@lilith/configs": "^2.2.0",
"@lilith/test-utils": "*",
"@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/bcryptjs": "^2.4.6",
"@types/express": "^4.17.25",
"@types/node": "^20.19.30",
"@types/passport-local": "^1.0.38",
"@types/pg": "^8.16.0",
"@types/qrcode": "^1.5.6",
"@types/supertest": "^6.0.3",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.0",
"source-map-support": "^0.5.21",
"supertest": "^7.2.2",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.0.0",
"typescript": "^5.9.3",
"unplugin-swc": "^1.5.0",
"vitest": "^3.2.4"
}
}