-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 2.53 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
79
80
81
82
83
84
85
86
87
88
{
"name": "rems-administrator",
"version": "1.0.0",
"description": "A starter project emphasizing best practices for creating CDS Services",
"main": "main.js",
"author": "MITRE Corporation",
"private": true,
"contributors": [
"Patrick LaRocque <plarocque@mitre.org>"
],
"directories": {
"doc": "doc"
},
"scripts": {
"develop": "node dist/scripts/develop.js",
"start": "ts-node-dev --inspect=8091 src/scripts/serve.ts",
"test": "mocha",
"lint": "eslint \"**/*.{js,ts}\"",
"lint:fix": "eslint \"**/*.{js,ts}\" --quiet --fix",
"prettier": "prettier --check \"**/*.{js,ts}\"",
"prettier:fix": "prettier --write \"**/*.{js,ts}\""
},
"repository": {
"type": "git",
"url": "git+ssh://git@bitbucket.org/asymmetrik/carejourney-cds.git"
},
"dependencies": {
"@projecttacoma/node-fhir-server-core": "^2.2.8",
"@types/fhir": "^0.0.35",
"@types/glob": "^8.1.0",
"axios": "^1.2.1",
"body-parser": "^1.20.2",
"body-parser-xml": "^2.0.5",
"conventional-changelog-cli": "^2.0.34",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"env-var": "^7.3.1",
"express": "^4.17.1",
"fhirclient": "^2.5.2",
"fhirpath": "^3.2.0",
"glob": "^10.2.1",
"lodash": "^4.17.19",
"moment": "^2.24.0",
"moment-timezone": "^0.5.40",
"mongodb": "^4.12.1",
"mongoose": "7.3.3",
"morgan": "^1.9.1",
"uid": "^2.0.1",
"uuid": "^9.0.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.2.1"
},
"devDependencies": {
"@types/body-parser-xml": "^2.0.5",
"@types/chai": "^4.3.4",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/flat": "^5.0.5",
"@types/lodash": "^4.14.188",
"@types/mocha": "^10.0.1",
"@types/mongodb-memory-server": "2.3.0",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/node": "^18.11.9",
"@types/nodemon": "^1.19.2",
"@types/sinon": "10.0.13",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"axios-mock-adapter": "^1.21.2",
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^4.2.1",
"json-diff": "^0.9.0",
"mocha": "^10.2.0",
"mongodb-memory-server": "^8.12.1",
"nock": "^13.2.9",
"nodemon": "^2.0.20",
"prettier": "^2.0.5",
"sinon": "^15.0.3",
"ts-jest": "^27.1.2",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.3"
}
}