Created
December 18, 2019 00:45
-
-
Save paulobunga/8be2df14a37e31bab0964e8220e74a94 to your computer and use it in GitHub Desktop.
Modify your package.json as below
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "node_api", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"start": "node index", | |
"start:dev": "nodemon index" | |
}, | |
"keywords": [], | |
"author": "", | |
"license": "ISC", | |
"dependencies": { | |
"body-parser": "^1.19.0", | |
"express": "^4.17.1", | |
"mongoose": "^5.8.1" | |
}, | |
"devDependencies": { | |
"nodemon": "^2.0.2" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment