Backend File Upload System: - Implemented comprehensive multer middleware with file validation - Created file storage service supporting local filesystem and S3 - Added upload progress tracking with real-time status updates - Built file cleanup utilities and error handling - Integrated with document routes for complete upload workflow Key Features: - PDF file validation (type, size, extension) - User-specific file storage directories - Unique filename generation with timestamps - Comprehensive error handling for all upload scenarios - Upload progress tracking with estimated time remaining - File storage statistics and cleanup utilities API Endpoints: - POST /api/documents - Upload and process documents - GET /api/documents/upload/:uploadId/progress - Track upload progress - Enhanced document CRUD operations with file management - Proper authentication and authorization checks Testing: - Comprehensive unit tests for upload middleware (7 tests) - File storage service tests (18 tests) - All existing tests still passing (117 backend + 25 frontend) - Total test coverage: 142 tests Dependencies Added: - multer for file upload handling - uuid for unique upload ID generation Ready for Task 7: Document Processing Pipeline
61 lines
1.7 KiB
JSON
61 lines
1.7 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 src/index.ts",
|
|
"build": "tsc",
|
|
"start": "node 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": {
|
|
"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",
|
|
"helmet": "^7.1.0",
|
|
"joi": "^17.11.0",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"morgan": "^1.10.0",
|
|
"multer": "^1.4.5-lts.1",
|
|
"pdf-parse": "^1.1.1",
|
|
"pg": "^8.11.3",
|
|
"puppeteer": "^21.5.2",
|
|
"redis": "^4.6.10",
|
|
"uuid": "^11.1.0",
|
|
"winston": "^3.11.0"
|
|
},
|
|
"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"
|
|
}
|
|
}
|