-
Notifications
You must be signed in to change notification settings - Fork 340
Expand file tree
/
Copy pathpackage.json
More file actions
241 lines (241 loc) · 12.2 KB
/
package.json
File metadata and controls
241 lines (241 loc) · 12.2 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
{
"name": "ottehr",
"version": "1.29.12",
"private": true,
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"build": "NODE_OPTIONS='--max-old-space-size=8192' turbo build lint",
"version": "npm version $npm_package_version --workspaces && git add package.json '**/package.json'",
"load-secrets": "tsx ./scripts/load-secrets.ts",
"lint": "npm run lint:eslint",
"lint:eslint": "turbo lint",
"lint:eslint:fix": "turbo lint:fix",
"lint:fix": "npm run lint:eslint:fix",
"intake:start": "turbo start --filter=intake-ui",
"intake:start:iac": "turbo start:iac --filter=intake-ui",
"intake:e2e:local": "tsx scripts/run-e2e.ts --app=intake",
"intake:e2e:local:ui": "tsx scripts/run-e2e.ts --app=intake --ui",
"intake:e2e:local:smoke": "SMOKE_TEST=true INTEGRATION_TEST=true tsx scripts/run-e2e.ts --app=intake",
"intake:e2e:local:smoke:ui": "SMOKE_TEST=true INTEGRATION_TEST=true tsx scripts/run-e2e.ts --app=intake --ui",
"intake:e2e:local:login": "tsx scripts/run-e2e.ts --app=intake --login-only",
"intake:e2e:local:specs": "tsx scripts/run-e2e.ts --app=intake --specs-only",
"intake:e2e:demo": "ENV=demo tsx scripts/run-e2e.ts --app=intake",
"intake:e2e:demo:ui": "ENV=demo tsx scripts/run-e2e.ts --app=intake --ui",
"intake:e2e:demo:smoke": "ENV=demo SMOKE_TEST=true INTEGRATION_TEST=true tsx scripts/run-e2e.ts --app=intake",
"intake:e2e:demo:login": "ENV=demo tsx scripts/run-e2e.ts --app=intake --login-only",
"intake:e2e:demo:specs": "ENV=demo tsx scripts/run-e2e.ts --app=intake --specs-only",
"intake:e2e:e2e": "ENV=e2e tsx scripts/run-e2e.ts --app=intake",
"intake:e2e:e2e:ui": "ENV=e2e tsx scripts/run-e2e.ts --app=intake --ui",
"intake:e2e:e2e:smoke": "ENV=e2e SMOKE_TEST=true INTEGRATION_TEST=true tsx scripts/run-e2e.ts --app=intake",
"intake:e2e:e2e:login": "ENV=e2e tsx scripts/run-e2e.ts --app=intake --login-only",
"intake:e2e:e2e:specs": "ENV=e2e tsx scripts/run-e2e.ts --app=intake --specs-only",
"intake:e2e:e2e2": "ENV=e2e2 tsx scripts/run-e2e.ts --app=intake",
"intake:e2e:e2e2:ui": "ENV=e2e2 tsx scripts/run-e2e.ts --app=intake --ui",
"intake:e2e:e2e2:smoke": "ENV=e2e2 SMOKE_TEST=true INTEGRATION_TEST=true tsx scripts/run-e2e.ts --app=intake",
"intake:e2e:e2e2:login": "ENV=e2e2 tsx scripts/run-e2e.ts --app=intake --login-only",
"intake:e2e:e2e2:specs": "ENV=e2e2 tsx scripts/run-e2e.ts --app=intake --specs-only",
"intake:e2e:e2e3": "ENV=e2e3 tsx scripts/run-e2e.ts --app=intake",
"intake:e2e:e2e3:ui": "ENV=e2e3 tsx scripts/run-e2e.ts --app=intake --ui",
"intake:e2e:e2e3:smoke": "ENV=e2e3 SMOKE_TEST=true INTEGRATION_TEST=true tsx scripts/run-e2e.ts --app=intake",
"intake:e2e:e2e3:login": "ENV=e2e3 tsx scripts/run-e2e.ts --app=intake --login-only",
"intake:e2e:e2e3:specs": "ENV=e2e3 tsx scripts/run-e2e.ts --app=intake --specs-only",
"intake:e2e:development": "ENV=development tsx scripts/run-e2e.ts --app=intake",
"intake:e2e:development:ui": "ENV=development tsx scripts/run-e2e.ts --app=intake --ui",
"intake:e2e:development:login": "ENV=development tsx scripts/run-e2e.ts --app=intake --login-only",
"intake:e2e:development:specs": "ENV=development tsx scripts/run-e2e.ts --app=intake --specs-only",
"intake:e2e:testing": "ENV=testing tsx scripts/run-e2e.ts --app=intake",
"intake:e2e:testing:ui": "ENV=testing tsx scripts/run-e2e.ts --app=intake --ui",
"intake:e2e:testing:smoke": "ENV=testing SMOKE_TEST=true INTEGRATION_TEST=true tsx scripts/run-e2e.ts --app=intake",
"intake:e2e:testing:login": "ENV=testing tsx scripts/run-e2e.ts --app=intake --login-only",
"intake:e2e:testing:specs": "ENV=testing tsx scripts/run-e2e.ts --app=intake --specs-only",
"intake:e2e:staging": "ENV=staging tsx scripts/run-e2e.ts --app=intake",
"intake:e2e:staging:ui": "ENV=staging tsx scripts/run-e2e.ts --app=intake --ui",
"intake:e2e:staging:smoke": "ENV=staging SMOKE_TEST=true INTEGRATION_TEST=true tsx scripts/run-e2e.ts --app=intake",
"intake:e2e:staging:login": "ENV=staging tsx scripts/run-e2e.ts --app=intake --login-only",
"intake:e2e:staging:specs": "ENV=staging tsx scripts/run-e2e.ts --app=intake --specs-only",
"intake:build": "turbo build --filter=intake-ui",
"intake:lint": "turbo lint --filter=intake-ui...",
"intake:start:ui": "turbo start --filter=intake-ui",
"ehr:start": "turbo start --filter=ehr-ui",
"ehr:start:iac": "turbo start:iac --filter=ehr-ui",
"ehr:e2e:e2e": "ENV=e2e tsx scripts/run-e2e.ts --app=ehr",
"ehr:e2e:e2e:integration": "ENV=e2e INTEGRATION_TEST=true tsx scripts/run-e2e.ts --app=ehr",
"ehr:e2e:e2e:ui": "ENV=e2e tsx scripts/run-e2e.ts --app=ehr --ui",
"ehr:e2e:e2e:integration:ui": "ENV=e2e INTEGRATION_TEST=true tsx scripts/run-e2e.ts --app=ehr --ui",
"ehr:e2e:e2e2": "ENV=e2e2 tsx scripts/run-e2e.ts --app=ehr",
"ehr:e2e:e2e2:integration": "ENV=e2e2 INTEGRATION_TEST=true tsx scripts/run-e2e.ts --app=ehr",
"ehr:e2e:e2e2:ui": "ENV=e2e2 tsx scripts/run-e2e.ts --app=ehr --ui",
"ehr:e2e:e2e2:integration:ui": "ENV=e2e2 INTEGRATION_TEST=true tsx scripts/run-e2e.ts --app=ehr --ui",
"ehr:e2e:e2e3": "ENV=e2e3 tsx scripts/run-e2e.ts --app=ehr",
"ehr:e2e:e2e3:integration": "ENV=e2e3 INTEGRATION_TEST=true tsx scripts/run-e2e.ts --app=ehr",
"ehr:e2e:e2e3:ui": "ENV=e2e3 tsx scripts/run-e2e.ts --app=ehr --ui",
"ehr:e2e:e2e3:integration:ui": "ENV=e2e3 INTEGRATION_TEST=true tsx scripts/run-e2e.ts --app=ehr --ui",
"ehr:e2e:local": "tsx scripts/run-e2e.ts --app=ehr",
"ehr:e2e:local:integration": "INTEGRATION_TEST=true tsx scripts/run-e2e.ts --app=ehr",
"ehr:e2e:local:ui": "tsx scripts/run-e2e.ts --app=ehr --ui",
"ehr:e2e:local:smoke": "SMOKE_TEST=true INTEGRATION_TEST=true tsx scripts/run-e2e.ts --app=ehr",
"ehr:e2e:local:smoke:ui": "SMOKE_TEST=true INTEGRATION_TEST=true tsx scripts/run-e2e.ts --app=ehr --ui",
"ehr:e2e:local:integration:ui": "INTEGRATION_TEST=true tsx scripts/run-e2e.ts --app=ehr --ui",
"ehr:e2e:demo": "ENV=demo tsx scripts/run-e2e.ts --app=ehr",
"ehr:e2e:demo:ui": "ENV=demo tsx scripts/run-e2e.ts --app=ehr --ui",
"ehr:e2e:demo:smoke": "ENV=demo SMOKE_TEST=true INTEGRATION_TEST=true tsx scripts/run-e2e.ts --app=ehr",
"ehr:e2e:development": "ENV=development tsx scripts/run-e2e.ts --app=ehr",
"ehr:e2e:development:ui": "ENV=development tsx scripts/run-e2e.ts --app=ehr --ui",
"ehr:e2e:testing": "ENV=testing tsx scripts/run-e2e.ts --app=ehr",
"ehr:e2e:testing:ui": "ENV=testing tsx scripts/run-e2e.ts --app=ehr --ui",
"ehr:e2e:testing:smoke": "ENV=testing SMOKE_TEST=true INTEGRATION_TEST=true tsx scripts/run-e2e.ts --app=ehr",
"ehr:e2e:staging": "ENV=staging tsx scripts/run-e2e.ts --app=ehr",
"ehr:e2e:staging:ui": "ENV=staging tsx scripts/run-e2e.ts --app=ehr --ui",
"ehr:e2e:staging:smoke": "ENV=staging SMOKE_TEST=true INTEGRATION_TEST=true tsx scripts/run-e2e.ts --app=ehr",
"ehr:generate-seed-data": "tsx scripts/run-e2e.ts --app=ehr --generate-seed-data",
"ehr:build": "turbo build --filter=ehr-ui",
"ehr:lint": "turbo lint --filter=ehr-ui...",
"ehr:start:ui": "turbo start --filter=ehr-ui",
"zambdas:start": "turbo start --filter=zambdas",
"zambdas:start:iac": "turbo start:iac --filter=zambdas",
"apps:start": "npm run apps:start:iac",
"apps:start:iac": "npm run apply-local --workspace deploy && turbo start:iac --filter=intake-ui --filter=ehr-ui --filter=zambdas",
"apps:start:e2e:iac": "npm run apply-e2e --workspace deploy && ENV=e2e turbo start:iac --filter=intake-ui --filter=ehr-ui --filter=zambdas",
"apps:start:no-apply": "turbo start:iac --filter=intake-ui --filter=ehr-ui --filter=zambdas",
"apps:start:labcorp": "ENV=labcorp-local turbo start --filter=intake-ui --filter=ehr-ui --filter=zambdas",
"test": "turbo test",
"prepare": "husky",
"spellcheck": "cspell .",
"merge-payer-addresses": "tsx scripts/merge-payer-addresses.ts config/payers.json scripts/data/payers-addresses.csv config/payers-with-addresses.json scripts/data/payers-addresses-unmatched.csv",
"bump-canonical-version": "tsx scripts/config/bump-canonical-version.ts"
},
"workspaces": [
"packages/**/*",
"apps/*",
"deploy"
],
"dependencies": {
"@auth0/auth0-react": "^2.2.4",
"@aws-sdk/client-cloudfront": "^3.716.0",
"@aws-sdk/client-s3": "^3.272.0",
"@aws-sdk/credential-providers": "^3.716.0",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@hookform/resolvers": "^2.9.10",
"@inquirer/prompts": "^7.2.4",
"@langchain/anthropic": "^0.3.32",
"@langchain/core": "^0.3.78",
"@langchain/langgraph": "^0.2.56",
"@mui/lab": "^5.0.0-alpha.115",
"@mui/material": "^5.14.18",
"@mui/system": "^5.10.16",
"@mui/x-date-pickers": "^6.18.6",
"@oystehr/sdk": "^4.2.6",
"@pdf-lib/fontkit": "^1.1.1",
"@sendgrid/mail": "^8.1.6",
"@sentry/aws-serverless": "^8.26.0",
"@sentry/react": "^7.80.1",
"@tanstack/react-query": "^5.83.0",
"@tiptap/extension-placeholder": "^3.14.0",
"@tiptap/extension-task-item": "^3.14.0",
"@tiptap/extension-task-list": "^3.14.0",
"@tiptap/react": "^3.14.0",
"@tiptap/starter-kit": "^3.14.0",
"@twilio/conversations": "^2.4.1",
"@types/inquirer": "^9.0.7",
"browser-image-compression": "^2.0.2",
"browserslist-to-esbuild": "^1.2.0",
"candidhealth": "1.20.2",
"fast-json-patch": "^3.1.1",
"fhirpath": "^4.8.2",
"i18next": "^23.10.1",
"i18next-browser-languagedetector": "^7.0.1",
"jose": "^5.2.2",
"jsonpath-plus": "^10.2.0",
"luxon": "^3.1.1",
"mixpanel-browser": "^2.45.0",
"object.hasown": "^1.1.4",
"pdf-lib": "^1.17.1",
"phone": "^3.1.59",
"query-string": "^7.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^2.0.5",
"react-hook-form": "7.64.0",
"react-i18next": "^12.2.0",
"react-imask": "^7.6.1",
"react-markdown": "^9.0.0",
"react-router-dom": "^6.3.0",
"react-window": "^1.8.10",
"short-uuid": "^4.2.2",
"twilio": "^5.10.0",
"uuid": "^11.0.3",
"wait-on": "^9.0.3",
"yup": "^1.0.0",
"zod": "^3.25.67",
"zod-validation-error": "^3.5.2",
"zustand": "^4.4.6"
},
"devDependencies": {
"@hookform/devtools": "^4.3.1",
"@json2csv/plainjs": "^7.0.6",
"@playwright/test": "^1.57.0",
"@sentry/cli": "^2.27.0",
"@sentry/vite-plugin": "^2.10.2",
"@tanstack/eslint-plugin-query": "^5.81.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/aws-lambda": "^8.10.109",
"@types/fhir": "^0.0.41",
"@types/jest": "^27.5.2",
"@types/luxon": "^3.1.0",
"@types/mixpanel-browser": "^2.38.1",
"@types/node": "^18.11.18",
"@types/node-fetch": "^2.6.2",
"@types/parquetjs": "^0.10.6",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-window": "^1.8.8",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^3.2.4",
"aws-cdk": "2.1006.0",
"aws-cdk-lib": "2.198.0",
"aws-lambda": "^1.0.7",
"c8": "^10.1.3",
"constructs": "^10.0.0",
"cross-env": "^7.0.3",
"cspell": "^9.0.2",
"env-cmd": "^10.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"execa": "^9.6.0",
"happy-dom": "^20.0.11",
"husky": "^9.0.11",
"jest": "^29.6.2",
"lint-staged": "^15.0.2",
"msw": "^2.10.2",
"parquetjs": "^0.11.2",
"prettier": "^3.0.0",
"simple-zustand-devtools": "^1.1.0",
"start-server-and-test": "^2.0.12",
"tsx": "^4.19.2",
"turbo": "^1.10.16",
"typescript": "5.8.3",
"vite": "^6.3.5",
"vite-plugin-node-polyfills": "^0.23.0",
"vite-plugin-static-copy": "^2.3.0",
"vite-plugin-svgr": "^4.2.0",
"vite-plugin-terminal": "^1.3.0",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^3.2.4",
"web-vitals": "^2.1.4"
},
"optionalDependencies": {
"@esbuild/linux-x64": "^0.25.10",
"@rollup/rollup-linux-x64-gnu": "4.24.0"
}
}