Created
December 1, 2022 04:54
-
-
Save shinokada/395ad3710fc52144511444422b32a28d to your computer and use it in GitHub Desktop.
This file contains 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
// see express-debugging https://gist.github.com/shinokada/3d2f7fd48b9ea9a75349fd4bad3c617d | |
{ | |
"name": "code", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"start": "DEBUG=app nodemon app.js", | |
"debug": "DEBUG=* nodemon app.js", | |
"test": "echo \"Error: no test specified\" && exit 1" | |
}, | |
"author": "", | |
"license": "ISC", | |
"dependencies": { | |
"chalk": "4.1.1", | |
"debug": "4.3.1", | |
"express": "4.17.1", | |
"morgan": "1.10.0", | |
"nodemon": "2.0.7" | |
}, | |
"nodemonConfig": { | |
"restartable": "rs", | |
"delay": 2500, | |
"env": { | |
"PORT": 4000 | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment