| { | |
| "name": "rag-document-analysis-backend", | |
| "version": "1.0.0", | |
| "description": "Backend for RAG-based document analysis system for disaster management training data", | |
| "main": "server.js", | |
| "type": "module", | |
| "scripts": { | |
| "start": "node server.js", | |
| "dev": "nodemon server.js" | |
| }, | |
| "keywords": [ | |
| "rag", | |
| "document-analysis", | |
| "disaster-management", | |
| "ai" | |
| ], | |
| "author": "JARVIS GGV", | |
| "license": "MIT", | |
| "dependencies": { | |
| "@google/generative-ai": "^0.24.1", | |
| "@huggingface/inference": "^4.13.5", | |
| "cloudinary": "^1.41.3", | |
| "cors": "^2.8.5", | |
| "csv-parser": "^3.0.0", | |
| "dotenv": "^16.3.1", | |
| "express": "^4.18.2", | |
| "mongoose": "^8.0.3", | |
| "multer": "^1.4.5-lts.1", | |
| "node-fetch": "^3.3.2", | |
| "openai": "^6.10.0", | |
| "pdf-parse": "^1.1.1", | |
| "pdfkit": "^0.14.0", | |
| "xlsx": "^0.18.5" | |
| }, | |
| "devDependencies": { | |
| "nodemon": "^3.0.2" | |
| } | |
| } | |