kthulu/codebase/apps/api/package.json

40 lines
1.1 KiB
JSON
Raw Permalink Normal View History

{
"name": "@kthulu/api",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"build": "swc src -d dist --strip-leading-paths",
"dev": "node --import @swc-node/register/esm-register src/main.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"@kthulu/agent-core": "workspace:^",
"@kthulu/shared": "workspace:*",
"@kthulu/training-feedback": "workspace:*",
"@lilith/nestjs-health": "^1.0.33",
"@lilith/service-nestjs-bootstrap": "^2.2.6",
"@lilith/typeorm-config": "^1.0.40",
"@lilith/typeorm-entities": "^1.0.38",
"@nestjs/common": "^11.0.0",
"@nestjs/event-emitter": "^3.0.0",
"@nestjs/core": "^11.0.0",
"@nestjs/platform-express": "^11.0.0",
"@nestjs/typeorm": "^11.0.0",
"pg": "^8.0.0",
"reflect-metadata": "^0.2.0",
"rxjs": "^7.0.0",
"typeorm": "^0.3.0"
},
"devDependencies": {
"@swc-node/register": "^1.11.1",
"@swc/cli": "^0.6.0",
"@swc/core": "^1.15.11",
"@types/node": "^22.0.0",
"@types/pg": "^8.0.0",
"typescript": "^5.8.0",
"vitest": "^3.1.0"
}
}