Files
cim_summary/backend/package.json
Jon dccfcfaa23 Fix download functionality and clean up temporary files
FIXED ISSUES:
1. Download functionality (404 errors):
   - Added PDF generation to jobQueueService after document processing
   - PDFs are now generated from summaries and stored in summary_pdf_path
   - Download endpoint now works correctly

2. Frontend-Backend communication:
   - Verified Vite proxy configuration is correct (/api -> localhost:5000)
   - Backend is responding to health checks
   - API authentication is working

3. Temporary files cleanup:
   - Removed 50+ temporary debug/test files from backend/
   - Cleaned up check-*.js, test-*.js, debug-*.js, fix-*.js files
   - Removed one-time processing scripts and debug utilities

TECHNICAL DETAILS:
- Modified jobQueueService.ts to generate PDFs using pdfGenerationService
- Added path import for file path handling
- PDFs are generated with timestamp in filename for uniqueness
- All temporary development files have been removed

STATUS: Download functionality should now work. Frontend-backend communication verified.
2025-07-28 21:33:28 -04:00

69 lines
2.0 KiB
JSON

{
"name": "cim-processor-backend",
"version": "1.0.0",
"description": "Backend API for CIM Document Processor",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only --max-old-space-size=8192 --expose-gc src/index.ts",
"build": "tsc",
"start": "node --max-old-space-size=8192 --expose-gc dist/index.js",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch --passWithNoTests",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"db:migrate": "ts-node src/scripts/setup-database.ts",
"db:seed": "ts-node src/models/seed.ts",
"db:setup": "npm run db:migrate"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.57.0",
"@langchain/openai": "^0.6.3",
"axios": "^1.11.0",
"bcrypt": "^6.0.0",
"bcryptjs": "^2.4.3",
"bull": "^4.12.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"express-validator": "^7.0.1",
"form-data": "^4.0.4",
"helmet": "^7.1.0",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"langchain": "^0.3.30",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"openai": "^5.10.2",
"pdf-parse": "^1.1.1",
"pg": "^8.11.3",
"puppeteer": "^21.11.0",
"redis": "^4.6.10",
"uuid": "^11.1.0",
"winston": "^3.11.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.8",
"@types/jsonwebtoken": "^9.0.5",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.11",
"@types/node": "^20.9.0",
"@types/pdf-parse": "^1.1.4",
"@types/pg": "^8.10.7",
"@types/supertest": "^2.0.16",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"jest": "^29.7.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
}
}