-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.34 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 3.34 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "temporal-ocr-workflow",
"version": "1.0.0",
"description": "Temporal workflow for Azure OCR document processing using TypeScript",
"main": "dist/worker.js",
"scripts": {
"build": "npm run db:generate && npm run build:graph-insertion-slots && npm run build:graph-workflow && tsc",
"build:logging": "cd ../../packages/logging && npm run build",
"start": "node dist/worker.js",
"start:worker": "node dist/worker.js",
"dev": "ts-node-dev -r tsconfig-paths/register --respawn --transpile-only --rs --watch 'src/**/*.ts' --ignore-watch ../../packages src/worker.ts",
"type-check": "tsc --noEmit && npm run type-check:scripts",
"clean": "rm -rf dist",
"db:generate": "node ../shared/scripts/generate-prisma.js",
"lint": "npx @biomejs/biome check",
"lint:fix": "npm run lint -- --write",
"pretest": "npm run build:logging && npm run build:graph-insertion-slots && npm run build:graph-workflow",
"build:graph-workflow": "cd ../../packages/graph-workflow && npm run build",
"test": "jest --testPathIgnorePatterns experiment-",
"test:integration": "jest experiment-",
"build:graph-insertion-slots": "cd ../../packages/graph-insertion-slots && npm run build",
"type-check:scripts": "tsc --noEmit -p tsconfig.scripts.json"
},
"keywords": [
"temporal",
"workflow",
"ocr",
"azure",
"document-intelligence"
],
"author": "",
"license": "MIT",
"dependencies": {
"@ai-di/billing": "file:../../packages/billing",
"@ai-di/blob-storage-paths": "file:../../packages/blob-storage-paths",
"@ai-di/graph-insertion-slots": "file:../../packages/graph-insertion-slots",
"@ai-di/graph-workflow": "file:../../packages/graph-workflow",
"@ai-di/temporal-payload-codec": "file:../../packages/temporal-payload-codec",
"@ai-di/monitoring": "file:../../packages/monitoring",
"@ai-di/shared-logging": "file:../../packages/logging",
"@aws-sdk/client-s3": "3.1000.0",
"@azure-rest/ai-document-intelligence": "1.0.0",
"@azure/storage-blob": "12.31.0",
"@prisma/adapter-pg": "7.2.0",
"@prisma/client": "7.2.0",
"@temporalio/client": "1.10.0",
"@temporalio/worker": "1.10.0",
"@temporalio/workflow": "1.10.0",
"axios": "1.17.0",
"csv": "6.5.1",
"dictionary-en": "4.0.0",
"dotenv": "17.2.3",
"fast-xml-builder": "1.2.0",
"fast-xml-parser": "5.8.0",
"fast-xml-validator": "1.1.0",
"json-rules-engine": "4.0.0",
"mupdf": "1.27.0",
"nspell": "2.1.5",
"pdf-lib": "1.17.1",
"prom-client": "15.1.3",
"tesseract.js": "7.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.8",
"@temporalio/testing": "1.10.0",
"@types/axios-mock-adapter": "1.10.4",
"@types/jest": "29.5.12",
"@types/node": "20.10.0",
"axios-mock-adapter": "2.1.0",
"jest": "29.7.0",
"prisma": "7.2.0",
"ts-jest": "29.2.0",
"ts-node": "10.9.2",
"ts-node-dev": "2.0.0",
"tsconfig-paths": "4.2.0",
"typescript": "5.9.3"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/jest-teardown.ts"
],
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.test\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"testEnvironment": "node",
"moduleNameMapper": {
"^@generated/(.*)$": "<rootDir>/generated/$1"
}
}
}