Last active
March 30, 2016 04:59
-
-
Save GreenGeorge/ebb71d9b9b85f2e5c946bd6c4b289edd to your computer and use it in GitHub Desktop.
starter package.json for React projects
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": "react-learn-redux", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"preinstall": "npm-check-updates -u", | |
"test": "echo \"Error: no test specified\" && exit 1", | |
"dev": "webpack-dev-server --content-base src --inline --hot" | |
}, | |
"keywords": [], | |
"author": "", | |
"license": "ISC", | |
"devDependencies": { | |
"babel-core": "^6.7.4", | |
"babel-loader": "^6.2.4", | |
"babel-plugin-add-module-exports": "^0.1.2", | |
"babel-plugin-react-html-attrs": "^2.0.0", | |
"babel-plugin-transform-class-properties": "^6.6.0", | |
"babel-plugin-transform-decorators-legacy": "^1.3.4", | |
"babel-preset-es2015": "^6.6.0", | |
"babel-preset-react": "^6.5.0", | |
"babel-preset-stage-0": "^6.5.0", | |
"redux-devtools": "^3.1.1", | |
"webpack": "^1.12.14", | |
"webpack-dev-server": "^1.14.1" | |
}, | |
"dependencies": { | |
"flux": "^2.1.1", | |
"history": "^2.0.1", | |
"lodash": "^4.6.1", | |
"react": "^0.14.7", | |
"react-dom": "^0.14.7", | |
"react-redux": "^4.4.1", | |
"react-router": "^2.0.1", | |
"redux": "^3.3.1", | |
"underscore": "^1.8.3" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment