home-lab/backend/package.json

21 lines
410 B
JSON

{
"name": "backend",
"module": "index.ts",
"type": "module",
"scripts": {
"dev": "bun run --watch index.ts",
"start": "bun run index.ts"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@hono/zod-validator": "^0.2.0",
"hono": "^4.1.0",
"systeminformation": "^5.22.2",
"zod": "^3.22.4"
}
}