-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "intelligent-document-processing-platform",
"version": "1.0.0",
"description": "Stage 1 Monorepo Architecture for Intelligent Document Processing Platform",
"scripts": {
"test": "node tests/health.test.js",
"test:integration": "node tests/integration.test.js",
"test:stage2": "node tests/stage2.test.js",
"test:stage3": "node tests/stage3.test.js",
"test:stage4": "node tests/stage4.test.js",
"test:stage5": "node tests/stage5.test.js",
"test:stage6": "node tests/stage6.test.js",
"test:stage7": "node tests/stage7.test.js",
"test:stage8": "node tests/stage8.test.js",
"test:stage9": "node tests/stage9.test.js",
"test:multi-format": "node tests/multi-format-ingestion.test.js",
"test:comparison": "node tests/extraction-engines-comparison.test.js",
"db:migrate": "node database/migrate.js",
"start": "node backend/src/server.js",
"start:backend": "cd backend && npm start",
"start:classifier": "cd ai-services/classifier && python main.py",
"start:extraction-mock": "cd teammate-services/extraction-mock && npm start",
"start:extraction-engine-3": "cd extraction_engine_3 && python run.py",
"start:structuring-mock": "cd teammate-services/structuring-mock && npm start",
"start:validation-mock": "cd teammate-services/validation-mock && npm start"
},
"dependencies": {
"cors": "^2.8.5",
"docx": "^9.7.1",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"multer": "^2.3.0",
"pdfkit": "^0.20.2",
"pg": "^8.12.0",
"redis": "^4.6.14",
"tesseract.js": "^7.0.0",
"uuid": "^14.0.2",
"xlsx": "^0.18.5"
}
}