update several packages to remove deprecation warnings
This commit is contained in:
		
							parent
							
								
									94a9c60eb9
								
							
						
					
					
						commit
						f9e33f43c0
					
				| 
						 | 
				
			
			@ -7,7 +7,6 @@ const CopyWebpackPlugin = require('copy-webpack-plugin');
 | 
			
		|||
const CompressionPlugin = require('compression-webpack-plugin');
 | 
			
		||||
const NameAllModulesPlugin = require('name-all-modules-plugin');
 | 
			
		||||
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
 | 
			
		||||
const WatchMissingNodeModulesPlugin = require('react-dev-utils/WatchMissingNodeModulesPlugin');
 | 
			
		||||
 | 
			
		||||
const ROOT_PATH = path.resolve(__dirname, '..');
 | 
			
		||||
const IS_PRODUCTION = process.env.NODE_ENV === 'production';
 | 
			
		||||
| 
						 | 
				
			
			@ -272,29 +271,30 @@ if (IS_DEV_SERVER) {
 | 
			
		|||
    hot: DEV_SERVER_LIVERELOAD,
 | 
			
		||||
    inline: DEV_SERVER_LIVERELOAD,
 | 
			
		||||
  };
 | 
			
		||||
  config.plugins.push(
 | 
			
		||||
    // watch node_modules for changes if we encounter a missing module compile error
 | 
			
		||||
    // new WatchMissingNodeModulesPlugin(path.join(ROOT_PATH, 'node_modules')),
 | 
			
		||||
  config.plugins.push({
 | 
			
		||||
    apply(compiler) {
 | 
			
		||||
      compiler.hooks.emit.tapAsync('WatchForChangesPlugin', (compilation, callback) => {
 | 
			
		||||
        const missingDeps = Array.from(compilation.missingDependencies);
 | 
			
		||||
        const nodeModulesPath = path.join(ROOT_PATH, 'node_modules');
 | 
			
		||||
        const hasMissingNodeModules = missingDeps.some(
 | 
			
		||||
          file => file.indexOf(nodeModulesPath) !== -1
 | 
			
		||||
        );
 | 
			
		||||
 | 
			
		||||
    // watch for changes to our automatic entry point modules
 | 
			
		||||
    {
 | 
			
		||||
      apply(compiler) {
 | 
			
		||||
        compiler.plugin('emit', (compilation, callback) => {
 | 
			
		||||
          compilation.contextDependencies = [
 | 
			
		||||
            ...compilation.contextDependencies,
 | 
			
		||||
            ...watchAutoEntries,
 | 
			
		||||
          ];
 | 
			
		||||
        // watch for changes to missing node_modules
 | 
			
		||||
        if (hasMissingNodeModules) compilation.contextDependencies.add(nodeModulesPath);
 | 
			
		||||
 | 
			
		||||
          // report our auto-generated bundle count
 | 
			
		||||
          console.log(
 | 
			
		||||
            `${autoEntriesCount} entries from '/pages' automatically added to webpack output.`
 | 
			
		||||
          );
 | 
			
		||||
        // watch for changes to automatic entrypoints
 | 
			
		||||
        watchAutoEntries.forEach(watchPath => compilation.contextDependencies.add(watchPath));
 | 
			
		||||
 | 
			
		||||
          callback();
 | 
			
		||||
        });
 | 
			
		||||
      },
 | 
			
		||||
    }
 | 
			
		||||
  );
 | 
			
		||||
        // report our auto-generated bundle count
 | 
			
		||||
        console.log(
 | 
			
		||||
          `${autoEntriesCount} entries from '/pages' automatically added to webpack output.`
 | 
			
		||||
        );
 | 
			
		||||
 | 
			
		||||
        callback();
 | 
			
		||||
      });
 | 
			
		||||
    },
 | 
			
		||||
  });
 | 
			
		||||
  if (DEV_SERVER_LIVERELOAD) {
 | 
			
		||||
    config.plugins.push(new webpack.HotModuleReplacementPlugin());
 | 
			
		||||
  }
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -70,7 +70,6 @@
 | 
			
		|||
    "raphael": "^2.2.7",
 | 
			
		||||
    "raven-js": "^3.22.1",
 | 
			
		||||
    "raw-loader": "^0.5.1",
 | 
			
		||||
    "react-dev-utils": "^5.0.0",
 | 
			
		||||
    "sanitize-html": "^1.16.1",
 | 
			
		||||
    "select2": "3.5.2-browserify",
 | 
			
		||||
    "sql.js": "^0.4.0",
 | 
			
		||||
