forked from bluehalo/graphql-fhir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.47 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
{
"name": "graphql-fhir",
"version": "0.9.1",
"description": "A Javascript based GraphQL FHIR server",
"main": "index.js",
"author": "Robert-W <rwinterbottom@asymmetrik.com>>",
"license": "MIT",
"private": false,
"scripts": {
"start": "node src/index",
"nodemon": "node src/scripts/nodemon",
"test": "node src/scripts/test --env=jsdom",
"prettier": "prettier \"src/**/*.js\" --write",
"lint": "eslint \"src/**/*.js\""
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"dependencies": {
"@asymmetrik/fhir-gql-schema-utils": "^1.0.1",
"body-parser": "^1.18.3",
"compression": "^1.7.2",
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"glob": "^7.1.2",
"graphql": "^0.13.2",
"graphql-outfields": "^0.9.1",
"helmet": "^3.12.1",
"moment-timezone": "^0.5.21",
"nodemon": "^1.17.5",
"passport": "^0.4.0",
"passport-http-bearer": "^1.0.1",
"sanitize-html": "^1.18.2",
"superagent": "^3.8.3",
"validator": "^10.4.0",
"winston": "^3.0.0",
"xss": "^1.0.3"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.1.0",
"jest": "^23.2.0",
"prettier": "^1.15.3"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"coverageReporters": [
"text",
"lcov",
"json"
],
"testPathIgnorePatterns": [
"<rootDir>/src/scripts/"
],
"coveragePathIgnorePatterns": [
"<rootDir>/src/resources/"
]
}
}