-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 950 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
38
{
"name": "server",
"version": "1.0.0",
"description": "MERN Ecommerce Server",
"scripts": {
"dev": "nodemon",
"start": "cross-env NODE_ENV=production node index.js",
"seed:db": "node utils/seed.js"
},
"dependencies": {
"aws-sdk": "^2.799.0",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dompurify": "^2.3.8",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"mailchimp-api-v3": "^1.14.0",
"mailgun-js": "^0.22.0",
"mongoose": "^5.5.11",
"mongoose-slug-generator": "^1.0.4",
"multer": "^1.4.2",
"passport": "^0.4.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth2": "^0.2.0",
"passport-jwt": "^4.0.0",
"socket.io": "^4.2.0",
"validatorjs": "^3.18.1"
},
"devDependencies": {
"chalk": "^2.4.2",
"cross-env": "^5.2.1",
"nodemon": "^1.19.1"
}
}