-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 861 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
{
"name": "mern-todolist",
"version": "1.0.0",
"description": "A Todo List application built with React.js, Node.js, Express.js and MongoDB. The frontend interacts with the REST API backend to CRUD data from database.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"client-install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run client-install && npm run build",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"author": "Darryl Nicerio",
"license": "MIT",
"dependencies": {
"concurrently": "^5.3.0",
"express": "^4.17.1",
"mongoose": "^5.9.28",
"morgan": "^1.10.0"
},
"devDependencies": {
"dotenv": "^8.2.0",
"nodemon": "^2.0.4"
}
}