81 lines
2.8 KiB
JSON
81 lines
2.8 KiB
JSON
{
|
|
"name": "@lilith/image-assistant-api",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "NestJS backend for image-assistant with MinIO storage and Redis queues",
|
|
"scripts": {
|
|
"build": "nest build",
|
|
"start": "nest start",
|
|
"start:dev": "nest start --watch",
|
|
"start:prod": "node dist/main",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "lixtest",
|
|
"test:watch": "lixtest --watch",
|
|
"test:cov": "lixtest --coverage",
|
|
"migration:generate": "npx tsx ../../../node_modules/typeorm/cli.js migration:generate -d ./src/data-source.ts",
|
|
"migration:run": "npx tsx ../../../node_modules/typeorm/cli.js migration:run -d ./src/data-source.ts",
|
|
"migration:revert": "npx tsx ../../../node_modules/typeorm/cli.js migration:revert -d ./src/data-source.ts",
|
|
"migration:show": "npx tsx ../../../node_modules/typeorm/cli.js migration:show -d ./src/data-source.ts",
|
|
"migration:create": "npx tsx ../../../node_modules/typeorm/cli.js migration:create",
|
|
"cli": "npx tsx src/cli.ts",
|
|
"verify": "bun run build && node scripts/verify-circular-deps.mjs"
|
|
},
|
|
"dependencies": {
|
|
"@lilith/nestjs-health": "^1.0.0",
|
|
"@lilith/queue": "^1.3.7",
|
|
"@lilith/service-nestjs-bootstrap": "^2.2.6",
|
|
"@lilith/service-registry": "^1.3.0",
|
|
"@lilith/typeorm-entities": "^1.0.33",
|
|
"@nestjs/axios": "^4.0.1",
|
|
"@nestjs/bullmq": "^11.0.4",
|
|
"@nestjs/cache-manager": "^3.1.0",
|
|
"@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/swagger": "^11.2.5",
|
|
"@nestjs/typeorm": "^11.0.0",
|
|
"axios": "^1.13.2",
|
|
"bcrypt": "^5.1.1",
|
|
"bullmq": "^5.66.5",
|
|
"cache-manager": "^7.2.8",
|
|
"cache-manager-redis-store": "^3.0.1",
|
|
"class-transformer": "^0.5.1",
|
|
"class-validator": "^0.14.3",
|
|
"dotenv": "^16.6.1",
|
|
"minio": "^8.0.6",
|
|
"passport": "^0.7.0",
|
|
"passport-jwt": "^4.0.1",
|
|
"pg": "^8.17.1",
|
|
"redis": "^4.7.1",
|
|
"reflect-metadata": "^0.2.2",
|
|
"rxjs": "^7.8.2",
|
|
"sharp": "^0.33.5",
|
|
"typeorm": "^0.3.28",
|
|
"uuid": "^9.0.1"
|
|
},
|
|
"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/bcrypt": "^5.0.2",
|
|
"@types/cache-manager-redis-store": "^2.0.4",
|
|
"@types/express": "^4.17.25",
|
|
"@types/multer": "^1.4.13",
|
|
"@types/node": "^20.19.30",
|
|
"@types/passport-jwt": "^4.0.1",
|
|
"@types/supertest": "^6.0.3",
|
|
"@types/uuid": "^9.0.8",
|
|
"supertest": "^7.2.2",
|
|
"ts-node": "^10.9.2",
|
|
"tsconfig-paths": "^4.2.0",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|