Files
Minikura/apps/backend/package.json

42 lines
1.0 KiB
JSON
Raw Normal View History

2024-09-21 13:28:02 +07:00
{
2026-02-13 15:52:13 +07:00
"name": "@minikura/backend",
"module": "src/index.ts",
"type": "module",
"exports": "./src/index.ts",
"scripts": {
"dev": "tsx watch src/index.ts",
"dev:bun": "bun --watch src/index.ts",
"build": "tsc",
"start": "NODE_ENV=production node dist/index.js",
2026-02-13 15:52:13 +07:00
"test": "bun test",
"typecheck": "tsc --noEmit",
"lint": "biome lint .",
"format": "biome format --write ."
},
"devDependencies": {
"@types/bun": "^1.3.6",
"@types/node": "^25.0.9",
"tsx": "^4.19.2"
2026-02-13 15:52:13 +07:00
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@elysiajs/node": "^1.4.5",
2026-02-13 15:52:13 +07:00
"@kubernetes/client-node": "^1.4.0",
"@minikura/api": "workspace:*",
2026-02-13 15:52:13 +07:00
"@minikura/db": "workspace:*",
"@minikura/shared": "workspace:*",
2026-02-13 15:52:13 +07:00
"@types/ws": "^8.18.1",
"better-auth": "^1.4.13",
"elysia": "^1.4.22",
"pino": "^10.3.1",
"pino-http": "^11.0.0",
"pino-pretty": "^13.1.3",
2026-02-13 15:52:13 +07:00
"undici": "^7.18.2",
"ws": "^8.19.0",
"yaml": "^2.8.2",
"zod": "^4.3.5"
}
2024-09-21 13:28:02 +07:00
}