-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 945 Bytes
/
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
{
"name": "bootcamp-nodejs-js",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "DEBUG=bootcamp-nodejs-js:* nodemon ./bin/www",
"lint": "eslint --fix ."
},
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"aws-sdk": "^2.1144.0",
"bcrypt": "^5.0.1",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^16.0.1",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.3.4",
"morgan": "~1.9.1",
"multer": "^1.4.4",
"multer-s3": "^2.10.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0"
},
"devDependencies": {
"eslint": "^8.16.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"nodemon": "^2.0.16"
}
}