d4628eb9a1
- Remove dotenv dependency, implement lightweight Bun-native env loader - Replace Node.js fs/path with Bun file APIs (Bun.file, Bun.write) - Fix Planner task creation to use form's due date with proper UTC handling - Make table name, Planner assignee configurable via activeConfig and env vars - Remove all hardcoded test values for PROD readiness - Update NOTES.md with PROD mode checklist
20 lines
466 B
JSON
20 lines
466 B
JSON
{
|
|
"name": "job-creation-with-excel-sync",
|
|
"version": "1.0.0-beta3",
|
|
"description": "Unified job creation form with PocketBase and Excel sync",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "bun run server.ts",
|
|
"start": "bun run server.ts"
|
|
},
|
|
"dependencies": {
|
|
"@microsoft/microsoft-graph-client": "^3.0.7",
|
|
"hono": "^4.10.8",
|
|
"pocketbase": "^0.26.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest",
|
|
"@types/node": "latest"
|
|
}
|
|
}
|