-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.62 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.62 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
{
"name": "cloud-health-office-generator",
"version": "1.0.0",
"description": "TypeScript-based automation system for generating multi-tenant SaaS EDI workflows from payer configurations",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build:site": "node site/js/markdown-converter.js",
"inject:metrics": "node scripts/inject-test-metrics.js",
"validate:site": "node site/js/validate-accessibility.js",
"generate": "node dist/scripts/cli/payer-generator-cli.js",
"generate-pdf": "./scripts/generate-whitepaper-pdf.sh",
"test": "jest",
"test:fhir": "jest --testPathPattern=fhir",
"test:p2p": "jest --testPathPattern=payer-to-payer",
"examples:fhir": "npm run build && node dist/src/fhir/examples.js",
"examples:fhir:secure": "npm run build && node dist/src/fhir/secureExamples.js",
"examples:provider-access": "npm run build && node dist/src/fhir/provider-access-examples.js",
"validate": "node dist/scripts/utils/validate-all-templates.js",
"lint": "eslint 'scripts/**/*.ts'",
"clean": "rm -rf dist",
"prepare": "husky install"
},
"keywords": [
"healthcare",
"edi",
"saas",
"multi-tenant",
"hipaa",
"argo-workflows",
"azure",
"aks",
"generator",
"automation",
"x12"
],
"author": "Aurelianware",
"license": "BUSL-1.1",
"dependencies": {
"@azure/identity": "^4.13.1",
"@azure/openai": "^2.0.0",
"@azure/service-bus": "^7.9.5",
"@azure/storage-blob": "^12.31.0",
"ajv": "^8.18.0",
"ajv-formats": "^2.1.1",
"chalk": "^5.3.0",
"commander": "^11.0.0",
"handlebars": "^4.7.9",
"inquirer": "^9.2.0",
"marked": "^11.2.0",
"openai": "^6.33.0",
"ora": "^7.0.0"
},
"devDependencies": {
"@apidevtools/swagger-parser": "^10.1.1",
"@types/fhir": "^0.0.41",
"@types/handlebars": "^4.1.0",
"@types/inquirer": "^9.0.0",
"@types/jest": "^29.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.19.39",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.57.1",
"eslint": "^9.39.4",
"husky": "^8.0.3",
"jest": "^29.0.0",
"js-yaml": "^4.1.1",
"markdownlint-cli": "^0.48.0",
"ts-jest": "^29.4.9",
"typescript": "^5.0.0"
},
"overrides": {
"lodash": "^4.17.21",
"lodash.merge": "^4.6.2",
"lodash.includes": "^4.3.0",
"lodash.isboolean": "^3.0.3",
"lodash.isinteger": "^4.0.4",
"lodash.isnumber": "^3.0.3",
"lodash.isplainobject": "^4.0.6",
"lodash.isstring": "^4.0.1",
"lodash.once": "^4.1.1",
"ajv": "^8.18.0",
"minimatch": "^10.2.1",
"test-exclude": "^7.0.1"
}
}