home-lab/backend/package.json

23 lines
471 B
JSON
Raw Normal View History

2024-03-15 09:05:49 +07:00
{
"name": "backend",
"module": "index.ts",
"type": "module",
"scripts": {
2024-03-15 09:31:14 +07:00
"dev": "bun run --watch index.ts",
"start": "bun run index.ts"
2024-03-15 09:05:49 +07:00
},
"devDependencies": {
2024-03-16 07:52:42 +07:00
"@types/bun": "latest",
"@types/jsonwebtoken": "^9.0.6"
2024-03-15 09:05:49 +07:00
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@hono/zod-validator": "^0.2.0",
"hono": "^4.1.0",
2024-03-16 07:52:42 +07:00
"nanoid": "^5.0.6",
2024-03-15 09:05:49 +07:00
"systeminformation": "^5.22.2",
"zod": "^3.22.4"
}
}