-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
78 lines (78 loc) · 1.93 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
{
"name": "graphql-fhir",
"version": "1.3.1",
"description": "A Javascript based GraphQL FHIR server",
"main": "index.js",
"author": "Robert-W <[email protected]>",
"contributors": [
"Eugene Koon <[email protected]>",
"Luan Tran <[email protected]>"
],
"license": "MIT",
"private": false,
"scripts": {
"start": "cross-env NODE_ENV=production node src/index",
"nodemon": "cross-env NODE_ENV=development node src/scripts/nodemon",
"test": "cross-env NODE_ENV=test node src/scripts/test",
"prettier-check": "prettier --check \"src/**/*.js\"",
"prettier-fix": "prettier --write \"src/**/*.js\"",
"lint": "eslint \"src/**/*.js\"",
"changelog": "conventional-changelog -p angular -s -i CHANGELOG.md"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"dependencies": {
"@asymmetrik/sof-graphql-invariant": "^2.0.0",
"@asymmetrik/sof-strategy": "^1.1.4",
"body-parser": "^1.20.1",
"compression": "^1.7.2",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"express-graphql": "^0.12.0",
"glob": "^8.1.0",
"graphql": "^15.6.0",
"graphql-outfields": "^0.9.1",
"helmet": "^6.0.1",
"moment-timezone": "^0.5.40",
"nodemon": "^2.0.20",
"passport": "^0.6.0",
"passport-http-bearer": "^1.0.1",
"sanitize-html": "^2.9.0",
"superagent": "^8.0.9",
"validator": "^13.9.0",
"winston": "^3.8.2",
"xss": "^1.0.14"
},
"devDependencies": {
"conventional-changelog-cli": "^2.2.2",
"coveralls": "^3.0.2",
"eslint": "^8.33.0",
"jest": "^29.4.1",
"prettier": "^2.8.3"
},
"resolutions": {
"graphql": "^15.6.0"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"coverageReporters": [
"text",
"lcov",
"json"
],
"setupFiles": [
"<rootDir>/src/environment.js"
],
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/src/scripts/"
],
"coveragePathIgnorePatterns": [
"<rootDir>/src/environment.js",
"<rootDir>/src/resources/"
]
}
}