Files
cim_summary/package.json

45 lines
1.3 KiB
JSON

{
"name": "cim-document-processor",
"version": "1.0.0",
"description": "CIM Document Processor - AI-powered document analysis and review system",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"build": "npm run build:backend && npm run build:frontend",
"build:backend": "cd backend && npm run build",
"build:frontend": "cd frontend && npm run build",
"test": "npm run test:backend && npm run test:frontend",
"test:backend": "cd backend && npm test",
"test:frontend": "cd frontend && npm test",
"install:all": "npm install && cd backend && npm install && cd ../frontend && npm install",
"setup": "npm run install:all && cd backend && npm run db:migrate",
"start": "npm run start:backend",
"start:backend": "cd backend && npm start",
"start:frontend": "cd frontend && npm start"
},
"keywords": [
"cim",
"document",
"processor",
"ai",
"analysis",
"review",
"investment",
"banking"
],
"author": "CIM Document Processor Team",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"dependencies": {
"axios": "^1.11.0"
}
}