-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 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
{
"name": "dhis-portal",
"version": "1.0.6",
"description": "simple dhis2 instance proxy",
"author": "Wahed Mangal",
"keywords": [
"dhis2",
"samesite",
"proxy"
],
"scripts": {
"lint:js": "d2-style js check",
"lint:text": "d2-style text check",
"lint:staged": "yarn lint:js --staged && yarn lint:text --staged",
"lint": "yarn lint:js && yarn lint:text",
"format:js": "d2-style js apply",
"format:text": "d2-style text apply",
"format:staged": "yarn format:js --staged && yarn format:text --staged",
"format": "yarn format:js && yarn format:text"
},
"bin": {
"dhis-portal": "./dhis-portal.js"
},
"main": "./dhis-portal.js",
"license": "MIT",
"devDependencies": {
"@dhis2/cli-style": "^7.0.0"
},
"dependencies": {
"express": "^4.17.1",
"http-proxy-middleware": "^1.0.5"
},
"engines": {
"node": ">=10"
},
"repository": {
"url": "https://github.com/awgaan/dhis-portal",
"type": "git"
}
}