forked from metriport/metriport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·108 lines (108 loc) · 3.81 KB
/
package.json
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
{
"name": "api",
"version": "1.22.8",
"description": "",
"main": "app.js",
"private": true,
"scripts": {
"clean": "rimraf dist",
"deepclean": "npm run clean && rimraf node_modules",
"dev": "NODE_EXTRA_CA_CERTS=opensearch-root-ca.pem ts-node-dev --transpile-only --respawn --inspect=0.0.0.0:9229 --project tsconfig.dev.json --files src/app.ts",
"start": "node dist/app.js",
"start-opensearch": "docker compose -f docker-compose-opensearch.yml -p opensearch up -d && docker cp opensearch-node1:/usr/share/opensearch/config/root-ca.pem ./opensearch-root-ca.pem",
"start-docker-compose": "docker compose -f docker-compose.dev.yml up --build -d && npm run start-opensearch",
"start-dependencies": "docker compose -f docker-compose.dev.yml up postgres dynamodb -d && npm run start-opensearch",
"build": "tsc -p tsconfig.build.json",
"build:cloud": "tsc -p tsconfig.cloud.json",
"typecheck": "tsc --noEmit",
"lint": "npx eslint . --ext .ts",
"lint-fix": "npm run lint --fix",
"prettier-fix": "npx prettier '**/*.ts' --write",
"test": "jest --runInBand",
"test:e2e": "E2E=true jest --runInBand --forceExit",
"db-local": "ts-node src/sequelize/cli",
"db-local:up": "npm run db-local -- up"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-cloudwatch": "^3.338.0",
"@medplum/core": "^2.2.10",
"@metriport/api-sdk": "file:packages/api-sdk",
"@metriport/carequality-sdk": "file:packages/carequality-sdk",
"@metriport/commonwell-sdk": "file:packages/commonwell-sdk",
"@metriport/core": "file:packages/core",
"@metriport/ihe-gateway-sdk": "file:packages/ihe-gateway-sdk",
"@metriport/shared": "file:packages/shared",
"@opensearch-project/opensearch": "^2.3.1",
"@propelauth/express": "^2.1.19",
"@sentry/node": "^7.45.0",
"@sentry/tracing": "^7.45.0",
"ajv": "^8.12.0",
"aws-sdk": "^2.1243.0",
"axios": "^1.4.0",
"base64url": "^3.0.1",
"convert-units": "^2.3.4",
"cors": "^2.8.5",
"dayjs": "^1.11.9",
"dotenv": "^16.0.3",
"express": "^4.19.2",
"express-http-proxy": "^1.6.3",
"express-promise-router": "^4.1.1",
"helmet": "^6.0.1",
"http-status": "^1.7.0",
"jaro-winkler": "^0.2.8",
"json-stringify-safe": "^5.0.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mime-types": "^2.1.35",
"multer": "^1.4.5-lts.1",
"nanoid": "^3.3.4",
"oauth-signature": "^1.5.0",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"posthog-node": "^3.3.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.31.0",
"simple-oauth2": "^5.0.0",
"ts-essentials": "^9.3.0",
"umzug": "^3.2.1",
"uuid": "^8.3.2",
"zod": "^3.22.1"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@medplum/fhirtypes": "^2.2.10",
"@ngrok/ngrok": "^1.2.0",
"@tsconfig/node18": "^1.0.1",
"@types/convert-units": "^2.3.5",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/express-http-proxy": "^1.6.3",
"@types/jaro-winkler": "^0.2.2",
"@types/jest": "^29.5.1",
"@types/json-stringify-safe": "^5.0.0",
"@types/jsonwebtoken": "^8.5.9",
"@types/lodash": "^4.14.191",
"@types/mime-types": "^2.1.1",
"@types/multer": "^1.4.7",
"@types/node": "^18.11.12",
"@types/oauth-signature": "^1.5.0",
"@types/sequelize": "^4.28.14",
"@types/simple-oauth2": "^4.1.1",
"@types/uuid": "^8.3.4",
"@types/validator": "^13.7.10",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"jest": "^29.5.0",
"jest-extended": "^4.0.2",
"prettier": "^2.8.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
}
}