-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
56 lines (56 loc) · 1.65 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
{
"name": "@bluehalo/node-fhir-server-mongo",
"version": "2.1.0",
"description": "FHIR Facade Server implementing @bluehalo/node-fhir-server-core",
"main": "src/index.js",
"repository": "https://github.com/BlueHalo/node-fhir-server-mongo.git",
"contributors": [
"Robert Winterbottom <rwinterbottom@asymmetrik.com>",
"Jon Lee <jlee@asymmetrik.com>",
"Shane O'Neill <soneill@asymmetrik.com>"
],
"license": "MIT",
"engines": {
"node": ">=10.13.0"
},
"scripts": {
"start": "node src/index.js",
"nodemon": "cross-env NODE_ENV=development; node scripts/nodemon;",
"test": "yarn run test:lint",
"test:lint": "eslint \"src/**/*.js\"",
"test:jest": "jest --forceExit",
"prettier-check": "prettier --check \"**/*.{js,mjs,cjs,jsx,json,ts,tsx,md,mdx,css,html,yml,yaml,scss,less,graphql,graphqls,gql}\"",
"prettier-fix": "prettier --write \"**/*.{js,mjs,cjs,jsx,json,ts,tsx,md,mdx,css,html,yml,yaml,scss,less,graphql,graphqls,gql}\""
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"collectCoverage": false,
"coverageReporters": [
"text",
"lcov",
"json"
],
"coveragePathIgnorePatterns": [
"<rootDir>/src/testutils/"
]
},
"dependencies": {
"@bluehalo/node-fhir-server-core": "^2.3.0",
"fast-json-patch": "^3.1.1",
"moment-timezone": "^0.5.45",
"mongodb": "^6.8.1",
"object-hash": "^3.0.0",
"var": "^0.4.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^9.9",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.3"
},
"private": false
}