platform-codebase/features/platform-admin/backend-api/package.json
Lilith e0ba82e73b Add platform-admin backend API scaffold
NestJS backend for admin panel:
- Products module (CRUD for shop products)
- Project configuration (nest-cli, tsconfig, package.json)

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-02 07:41:19 -08:00

34 lines
942 B
JSON

{
"name": "@lilith/platform-admin-backend",
"version": "0.1.0",
"description": "Platform admin backend API - proxies to feature services",
"private": true,
"type": "module",
"scripts": {
"build": "nest build",
"dev": "nest start --watch",
"start": "node dist/main.js",
"start:debug": "nest start --debug --watch",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@nestjs/axios": "^3.1.3",
"@nestjs/common": "^10.4.15",
"@nestjs/config": "^3.3.0",
"@nestjs/core": "^10.4.15",
"@nestjs/platform-express": "^10.4.15",
"@nestjs/swagger": "^8.1.0",
"axios": "^1.7.9",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@nestjs/cli": "^10.4.9",
"@types/express": "^5.0.0",
"@types/node": "^22.10.2",
"typescript": "^5.7.2"
}
}