Created
July 20, 2018 20:35
-
-
Save nairihar/71e77873546eb684a7487a0b7d3f4a8a to your computer and use it in GitHub Desktop.
Setup React App - Organizing React Application Part 1
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": "react-application", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"start": "webpack-dev-server --open --config webpack.dev.js", | |
"build": "webpack --config webpack.prod.js" | |
}, | |
"keywords": [], | |
"author": "", | |
"license": "ISC", | |
"dependencies": { | |
"react": "^16.4.1", | |
"react-dom": "^16.4.1" | |
}, | |
"devDependencies": { | |
"babel-core": "^6.26.3", | |
"babel-loader": "^7.1.5", | |
"babel-preset-env": "^1.7.0", | |
"babel-preset-react": "^6.24.1", | |
"clean-webpack-plugin": "^0.1.19", | |
"html-webpack-plugin": "^3.2.0", | |
"uglifyjs-webpack-plugin": "^1.2.7", | |
"webpack": "^4.16.1", | |
"webpack-cli": "^3.1.0", | |
"webpack-dev-server": "^3.1.4", | |
"webpack-merge": "^4.1.3" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment