-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
72 lines (72 loc) · 2.02 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
{
"name": "bulk-data-server",
"version": "2.1.1",
"description": "",
"main": "index.ts",
"engines": {
"node": ">=20"
},
"scripts": {
"test": "NODE_ENV=test nyc --cache false --reporter text --reporter html mocha --exit",
"test:watch": "nodemon -e ts,js -w . -x 'npm test'",
"coverage": "nyc npm run test",
"start": "ts-node --transpile-only .",
"start:dev": "ts-node .",
"import": "ts-node ./data/import.ts",
"deprecated:postinstall": "ts-node ./data/import.ts -f 4 -d ./data/fhir/ && ts-node ./data/import.ts -f 3 -d ./data/fhir_stu3/ && ts-node ./data/import.ts -f 2 -d ./data/fhir_dstu2/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smart-on-fhir/bulk-data-server.git"
},
"keywords": [
"bulk",
"data",
"download",
"fhir",
"smart"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/smart-on-fhir/bulk-data-server/issues"
},
"homepage": "https://github.com/smart-on-fhir/bulk-data-server#readme",
"dependencies": {
"base64-url": "^2.0.1",
"colors": "^1.4.0",
"commander": "^2.12.2",
"cors": "^2.8.5",
"express": "^4.21.1",
"fhir-filter": "github:smart-on-fhir/fhir-filter",
"jsonwebtoken": "^9.0.0",
"jwk-lite": "^0.1.2",
"jwk-to-pem": "^2.0.0",
"mocha": "^10.2.0",
"moment": "^2.19.4",
"morgan": "^1.10.0",
"request": "^2.88.2",
"sqlite3": "^5.0.5",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"devDependencies": {
"@types/base64-url": "^2.2.0",
"@types/chai": "^4.2.12",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/fhir": "^0.0.34",
"@types/jsonwebtoken": "^8.5.0",
"@types/jwk-to-pem": "^2.0.0",
"@types/mocha": "^7.0.2",
"@types/morgan": "^1.9.0",
"@types/node": "^17.0.41",
"@types/request": "^2.48.8",
"@types/sqlite3": "^3.1.6",
"@types/uuid": "^7.0.3",
"@types/walk": "^2.3.0",
"chai": "^4.2.0",
"nodemon": "^3.0.3",
"nyc": "^15.0.1"
}
}