-
Notifications
You must be signed in to change notification settings - Fork 260
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 729 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 729 Bytes
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
{
"name": "basic-mern-app",
"version": "1.0.0",
"description": "A Basic MERN Stack App just for practice",
"engines": {
"node": "8.12.0"
},
"main": "app.js",
"scripts": {
"start": "node app.js",
"heroku-postbuild": "cd client && yarn install && yarn build",
"client": "cd client && yarn start",
"server": "nodemon app.js"
},
"author": "Hemakshi Sachdev",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"dotenv": "^6.1.0",
"express": "^4.16.3",
"jsonwebtoken": "^9.0.0",
"mongoose": "^5.7.5"
},
"devDependencies": {
"nodemon": "^1.17.3"
}
}