Created
March 27, 2016 18:41
-
-
Save FreakDev/0869d52d53bfc5ef7d3c to your computer and use it in GitHub Desktop.
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-redux-boilerplate", | |
"version": "0.0.1", | |
"description": "", | |
"main": "js/app.js", | |
"dependencies": { | |
"react": "0.14.6", | |
"react-dom": "0.14.6", | |
"react-redux": "^4.4.1", | |
"redux": "^3.3.1", | |
"redux-thunk": "^2.0.1" | |
}, | |
"devDependencies": { | |
"babel-preset-es2015": "^6.3.13", | |
"babel-preset-react": "^6.3.13", | |
"babelify": "^7.2.0", | |
"browserify": "~6.2.0", | |
"watchify": "~2.1.0" | |
}, | |
"scripts": { | |
"start": "watchify -t [ babelify --presets [ es2015 react ] ] -o dist/bundle.js -v -d src/app.js", | |
"build": "browserify -t [ babelify --presets [ es2015 react ] ] src/app.js | uglifyjs -cm > dist/bundle.min.js" | |
}, | |
"author": "" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment