generated from hisptz/node-script-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.47 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.47 KB
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
{
"name": "etls-smart-pill-integration-script",
"description": "A node script for integration between DHIS2 and WisePill API",
"version": "1.0.8",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@dhis2/d2-i18n": "^1.1.2",
"@hisptz/dhis2-utils": "^1.0.58",
"async": "^3.2.5",
"axios": "^1.4.0",
"commander": "^10.0.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.2",
"helmet": "^7.0.0",
"joi": "^17.11.0",
"lodash": "^4.17.21",
"luxon": "^3.3.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"winston": "^3.8.2"
},
"scripts": {
"start-api-server": "nodemon --exec ts-node src/index.ts start-api-server",
"start-integration": "ts-node src/index.ts start-integration",
"test": "jest --coverage",
"build": "npx tsc",
"postbuild": "./package.sh"
},
"devDependencies": {
"@types/async": "^3.2.24",
"@types/cors": "^2.8.15",
"@types/express": "^4.17.19",
"@types/jest": "^29.5.12",
"@types/luxon": "^3.3.3",
"@types/node": "^20.8.6",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.2",
"@types/swagger-ui-express": "^4.1.5",
"bestzip": "^2.2.1",
"concurrently": "^8.2.1",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"rimraf": "^5.0.1",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}