This repository has been archived by the owner on Dec 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.76 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
{
"name": "clinical-trial-matching-service-trialscope",
"version": "0.0.1",
"description": "Matching service wrapper that works with TrialScope",
"main": "dist/src/server.js",
"repository": {
"type": "git",
"url": "https://github.com/mcode/clinical-trial-matching-service-trialscope.git"
},
"scripts": {
"build": "npm run build-ts",
"build-ts": "tsc",
"build:tests": "tsc --build tsconfig.test.json",
"coverage": "npm run-script build:tests && nyc --require ts-node/register --reporter=lcovonly jasmine",
"coverage:html": "npm run-script build:tests && nyc --require ts-node/register --reporter=html jasmine",
"lint": "eslint . --ext .js,.ts",
"serve": "npm run build && node ./start.js",
"start": "npm run serve",
"test": "npm run-script build:tests && npm run-script test:run",
"test:run": "jasmine"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"body-parser": "^1.19.0",
"clinical-trial-matching-service": "^0.0.7",
"dotenv-flow": "^3.2.0",
"express": "^4.19.2",
"fhirpath": "^3.3.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/dotenv-flow": "^3.0.0",
"@types/express": "^4.17.11",
"@types/fhir": "^0.0.35",
"@types/jasmine": "^4.3.1",
"@types/node": "^18.11.17",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"fhir": "^4.8.2",
"jasmine": "^4.5.0",
"nock": "^13.0.11",
"nyc": "^15.1.0",
"prettier": "^2.1.0",
"supertest": "^6.1.3",
"ts-node": "^10.9.1",
"typescript": "^4.2.4"
}
}