Created
July 7, 2018 16:47
-
-
Save gilbertoquinteroA/dc0dd7dd93cd7b50cc8e62d789e35900 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
{ | |
"name": "site", | |
"version": "1.0.0", | |
"description": "this is my first example of createa simple site in React JS", | |
"main": "index.js", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1" | |
}, | |
"author": "GilbertQuintero", | |
"license": "ISC", | |
"dependencies": { | |
"body-parser": "^1.18.3", | |
"express": "^4.16.3", | |
"react-dom": "^16.4.1", | |
"react-router": "^4.3.1", | |
"react-router-dom": "^4.3.1", | |
"webpack": "^4.15.1" | |
} | |
} | |
"scripts": { | |
"dev": "webpack -d --watch", | |
"start": "node ./server/index.js", | |
"build": "webpack -p", | |
"react-dev": "webpack -d --watch", | |
"server-dev": "nodemon server/index.js" | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment