-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 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
{
"name": "mern",
"version": "1.0.0",
"description": "",
"main": "server.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js",
"install-client": "cd client && npm install",
"build-client": "cd client && npm run build",
"render-build": "npm run install-client && npm run build-client && npm install"
},
"author": "",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"axios": "^1.2.6",
"bcryptjs": "^2.4.3",
"client": "^0.0.1",
"cloudinary": "^1.32.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-fileupload": "^1.4.0",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^6.7.0",
"express-session": "^1.17.3",
"google-auth-library": "^8.7.0",
"helmet": "^6.0.1",
"http-status-code": "^2.1.0",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.6.5",
"nodemailer": "^6.8.0",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"stripe": "^10.15.0",
"validator": "^13.7.0",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"nodemon": "^2.0.20"
},
"engines": {
"node": "16.x"
}
}