62 lines
2 KiB
JSON
62 lines
2 KiB
JSON
{
|
|
"name": "@lilith/cms-api",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"description": "Backend API for CMS - content draft management and scheduled publishing",
|
|
"private": true,
|
|
"main": "dist/main.js",
|
|
"scripts": {
|
|
"build": "nest build",
|
|
"verify": "bun run build && node scripts/verify-circular-deps.mjs",
|
|
"start": "node dist/main.js",
|
|
"start:dev": "nest start --watch",
|
|
"start:debug": "nest start --debug --watch",
|
|
"start:prod": "node dist/main.js",
|
|
"lint": "eslint \"src/**/*.ts\"",
|
|
"test": "lixtest",
|
|
"test:watch": "lixtest --watch",
|
|
"test:cov": "lixtest --coverage",
|
|
"typecheck": "tsc --noEmit",
|
|
"migration:run": "typeorm-ts-node-commonjs migration:run -d src/data-source.ts",
|
|
"migration:generate": "typeorm-ts-node-commonjs migration:generate -d src/data-source.ts",
|
|
"seed:legal": "tsx --tsconfig tsconfig.json src/seeders/seed-legal-content.ts"
|
|
},
|
|
"dependencies": {
|
|
"@lilith/nestjs-health": "^1.0.0",
|
|
"@lilith/service-nestjs-bootstrap": "^2.2.6",
|
|
"@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/swagger": "^11.2.5",
|
|
"@nestjs/throttler": "^6.5.0",
|
|
"@nestjs/typeorm": "^11.0.0",
|
|
"axios": "^1.13.2",
|
|
"bullmq": "^5.66.4",
|
|
"class-transformer": "^0.5.1",
|
|
"class-validator": "^0.14.3",
|
|
"pg": "^8.17.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/lix-configs": "^1.0.1",
|
|
"@lilith/lix-test": "^1.0.0",
|
|
"@lilith/test-utils": "^0.1.0",
|
|
"@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/node": "^20.19.30",
|
|
"@types/uuid": "^9.0.8",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^3.2.4"
|
|
}
|
|
}
|