Files
HausApp/apps/server/package.json
René Schober 4e34270786 initial commit
2026-03-13 06:23:06 +01:00

28 lines
717 B
JSON

{
"name": "server",
"type": "module",
"main": "src/index.ts",
"scripts": {
"build": "tsdown",
"check-types": "tsc -b",
"compile": "bun build --compile --minify --sourcemap --bytecode ./src/index.ts --outfile server",
"dev": "bun run --hot src/index.ts",
"start": "bun run dist/index.mjs"
},
"dependencies": {
"@haushaltsApp/auth": "workspace:*",
"@haushaltsApp/db": "workspace:*",
"@haushaltsApp/env": "workspace:*",
"better-auth": "catalog:",
"dotenv": "catalog:",
"hono": "^4.8.2",
"zod": "catalog:"
},
"devDependencies": {
"@haushaltsApp/config": "workspace:*",
"@types/bun": "catalog:",
"tsdown": "^0.16.5",
"typescript": "^5"
}
}