-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "dhis2-passthrough-mediator",
"version": "1.0.0",
"description": "A Pass Through Mediator for Communicating with DHIS2",
"main": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./dist/index.js",
"start:dev": "nodemon ./dist/index.js",
"build": "rimraf dist && tsc",
"build:dev": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kuunika/dhis2-passthrough-mediator.git"
},
"keywords": [
"DHIS2 Mediator"
],
"author": "Digital Health Division",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kuunika/dhis2-passthrough-mediator/issues"
},
"homepage": "https://github.com/Kuunika/dhis2-passthrough-mediator#readme",
"dependencies": {
"axios": "^0.25.0",
"cors": "^2.8.5",
"dotenv": "^15.0.0",
"express": "^4.17.2",
"helmet": "^5.0.2",
"openhim-mediator-utils": "^0.2.3",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^17.0.14",
"nodemon": "^2.0.15",
"typescript": "^4.5.5"
}
}