Initial production setup with dual-token auth

This commit is contained in:
2026-01-01 16:44:11 +00:00
commit 7c3d62d4a9
38 changed files with 6299 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
{
"name": "job-info-prod",
"version": "2.0.0",
"description": "Professional field management application with dual-token authentication",
"type": "module",
"scripts": {
"dev": "bun run --watch backend/src/index.ts",
"start": "bun run backend/src/index.ts",
"typecheck": "tsc --noEmit",
"test": "bun test"
},
"dependencies": {
"dotenv": "^17.2.3",
"hono": "^4.10.8",
"ioredis": "^5.3.2",
"pocketbase": "^0.26.5"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.3.3"
}
}