Files
Minikura/apps/backend/package.json
T

43 lines
1.1 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": {
2026-02-17 18:12:02 +07:00
"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": {
2026-08-13 01:57:43 +07:00
"@types/bun": "^1.3.14",
"@types/node": "^26.2.0",
"tsx": "^4.23.12"
2026-02-13 15:52:13 +07:00
},
"peerDependencies": {
2026-08-13 01:57:43 +07:00
"typescript": "^7.0.2"
2026-02-13 15:52:13 +07:00
},
"dependencies": {
2026-08-13 17:37:18 +07:00
"@aws-sdk/client-s3": "^3.1109.0",
2026-02-17 18:12:02 +07:00
"@elysiajs/node": "^1.4.5",
2026-02-13 15:52:13 +07:00
"@kubernetes/client-node": "^1.4.0",
2026-02-17 18:12:02 +07:00
"@minikura/api": "workspace:*",
2026-02-13 15:52:13 +07:00
"@minikura/db": "workspace:*",
2026-02-17 18:12:02 +07:00
"@minikura/shared": "workspace:*",
2026-02-13 15:52:13 +07:00
"@types/ws": "^8.18.1",
2026-08-13 01:57:43 +07:00
"better-auth": "^1.6.27",
"elysia": "^1.4.29",
2026-02-17 18:12:02 +07:00
"pino": "^10.3.1",
"pino-http": "^11.0.0",
"pino-pretty": "^13.1.3",
2026-08-13 01:57:43 +07:00
"undici": "^8.10.0",
"ws": "^8.21.3",
"yaml": "^2.9.0",
"zod": "^4.4.3"
2026-02-13 15:52:13 +07:00
}
2024-09-21 13:28:02 +07:00
}