Created
November 3, 2016 05:53
-
-
Save ooade/32874126ab5db3e7c72bf59ef2754b79 to your computer and use it in GitHub Desktop.
Express serving production files
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": "express-without-eject", | |
"version": "0.1.0", | |
"private": true, | |
"devDependencies": { | |
"react-scripts": "0.7.0" | |
}, | |
"dependencies": { | |
"express": "^4.14.0", | |
"react": "^15.3.2", | |
"react-dom": "^15.3.2" | |
}, | |
"scripts": { | |
"start": "react-scripts start", | |
"dev": "node server/server.dev.js", | |
"serve": "node server/server.prod.js", | |
"build": "react-scripts build", | |
"test": "react-scripts test --env=jsdom", | |
"eject": "react-scripts eject" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment