-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.52 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
41
42
43
44
45
{
"name": "backend",
"version": "1.0.0",
"description": "rest api for backend project",
"main": "./src/index.js",
"scripts": {
"build": "babel src -d dist",
"start": "npm run lint && npm run build && node -r dotenv/config dist/index.js dotenv_config_path=.environment/prod.env",
"start:dev": "nodemon --watch src/ --exec \"npm run lint && npm run build && node -r dotenv/config\" dist/ dotenv_config_path=.environment/dev.env",
"start:local": "nodemon --watch src/ --exec \"npm run lint && npm run build && node -r dotenv/config\" dist/ dotenv_config_path=.environment/local.env",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "./node_modules/.bin/eslint ."
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"body-parser": "~1.8.1",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"eslint": "^6.2.2",
"express": "~4.9.0",
"express-http-context": "^1.2.3",
"express-session": "^1.9.3",
"express-validator": "^6.4.0",
"http-status": "^1.3.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"mongoose": "^5.6.9",
"mongoose-auto-increment": "^5.0.1",
"morgan": "~1.3.0",
"nodemailer": "^6.3.1",
"nodemon": "^1.19.1",
"passport": "^0.2.1",
"passport-google-oauth20": "^2.0.0",
"pug": "^2.0.3",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"string-format": "^2.0.0",
"useragent": "^2.3.0",
"winston": "^3.2.1"
}
}