Update dependencies

This commit is contained in:
Jaco Greeff 2017-08-04 11:57:05 +02:00
parent e7641e38d8
commit c088a9a660
12 changed files with 445 additions and 2463 deletions

View File

@ -7,10 +7,7 @@
"transform-decorators-legacy",
"transform-class-properties",
"transform-object-rest-spread",
"transform-es2015-modules-commonjs",
"transform-runtime",
"lodash",
"recharts"
"transform-es2015-modules-commonjs"
],
"retainLines": true,
"env": {

View File

@ -1,7 +0,0 @@
{
"lerna": "2.0.0",
"packages": [
"packages/*"
],
"version": "0.0.0"
}

2837
js/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -18,12 +18,7 @@
},
"keywords": [
"Ethereum",
"ABI",
"API",
"Web3",
"RPC",
"Parity",
"Promise"
"Parity"
],
"scripts": {
"build": "npm run build:lib && npm run build:app",
@ -63,15 +58,12 @@
"babel-core": "6.23.1",
"babel-eslint": "7.1.1",
"babel-loader": "7.1.1",
"babel-plugin-lodash": "3.2.11",
"babel-plugin-react-intl": "2.3.1",
"babel-plugin-recharts": "1.1.0",
"babel-plugin-transform-class-properties": "6.23.0",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-plugin-transform-react-remove-prop-types": "0.3.2",
"babel-plugin-transform-runtime": "6.23.0",
"babel-plugin-webpack-alias": "2.1.2",
"babel-preset-env": "1.1.9",
"babel-preset-es2015": "6.22.0",
@ -80,12 +72,10 @@
"babel-preset-react": "6.23.0",
"babel-preset-stage-0": "6.22.0",
"babel-register": "6.23.0",
"babel-runtime": "6.23.0",
"chai": "3.5.0",
"chai-as-promised": "6.0.0",
"chai-enzyme": "0.6.1",
"chalk": "1.1.3",
"circular-dependency-plugin": "2.0.0",
"copy-webpack-plugin": "4.0.1",
"core-js": "2.4.1",
"coveralls": "2.11.16",
@ -108,7 +98,7 @@
"flow-bin": "^0.46.0",
"happypack": "3.1.0",
"html-loader": "0.4.4",
"html-webpack-plugin": "2.28.0",
"html-webpack-plugin": "2.30.1",
"http-proxy-middleware": "0.17.3",
"husky": "0.13.1",
"ignore-styles": "5.0.1",
@ -116,7 +106,6 @@
"istanbul": "1.0.0-alpha.2",
"jsdom": "9.11.0",
"json-loader": "0.5.4",
"lerna": "^2.0.0",
"markdown-loader": "2.0.0",
"mocha": "3.2.0",
"mock-local-storage": "1.0.2",
@ -132,7 +121,6 @@
"react-addons-test-utils": "15.4.2",
"react-hot-loader": "3.0.0-beta.6",
"react-intl-aggregate-webpack-plugin": "0.0.1",
"script-ext-html-webpack-plugin": "1.7.1",
"sinon": "1.17.7",
"sinon-as-promised": "4.0.2",
"sinon-chai": "2.8.0",
@ -144,7 +132,7 @@
"url-loader": "0.5.7",
"webpack": "3.3.0",
"webpack-bundle-size-analyzer": "2.5.0",
"webpack-dev-middleware": "1.10.1",
"webpack-dev-middleware": "1.12.0",
"webpack-dev-server": "2.6.1",
"webpack-error-notification": "0.1.6",
"webpack-hot-middleware": "2.17.1",
@ -180,33 +168,20 @@
"@parity/dapp-web": "paritytech/dapp-web",
"@parity/shared": "paritytech/js-shared",
"@parity/ui": "paritytech/js-ui",
"es6-error": "4.0.0",
"es6-promise": "4.0.5",
"flat": "2.0.1",
"flow": "^0.2.3",
"format-json": "1.0.3",
"format-number": "2.0.1",
"isomorphic-fetch": "2.2.1",
"lodash": "4.17.2",
"lodash.clonedeep": "4.5.0",
"moment": "2.17.0",
"lodash.flatten": "4.4.0",
"lodash.omitby": "4.6.0",
"lodash.throttle": "4.1.1",
"lodash.uniq": "4.5.0",
"prop-types": "15.5.10",
"react": "15.6.1",
"react-dom": "15.6.1",
"react-inspector": "paritytech/react-inspector",
"react-intl": "2.1.5",
"react-markdown": "2.5.0",
"react-router": "3.0.0",
"react-router-redux": "4.0.7",
"react-tap-event-plugin": "2.0.1",
"react-tooltip": "3.2.2",
"recharts": "0.15.2",
"redux": "3.6.0",
"redux-actions": "1.1.0",
"redux-thunk": "2.1.0",
"store": "1.3.20",
"useragent.js": "0.5.6",
"utf8": "2.1.2",
"web3": "0.17.0-beta",
"whatwg-fetch": "2.0.1"
}

View File

@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
import { flatten } from 'lodash';
import flatten from 'lodash.flatten';
import { action, computed, observable } from 'mobx';
import store from 'store';

View File

@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
import { omitBy } from 'lodash';
import omitBy from 'lodash.omitby';
import { observer } from 'mobx-react';
import React, { Component } from 'react';
import { FormattedMessage } from 'react-intl';

View File

@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
import { throttle } from 'lodash';
import throttle from 'lodash.throttle';
import { observer } from 'mobx-react';
import React, { Component } from 'react';
import PropTypes from 'prop-types';

View File

@ -16,9 +16,6 @@
import 'whatwg-fetch';
import es6Promise from 'es6-promise';
es6Promise.polyfill();
import React from 'react';
import ReactDOM from 'react-dom';
import { AppContainer } from 'react-hot-loader';

View File

@ -16,9 +16,6 @@
import 'whatwg-fetch';
import es6Promise from 'es6-promise';
es6Promise.polyfill();
import React from 'react';
import ReactDOM from 'react-dom';

View File

@ -16,9 +16,6 @@
import 'whatwg-fetch';
import es6Promise from 'es6-promise';
es6Promise.polyfill();
import Api from '@parity/api';
import Web3 from 'web3';

View File

@ -14,9 +14,6 @@
// You should have received a copy of the GNU General Public License
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
import es6Promise from 'es6-promise';
es6Promise.polyfill();
const isNode = typeof global !== 'undefined' && typeof global !== 'undefined';
const isBrowser = typeof self !== 'undefined' && typeof self.window !== 'undefined';

View File

@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
import { uniq } from 'lodash';
import uniq from 'lodash.uniq';
import store from 'store';
import Api from '@parity/api';