-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "yolobackend",
"version": "1.0.0",
"description": "backend for project yolo",
"main": "app.js",
"author": "Joon Hur",
"license": "MIT",
"scripts": {
"start": "nodemon index.js",
"dev": "nodemon --inspect-brk=0.0.0.0 index.js"
},
"dependencies": {
"await-to-js": "^2.0.1",
"bcrypt": "^3.0.2",
"bcrypt-promise": "^2.0.0",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"jsonwebtoken": "^8.4.0",
"morgan": "^1.9.1",
"mysql2": "^1.6.4",
"parse-error": "^0.2.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"sequelize": "^5.3.0",
"sequelize-cli": "^5.4.0",
"validator": "^10.9.0"
},
"devDependencies": {
"eslint": "5.3.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.11.0",
"nodemon": "^1.18.6",
"prettier": "^1.16.4"
}
}