-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2 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
{
"name": "mcode-shim",
"version": "0.1.1",
"description": "FHIR Facade Server implementing @asymmetrik/node-fhir-server-core",
"main": "src/index.js",
"contributors": [],
"license": "MIT",
"engines": {
"node": ">=8.6"
},
"scripts": {
"check": "NODE_TLS_REJECT_UNAUTHORIZED=0 NODE_ENV=test npm run lint && npm run prettier && npm test",
"start": "cross-env NODE_ENV=extraction node src/index.js;",
"start:auth": "node src/authServer.js;",
"start:debug": "node debug src/index.js;",
"lint": "eslint \"**/*.js\"",
"lint:fix": "eslint \"**/*.js\" --fix",
"nodemon": "cross-env NODE_ENV=extraction nodemon src/index.js",
"nodemon:auth": "nodemon src/authServer.js",
"prettier": "prettier --check \"**/*.js\"",
"prettier:fix": "prettier --write \"**/*.js\"",
"test": "jest --detectOpenHandles"
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"collectCoverage": false,
"coverageReporters": [
"text",
"lcov",
"json"
],
"coveragePathIgnorePatterns": [
"<rootDir>/src/testutils/"
]
},
"dependencies": {
"@asymmetrik/node-fhir-server-core": "^2.2.3",
"body-parser": "^1.19.0",
"config": "^3.3.6",
"cors": "^2.8.5",
"express": "^4.17.1",
"fhir-mapper": "^2.0.0",
"fhir.js": "git+https://github.com/FHIR/fhir.js.git",
"fhirpath": "0.10.1",
"mcode-extraction-framework": "git+https://github.com/mcode/mcode-extraction-framework.git#develop",
"moment-timezone": "^0.5.14",
"passport-http-bearer": "^1.0.1",
"request": "^2.88.2",
"superagent": "^6.1.0",
"underscore": "^1.13.1",
"var": "^0.3.2"
},
"devDependencies": {
"cross-env": "^5.1.6",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"jest": "^23.5.0",
"nock": "10.0.6",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"rewire": "4.0.1",
"supertest": "3.3.0"
},
"private": false
}