-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 976 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
{
"name": "mernBlog",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"server": "nodemon index.js",
"start":"node index.js",
"client": "npm start --prefix client",
"clientInstall": "npm install --prefix client",
"build":"npm run build --prefix client",
"heroku-postbuild": "npm run clientInstall && npm run build",
"dev": "concurrently \" npm run server \" \" npm run client \""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"concurrently": "^5.3.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.8.0",
"formidable": "^1.2.2",
"html-react-parser": "^1.2.4",
"html-to-text": "^7.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.4",
"node-sass": "^5.0.0",
"react-helmet": "^6.1.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"nodemon": "^2.0.6"
}
}