Created
September 11, 2018 00:44
-
-
Save thescientist13/a5c93b0bd8f289369ad90b8bfc1574e7 to your computer and use it in GitHub Desktop.
Example of dependencies for a basic React App
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
{ | |
"dependencies": { | |
"react": "^16.2.0", | |
"react-dom": "^16.2.0", | |
"react-redux": "^5.0.6", | |
"redux": "^3.7.2" | |
}, | |
"devDependencies": { | |
"@babel/cli": "^7.0.0", | |
"@babel/preset-env": "^7.0.0", | |
"@babel/preset-react": "^7.0.0", | |
"babel-loader": "^7.1.2", | |
"eslint": "^4.17.0", | |
"eslint-plugin-react": "^7.6.1", | |
"html-webpack-plugin": "^2.30.1", | |
"webpack": "^3.10.0", | |
"webpack-dev-server": "^2.11.1", | |
"webpack-merge": "^4.1.1" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment