Files
MyDIAPp/package.json
Alexander Zinn ce85dd1ead Enhance API routing and health check functionality
- Added ApiRouteTemplate as a base class for defining API routes
- Implemented HealthCheckApi for health check endpoint management
- Introduced IApiRoute interface for consistent route handling
- Updated UserApiRoute to align with new routing structure
- Added HealthCheck class for health status retrieval
- Improved dependency management with new types and interfaces
2025-11-10 22:12:41 -05:00

36 lines
837 B
JSON

{
"name": "myoopapp",
"author": "Alexander Zinn",
"module": "index.ts",
"devDependencies": {
"@eslint/js": "9.38.0",
"@eslint/json": "0.13.2",
"@eslint/markdown": "7.5.0",
"@types/bun": "latest",
"@types/express": "5.0.5",
"@types/morgan": "1.9.10",
"eslint": "9.38.0",
"globals": "16.4.0",
"jiti": "2.6.1",
"prettier": "3.6.2",
"typescript-eslint": "8.46.2"
},
"peerDependencies": {
"typescript": "5.9.3"
},
"private": true,
"scripts": {
"format": "prettier --write .",
"lint": "eslint --max-warnings 0 .",
"prelint:fix": "bun run format",
"lint:fix": "eslint --fix .",
"typecheck": "tsc --noEmit",
"test": "bun test",
"test:watch": "bun test --watch"
},
"type": "module",
"dependencies": {
"@techniker-me/tools": "2025.0.16"
}
}