-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 913 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
{
"name": "express-api-gateway",
"version": "0.1.0",
"description": "API Gateway built with Express",
"scripts": {
"dev": "nodemon index.js",
"start": "node index.js",
"test": "eslint src"
},
"author": "ezy",
"license": "MIT",
"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-jwt": "^5.3.1",
"express-request-proxy": "^2.2.2",
"express-session": "^1.15.6",
"express-winston": "^3.1.0",
"helmet": "^3.16.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.11",
"oauth2-server": "^3.0.1",
"resource-router-middleware": "^0.7.0",
"winston": "^3.2.1"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"nodemon": "^1.18.10"
}
}