Skip to content

Commit

Permalink
feat(*): update dependencies in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
rwieruch committed Nov 20, 2016
1 parent 84165af commit db44936
Show file tree
Hide file tree
Showing 4 changed files with 77 additions and 49 deletions.
18 changes: 18 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@
"rules": {
"react/prop-types": 0,
"react/jsx-no-bind": 0,
"react/jsx-filename-extension": 0,
"react/forbid-prop-types": 0,
"react/jsx-curly-spacing": 0,
"react/no-unused-prop-types": 0,
"react/jsx-space-before-closing": 0,
"react/no-string-refs": 0,
"react/self-closing-comp": 0,
"react/no-find-dom-node": 0,
"react/jsx-indent": 0,
"react/prefer-stateless-function": 0,
"jsx-a11y/no-static-element-interactions": 0,
"import/no-named-as-default": 0,
"import/prefer-default-export": 0,
"no-plusplus": 0,
"import/first": 0,
"arrow-parens": 0,
"class-methods-use-this": 0,
"no-undef": 0,
"camelcase": 0,
"default-case": 0,
"comma-dangle": 0,
Expand Down
99 changes: 52 additions & 47 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,60 +14,65 @@
"es2015",
"react",
"stage-2"
],
"plugins": [
"react-hot-loader/babel"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.3.15",
"babel-eslint": "^4.1.6",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-2": "^6.5.0",
"babel-register": "^6.7.2",
"chai": "^3.4.1",
"chai-as-promised": "^5.3.0",
"chai-enzyme": "^0.4.1",
"css-loader": "^0.23.1",
"enzyme": "^2.2.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^5.0.0",
"eslint-loader": "^1.2.1",
"eslint-plugin-react": "^3.16.1",
"exports-loader": "^0.6.3",
"imports-loader": "^0.6.5",
"jsdom": "^7.2.0",
"mocha": "^2.3.4",
"node-sass": "^3.4.2",
"react-addons-test-utils": "^0.14.7",
"react-hot-loader": "^1.3.0",
"sass-loader": "^3.1.2",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.0",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
"babel-core": "6.3.15",
"babel-eslint": "7.1.1",
"babel-loader": "6.2.0",
"babel-preset-es2015": "6.3.13",
"babel-preset-react": "6.3.13",
"babel-preset-stage-2": "6.5.0",
"babel-register": "6.7.2",
"chai": "3.4.1",
"chai-as-promised": "6.0.0",
"chai-enzyme": "0.6.1",
"css-loader": "0.26.0",
"enzyme": "2.2.0",
"eslint": "3.10.2",
"eslint-config-airbnb": "13.0.0",
"eslint-loader": "1.2.1",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.7.1",
"exports-loader": "0.6.3",
"imports-loader": "0.6.5",
"jsdom": "9.8.3",
"mocha": "3.1.2",
"node-sass": "3.4.2",
"react-addons-test-utils": "15.4.0",
"react-hot-loader": "3.0.0-beta.6",
"sass-loader": "4.0.2",
"sinon": "1.17.3",
"sinon-chai": "2.8.0",
"style-loader": "0.13.0",
"webpack": "1.12.9",
"webpack-dev-server": "1.14.0"
},
"dependencies": {
"classnames": "^2.2.5",
"js-cookie": "^2.1.0",
"lodash": "^4.10.0",
"moment": "^2.12.0",
"normalizr": "^2.0.0",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-rangeslider": "^1.0.3",
"react-redux": "^4.4.5",
"react-router": "^2.4.0",
"react-router-redux": "^4.0.4",
"redux": "^3.5.2",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.1.0",
"rn-redux-mixpanel": "^1.1.9",
"soundcloud": "^3.0.1",
"waveform.js": "^1.0.0",
"whatwg-fetch": "^1.0.0"
"classnames": "2.2.5",
"js-cookie": "2.1.0",
"lodash": "4.10.0",
"moment": "2.12.0",
"normalizr": "2.0.0",
"react": "15.0.2",
"react-dom": "15.0.2",
"react-rangeslider": "1.0.3",
"react-redux": "4.4.5",
"react-router": "3.0.0",
"react-router-redux": "4.0.4",
"redux": "3.5.2",
"redux-logger": "2.6.1",
"redux-thunk": "2.1.0",
"rn-redux-mixpanel": "1.1.9",
"soundcloud": "3.0.1",
"waveform.js": "1.0.0",
"whatwg-fetch": "2.0.1"
}
}
4 changes: 4 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,7 @@ ReactDOM.render(
</Provider>,
document.getElementById('app')
);

if (module.hot) {
module.hot.accept();
}
5 changes: 3 additions & 2 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ module.exports = {
},
],
loaders: [{
test: /\.jsx?$/,
test: /\.(js|jsx)$/,
exclude: /node_modules/,
loader: 'react-hot!babel'
loader: "babel-loader"
},
{
test: /\.scss$/,
Expand All @@ -41,6 +41,7 @@ module.exports = {
configFile: './.eslintrc'
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.ProvidePlugin({
'fetch': 'imports?this=>global!exports?global.fetch!whatwg-fetch'
}),
Expand Down

0 comments on commit db44936

Please sign in to comment.