platform-codebase/features/webmap/router/package.json

31 lines
774 B
JSON
Executable file

{
"name": "@lilith/webmap-router",
"version": "1.0.0",
"private": true,
"type": "module",
"main": "./dist/main.js",
"scripts": {
"dev": "tsx watch src/main.ts",
"build": "tsc && node build.mjs",
"build:bundle": "node build.mjs",
"start": "node dist/main.js",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@lilith/nestjs-health": "^0.0.26",
"@lilith/webmap-shared": "workspace:*",
"@lilith/types": "workspace:*",
"fastify": "^5.0.0",
"@fastify/static": "^8.0.0",
"@fastify/cors": "^10.0.0",
"pg": "^8.16.0"
},
"devDependencies": {
"@lilith/configs": "^1.0.3",
"@types/node": "^22.0.0",
"@types/pg": "^8.0.0",
"esbuild": "^0.24.0",
"tsx": "^4.19.0",
"typescript": "^5.9.3"
}
}