Initial commit: Family Planner application

Complete family planning application with:
- React frontend with TypeScript
- Node.js/Express backend with TypeScript
- Python ingestion service for document processing
- Planning ingestion service with LLM integration
- Shared UI components and type definitions
- OAuth integration for calendar synchronization
- Comprehensive documentation

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
philippe
2025-10-14 10:43:33 +02:00
commit fdd72c1135
239 changed files with 44160 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
{
"name": "planning-ingestion",
"version": "1.0.0",
"type": "module",
"description": "Planning ingestion service with OCR, PDF, Excel support and LLM normalization",
"main": "dist/server.js",
"bin": {
"planning": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "tsx watch src/server.ts",
"cli": "tsx src/cli.ts"
},
"dependencies": {
"express": "^4.19.0",
"multer": "^1.4.5-lts.2",
"better-sqlite3": "^9.4.0",
"tesseract.js": "^5.0.0",
"pdf-parse": "^1.1.1",
"xlsx": "^0.18.5",
"openai": "^4.28.0",
"@anthropic-ai/sdk": "^0.17.0",
"commander": "^11.1.0",
"zod": "^3.22.4",
"dotenv": "^16.4.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/multer": "^1.4.11",
"@types/better-sqlite3": "^7.6.9",
"@types/pdf-parse": "^1.1.4",
"@types/node": "^20.11.0",
"typescript": "^5.3.0",
"tsx": "^4.7.0"
}
}