-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.21 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
{
"name": "SCCO",
"version": "1.0.0",
"description": "backend of the ecommerce site",
"main": "server.js",
"engine": {
"node": "12.16.1",
"npm": "6.13.4"
},
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "cd client && npm run build",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "Blaise Telfer",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^15.0.3",
"@sendgrid/mail": "^7.4.2",
"axios": "^0.21.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cloudinary": "^1.24.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"is-empty": "^1.2.0",
"joi-objectid": "^3.0.1",
"js-cookie": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"moment": "^2.29.1",
"mongoose": "^5.11.4",
"multer": "^1.4.2",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"react-router": "^5.2.0",
"validator": "^13.5.1"
},
"devDependencies": {
"concurrently": "^5.3.0",
"nodemon": "^2.0.6"
}
}