| 
						 | 
				
			
			@ -92,8 +91,8 @@
 | 
			
		|||
    "vuex": "^3.0.1",
 | 
			
		||||
    "webpack": "^4.6.0",
 | 
			
		||||
    "webpack-bundle-analyzer": "^2.11.0",
 | 
			
		||||
    "webpack-cli": "^2.0.14",
 | 
			
		||||
    "webpack-stats-plugin": "^0.1.5",
 | 
			
		||||
    "webpack-cli": "^2.0.15",
 | 
			
		||||
    "webpack-stats-plugin": "^0.2.1",
 | 
			
		||||
    "worker-loader": "^1.1.1"
 | 
			
		||||
  },
 | 
			
		||||
  "devDependencies": {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										167
									
								
								yarn.lock
								
								
								
								
							
							
						
						
									
										167
									
								
								yarn.lock
								
								
								
								
							| 
						 | 
				
			
			@ -101,10 +101,6 @@ acorn@^5.0.0, acorn@^5.2.1, acorn@^5.3.0:
 | 
			
		|||
  version "5.4.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.4.1.tgz#fdc58d9d17f4a4e98d102ded826a9b9759125102"
 | 
			
		||||
 | 
			
		||||
address@1.0.3, address@^1.0.1:
 | 
			
		||||
  version "1.0.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/address/-/address-1.0.3.tgz#b5f50631f8d6cec8bd20c963963afb55e06cbce9"
 | 
			
		||||
 | 
			
		||||
addressparser@1.0.1:
 | 
			
		||||
  version "1.0.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/addressparser/-/addressparser-1.0.1.tgz#47afbe1a2a9262191db6838e4fd1d39b40821746"
 | 
			
		||||
| 
						 | 
				
			
			@ -281,10 +277,6 @@ array-differ@^1.0.0:
 | 
			
		|||
  version "1.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031"
 | 
			
		||||
 | 
			
		||||
array-filter@~0.0.0:
 | 
			
		||||
  version "0.0.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec"
 | 
			
		||||
 | 
			
		||||
array-find-index@^1.0.1:
 | 
			
		||||
  version "1.0.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1"
 | 
			
		||||
| 
						 | 
				
			
			@ -308,14 +300,6 @@ array-includes@^3.0.3:
 | 
			
		|||
    define-properties "^1.1.2"
 | 
			
		||||
    es-abstract "^1.7.0"
 | 
			
		||||
 | 
			
		||||
array-map@~0.0.0:
 | 
			
		||||
  version "0.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662"
 | 
			
		||||
 | 
			
		||||
array-reduce@~0.0.0:
 | 
			
		||||
  version "0.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b"
 | 
			
		||||
 | 
			
		||||
array-slice@^0.2.3:
 | 
			
		||||
  version "0.2.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-0.2.3.tgz#dd3cfb80ed7973a75117cdac69b0b99ec86186f5"
 | 
			
		||||
| 
						 | 
				
			
			@ -472,7 +456,7 @@ axios@^0.17.1:
 | 
			
		|||
    follow-redirects "^1.2.5"
 | 
			
		||||
    is-buffer "^1.1.5"
 | 
			
		||||
 | 
			
		||||
babel-code-frame@6.26.0, babel-code-frame@^6.16.0, babel-code-frame@^6.26.0:
 | 
			
		||||
babel-code-frame@^6.16.0, babel-code-frame@^6.26.0:
 | 
			
		||||
  version "6.26.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
 | 
			
		||||
  dependencies:
 | 
			
		||||
| 
						 | 
				
			
			@ -1295,7 +1279,7 @@ boxen@^1.2.1:
 | 
			
		|||
    term-size "^1.2.0"
 | 
			
		||||
    widest-line "^2.0.0"
 | 
			
		||||
 | 
			
		||||
brace-expansion@^1.0.0, brace-expansion@^1.1.7, brace-expansion@^1.1.8:
 | 
			
		||||
brace-expansion@^1.1.7, brace-expansion@^1.1.8:
 | 
			
		||||
  version "1.1.11"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
 | 
			
		||||
  dependencies:
 | 
			
		||||
| 
						 | 
				
			
			@ -1553,7 +1537,7 @@ center-align@^0.1.1:
 | 
			
		|||
    align-text "^0.1.3"
 | 
			
		||||
    lazy-cache "^1.0.3"
 | 
			
		||||
 | 
			
		||||
chalk@1.1.3, chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3:
 | 
			
		||||
chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3:
 | 
			
		||||
  version "1.1.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
 | 
			
		||||
  dependencies:
 | 
			
		||||
| 
						 | 
				
			
			@ -2073,7 +2057,7 @@ cropper@^2.3.0:
 | 
			
		|||
  dependencies:
 | 
			
		||||
    jquery ">= 1.9.1"
 | 
			
		||||
 | 
			
		||||
cross-spawn@5.1.0, cross-spawn@^5.0.1, cross-spawn@^5.1.0:
 | 
			
		||||
cross-spawn@^5.0.1, cross-spawn@^5.1.0:
 | 
			
		||||
  version "5.1.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
 | 
			
		||||
  dependencies:
 | 
			
		||||
| 
						 | 
				
			
			@ -2384,7 +2368,7 @@ de-indent@^1.0.2:
 | 
			
		|||
  version "1.0.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/de-indent/-/de-indent-1.0.2.tgz#b2038e846dc33baa5796128d0804b455b8c1e21d"
 | 
			
		||||
 | 
			
		||||
debug@2, debug@2.6.9, debug@^2.1.1, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.6, debug@^2.6.8, debug@^2.6.9, debug@~2.6.4, debug@~2.6.6:
 | 
			
		||||
debug@2, debug@2.6.9, debug@^2.1.1, debug@^2.2.0, debug@^2.3.3, debug@^2.6.6, debug@^2.6.8, debug@^2.6.9, debug@~2.6.4, debug@~2.6.6:
 | 
			
		||||
  version "2.6.9"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
 | 
			
		||||
  dependencies:
 | 
			
		||||
| 
						 | 
				
			
			@ -2420,7 +2404,7 @@ decode-uri-component@^0.2.0:
 | 
			
		|||
  version "0.2.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
 | 
			
		||||
 | 
			
		||||
decompress-response@^3.3.0:
 | 
			
		||||
decompress-response@^3.2.0, decompress-response@^3.3.0:
 | 
			
		||||
  version "3.3.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3"
 | 
			
		||||
  dependencies:
 | 
			
		||||
| 
						 | 
				
			
			@ -2550,13 +2534,6 @@ detect-node@^2.0.3:
 | 
			
		|||
  version "2.0.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.3.tgz#a2033c09cc8e158d37748fbde7507832bd6ce127"
 | 
			
		||||
 | 
			
		||||
detect-port-alt@1.1.5:
 | 
			
		||||
  version "1.1.5"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/detect-port-alt/-/detect-port-alt-1.1.5.tgz#a1aa8fc805a4a5df9b905b7ddc7eed036bcce889"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    address "^1.0.1"
 | 
			
		||||
    debug "^2.6.0"
 | 
			
		||||
 | 
			
		||||
di@^0.0.1:
 | 
			
		||||
  version "0.0.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/di/-/di-0.0.1.tgz#806649326ceaa7caa3306d75d985ea2748ba913c"
 | 
			
		||||
| 
						 | 
				
			
			@ -2923,7 +2900,7 @@ escape-html@~1.0.3:
 | 
			
		|||
  version "1.0.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
 | 
			
		||||
 | 
			
		||||
escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
 | 
			
		||||
escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
 | 
			
		||||
  version "1.0.5"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -3417,10 +3394,6 @@ fileset@^2.0.2:
 | 
			
		|||
    glob "^7.0.3"
 | 
			
		||||
    minimatch "^3.0.3"
 | 
			
		||||
 | 
			
		||||
filesize@3.5.11:
 | 
			
		||||
  version "3.5.11"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/filesize/-/filesize-3.5.11.tgz#1919326749433bb3cf77368bd158caabcc19e9ee"
 | 
			
		||||
 | 
			
		||||
filesize@^3.5.11:
 | 
			
		||||
  version "3.6.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/filesize/-/filesize-3.6.0.tgz#22d079615624bb6fd3c04026120628a41b3f4efa"
 | 
			
		||||
| 
						 | 
				
			
			@ -3782,7 +3755,7 @@ global-dirs@^0.1.0:
 | 
			
		|||
  dependencies:
 | 
			
		||||
    ini "^1.3.4"
 | 
			
		||||
 | 
			
		||||
global-modules@1.0.0, global-modules@^1.0.0:
 | 
			
		||||
global-modules@^1.0.0:
 | 
			
		||||
  version "1.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea"
 | 
			
		||||
  dependencies:
 | 
			
		||||
| 
						 | 
				
			
			@ -3919,12 +3892,6 @@ grouped-queue@^0.3.3:
 | 
			
		|||
  dependencies:
 | 
			
		||||
    lodash "^4.17.2"
 | 
			
		||||
 | 
			
		||||
gzip-size@3.0.0:
 | 
			
		||||
  version "3.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-3.0.0.tgz#546188e9bdc337f673772f81660464b389dce520"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    duplexer "^0.1.1"
 | 
			
		||||
 | 
			
		||||
gzip-size@^4.1.0:
 | 
			
		||||
  version "4.1.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-4.1.0.tgz#8ae096257eabe7d69c45be2b67c448124ffb517c"
 | 
			
		||||
| 
						 | 
				
			
			@ -4355,25 +4322,6 @@ ini@^1.3.4, ini@~1.3.0:
 | 
			
		|||
  version "1.3.5"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
 | 
			
		||||
 | 
			
		||||
inquirer@3.3.0, inquirer@^3.3.0:
 | 
			
		||||
  version "3.3.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    ansi-escapes "^3.0.0"
 | 
			
		||||
    chalk "^2.0.0"
 | 
			
		||||
    cli-cursor "^2.1.0"
 | 
			
		||||
    cli-width "^2.0.0"
 | 
			
		||||
    external-editor "^2.0.4"
 | 
			
		||||
    figures "^2.0.0"
 | 
			
		||||
    lodash "^4.3.0"
 | 
			
		||||
    mute-stream "0.0.7"
 | 
			
		||||
    run-async "^2.2.0"
 | 
			
		||||
    rx-lite "^4.0.8"
 | 
			
		||||
    rx-lite-aggregates "^4.0.8"
 | 
			
		||||
    string-width "^2.1.0"
 | 
			
		||||
    strip-ansi "^4.0.0"
 | 
			
		||||
    through "^2.3.6"
 | 
			
		||||
 | 
			
		||||
inquirer@^0.12.0:
 | 
			
		||||
  version "0.12.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e"
 | 
			
		||||
| 
						 | 
				
			
			@ -4392,6 +4340,25 @@ inquirer@^0.12.0:
 | 
			
		|||
    strip-ansi "^3.0.0"
 | 
			
		||||
    through "^2.3.6"
 | 
			
		||||
 | 
			
		||||
inquirer@^3.3.0:
 | 
			
		||||
  version "3.3.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    ansi-escapes "^3.0.0"
 | 
			
		||||
    chalk "^2.0.0"
 | 
			
		||||
    cli-cursor "^2.1.0"
 | 
			
		||||
    cli-width "^2.0.0"
 | 
			
		||||
    external-editor "^2.0.4"
 | 
			
		||||
    figures "^2.0.0"
 | 
			
		||||
    lodash "^4.3.0"
 | 
			
		||||
    mute-stream "0.0.7"
 | 
			
		||||
    run-async "^2.2.0"
 | 
			
		||||
    rx-lite "^4.0.8"
 | 
			
		||||
    rx-lite-aggregates "^4.0.8"
 | 
			
		||||
    string-width "^2.1.0"
 | 
			
		||||
    strip-ansi "^4.0.0"
 | 
			
		||||
    through "^2.3.6"
 | 
			
		||||
 | 
			
		||||
inquirer@^5.1.0:
 | 
			
		||||
  version "5.2.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-5.2.0.tgz#db350c2b73daca77ff1243962e9f22f099685726"
 | 
			
		||||
| 
						 | 
				
			
			@ -4731,10 +4698,6 @@ is-retry-allowed@^1.0.0, is-retry-allowed@^1.1.0:
 | 
			
		|||
  version "1.1.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34"
 | 
			
		||||
 | 
			
		||||
is-root@1.0.0:
 | 
			
		||||
  version "1.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/is-root/-/is-root-1.0.0.tgz#07b6c233bc394cd9d02ba15c966bd6660d6342d5"
 | 
			
		||||
 | 
			
		||||
is-scoped@^1.0.0:
 | 
			
		||||
  version "1.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/is-scoped/-/is-scoped-1.0.0.tgz#449ca98299e713038256289ecb2b540dc437cb30"
 | 
			
		||||
| 
						 | 
				
			
			@ -5823,12 +5786,6 @@ minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
 | 
			
		|||
  dependencies:
 | 
			
		||||
    brace-expansion "^1.1.7"
 | 
			
		||||
 | 
			
		||||
minimatch@3.0.3:
 | 
			
		||||
  version "3.0.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    brace-expansion "^1.0.0"
 | 
			
		||||
 | 
			
		||||
minimist@0.0.8:
 | 
			
		||||
  version "0.0.8"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
 | 
			
		||||
| 
						 | 
				
			
			@ -6290,7 +6247,7 @@ opener@^1.4.3:
 | 
			
		|||
  version "1.4.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/opener/-/opener-1.4.3.tgz#5c6da2c5d7e5831e8ffa3964950f8d6674ac90b8"
 | 
			
		||||
 | 
			
		||||
opn@5.2.0, opn@^5.1.0:
 | 
			
		||||
opn@^5.1.0:
 | 
			
		||||
  version "5.2.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/opn/-/opn-5.2.0.tgz#71fdf934d6827d676cecbea1531f95d354641225"
 | 
			
		||||
  dependencies:
 | 
			
		||||
| 
						 | 
				
			
			@ -6356,6 +6313,10 @@ osenv@^0.1.4:
 | 
			
		|||
    os-homedir "^1.0.0"
 | 
			
		||||
    os-tmpdir "^1.0.0"
 | 
			
		||||
 | 
			
		||||
p-cancelable@^0.3.0:
 | 
			
		||||
  version "0.3.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.3.0.tgz#b9e123800bcebb7ac13a479be195b507b98d30fa"
 | 
			
		||||
 | 
			
		||||
p-cancelable@^0.4.0:
 | 
			
		||||
  version "0.4.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.4.1.tgz#35f363d67d52081c8d9585e37bcceb7e0bbcb2a0"
 | 
			
		||||
| 
						 | 
				
			
			@ -6398,6 +6359,12 @@ p-reduce@^1.0.0:
 | 
			
		|||
  version "1.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/p-reduce/-/p-reduce-1.0.0.tgz#18c2b0dd936a4690a529f8231f58a0fdb6a47dfa"
 | 
			
		||||
 | 
			
		||||
p-timeout@^1.1.1:
 | 
			
		||||
  version "1.2.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-1.2.1.tgz#5eb3b353b7fce99f101a1038880bb054ebbea386"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    p-finally "^1.0.0"
 | 
			
		||||
 | 
			
		||||
p-timeout@^2.0.1:
 | 
			
		||||
  version "2.0.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-2.0.1.tgz#d8dd1979595d2dc0139e1fe46b8b646cb3cdf038"
 | 
			
		||||
| 
						 | 
				
			
			@ -7180,33 +7147,6 @@ rc@^1.0.1, rc@^1.1.6, rc@^1.1.7:
 | 
			
		|||
    minimist "^1.2.0"
 | 
			
		||||
    strip-json-comments "~2.0.1"
 | 
			
		||||
 | 
			
		||||
react-dev-utils@^5.0.0:
 | 
			
		||||
  version "5.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-5.0.0.tgz#425ac7c9c40c2603bc4f7ab8836c1406e96bb473"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    address "1.0.3"
 | 
			
		||||
    babel-code-frame "6.26.0"
 | 
			
		||||
    chalk "1.1.3"
 | 
			
		||||
    cross-spawn "5.1.0"
 | 
			
		||||
    detect-port-alt "1.1.5"
 | 
			
		||||
    escape-string-regexp "1.0.5"
 | 
			
		||||
    filesize "3.5.11"
 | 
			
		||||
    global-modules "1.0.0"
 | 
			
		||||
    gzip-size "3.0.0"
 | 
			
		||||
    inquirer "3.3.0"
 | 
			
		||||
    is-root "1.0.0"
 | 
			
		||||
    opn "5.2.0"
 | 
			
		||||
    react-error-overlay "^4.0.0"
 | 
			
		||||
    recursive-readdir "2.2.1"
 | 
			
		||||
    shell-quote "1.6.1"
 | 
			
		||||
    sockjs-client "1.1.4"
 | 
			
		||||
    strip-ansi "3.0.1"
 | 
			
		||||
    text-table "0.2.0"
 | 
			
		||||
 | 
			
		||||
react-error-overlay@^4.0.0:
 | 
			
		||||
  version "4.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-4.0.0.tgz#d198408a85b4070937a98667f500c832f86bd5d4"
 | 
			
		||||
 | 
			
		||||
read-chunk@^2.1.0:
 | 
			
		||||
  version "2.1.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/read-chunk/-/read-chunk-2.1.0.tgz#6a04c0928005ed9d42e1a6ac5600e19cbc7ff655"
 | 
			
		||||
| 
						 | 
				
			
			@ -7318,12 +7258,6 @@ rechoir@^0.6.2:
 | 
			
		|||
  dependencies:
 | 
			
		||||
    resolve "^1.1.6"
 | 
			
		||||
 | 
			
		||||
recursive-readdir@2.2.1:
 | 
			
		||||
  version "2.2.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/recursive-readdir/-/recursive-readdir-2.2.1.tgz#90ef231d0778c5ce093c9a48d74e5c5422d13a99"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    minimatch "3.0.3"
 | 
			
		||||
 | 
			
		||||
redent@^1.0.0:
 | 
			
		||||
  version "1.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde"
 | 
			
		||||
| 
						 | 
				
			
			@ -7884,15 +7818,6 @@ shebang-regex@^1.0.0:
 | 
			
		|||
  version "1.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
 | 
			
		||||
 | 
			
		||||
shell-quote@1.6.1:
 | 
			
		||||
  version "1.6.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    array-filter "~0.0.0"
 | 
			
		||||
    array-map "~0.0.0"
 | 
			
		||||
    array-reduce "~0.0.0"
 | 
			
		||||
    jsonify "~0.0.0"
 | 
			
		||||
 | 
			
		||||
shelljs@^0.7.5:
 | 
			
		||||
  version "0.7.8"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.8.tgz#decbcf874b0d1e5fb72e14b164a9683048e9acb3"
 | 
			
		||||
| 
						 | 
				
			
			@ -8311,7 +8236,7 @@ stringstream@~0.0.4, stringstream@~0.0.5:
 | 
			
		|||
  version "0.0.5"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
 | 
			
		||||
 | 
			
		||||
strip-ansi@3.0.1, strip-ansi@^3.0.0, strip-ansi@^3.0.1:
 | 
			
		||||
strip-ansi@^3.0.0, strip-ansi@^3.0.1:
 | 
			
		||||
  version "3.0.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
 | 
			
		||||
  dependencies:
 | 
			
		||||
| 
						 | 
				
			
			@ -8480,7 +8405,7 @@ test-exclude@^4.2.1:
 | 
			
		|||
    read-pkg-up "^1.0.1"
 | 
			
		||||
    require-main-filename "^1.0.1"
 | 
			
		||||
 | 
			
		||||
text-table@0.2.0, text-table@^0.2.0, text-table@~0.2.0:
 | 
			
		||||
text-table@^0.2.0, text-table@~0.2.0:
 | 
			
		||||
  version "0.2.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -9103,9 +9028,9 @@ webpack-bundle-analyzer@^2.11.0:
 | 
			
		|||
    opener "^1.4.3"
 | 
			
		||||
    ws "^4.0.0"
 | 
			
		||||
 | 
			
		||||
webpack-cli@^2.0.14:
 | 
			
		||||
  version "2.0.14"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-2.0.14.tgz#71d03d8c10547c1dfd674f71ff3b0457c33a74cd"
 | 
			
		||||
webpack-cli@^2.0.15:
 | 
			
		||||
  version "2.0.15"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-2.0.15.tgz#7532066556b03bd3292285ac08537e28844616c2"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    chalk "^2.3.2"
 | 
			
		||||
    cross-spawn "^6.0.5"
 | 
			
		||||
| 
						 | 
				
			
			@ -9223,9 +9148,9 @@ webpack-sources@^1.1.0:
 | 
			
		|||
    source-list-map "^2.0.0"
 | 
			
		||||
    source-map "~0.6.1"
 | 
			
		||||
 | 
			
		||||
webpack-stats-plugin@^0.1.5:
 | 
			
		||||
  version "0.1.5"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/webpack-stats-plugin/-/webpack-stats-plugin-0.1.5.tgz#29e5f12ebfd53158d31d656a113ac1f7b86179d9"
 | 
			
		||||
webpack-stats-plugin@^0.2.1:
 | 
			
		||||
  version "0.2.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/webpack-stats-plugin/-/webpack-stats-plugin-0.2.1.tgz#1f5bac13fc25d62cbb5fd0ff646757dc802b8595"
 | 
			
		||||
 | 
			
		||||
webpack@^4.6.0:
 | 
			
		||||
  version "4.6.0"
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue