-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 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": "full-backend-experience",
"version": "1.0.0",
"description": "Another experience with nodejs!",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon index.js",
"debug": "nodemon --inspect=0.0.0.0:9229 index.js"
},
"keywords": [],
"author": "David Oluwafemi",
"license": "ISC",
"devDependencies": {
"nodemon": "^2.0.20"
},
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"bcrypt": "^5.1.0",
"connect-flash": "^0.1.1",
"connect-mongodb-session": "^3.1.1",
"connect-redis": "^6.1.3",
"cookie-parser": "^1.4.6",
"csurf": "^1.11.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-graphql": "^0.12.0",
"express-validator": "^6.14.3",
"graphql": "^16.6.0",
"jsonwebtoken": "^9.0.0",
"mongodb": "^4.13.0",
"mongoose": "^6.7.5",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.1",
"pdfkit": "^0.13.0",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"redis": "^4.6.4",
"sequelize": "^6.28.0",
"serialize": "^0.1.3",
"socket.io": "^4.6.1",
"tiny-csrf": "^1.1.3"
}
}