forked from bluehalo/node-fhir-server-mongo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.71 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
{
"name": "@asymmetrik/node-fhir-server-mongo",
"version": "2.0.0",
"description": "FHIR Facade Server implementing @asymmetrik/node-fhir-server-core",
"main": "src/index.js",
"repository": "https://github.com/Asymmetrik/node-fhir-server-mongo.git",
"contributors": [
"Robert Winterbottom <[email protected]>",
"Jon Lee <[email protected]>",
"Shane O'Neill <[email protected]>"
],
"license": "MIT",
"engines": {
"node": ">=10.13.0"
},
"scripts": {
"start": "node src/index.js",
"nodemon": "cross-env NODE_ENV=development; node scripts/nodemon;",
"test": "npm run test:lint;",
"test:lint": "eslint \"src/**/*.js\"",
"test:jest": "jest --forceExit",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect",
"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": {
"@asymmetrik/node-fhir-server-core": "^2.1.3",
"fast-json-patch": "^2.0.7",
"moment-timezone": "^0.5.14",
"mongo": "^0.1.0",
"object-hash": "^1.3.1",
"snyk": "^1.319.1",
"var": "^0.3.2"
},
"devDependencies": {
"cross-env": "^5.1.6",
"eslint": "^4.14.0",
"jest": "^24.0.0",
"nodemon": "^1.18.3",
"prettier": "^2.1.2"
},
"private": false,
"snyk": true
}