generated from CodeChefVIT/template
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
62 lines (62 loc) · 1.32 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^7.2.1",
"aws-sdk": "^2.814.0",
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-ipfilter": "^1.1.2",
"express-rate-limit": "^5.1.3",
"express-session": "^1.17.1",
"hash": "^0.2.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.3",
"mongoose-deep-populate": "^3.2.0",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"node-schedule": "^1.3.2",
"nodemailer": "^6.6.1",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"passport-google-plus-token": "^2.1.0",
"passport-jwt": "^4.0.0",
"redis": "^3.1.1",
"request": "^2.88.2",
"shortid": "^2.2.15"
},
"devDependencies": {
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"node-pre-gyp": "0.12.0",
"nodemon": "^2.0.4",
"prettier": "^2.1.2"
},
"lint-staged": {
"Backend/**/*.js": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}