-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1005 Bytes
/
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
{
"name": "emterprise-node-api-gateway",
"version": "0.1.0",
"description": "API Gateway built with Express",
"scripts": {
"dev": "nodemon index.js",
"start": "node index.js",
"test": "eslint src && jest",
"dlogs": "find . -name 'hs_err*' -delete"
},
"author": "ezy",
"license": "",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-healthcheck": "^0.1.0",
"express-jwt": "^5.3.1",
"express-winston": "^3.1.0",
"helmet": "^3.16.0",
"http-proxy-middleware": "^0.19.1",
"jsonwebtoken": "^8.5.1",
"ldapts": "^1.4.2",
"lodash": "^4.17.11",
"massive": "^5.7.7",
"winston": "^3.2.1"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.1",
"jest": "^24.8.0",
"jest-express": "^1.10.1",
"nodemon": "^1.18.11"
}
}