- Dockerfile + deploy.sh for Hetzner server - Email verification via Better Auth + Resend - Invite code flow (6-digit OTP, generate/join) - Settlement share percent fix (payer vs debtor) - OCR scanner fixes (date display, retry, viewfinder) - app.json icon/splash/adaptive-icon configured - iOS deployment target 15.5 (ML Kit requirement) - DB migration 0014: household_invitations table Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
31 lines
837 B
JSON
31 lines
837 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",
|
|
"test": "bun test ./src/__tests__"
|
|
},
|
|
"dependencies": {
|
|
"@haushaltsApp/auth": "workspace:*",
|
|
"@haushaltsApp/db": "workspace:*",
|
|
"@haushaltsApp/env": "workspace:*",
|
|
"@haushaltsApp/shared": "workspace:*",
|
|
"better-auth": "catalog:",
|
|
"dotenv": "catalog:",
|
|
"@hono/zod-validator": "^0.4.3",
|
|
"hono": "^4.8.2",
|
|
"zod": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@haushaltsApp/config": "workspace:*",
|
|
"@types/bun": "catalog:",
|
|
"tsdown": "^0.16.5",
|
|
"typescript": "^5"
|
|
}
|
|
}
|