forked from susoDominguez/cds_hooks_manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.61 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": "cds_hooks_manager",
"version": "1.0.0",
"private": true,
"description": "A CDS Hooks middleware microservice to parse, analyse and transform EHR FHIR-based data in JSON format into new information to be made available to CDS services",
"exports": "./app.js",
"engines": {
"node": ">=14.16",
"npm": "~6.13.0"
},
"type": "module",
"bin": {
"www": "./bin/www.js"
},
"scripts": {
"start": "node ./bin/www",
"devstart": "nodemon ./bin/www",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/susoDominguez/cds_hooks_manager"
},
"dependencies": {
"array.prototype.flat": "^1.3.1",
"axios": "^1.4.0",
"cookie-parser": "~1.4.6",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^6.7.0",
"got": "^12.6.0",
"helmet": "^7.0.0",
"http-graceful-shutdown": "^3.1.13",
"json5": "^2.2.3",
"jsonata": "^1.8.6",
"moment": "^2.29.4",
"mongoose": "^7.1.1",
"morgan": "~1.10.0",
"redis": "^4.6.6",
"winston": "^3.8.2",
"winston-mongodb": "^5.1.1",
"xss-clean": "^0.1.1"
},
"keywords": [
"TMR",
"CDSS",
"DSS",
"COPD",
"clinical",
"guidelines"
],
"author": "Jesus Dominguez <jesus.dominguez@kcl.ac.uk>",
"license": "ISC",
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"nodemon": "^2.0.22"
},
"babel": {
"presets": [
"es2015"
],
"sourceMaps": true,
"retainLines": true
}
}