-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.28 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
46
47
48
49
50
{
"name": "cfg-social-app",
"version": "0.0.1",
"private": true,
"description": "",
"keywords": [],
"author": "",
"license": "",
"main": "api/app.js",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"bunyan": "^1.8.12",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dayjs": "^1.10.4",
"dotenv": "^8.2.0",
"express": "^4.12.3",
"express-async-handler": "^1.1.4",
"express-list-endpoints": "^4.0.1",
"express-request-id": "^1.4.1",
"helmet": "^3.21.2",
"jsonwebtoken": "latest",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"mysql2": "^2.0.2",
"nodemailer": "^6.4.17",
"nodemon": "^2.0.7",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"sequelize": "^5.21.3",
"sequelize-cli": "^6.2.0"
},
"devDependencies": {
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"pre-commit": "^1.2.2"
},
"scripts": {
"seed:data": "sequelize db:seed:all",
"bootsrap": "sequelize db:migrate",
"start": "npm run bootsrap && nodemon -r dotenv/config api/app.js",
"start:prod": "node -r dotenv/config api/app.js",
"lint": "eslint ."
},
"pre-commit": []
}