Created
October 28, 2016 14:59
-
-
Save dengjonathan/480ca98d2e54b86f7ecfc0b62b4f9d88 to your computer and use it in GitHub Desktop.
Webpack/ React package.json
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": "how_far_hr", | |
"version": "1.1.0", | |
"engines": { | |
"node": "5.12.0" | |
}, | |
"description": "A small toy app showing HR progress with React and ES6", | |
"author": "Jon Deng <jondeng.com>", | |
"license": "MIT", | |
"private": false, | |
"scripts": { | |
"start": "npm build && node dist/app.js", | |
"dev-start": "node dist/app.js", | |
"build": "webpack --config ./webpack.deployment.config.js --progress --colors" | |
}, | |
"dependencies": { | |
"bootstrap": "^4.0.0-alpha.2", | |
"express": "^4.14.0", | |
"react": "^15.3.2", | |
"react-dom": "^15.3.2", | |
"redux": "^3.6.0", | |
"underscore": "^1.8.3" | |
}, | |
"devDependencies": { | |
"babel-cli": "^6.6.5", | |
"babel-core": "^6.17.0", | |
"babel-loader": "^6.2.5", | |
"babel-preset-es2015": "^6.16.0", | |
"babel-preset-react": "^6.16.0", | |
"react-hot-loader": "^3.0.0-beta.5", | |
"webpack": "^1.13.2", | |
"webpack-dev-middleware": "^1.8.3", | |
"webpack-hot-middleware": "^2.12.2" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment