2026-01-02 06:53:43 -08:00
|
|
|
{
|
|
|
|
|
"name": "@lilith/platform-admin-backend",
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"description": "Platform admin backend API - proxies to feature services",
|
|
|
|
|
"private": true,
|
|
|
|
|
"type": "module",
|
|
|
|
|
"scripts": {
|
2026-01-29 07:04:30 -08:00
|
|
|
"build": "nest build",
|
2026-01-02 06:53:43 -08:00
|
|
|
"dev": "nest start --watch",
|
|
|
|
|
"start": "node dist/main.js",
|
2026-01-29 07:04:30 -08:00
|
|
|
"start:dev": "nest start --watch",
|
|
|
|
|
"start:debug": "nest start --debug --watch",
|
2026-01-02 06:53:43 -08:00
|
|
|
"lint": "eslint src --ext .ts",
|
2026-01-04 19:44:24 -08:00
|
|
|
"typecheck": "tsc --noEmit",
|
|
|
|
|
"migration:generate": "typeorm migration:generate -d src/database/data-source.ts",
|
|
|
|
|
"migration:run": "typeorm migration:run -d src/database/data-source.ts",
|
2026-01-21 14:19:54 -08:00
|
|
|
"migration:revert": "typeorm migration:revert -d src/database/data-source.ts",
|
2026-02-12 00:28:18 -08:00
|
|
|
"test": "vitest run",
|
|
|
|
|
"test:watch": "vitest",
|
2026-01-26 22:47:00 -08:00
|
|
|
"verify": "bun run build && node scripts/verify-circular-deps.mjs"
|
2026-01-02 06:53:43 -08:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2026-03-25 23:56:26 -07:00
|
|
|
"@lilith/content-lifecycle": "^1.1.0",
|
2026-01-17 17:35:41 -08:00
|
|
|
"@lilith/imajin-client": "^0.2.0",
|
2026-02-12 00:07:49 -08:00
|
|
|
"@lilith/qa-shared": "*",
|
2026-01-26 22:47:00 -08:00
|
|
|
"@lilith/nestjs-health": "^1.0.0",
|
2026-01-02 18:44:25 -08:00
|
|
|
"@lilith/queue-cli": "^0.1.0",
|
2026-02-20 14:13:42 -08:00
|
|
|
"@lilith/service-nestjs-bootstrap": "^2.2.6",
|
2026-01-25 23:45:11 -08:00
|
|
|
"@lilith/service-registry": "1.3.0",
|
2026-01-29 07:04:30 -08:00
|
|
|
"@lilith/typeorm-entities": "^1.0.33",
|
2026-01-02 06:53:43 -08:00
|
|
|
"@nestjs/axios": "^3.1.3",
|
2026-01-18 15:48:37 -08:00
|
|
|
"@nestjs/common": "11.1.11",
|
2026-01-02 06:53:43 -08:00
|
|
|
"@nestjs/config": "^3.3.0",
|
2026-01-18 15:48:37 -08:00
|
|
|
"@nestjs/core": "11.1.11",
|
|
|
|
|
"@nestjs/platform-express": "11.1.11",
|
|
|
|
|
"@nestjs/swagger": "^8.1.1",
|
2026-01-18 16:07:44 -08:00
|
|
|
"@nestjs/throttler": "^6.5.0",
|
2026-01-04 19:44:06 -08:00
|
|
|
"@nestjs/typeorm": "^10.0.2",
|
2026-01-18 15:48:37 -08:00
|
|
|
"axios": "^1.13.2",
|
2026-01-02 06:53:43 -08:00
|
|
|
"class-transformer": "^0.5.1",
|
2026-01-18 15:48:37 -08:00
|
|
|
"class-validator": "^0.14.3",
|
2026-01-20 21:38:48 -08:00
|
|
|
"express": "^5.2.1",
|
2026-01-18 15:48:37 -08:00
|
|
|
"minio": "^8.0.6",
|
|
|
|
|
"pg": "^8.17.1",
|
2026-01-02 06:53:43 -08:00
|
|
|
"reflect-metadata": "^0.2.2",
|
2026-01-18 15:48:37 -08:00
|
|
|
"rxjs": "^7.8.2",
|
2026-02-12 05:49:27 -08:00
|
|
|
"typeorm": "^0.3.28",
|
|
|
|
|
"@lilith/email-client": "workspace:*"
|
2026-01-02 06:53:43 -08:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-01-21 16:14:30 -08:00
|
|
|
"@lilith/configs": "^2.2.0",
|
2026-01-26 22:47:00 -08:00
|
|
|
"@lilith/vite-plugin-dependency-startup": "^1.1.1",
|
2026-01-20 21:38:48 -08:00
|
|
|
"@nestjs/cli": "^11.0.16",
|
|
|
|
|
"@swc-node/register": "^1.11.1",
|
|
|
|
|
"@swc/cli": "^0.7.10",
|
|
|
|
|
"@swc/core": "^1.15.8",
|
2026-01-18 15:48:37 -08:00
|
|
|
"@types/express": "^5.0.6",
|
|
|
|
|
"@types/node": "^22.19.7",
|
2026-02-12 00:28:18 -08:00
|
|
|
"@nestjs/testing": "^11.1.12",
|
|
|
|
|
"typescript": "^5.9.3",
|
|
|
|
|
"unplugin-swc": "^1.5.9",
|
|
|
|
|
"vitest": "^3.2.4"
|
2026-01-02 06:53:43 -08:00
|
|
|
}
|
|
|
|
|
}
|