platform-codebase/features/webmap/backend-api/package.json

59 lines
1.8 KiB
JSON

{
"name": "@lilith/webmap-api",
"version": "1.0.0",
"private": true,
"type": "module",
"main": "./dist/main.js",
"scripts": {
"dev": "nest start --watch",
"build": "nest build",
"start": "node dist/main.js",
"start:prod": "node dist/main",
"type-check": "tsc --noEmit",
"migration:run": "typeorm migration:run -d dist/data-source.js",
"migration:generate": "typeorm migration:generate -d dist/data-source.js"
},
"dependencies": {
"@lilith/nestjs-health": "^0.0.25",
"@lilith/configs": "^1.0.3",
"@lilith/nestjs-auth": "^0.0.6",
"@lilith/service-nestjs-bootstrap": "^1.1.0",
"@lilith/typeorm-config": "^1.0.6",
"@lilith/types": "workspace:*",
"@lilith/validation": "workspace:*",
"@lilith/webmap-shared": "workspace:*",
"@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.0",
"@nestjs/throttler": "^6.5.0",
"@nestjs/typeorm": "^11.0.0",
"bcrypt": "^6.0.0",
"cache-manager": "^7.2.7",
"class-transformer": "^0.5.0",
"class-validator": "^0.14.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.3.1",
"helmet": "^8.1.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"pg": "^8.16.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.2",
"typeorm": "^0.3.27"
},
"devDependencies": {
"@nestjs/cli": "^11.0.14",
"@nestjs/schematics": "^11.0.9",
"@nestjs/testing": "^11.1.11",
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.6",
"@types/node": "^22.0.0",
"@types/passport-jwt": "^4.0.0",
"typescript": "^5.9.3"
}
}