-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
86 lines (86 loc) · 2.71 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
{
"name": "shared-health-registry",
"version": "v0.12.0",
"description": "Open Implementation of an OpenHIE Shared Health Record",
"main": "app.js",
"scripts": {
"clean": "rimraf dist/",
"start": "cross-env NODE_ENV=production node ./dist/app.js",
"build": "yarn clean && yarn format && yarn tsc",
"dev": "cross-env NODE_ENV=development node --inspect ./dist/app.js",
"test:unit": "cross-env NODE_ENV=test jest --passWithNoTests",
"test:api": "cross-env NODE_ENV=test node --inspect ./dist/app.js",
"docker:up": "docker build ./ -t test-image:latest && docker-compose -f ci.docker-compose.yml up shr",
"lint": "eslint src/**/*.{ts,tsx}",
"format": "eslint src/**/*.{ts,tsx} --fix",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"src/**/*.{js,jsx,ts,tsx,css,scss,md}": "prettier --write --ignore-unknown"
},
"keywords": [
"client registry",
"master patient index"
],
"author": "Intrahealth International",
"license": "ISC",
"dependencies": {
"async": "^3.2.1",
"cookie-parser": "^1.4.5",
"exceljs": "^4.3.0",
"express": "^4.19.2",
"fhir": "^4.7.10",
"fhirclient": "^2.3.10",
"got": "^11.8.2",
"hl7": "^1.1.1",
"jsonwebtoken": "^9.0.0",
"nconf": "^0.11.4",
"openhim-mediator-utils": "^0.4.0",
"sprintf-js": "^1.1.2",
"urijs": "^1.19.11",
"uuid": "^3.3.3",
"uuid4": "^1.1.4",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.4.2"
},
"devDependencies": {
"@ahryman40k/ts-fhir-types": "^4.0.34",
"@i-tech-uw/mllp-server": ">=3.3.1",
"@types/async": "^3.2.3",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/got": "^9.6.12",
"@types/hapi": "^18.0.3",
"@types/jest": "^26.0.24",
"@types/nconf": "^0.10.1",
"@types/node": "^14.11.10",
"@types/request": "^2.48.7",
"@types/sprintf-js": "^1.1.2",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/urijs": "^1.19.19",
"@types/uuid": "^9.0.5",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"cross-env": "^7.0.3",
"eslint": "^8.35.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"kafkajs": "^1.15.0",
"lint-staged": "^14.0.0",
"nock": "^13.1.1",
"prettier": "^2.8.4",
"rimraf": "^4.1.2",
"supertest": "^7.0.0-0",
"ts-jest": "^29.1.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"packageManager": "[email protected]"
}