-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
70 lines (70 loc) · 2.06 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": "openhim-mediator-ddcc-transactions",
"version": "0.0.1",
"description": "Basic OpenHIM mediator to implement the DDCC transactions",
"dependencies": {
"@pathcheck/dcc-sdk": "^0.0.23",
"@pathcheck/shc-sdk": "^0.0.8",
"@pdf-lib/fontkit": "^1.1.1",
"babel-runtime": "^6.26.0",
"base45": "^3.0.0",
"canvas": "^2.8.0",
"cbor": "^7.0.5",
"core-js": "^3.16.3",
"cose-js": "^0.6.0",
"express": "^4.17.3",
"handlebars": "^4.7.7",
"jsbarcode": "^3.11.4",
"node-fetch": "^2.6.1",
"node-html-to-image": "^3.1.0",
"openhim-mediator-utils": "^0.2.4",
"pdf-lib": "^1.16.0",
"pino": "^5.13.5",
"pino-pretty": "^3.2.2",
"qrcode": "^1.4.4",
"source-map-resolve": "^0.6.0",
"stream-to-array": "^2.3.0",
"transliteration": "^2.2.0"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@cucumber/cucumber": "^7.3.0",
"babel-preset-env": "^1.7.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"fetch-mock": "^9.11.0",
"prettier": "^1.18.2",
"supertest": "^6.1.3"
},
"prettier": {
"trailingComma": "none",
"semi": false,
"printWidth": 120
},
"scripts": {
"start": "npm run build && STANDALONE=true node lib/server.js",
"openhim": "npm run buildhim && node lib/server.js",
"build": "babel src --out-dir lib",
"buildhim": "babel src --out-dir lib",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "npm run build && ./node_modules/.bin/cucumber-js",
"testhim": "npm run buildhim && ./node_modules/.bin/cucumber-js"
},
"repository": "[email protected]:WorldHealthOrganization/ddcc-transactions-mediator.git",
"keywords": [
"openhim",
"mediator",
"production"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/WorldHealthOrganization/ddcc-transactions-mediator/issues"
}
}