-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.29 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.29 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
{
"name": "api-gateway",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "cross-env NODE_ENV=production babel src/index.js -d dist",
"start": "cross-env NODE_ENV=development nodemon --exec babel-node src/index.js",
"dev": "cross-env NODE_ENV=development nodemon --exec npm start",
"prod": "npm start"
},
"dependencies": {
"address": "^1.2.0",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"colors": "^1.4.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-async-handler": "^1.1.4",
"express-rate-limit": "^6.4.0",
"helmet": "^4.6.0",
"http-errors": "~1.6.3",
"http-proxy": "^1.18.1",
"http-proxy-middleware": "^2.0.6",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.3.5",
"morgan": "^1.10.0",
"multer": "^1.4.3"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.2",
"@babel/node": "^7.17.10",
"@babel/preset-env": "^7.23.9",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.46.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-only-warn": "^1.0.3",
"events": "^3.3.0",
"process": "^0.11.10"
}
}