platform-codebase/features/webmap/api/package.json
Lilith 0c60c4ac96 ♻️ Update dependencies for new package structure
Update all package.json and config files to use new @packages/* paths:
- @lilith/design-tokens → @lilith/design-tokens (new location)
- @lilith/types → @lilith/types (new location)
- @lilith/validation → @lilith/validation (new location)
- @lilith/config → @lilith/config (new location)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-30 21:14:13 -08:00

51 lines
1.5 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/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/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",
"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/node": "^22.0.0",
"@types/passport-jwt": "^4.0.0",
"typescript": "^5.9.3"
}
}