-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"name": "react-blog",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server/server.js",
"dev:server": "nodemon server/server.js",
"dev:client": "npm run dev --prefix client",
"dev": "npm-run-all -n -l -p dev:*",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --include=dev --prefix client && npm run build --prefix client"
},
"author": "",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"axios": "^1.2.6",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.33.0",
"concurrent": "^0.3.2",
"config": "^3.3.8",
"cors": "^2.8.5",
"dateformat": "^5.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^6.14.2",
"gravatar": "^1.8.2",
"jsonwebtoken": "^9.0.0",
"moment": "^2.29.4",
"mongoose": "^6.8.1",
"multer": "^1.4.5-lts.1",
"npm-run-all": "^4.1.5",
"react-infinite-scroll-component": "^6.1.0",
"reading-time": "^1.5.0",
"reading-time-estimator": "^1.7.2",
"request": "^2.88.2",
"sharp": "^0.31.3",
"underscore": "^1.13.6"
},
"devDependencies": {
"concurrently": "^7.6.0",
"nodemon": "^2.0.21"
}
}