-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1.41 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
{
"name": "cql-exec-service",
"version": "3.2.0",
"description": "A RESTful CQL execution service",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git@github.com:AHRQ-CDS/AHRQ-CDS-Connect-CQL-SERVICES.git"
},
"scripts": {
"start": "node ./bin/www",
"debug": "node --nolazy --inspect-brk=9229 ./bin/www",
"test": "NODE_ENV=test ./node_modules/.bin/mocha --reporter spec --recursive",
"test:watch": "NODE_ENV=test npm test -- --watch",
"test:debug": "NODE_ENV=test ./node_modules/.bin/mocha --inspect --debug-brk --reporter spec --recursive",
"lint": "./node_modules/.bin/eslint .",
"lint:fix": "./node_modules/.bin/eslint . --fix"
},
"dependencies": {
"axios": "^1.7.2",
"body-parser": "^1.20.2",
"commander": "^12.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cql-exec-fhir": "^2.1.5",
"cql-exec-vsac": "^2.2.0",
"cql-execution": "^3.0.1",
"debug": "^4.3.5",
"express": "^4.19.2",
"fhirclient": "^2.5.3",
"helmet": "^7.1.0",
"lodash": "^4.17.21",
"mkdirp": "^3.0.1",
"morgan": "^1.10.0",
"pug": "^3.0.3",
"semver": "^7.6.2",
"serve-favicon": "^2.5.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"chai": "^5.1.1",
"eslint": "^9.6.0",
"globals": "^15.8.0",
"mocha": "^10.6.0",
"nock": "^13.5.4",
"sinon": "^18.0.0",
"supertest": "^7.0.0",
"temp": "^0.9.4"
}
}