-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.28 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
{
"name": "bulk-match-client",
"version": "1.0.0",
"description": "A Node client for making bulk matching requests against FHIR servers",
"engines": {
"node": ">=21.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smart-on-fhir/bulk-match-client.git"
},
"bugs": {
"url": "https://github.com/smart-on-fhir/bulk-match-client/issues"
},
"homepage": "https://github.com/smart-on-fhir/bulk-match-client#readme",
"author": "SMART Health IT <support@smarthealthit.org> (https://smarthealthit.org/)",
"contributors": [
"Vladimir Ignatov <vlad.ignatov@gmail.com>",
"Dylan Phelan <dtphelan1@gmail.com>"
],
"license": "ISC",
"main": "build/app.js",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "npx eslint ",
"lint-fix": "npx eslint --fix",
"prettier": "npx prettier . --write",
"prettier-fix": "npx prettier . --write",
"test": "NODE_ENV=test nyc --reporter=lcov ts-mocha -p ./test/tsconfig.json ./test/*.test.ts",
"test:watch": "npm test -- -w --watch-files='**/*.ts'",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@hapi/code": "^9.0.3",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/fhir": "^0.0.41",
"@types/jsonwebtoken": "^9.0.6",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.30",
"@types/node-jose": "^1.1.13",
"@types/prompt-sync": "^4.2.3",
"cors": "^2.8.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"express": "^4.19.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"nyc": "^15.1.0",
"prettier": "3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"ts-mocha": "^10.0.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.6.0"
},
"dependencies": {
"colors": "^1.4.0",
"commander": "^12.0.0",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"node-jose": "^2.2.0",
"prompt-sync": "^4.2.0",
"winston": "^3.13.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}