Created
April 19, 2020 00:37
-
-
Save nicolasmendonca/ca40cb95d5a3ffe70131a684de3e55b5 to your computer and use it in GitHub Desktop.
Basic node.js live reload config
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
Show hidden characters
{ | |
"presets": [ | |
"env" | |
] | |
} |
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
{ | |
"scripts": { | |
"start": "nodemon src/index.js --exec babel-node" | |
}, | |
"dependencies": { | |
"babel-cli": "6.26.0", | |
"babel-preset-env": "1.7.0", | |
"nodemon": "^2.0.3" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment