build: update babel and webpack dependencies (#1987)

Includes a switch from core-js@2 to core-js@3
This commit is contained in:
Michael Bradley 2019-10-24 16:41:28 -05:00 committed by Iuri Matias
parent ed02cc849f
commit d17fe33339
66 changed files with 337 additions and 339 deletions

View File

@ -26,9 +26,10 @@ module.exports = (api) => {
['@babel/plugin-proposal-class-properties', { ['@babel/plugin-proposal-class-properties', {
loose: true loose: true
}], }],
'@babel/plugin-proposal-nullish-coalescing-operator',
'@babel/plugin-proposal-optional-chaining', '@babel/plugin-proposal-optional-chaining',
['@babel/plugin-transform-runtime', { ['@babel/plugin-transform-runtime', {
corejs: 2 corejs: 3
}] }]
], ],
presets: [ presets: [
@ -44,8 +45,11 @@ module.exports = (api) => {
const browser = cloneDeep(base); const browser = cloneDeep(base);
browser.plugins[browser.plugins.length - 1][1].useESModules = true; browser.plugins[browser.plugins.length - 1][1].useESModules = true;
browser.presets[0] = [browser.presets[0], { browser.presets[0] = [browser.presets[0], {
corejs: 3,
modules: false, modules: false,
targets: {browsers: ['last 1 version', 'not dead', '> 0.2%']} shippedProposals: true,
targets: {browsers: ['last 1 version', 'not dead', '> 0.2%']},
useBuiltIns: 'usage'
}]; }];
if (env === 'browser' || env.startsWith('browser:')) { if (env === 'browser' || env.startsWith('browser:')) {
@ -59,7 +63,10 @@ module.exports = (api) => {
'babel-plugin-dynamic-import-node' 'babel-plugin-dynamic-import-node'
); );
node.presets[0] = [node.presets[0], { node.presets[0] = [node.presets[0], {
targets: {node: '10.17.0'} corejs: 3,
shippedProposals: true,
targets: {node: '10.17.0'},
useBuiltIns: 'usage'
}]; }];
if (env === 'node' || env.startsWith('node:')) { if (env === 'node' || env.startsWith('node:')) {

View File

@ -1,7 +1,7 @@
{ {
"description": "Test DApp for integration testing purposes", "description": "Test DApp for integration testing purposes",
"devDependencies": { "devDependencies": {
"@babel/code-frame": "7.0.0", "@babel/code-frame": "7.5.5",
"bootstrap": "3.4.1", "bootstrap": "3.4.1",
"embark": "^4.1.1", "embark": "^4.1.1",
"embark-dapp-test-service": "^4.0.0", "embark-dapp-test-service": "^4.0.0",

View File

@ -41,7 +41,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"axios": "0.19.0", "axios": "0.19.0",
"keccakjs": "0.2.3" "keccakjs": "0.2.3"
}, },

View File

@ -42,7 +42,7 @@
"watch:test": "react-scripts test" "watch:test": "react-scripts test"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "7.6.2", "@babel/core": "7.6.4",
"@coreui/coreui": "2.1.0", "@coreui/coreui": "2.1.0",
"@coreui/react": "2.1.0", "@coreui/react": "2.1.0",
"@emotion/core": "0.13.1", "@emotion/core": "0.13.1",

View File

@ -46,7 +46,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"async": "2.6.1", "async": "2.6.1",
"colors": "1.3.2", "colors": "1.3.2",
"embark-utils": "^4.1.1", "embark-utils": "^4.1.1",

View File

@ -34,10 +34,10 @@ class VM {
require: { require: {
builtin: ["path", "util"], builtin: ["path", "util"],
external: [ external: [
"@babel/runtime-corejs2/core-js/json/stringify", "@babel/runtime-corejs3/core-js/json/stringify",
"@babel/runtime-corejs2/core-js/object/assign", "@babel/runtime-corejs3/core-js/object/assign",
"@babel/runtime-corejs2/core-js/promise", "@babel/runtime-corejs3/core-js/promise",
"@babel/runtime-corejs2/helpers/interopRequireDefault", "@babel/runtime-corejs3/helpers/interopRequireDefault",
// "embark-utils", // "embark-utils",
// TODO: ideally this shouldnt' be needed/here or should be configurable by the modules themselves somehow // TODO: ideally this shouldnt' be needed/here or should be configurable by the modules themselves somehow
// "embarkjs-ens", // "embarkjs-ens",

View File

@ -48,7 +48,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"async": "2.6.1", "async": "2.6.1",
"chalk": "2.4.2", "chalk": "2.4.2",
"embark-core": "^4.1.1", "embark-core": "^4.1.1",

View File

@ -43,7 +43,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"embark-i18n": "^4.1.1", "embark-i18n": "^4.1.1",
"embark-utils": "^4.1.1", "embark-utils": "^4.1.1",
"flatted": "0.2.3", "flatted": "0.2.3",

View File

@ -43,7 +43,7 @@
"watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch" "watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"colors": "1.3.2", "colors": "1.3.2",
"i18n": "0.8.3", "i18n": "0.8.3",
"os-locale": "2.1.0" "os-locale": "2.1.0"

View File

@ -41,7 +41,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"colors": "1.3.2", "colors": "1.3.2",
"date-and-time": "0.6.2", "date-and-time": "0.6.2",
"embark-utils": "^4.1.1" "embark-utils": "^4.1.1"

View File

@ -46,7 +46,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"bip39": "3.0.2", "bip39": "3.0.2",
"clipboardy": "1.2.3", "clipboardy": "1.2.3",
"colors": "1.3.2", "colors": "1.3.2",

View File

@ -56,23 +56,23 @@
] ]
}, },
"dependencies": { "dependencies": {
"@babel/core": "7.6.2", "@babel/core": "7.6.4",
"@babel/plugin-proposal-class-properties": "7.5.5", "@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/plugin-proposal-decorators": "7.3.0", "@babel/plugin-proposal-decorators": "7.6.0",
"@babel/plugin-proposal-object-rest-spread": "7.3.2", "@babel/plugin-proposal-object-rest-spread": "7.6.2",
"@babel/plugin-syntax-dynamic-import": "7.2.0", "@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-destructuring": "7.5.0", "@babel/plugin-transform-destructuring": "7.6.0",
"@babel/plugin-transform-flow-strip-types": "7.4.4", "@babel/plugin-transform-flow-strip-types": "7.6.3",
"@babel/plugin-transform-runtime": "7.2.0", "@babel/plugin-transform-runtime": "7.6.2",
"@babel/preset-env": "7.5.5", "@babel/preset-env": "7.6.3",
"@babel/preset-react": "7.0.0", "@babel/preset-react": "7.6.3",
"@babel/preset-typescript": "7.6.0", "@babel/preset-typescript": "7.6.0",
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"ajv": "6.10.2", "ajv": "6.10.2",
"ascii-table": "0.0.9", "ascii-table": "0.0.9",
"async": "2.6.1", "async": "2.6.1",
"babel-loader": "8.0.6", "babel-loader": "8.0.6",
"babel-plugin-macros": "2.4.5", "babel-plugin-macros": "2.6.1",
"babel-plugin-module-resolver": "3.2.0", "babel-plugin-module-resolver": "3.2.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.24", "babel-plugin-transform-react-remove-prop-types": "0.4.24",
"bip39": "3.0.2", "bip39": "3.0.2",
@ -81,7 +81,7 @@
"clone-deep": "4.0.0", "clone-deep": "4.0.0",
"colors": "1.3.2", "colors": "1.3.2",
"commander": "2.18.0", "commander": "2.18.0",
"css-loader": "1.0.0", "css-loader": "3.2.0",
"date-and-time": "0.6.2", "date-and-time": "0.6.2",
"decompress": "4.2.0", "decompress": "4.2.0",
"deep-equal": "1.0.1", "deep-equal": "1.0.1",
@ -179,10 +179,10 @@
"source-map-support": "0.5.13", "source-map-support": "0.5.13",
"stream-json": "1.3.0", "stream-json": "1.3.0",
"string-replace-async": "1.2.1", "string-replace-async": "1.2.1",
"style-loader": "0.23.1", "style-loader": "1.0.0",
"tar": "4.4.2", "tar": "4.4.2",
"term.js": "0.0.7", "term.js": "0.0.7",
"url-loader": "2.1.0", "url-loader": "2.2.0",
"viz.js": "1.8.2", "viz.js": "1.8.2",
"vm2": "3.6.4", "vm2": "3.6.4",
"web3": "1.2.1", "web3": "1.2.1",

View File

@ -56,7 +56,7 @@
] ]
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"async": "2.6.1", "async": "2.6.1",
"async-es": "2.6.1", "async-es": "2.6.1",
"colors": "1.3.2" "colors": "1.3.2"

View File

@ -44,7 +44,7 @@
"solo": "embark-solo" "solo": "embark-solo"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"embarkjs": "^4.1.1", "embarkjs": "^4.1.1",
"eth-ens-namehash": "2.0.8", "eth-ens-namehash": "2.0.8",
"web3": "1.2.1" "web3": "1.2.1"

View File

@ -44,7 +44,7 @@
"solo": "embark-solo" "solo": "embark-solo"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"ipfs-api": "17.2.4" "ipfs-api": "17.2.4"
}, },
"devDependencies": { "devDependencies": {

View File

@ -44,7 +44,7 @@
"solo": "embark-solo" "solo": "embark-solo"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"swarm-api": "0.1.2", "swarm-api": "0.1.2",
"web3": "1.2.1" "web3": "1.2.1"
}, },

View File

@ -44,7 +44,7 @@
"solo": "embark-solo" "solo": "embark-solo"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"web3": "1.2.1" "web3": "1.2.1"
}, },
"devDependencies": { "devDependencies": {

View File

@ -44,7 +44,7 @@
"solo": "embark-solo" "solo": "embark-solo"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"rxjs": "6.4.0", "rxjs": "6.4.0",
"web3": "1.2.1" "web3": "1.2.1"
}, },

View File

@ -45,7 +45,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"async": "2.6.1", "async": "2.6.1",
"embark-core": "^4.1.1", "embark-core": "^4.1.1",
"embark-i18n": "^4.1.1", "embark-i18n": "^4.1.1",

View File

@ -42,17 +42,17 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"async": "2.6.1", "async": "2.6.1",
"clone-deep": "4.0.0", "clone-deep": "4.0.0",
"embark-core": "^4.1.1", "embark-core": "^4.1.1",
"embark-i18n": "^4.1.1", "embark-i18n": "^4.1.1",
"embark-utils": "^4.1.1", "embark-utils": "^4.1.1",
"fs-extra": "8.1.0", "fs-extra": "8.1.0",
"webpack": "4.41.0" "webpack": "4.41.2"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "7.6.2", "@babel/core": "7.6.4",
"babel-jest": "24.9.0", "babel-jest": "24.9.0",
"embark-solo": "^4.1.1", "embark-solo": "^4.1.1",
"embark-testing": "^4.1.1", "embark-testing": "^4.1.1",

View File

@ -143,7 +143,7 @@ const base = {
], ],
[ [
'@babel/plugin-transform-runtime', { '@babel/plugin-transform-runtime', {
corejs: 2, corejs: 3,
useESModules: true useESModules: true
} }
], ],
@ -152,11 +152,14 @@ const base = {
presets: [ presets: [
[ [
'@babel/preset-env', { '@babel/preset-env', {
corejs: 3,
exclude: ['transform-typeof-symbol'], exclude: ['transform-typeof-symbol'],
modules: false, modules: false,
shippedProposals: true,
targets: { targets: {
browsers: ['last 1 version', 'not dead', '> 0.2%'] browsers: ['last 1 version', 'not dead', '> 0.2%']
} },
useBuiltIns: 'usage'
} }
], ],
[ [

View File

@ -43,7 +43,7 @@
"watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch" "watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.3.1", "@babel/runtime-corejs3": "7.6.3",
"embark-core": "^4.1.1", "embark-core": "^4.1.1",
"embark-utils": "^4.1.1", "embark-utils": "^4.1.1",
"fs-extra": "8.1.0", "fs-extra": "8.1.0",
@ -54,8 +54,8 @@
"web3-eth-contract": "1.2.1" "web3-eth-contract": "1.2.1"
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "7.2.3", "@babel/cli": "7.6.4",
"@babel/core": "7.2.2", "@babel/core": "7.6.4",
"@types/fs-extra": "7.0.0", "@types/fs-extra": "7.0.0",
"@types/mocha": "5.2.7", "@types/mocha": "5.2.7",
"@types/prettier": "1.16.4", "@types/prettier": "1.16.4",

View File

@ -42,7 +42,7 @@
"watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch" "watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"async": "2.6.1", "async": "2.6.1",
"colors": "1.3.2", "colors": "1.3.2",
"embark-i18n": "^4.1.1", "embark-i18n": "^4.1.1",

View File

@ -40,7 +40,7 @@
"test": "jest" "test": "jest"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"async": "2.6.1", "async": "2.6.1",
"embark-core": "^4.1.1", "embark-core": "^4.1.1",
"embark-i18n": "^4.1.1", "embark-i18n": "^4.1.1",

View File

@ -41,7 +41,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"async": "2.6.1", "async": "2.6.1",
"embark-i18n": "^4.1.1", "embark-i18n": "^4.1.1",
"embark-utils": "^4.1.1", "embark-utils": "^4.1.1",

View File

@ -41,7 +41,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"ganache-cli": "6.4.3" "ganache-cli": "6.4.3"
}, },
"devDependencies": { "devDependencies": {

View File

@ -41,7 +41,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"async": "2.6.1", "async": "2.6.1",
"embark-core": "^4.1.1", "embark-core": "^4.1.1",
"embark-i18n": "^4.1.1", "embark-i18n": "^4.1.1",

View File

@ -41,7 +41,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"async": "2.6.1", "async": "2.6.1",
"viz.js": "1.8.2" "viz.js": "1.8.2"
}, },

View File

@ -43,7 +43,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"async": "2.6.1", "async": "2.6.1",
"colors": "1.3.2", "colors": "1.3.2",
"embark-core": "^4.1.1", "embark-core": "^4.1.1",

View File

@ -44,7 +44,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"async": "3.1.0", "async": "3.1.0",
"embark-i18n": "^4.1.1", "embark-i18n": "^4.1.1",
"embark-utils": "^4.1.1", "embark-utils": "^4.1.1",

View File

@ -45,7 +45,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"async": "2.6.1", "async": "2.6.1",
"embark-core": "^4.1.1", "embark-core": "^4.1.1",
"embark-i18n": "^4.1.1", "embark-i18n": "^4.1.1",

View File

@ -32,7 +32,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"async": "2.6.1", "async": "2.6.1",
"embark-i18n": "^4.1.1", "embark-i18n": "^4.1.1",
"embark-utils": "^4.1.1" "embark-utils": "^4.1.1"

View File

@ -41,7 +41,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"ascii-table": "0.0.9", "ascii-table": "0.0.9",
"async": "2.6.1", "async": "2.6.1",
"web3-utils": "1.2.1" "web3-utils": "1.2.1"

View File

@ -42,7 +42,7 @@
"watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch" "watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"ajv": "6.10.2", "ajv": "6.10.2",
"embark-i18n": "^4.1.1", "embark-i18n": "^4.1.1",
"embark-utils": "^4.1.1", "embark-utils": "^4.1.1",

View File

@ -46,14 +46,14 @@
"test": "jest" "test": "jest"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"circom": "0.0.31", "circom": "0.0.31",
"find-up": "4.1.0", "find-up": "4.1.0",
"glob": "7.1.4", "glob": "7.1.4",
"snarkjs": "0.1.19" "snarkjs": "0.1.19"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "7.6.2", "@babel/core": "7.6.4",
"babel-eslint": "10.0.3", "babel-eslint": "10.0.3",
"babel-jest": "24.9.0", "babel-jest": "24.9.0",
"embark-solo": "^4.1.1", "embark-solo": "^4.1.1",

View File

@ -41,7 +41,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"async": "2.6.1", "async": "2.6.1",
"semver": "5.6.0", "semver": "5.6.0",
"shelljs": "0.8.3" "shelljs": "0.8.3"

View File

@ -41,7 +41,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"async": "3.1.0", "async": "3.1.0",
"remix-tests": "0.1.14", "remix-tests": "0.1.14",
"web3": "1.2.1", "web3": "1.2.1",

View File

@ -41,7 +41,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"async": "2.6.1", "async": "2.6.1",
"embark-core": "^4.1.1", "embark-core": "^4.1.1",
"embark-i18n": "^4.1.1", "embark-i18n": "^4.1.1",

View File

@ -41,7 +41,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"async": "2.6.1", "async": "2.6.1",
"embark-i18n": "^4.1.1", "embark-i18n": "^4.1.1",
"viz.js": "1.8.2" "viz.js": "1.8.2"

View File

@ -44,7 +44,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"async": "2.6.1", "async": "2.6.1",
"colors": "1.3.2", "colors": "1.3.2",
"embark-core": "^4.1.1", "embark-core": "^4.1.1",

View File

@ -41,7 +41,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"async": "2.6.1", "async": "2.6.1",
"embark-core": "^4.1.1", "embark-core": "^4.1.1",
"embark-i18n": "^4.1.1", "embark-i18n": "^4.1.1",

View File

@ -41,7 +41,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"async": "2.6.1", "async": "2.6.1",
"viz.js": "1.8.2" "viz.js": "1.8.2"
}, },

View File

@ -41,7 +41,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"async": "2.6.1", "async": "2.6.1",
"embark-i18n": "^4.1.1", "embark-i18n": "^4.1.1",
"shelljs": "0.8.3" "shelljs": "0.8.3"

View File

@ -41,7 +41,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"ejs": "2.6.1", "ejs": "2.6.1",
"embark-core": "^4.1.1", "embark-core": "^4.1.1",
"embark-utils": "^4.1.1", "embark-utils": "^4.1.1",

View File

@ -41,7 +41,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"async": "2.6.1", "async": "2.6.1",
"embark-core": "^4.1.1", "embark-core": "^4.1.1",
"embark-i18n": "^4.1.1", "embark-i18n": "^4.1.1",

View File

@ -42,7 +42,7 @@
"watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch" "watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"colors": "1.3.2", "colors": "1.3.2",
"embark-i18n": "^4.1.1", "embark-i18n": "^4.1.1",
"embark-utils": "^4.1.1" "embark-utils": "^4.1.1"

View File

@ -41,7 +41,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"embark-i18n": "^4.1.1", "embark-i18n": "^4.1.1",
"embark-utils": "^4.1.1", "embark-utils": "^4.1.1",
"keccakjs": "0.2.3", "keccakjs": "0.2.3",

View File

@ -41,7 +41,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"web3": "1.2.1" "web3": "1.2.1"
}, },
"devDependencies": { "devDependencies": {

View File

@ -42,7 +42,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"async": "2.6.1", "async": "2.6.1",
"clone-deep": "4.0.0", "clone-deep": "4.0.0",
"embark-core": "^4.1.1", "embark-core": "^4.1.1",
@ -50,7 +50,7 @@
"embark-utils": "^4.1.1" "embark-utils": "^4.1.1"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "7.6.2", "@babel/core": "7.6.4",
"babel-jest": "24.9.0", "babel-jest": "24.9.0",
"embark-solo": "^4.1.1", "embark-solo": "^4.1.1",
"embark-testing": "^4.1.1", "embark-testing": "^4.1.1",

View File

@ -42,7 +42,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"async": "2.6.1", "async": "2.6.1",
"clone-deep": "4.0.0", "clone-deep": "4.0.0",
"embark-core": "^4.1.1", "embark-core": "^4.1.1",
@ -50,7 +50,7 @@
"embark-utils": "^4.1.1" "embark-utils": "^4.1.1"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "7.6.2", "@babel/core": "7.6.4",
"babel-jest": "24.9.0", "babel-jest": "24.9.0",
"embark-solo": "^4.1.1", "embark-solo": "^4.1.1",
"embark-testing": "^4.1.1", "embark-testing": "^4.1.1",

View File

@ -42,7 +42,7 @@
"watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch" "watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"embark-i18n": "^4.1.1", "embark-i18n": "^4.1.1",
"embark-utils": "^4.1.1" "embark-utils": "^4.1.1"
}, },

View File

@ -46,7 +46,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"async": "2.6.1", "async": "2.6.1",
"clone-deep": "4.0.0", "clone-deep": "4.0.0",
"embark-core": "^4.1.1", "embark-core": "^4.1.1",

View File

@ -42,7 +42,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"async": "2.6.1", "async": "2.6.1",
"clone-deep": "4.0.0", "clone-deep": "4.0.0",
"embark-core": "^4.1.1", "embark-core": "^4.1.1",
@ -50,7 +50,7 @@
"embark-utils": "^4.1.1" "embark-utils": "^4.1.1"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "7.6.2", "@babel/core": "7.6.4",
"babel-jest": "24.9.0", "babel-jest": "24.9.0",
"embark-solo": "^4.1.1", "embark-solo": "^4.1.1",
"embark-testing": "^4.1.1", "embark-testing": "^4.1.1",

View File

@ -41,7 +41,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"ejs": "2.6.1", "ejs": "2.6.1",
"embark-core": "^4.1.1", "embark-core": "^4.1.1",
"embark-i18n": "^4.1.1" "embark-i18n": "^4.1.1"

View File

@ -41,7 +41,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"colors": "1.3.2", "colors": "1.3.2",
"embark-i18n": "^4.1.1", "embark-i18n": "^4.1.1",
"embark-utils": "^4.1.1", "embark-utils": "^4.1.1",

View File

@ -42,7 +42,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"embark-i18n": "^4.1.1" "embark-i18n": "^4.1.1"
}, },
"devDependencies": { "devDependencies": {

View File

@ -41,7 +41,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"async": "2.6.1", "async": "2.6.1",
"colors": "1.3.2", "colors": "1.3.2",
"embark-core": "^4.1.1", "embark-core": "^4.1.1",

View File

@ -41,7 +41,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"embark-utils": "^4.1.1" "embark-utils": "^4.1.1"
}, },
"devDependencies": { "devDependencies": {

View File

@ -45,7 +45,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"cors": "2.8.5", "cors": "2.8.5",
"embark-core": "^4.1.1", "embark-core": "^4.1.1",
"embark-i18n": "^4.1.1", "embark-i18n": "^4.1.1",

View File

@ -43,7 +43,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"embark-core": "^4.1.1", "embark-core": "^4.1.1",
"embark-i18n": "^4.1.1", "embark-i18n": "^4.1.1",
"embark-utils": "^4.1.1", "embark-utils": "^4.1.1",

View File

@ -45,7 +45,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"async": "2.6.1", "async": "2.6.1",
"chalk": "2.4.2", "chalk": "2.4.2",
"embark-i18n": "^4.1.1", "embark-i18n": "^4.1.1",

View File

@ -41,7 +41,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"chokidar": "2.1.6", "chokidar": "2.1.6",
"embark-i18n": "^4.1.1", "embark-i18n": "^4.1.1",
"embark-utils": "^4.1.1" "embark-utils": "^4.1.1"

View File

@ -41,7 +41,7 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"async": "2.6.1", "async": "2.6.1",
"embark-i18n": "^4.1.1", "embark-i18n": "^4.1.1",
"embark-utils": "^4.1.1", "embark-utils": "^4.1.1",

View File

@ -40,14 +40,15 @@
"// watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch" "// watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch"
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "7.6.2", "@babel/cli": "7.6.4",
"@babel/core": "7.6.2", "@babel/core": "7.6.4",
"@babel/plugin-proposal-class-properties": "7.5.5", "@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/plugin-proposal-decorators": "7.6.0", "@babel/plugin-proposal-decorators": "7.6.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.4.4",
"@babel/plugin-proposal-optional-chaining": "7.6.0", "@babel/plugin-proposal-optional-chaining": "7.6.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0", "@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-runtime": "7.6.2", "@babel/plugin-transform-runtime": "7.6.2",
"@babel/preset-env": "7.6.2", "@babel/preset-env": "7.6.3",
"@babel/preset-typescript": "7.6.0", "@babel/preset-typescript": "7.6.0",
"@lerna/filter-packages": "3.16.0", "@lerna/filter-packages": "3.16.0",
"babel-plugin-dynamic-import-node": "2.3.0", "babel-plugin-dynamic-import-node": "2.3.0",

View File

@ -41,12 +41,12 @@
"extends": "../../../.eslintrc.json" "extends": "../../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.6.2", "@babel/runtime-corejs3": "7.6.3",
"refute": "1.0.2", "refute": "1.0.2",
"sinon": "7.4.2" "sinon": "7.4.2"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "7.6.2", "@babel/core": "7.6.4",
"@types/async": "2.0.50", "@types/async": "2.0.50",
"babel-jest": "24.9.0", "babel-jest": "24.9.0",
"embark-solo": "^4.1.1", "embark-solo": "^4.1.1",

477
yarn.lock
View File

@ -2,27 +2,10 @@
# yarn lockfile v1 # yarn lockfile v1
"@babel/cli@7.2.3": "@babel/cli@7.6.4":
version "7.2.3" version "7.6.4"
resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.2.3.tgz#1b262e42a3e959d28ab3d205ba2718e1923cfee6" resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.6.4.tgz#9b35a4e15fa7d8f487418aaa8229c8b0bc815f20"
integrity sha512-bfna97nmJV6nDJhXNPeEfxyMjWnt6+IjUAaDPiYRTBlm8L41n8nvw6UAqUCbvpFfU246gHPxW7sfWwqtF4FcYA== integrity sha512-tqrDyvPryBM6xjIyKKUwr3s8CzmmYidwgdswd7Uc/Cv0ogZcuS1TYQTLx/eWKP3UbJ6JxZAiYlBZabXm/rtRsQ==
dependencies:
commander "^2.8.1"
convert-source-map "^1.1.0"
fs-readdir-recursive "^1.1.0"
glob "^7.0.0"
lodash "^4.17.10"
mkdirp "^0.5.1"
output-file-sync "^2.0.0"
slash "^2.0.0"
source-map "^0.5.0"
optionalDependencies:
chokidar "^2.0.3"
"@babel/cli@7.6.2":
version "7.6.2"
resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.6.2.tgz#4ce8b5b4b2e4b4c1b7bd841cec62085e2dfc4465"
integrity sha512-JDZ+T/br9pPfT2lmAMJypJDTTTHM9ePD/ED10TRjRzJVdEVy+JB3iRlhzYmTt5YkNgHvxWGlUVnLtdv6ruiDrQ==
dependencies: dependencies:
commander "^2.8.1" commander "^2.8.1"
convert-source-map "^1.1.0" convert-source-map "^1.1.0"
@ -36,13 +19,6 @@
optionalDependencies: optionalDependencies:
chokidar "^2.1.8" chokidar "^2.1.8"
"@babel/code-frame@7.0.0":
version "7.0.0"
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8"
integrity sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA==
dependencies:
"@babel/highlight" "^7.0.0"
"@babel/code-frame@7.5.5", "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.5.5": "@babel/code-frame@7.5.5", "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.5.5":
version "7.5.5" version "7.5.5"
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d"
@ -50,26 +26,6 @@
dependencies: dependencies:
"@babel/highlight" "^7.0.0" "@babel/highlight" "^7.0.0"
"@babel/core@7.2.2":
version "7.2.2"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.2.2.tgz#07adba6dde27bb5ad8d8672f15fde3e08184a687"
integrity sha512-59vB0RWt09cAct5EIe58+NzGP4TFSD3Bz//2/ELy3ZeTeKF6VTD1AXlH8BGGbCX0PuobZBsIzO7IAI9PH67eKw==
dependencies:
"@babel/code-frame" "^7.0.0"
"@babel/generator" "^7.2.2"
"@babel/helpers" "^7.2.0"
"@babel/parser" "^7.2.2"
"@babel/template" "^7.2.2"
"@babel/traverse" "^7.2.2"
"@babel/types" "^7.2.2"
convert-source-map "^1.1.0"
debug "^4.1.0"
json5 "^2.1.0"
lodash "^4.17.10"
resolve "^1.3.2"
semver "^5.4.1"
source-map "^0.5.0"
"@babel/core@7.5.5", "@babel/core@^7.0.0", "@babel/core@^7.4.5": "@babel/core@7.5.5", "@babel/core@^7.0.0", "@babel/core@^7.4.5":
version "7.5.5" version "7.5.5"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.5.5.tgz#17b2686ef0d6bc58f963dddd68ab669755582c30" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.5.5.tgz#17b2686ef0d6bc58f963dddd68ab669755582c30"
@ -110,18 +66,18 @@
semver "^5.4.1" semver "^5.4.1"
source-map "^0.5.0" source-map "^0.5.0"
"@babel/core@7.6.2": "@babel/core@7.6.4":
version "7.6.2" version "7.6.4"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.6.2.tgz#069a776e8d5e9eefff76236bc8845566bd31dd91" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.6.4.tgz#6ebd9fe00925f6c3e177bb726a188b5f578088ff"
integrity sha512-l8zto/fuoZIbncm+01p8zPSDZu/VuuJhAfA7d/AbzM09WR7iVhavvfNDYCNpo1VvLk6E6xgAoP9P+/EMJHuRkQ== integrity sha512-Rm0HGw101GY8FTzpWSyRbki/jzq+/PkNQJ+nSulrdY6gFGOsNseCqD6KHRYe2E+EdzuBdr2pxCp6s4Uk6eJ+XQ==
dependencies: dependencies:
"@babel/code-frame" "^7.5.5" "@babel/code-frame" "^7.5.5"
"@babel/generator" "^7.6.2" "@babel/generator" "^7.6.4"
"@babel/helpers" "^7.6.2" "@babel/helpers" "^7.6.2"
"@babel/parser" "^7.6.2" "@babel/parser" "^7.6.4"
"@babel/template" "^7.6.0" "@babel/template" "^7.6.0"
"@babel/traverse" "^7.6.2" "@babel/traverse" "^7.6.3"
"@babel/types" "^7.6.0" "@babel/types" "^7.6.3"
convert-source-map "^1.1.0" convert-source-map "^1.1.0"
debug "^4.1.0" debug "^4.1.0"
json5 "^2.1.0" json5 "^2.1.0"
@ -130,7 +86,7 @@
semver "^5.4.1" semver "^5.4.1"
source-map "^0.5.0" source-map "^0.5.0"
"@babel/generator@^7.2.2", "@babel/generator@^7.4.0", "@babel/generator@^7.5.5": "@babel/generator@^7.4.0", "@babel/generator@^7.5.5":
version "7.5.5" version "7.5.5"
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.5.5.tgz#873a7f936a3c89491b43536d12245b626664e3cf" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.5.5.tgz#873a7f936a3c89491b43536d12245b626664e3cf"
integrity sha512-ETI/4vyTSxTzGnU2c49XHv2zhExkv9JHLTwDAFz85kmcwuShvYG2H08FwgIguQf4JC75CBnXAUM5PqeF4fj0nQ== integrity sha512-ETI/4vyTSxTzGnU2c49XHv2zhExkv9JHLTwDAFz85kmcwuShvYG2H08FwgIguQf4JC75CBnXAUM5PqeF4fj0nQ==
@ -162,6 +118,16 @@
lodash "^4.17.13" lodash "^4.17.13"
source-map "^0.5.0" source-map "^0.5.0"
"@babel/generator@^7.6.3", "@babel/generator@^7.6.4":
version "7.6.4"
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.6.4.tgz#a4f8437287bf9671b07f483b76e3bb731bc97671"
integrity sha512-jsBuXkFoZxk0yWLyGI9llT9oiQ2FeTASmRFE32U+aaDTfoE92t78eroO7PTpU/OrYq38hlcDM6vbfLDaOLy+7w==
dependencies:
"@babel/types" "^7.6.3"
jsesc "^2.5.1"
lodash "^4.17.13"
source-map "^0.5.0"
"@babel/helper-annotate-as-pure@^7.0.0": "@babel/helper-annotate-as-pure@^7.0.0":
version "7.0.0" version "7.0.0"
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz#323d39dd0b50e10c7c06ca7d7638e6864d8c5c32" resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz#323d39dd0b50e10c7c06ca7d7638e6864d8c5c32"
@ -194,7 +160,7 @@
"@babel/traverse" "^7.4.4" "@babel/traverse" "^7.4.4"
"@babel/types" "^7.4.4" "@babel/types" "^7.4.4"
"@babel/helper-create-class-features-plugin@^7.3.0", "@babel/helper-create-class-features-plugin@^7.4.4", "@babel/helper-create-class-features-plugin@^7.5.5": "@babel/helper-create-class-features-plugin@^7.4.4", "@babel/helper-create-class-features-plugin@^7.5.5":
version "7.5.5" version "7.5.5"
resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.5.5.tgz#401f302c8ddbc0edd36f7c6b2887d8fa1122e5a4" resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.5.5.tgz#401f302c8ddbc0edd36f7c6b2887d8fa1122e5a4"
integrity sha512-ZsxkyYiRA7Bg+ZTRpPvB6AbOFKTFFK4LrvTet8lInm0V468MWCaSYJE+I7v2z2r8KNLtYiV+K5kTCnR7dvyZjg== integrity sha512-ZsxkyYiRA7Bg+ZTRpPvB6AbOFKTFFK4LrvTet8lInm0V468MWCaSYJE+I7v2z2r8KNLtYiV+K5kTCnR7dvyZjg==
@ -349,7 +315,7 @@
"@babel/traverse" "^7.1.0" "@babel/traverse" "^7.1.0"
"@babel/types" "^7.2.0" "@babel/types" "^7.2.0"
"@babel/helpers@^7.2.0", "@babel/helpers@^7.5.5": "@babel/helpers@^7.5.5":
version "7.5.5" version "7.5.5"
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.5.5.tgz#63908d2a73942229d1e6685bc2a0e730dde3b75e" resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.5.5.tgz#63908d2a73942229d1e6685bc2a0e730dde3b75e"
integrity sha512-nRq2BUhxZFnfEn/ciJuhklHvFOqjJUD5wpx+1bxUF2axL9C+v4DE/dmp5sT2dKnpOs4orZWzpAZqlCy8QqE/7g== integrity sha512-nRq2BUhxZFnfEn/ciJuhklHvFOqjJUD5wpx+1bxUF2axL9C+v4DE/dmp5sT2dKnpOs4orZWzpAZqlCy8QqE/7g==
@ -385,7 +351,7 @@
esutils "^2.0.2" esutils "^2.0.2"
js-tokens "^4.0.0" js-tokens "^4.0.0"
"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.2.2", "@babel/parser@^7.4.3", "@babel/parser@^7.4.4", "@babel/parser@^7.5.5": "@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.4.3", "@babel/parser@^7.4.4", "@babel/parser@^7.5.5":
version "7.5.5" version "7.5.5"
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.5.5.tgz#02f077ac8817d3df4a832ef59de67565e71cca4b" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.5.5.tgz#02f077ac8817d3df4a832ef59de67565e71cca4b"
integrity sha512-E5BN68cqR7dhKan1SfqgPGhQ178bkVKpXTPEXnFJBrEt8/DKRZlybmy+IgYLTeN7tp1R5Ccmbm2rBk17sHYU3g== integrity sha512-E5BN68cqR7dhKan1SfqgPGhQ178bkVKpXTPEXnFJBrEt8/DKRZlybmy+IgYLTeN7tp1R5Ccmbm2rBk17sHYU3g==
@ -400,6 +366,11 @@
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.6.2.tgz#205e9c95e16ba3b8b96090677a67c9d6075b70a1" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.6.2.tgz#205e9c95e16ba3b8b96090677a67c9d6075b70a1"
integrity sha512-mdFqWrSPCmikBoaBYMuBulzTIKuXVPtEISFbRRVNwMWpCms/hmE2kRq0bblUHaNRKrjRlmVbx1sDHmjmRgD2Xg== integrity sha512-mdFqWrSPCmikBoaBYMuBulzTIKuXVPtEISFbRRVNwMWpCms/hmE2kRq0bblUHaNRKrjRlmVbx1sDHmjmRgD2Xg==
"@babel/parser@^7.6.3", "@babel/parser@^7.6.4":
version "7.6.4"
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.6.4.tgz#cb9b36a7482110282d5cb6dd424ec9262b473d81"
integrity sha512-D8RHPW5qd0Vbyo3qb+YjO5nvUVRTXFLQ/FsDxJU2Nqz4uB5EnUN0ZQSEYpvTIbRuttig1XbHWU5oMeQwQSAA+A==
"@babel/plugin-proposal-async-generator-functions@^7.2.0": "@babel/plugin-proposal-async-generator-functions@^7.2.0":
version "7.2.0" version "7.2.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz#b289b306669dce4ad20b0252889a15768c9d417e" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz#b289b306669dce4ad20b0252889a15768c9d417e"
@ -417,15 +388,6 @@
"@babel/helper-create-class-features-plugin" "^7.5.5" "@babel/helper-create-class-features-plugin" "^7.5.5"
"@babel/helper-plugin-utils" "^7.0.0" "@babel/helper-plugin-utils" "^7.0.0"
"@babel/plugin-proposal-decorators@7.3.0":
version "7.3.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.3.0.tgz#637ba075fa780b1f75d08186e8fb4357d03a72a7"
integrity sha512-3W/oCUmsO43FmZIqermmq6TKaRSYhmh/vybPfVFwQWdSb8xwki38uAIvknCRzuyHRuYfCYmJzL9or1v0AffPjg==
dependencies:
"@babel/helper-create-class-features-plugin" "^7.3.0"
"@babel/helper-plugin-utils" "^7.0.0"
"@babel/plugin-syntax-decorators" "^7.2.0"
"@babel/plugin-proposal-decorators@7.4.4": "@babel/plugin-proposal-decorators@7.4.4":
version "7.4.4" version "7.4.4"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.4.4.tgz#de9b2a1a8ab0196f378e2a82f10b6e2a36f21cc0" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.4.4.tgz#de9b2a1a8ab0196f378e2a82f10b6e2a36f21cc0"
@ -460,13 +422,13 @@
"@babel/helper-plugin-utils" "^7.0.0" "@babel/helper-plugin-utils" "^7.0.0"
"@babel/plugin-syntax-json-strings" "^7.2.0" "@babel/plugin-syntax-json-strings" "^7.2.0"
"@babel/plugin-proposal-object-rest-spread@7.3.2": "@babel/plugin-proposal-nullish-coalescing-operator@7.4.4":
version "7.3.2" version "7.4.4"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.3.2.tgz#6d1859882d4d778578e41f82cc5d7bf3d5daf6c1" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.4.4.tgz#41c360d59481d88e0ce3a3f837df10121a769b39"
integrity sha512-DjeMS+J2+lpANkYLLO+m6GjoTMygYglKmRe6cDTbFv3L9i6mmiE8fe6B8MtCSLZpVXscD5kn7s6SgtHrDoBWoA== integrity sha512-Amph7Epui1Dh/xxUxS2+K22/MUi6+6JVTvy3P58tja3B6yKTSjwwx0/d83rF7551D6PVSSoplQb8GCwqec7HRw==
dependencies: dependencies:
"@babel/helper-plugin-utils" "^7.0.0" "@babel/helper-plugin-utils" "^7.0.0"
"@babel/plugin-syntax-object-rest-spread" "^7.2.0" "@babel/plugin-syntax-nullish-coalescing-operator" "^7.2.0"
"@babel/plugin-proposal-object-rest-spread@7.5.5", "@babel/plugin-proposal-object-rest-spread@^7.3.2", "@babel/plugin-proposal-object-rest-spread@^7.5.5": "@babel/plugin-proposal-object-rest-spread@7.5.5", "@babel/plugin-proposal-object-rest-spread@^7.3.2", "@babel/plugin-proposal-object-rest-spread@^7.5.5":
version "7.5.5" version "7.5.5"
@ -476,7 +438,7 @@
"@babel/helper-plugin-utils" "^7.0.0" "@babel/helper-plugin-utils" "^7.0.0"
"@babel/plugin-syntax-object-rest-spread" "^7.2.0" "@babel/plugin-syntax-object-rest-spread" "^7.2.0"
"@babel/plugin-proposal-object-rest-spread@^7.6.2": "@babel/plugin-proposal-object-rest-spread@7.6.2", "@babel/plugin-proposal-object-rest-spread@^7.6.2":
version "7.6.2" version "7.6.2"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.6.2.tgz#8ffccc8f3a6545e9f78988b6bf4fe881b88e8096" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.6.2.tgz#8ffccc8f3a6545e9f78988b6bf4fe881b88e8096"
integrity sha512-LDBXlmADCsMZV1Y9OQwMc0MyGZ8Ta/zlD9N67BfQT8uYwkRswiu2hU6nJKrjrt/58aH/vqfQlR/9yId/7A2gWw== integrity sha512-LDBXlmADCsMZV1Y9OQwMc0MyGZ8Ta/zlD9N67BfQT8uYwkRswiu2hU6nJKrjrt/58aH/vqfQlR/9yId/7A2gWw==
@ -560,6 +522,13 @@
dependencies: dependencies:
"@babel/helper-plugin-utils" "^7.0.0" "@babel/helper-plugin-utils" "^7.0.0"
"@babel/plugin-syntax-nullish-coalescing-operator@^7.2.0":
version "7.2.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.2.0.tgz#f75083dfd5ade73e783db729bbd87e7b9efb7624"
integrity sha512-lRCEaKE+LTxDQtgbYajI04ddt6WW0WJq57xqkAZ+s11h4YgfRHhVA/Y2VhfPzzFD4qeLHWg32DMp9HooY4Kqlg==
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.2.0": "@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.2.0":
version "7.2.0" version "7.2.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz#3b7a3e733510c57e820b9142a6579ac8b0dfad2e" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz#3b7a3e733510c57e820b9142a6579ac8b0dfad2e"
@ -619,7 +588,7 @@
"@babel/helper-plugin-utils" "^7.0.0" "@babel/helper-plugin-utils" "^7.0.0"
lodash "^4.17.13" lodash "^4.17.13"
"@babel/plugin-transform-block-scoping@^7.6.0", "@babel/plugin-transform-block-scoping@^7.6.2": "@babel/plugin-transform-block-scoping@^7.6.0":
version "7.6.2" version "7.6.2"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.6.2.tgz#96c33ab97a9ae500cc6f5b19e04a7e6553360a79" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.6.2.tgz#96c33ab97a9ae500cc6f5b19e04a7e6553360a79"
integrity sha512-zZT8ivau9LOQQaOGC7bQLQOT4XPkPXgN2ERfUgk1X8ql+mVkLc4E8eKk+FO3o0154kxzqenWCorfmEXpEZcrSQ== integrity sha512-zZT8ivau9LOQQaOGC7bQLQOT4XPkPXgN2ERfUgk1X8ql+mVkLc4E8eKk+FO3o0154kxzqenWCorfmEXpEZcrSQ==
@ -627,6 +596,14 @@
"@babel/helper-plugin-utils" "^7.0.0" "@babel/helper-plugin-utils" "^7.0.0"
lodash "^4.17.13" lodash "^4.17.13"
"@babel/plugin-transform-block-scoping@^7.6.3":
version "7.6.3"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.6.3.tgz#6e854e51fbbaa84351b15d4ddafe342f3a5d542a"
integrity sha512-7hvrg75dubcO3ZI2rjYTzUrEuh1E9IyDEhhB6qfcooxhDA33xx2MasuLVgdxzcP6R/lipAC6n9ub9maNW6RKdw==
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
lodash "^4.17.13"
"@babel/plugin-transform-classes@^7.5.5": "@babel/plugin-transform-classes@^7.5.5":
version "7.5.5" version "7.5.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.5.5.tgz#d094299d9bd680a14a2a0edae38305ad60fb4de9" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.5.5.tgz#d094299d9bd680a14a2a0edae38305ad60fb4de9"
@ -703,6 +680,14 @@
"@babel/helper-plugin-utils" "^7.0.0" "@babel/helper-plugin-utils" "^7.0.0"
"@babel/plugin-syntax-flow" "^7.2.0" "@babel/plugin-syntax-flow" "^7.2.0"
"@babel/plugin-transform-flow-strip-types@7.6.3":
version "7.6.3"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.6.3.tgz#8110f153e7360cfd5996eee68706cfad92d85256"
integrity sha512-l0ETkyEofkqFJ9LS6HChNIKtVJw2ylKbhYMlJ5C6df+ldxxaLIyXY4yOdDQQspfFpV8/vDiaWoJlvflstlYNxg==
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
"@babel/plugin-syntax-flow" "^7.2.0"
"@babel/plugin-transform-for-of@^7.4.4": "@babel/plugin-transform-for-of@^7.4.4":
version "7.4.4" version "7.4.4"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.4.4.tgz#0267fc735e24c808ba173866c6c4d1440fc3c556" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.4.4.tgz#0267fc735e24c808ba173866c6c4d1440fc3c556"
@ -785,13 +770,20 @@
dependencies: dependencies:
regexp-tree "^0.1.6" regexp-tree "^0.1.6"
"@babel/plugin-transform-named-capturing-groups-regex@^7.6.0", "@babel/plugin-transform-named-capturing-groups-regex@^7.6.2": "@babel/plugin-transform-named-capturing-groups-regex@^7.6.0":
version "7.6.2" version "7.6.2"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.6.2.tgz#c1ca0bb84b94f385ca302c3932e870b0fb0e522b" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.6.2.tgz#c1ca0bb84b94f385ca302c3932e870b0fb0e522b"
integrity sha512-xBdB+XOs+lgbZc2/4F5BVDVcDNS4tcSKQc96KmlqLEAwz6tpYPEvPdmDfvVG0Ssn8lAhronaRs6Z6KSexIpK5g== integrity sha512-xBdB+XOs+lgbZc2/4F5BVDVcDNS4tcSKQc96KmlqLEAwz6tpYPEvPdmDfvVG0Ssn8lAhronaRs6Z6KSexIpK5g==
dependencies: dependencies:
regexpu-core "^4.6.0" regexpu-core "^4.6.0"
"@babel/plugin-transform-named-capturing-groups-regex@^7.6.3":
version "7.6.3"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.6.3.tgz#aaa6e409dd4fb2e50b6e2a91f7e3a3149dbce0cf"
integrity sha512-jTkk7/uE6H2s5w6VlMHeWuH+Pcy2lmdwFoeWCVnvIrDUnB5gQqTVI8WfmEAhF2CDEarGrknZcmSFg1+bkfCoSw==
dependencies:
regexpu-core "^4.6.0"
"@babel/plugin-transform-new-target@^7.4.4": "@babel/plugin-transform-new-target@^7.4.4":
version "7.4.4" version "7.4.4"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.4.4.tgz#18d120438b0cc9ee95a47f2c72bc9768fbed60a5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.4.4.tgz#18d120438b0cc9ee95a47f2c72bc9768fbed60a5"
@ -877,16 +869,6 @@
dependencies: dependencies:
"@babel/helper-plugin-utils" "^7.0.0" "@babel/helper-plugin-utils" "^7.0.0"
"@babel/plugin-transform-runtime@7.2.0":
version "7.2.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.2.0.tgz#566bc43f7d0aedc880eaddbd29168d0f248966ea"
integrity sha512-jIgkljDdq4RYDnJyQsiWbdvGeei/0MOTtSHKO/rfbd/mXBxNpdlulMx49L0HQ4pug1fXannxoqCI+fYSle9eSw==
dependencies:
"@babel/helper-module-imports" "^7.0.0"
"@babel/helper-plugin-utils" "^7.0.0"
resolve "^1.8.1"
semver "^5.5.1"
"@babel/plugin-transform-runtime@7.5.5": "@babel/plugin-transform-runtime@7.5.5":
version "7.5.5" version "7.5.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.5.5.tgz#a6331afbfc59189d2135b2e09474457a8e3d28bc" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.5.5.tgz#a6331afbfc59189d2135b2e09474457a8e3d28bc"
@ -1108,10 +1090,10 @@
js-levenshtein "^1.1.3" js-levenshtein "^1.1.3"
semver "^5.5.0" semver "^5.5.0"
"@babel/preset-env@7.6.2": "@babel/preset-env@7.6.3":
version "7.6.2" version "7.6.3"
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.6.2.tgz#abbb3ed785c7fe4220d4c82a53621d71fc0c75d3" resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.6.3.tgz#9e1bf05a2e2d687036d24c40e4639dc46cef2271"
integrity sha512-Ru7+mfzy9M1/YTEtlDS8CD45jd22ngb9tXnn64DvQK3ooyqSw9K4K9DUWmYknTTVk4TqygL9dqCrZgm1HMea/Q== integrity sha512-CWQkn7EVnwzlOdR5NOm2+pfgSNEZmvGjOhlCHBDq0J8/EStr+G+FvPEiz9B56dR6MoiUFjXhfE4hjLoAKKJtIQ==
dependencies: dependencies:
"@babel/helper-module-imports" "^7.0.0" "@babel/helper-module-imports" "^7.0.0"
"@babel/helper-plugin-utils" "^7.0.0" "@babel/helper-plugin-utils" "^7.0.0"
@ -1129,7 +1111,7 @@
"@babel/plugin-transform-arrow-functions" "^7.2.0" "@babel/plugin-transform-arrow-functions" "^7.2.0"
"@babel/plugin-transform-async-to-generator" "^7.5.0" "@babel/plugin-transform-async-to-generator" "^7.5.0"
"@babel/plugin-transform-block-scoped-functions" "^7.2.0" "@babel/plugin-transform-block-scoped-functions" "^7.2.0"
"@babel/plugin-transform-block-scoping" "^7.6.2" "@babel/plugin-transform-block-scoping" "^7.6.3"
"@babel/plugin-transform-classes" "^7.5.5" "@babel/plugin-transform-classes" "^7.5.5"
"@babel/plugin-transform-computed-properties" "^7.2.0" "@babel/plugin-transform-computed-properties" "^7.2.0"
"@babel/plugin-transform-destructuring" "^7.6.0" "@babel/plugin-transform-destructuring" "^7.6.0"
@ -1144,7 +1126,7 @@
"@babel/plugin-transform-modules-commonjs" "^7.6.0" "@babel/plugin-transform-modules-commonjs" "^7.6.0"
"@babel/plugin-transform-modules-systemjs" "^7.5.0" "@babel/plugin-transform-modules-systemjs" "^7.5.0"
"@babel/plugin-transform-modules-umd" "^7.2.0" "@babel/plugin-transform-modules-umd" "^7.2.0"
"@babel/plugin-transform-named-capturing-groups-regex" "^7.6.2" "@babel/plugin-transform-named-capturing-groups-regex" "^7.6.3"
"@babel/plugin-transform-new-target" "^7.4.4" "@babel/plugin-transform-new-target" "^7.4.4"
"@babel/plugin-transform-object-super" "^7.5.5" "@babel/plugin-transform-object-super" "^7.5.5"
"@babel/plugin-transform-parameters" "^7.4.4" "@babel/plugin-transform-parameters" "^7.4.4"
@ -1157,7 +1139,7 @@
"@babel/plugin-transform-template-literals" "^7.4.4" "@babel/plugin-transform-template-literals" "^7.4.4"
"@babel/plugin-transform-typeof-symbol" "^7.2.0" "@babel/plugin-transform-typeof-symbol" "^7.2.0"
"@babel/plugin-transform-unicode-regex" "^7.6.2" "@babel/plugin-transform-unicode-regex" "^7.6.2"
"@babel/types" "^7.6.0" "@babel/types" "^7.6.3"
browserslist "^4.6.0" browserslist "^4.6.0"
core-js-compat "^3.1.1" core-js-compat "^3.1.1"
invariant "^2.2.2" invariant "^2.2.2"
@ -1183,6 +1165,17 @@
"@babel/plugin-transform-react-jsx-self" "^7.0.0" "@babel/plugin-transform-react-jsx-self" "^7.0.0"
"@babel/plugin-transform-react-jsx-source" "^7.0.0" "@babel/plugin-transform-react-jsx-source" "^7.0.0"
"@babel/preset-react@7.6.3":
version "7.6.3"
resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.6.3.tgz#d5242c828322520205ae4eda5d4f4f618964e2f6"
integrity sha512-07yQhmkZmRAfwREYIQgW0HEwMY9GBJVuPY4Q12UC72AbfaawuupVWa8zQs2tlL+yun45Nv/1KreII/0PLfEsgA==
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
"@babel/plugin-transform-react-display-name" "^7.0.0"
"@babel/plugin-transform-react-jsx" "^7.0.0"
"@babel/plugin-transform-react-jsx-self" "^7.0.0"
"@babel/plugin-transform-react-jsx-source" "^7.0.0"
"@babel/preset-typescript@7.3.3": "@babel/preset-typescript@7.3.3":
version "7.3.3" version "7.3.3"
resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.3.3.tgz#88669911053fa16b2b276ea2ede2ca603b3f307a" resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.3.3.tgz#88669911053fa16b2b276ea2ede2ca603b3f307a"
@ -1207,22 +1200,6 @@
core-js "^2.5.7" core-js "^2.5.7"
regenerator-runtime "^0.12.0" regenerator-runtime "^0.12.0"
"@babel/runtime-corejs2@7.3.1":
version "7.3.1"
resolved "https://registry.yarnpkg.com/@babel/runtime-corejs2/-/runtime-corejs2-7.3.1.tgz#0c113242e2328f9674d42703a89bee6ebebe9a82"
integrity sha512-YpO13776h3e6Wy8dl2J8T9Qwlvopr+b4trCEhHE+yek6yIqV8sx6g3KozdHMbXeBpjosbPi+Ii5Z7X9oXFHUKA==
dependencies:
core-js "^2.5.7"
regenerator-runtime "^0.12.0"
"@babel/runtime-corejs2@7.6.2":
version "7.6.2"
resolved "https://registry.yarnpkg.com/@babel/runtime-corejs2/-/runtime-corejs2-7.6.2.tgz#062f8e31f3df30fc1a3dea68aa1bd854e06e9ba6"
integrity sha512-wdyVKnTv9Be4YlwF/7pByYNfcl23qC21aAQ0aIaZOo2ZOvhFEyJdBLJClYZ9i+Pmrz7sUQgg/MwbJa2RZTkygg==
dependencies:
core-js "^2.6.5"
regenerator-runtime "^0.13.2"
"@babel/runtime-corejs2@^7.0.0": "@babel/runtime-corejs2@^7.0.0":
version "7.5.5" version "7.5.5"
resolved "https://registry.yarnpkg.com/@babel/runtime-corejs2/-/runtime-corejs2-7.5.5.tgz#c3214c08ef20341af4187f1c9fbdc357fbec96b2" resolved "https://registry.yarnpkg.com/@babel/runtime-corejs2/-/runtime-corejs2-7.5.5.tgz#c3214c08ef20341af4187f1c9fbdc357fbec96b2"
@ -1231,6 +1208,14 @@
core-js "^2.6.5" core-js "^2.6.5"
regenerator-runtime "^0.13.2" regenerator-runtime "^0.13.2"
"@babel/runtime-corejs3@7.6.3":
version "7.6.3"
resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.6.3.tgz#a2b2b7ceea6ecb37ff822d293a312f1f00c29b84"
integrity sha512-933SXHQr7apa95F+3IqkBne8mqOnu1kDh6dnSddC07aW/R51WsOVD7MSczJ6DRpq/L8KLll7TFDxmt30pft44w==
dependencies:
core-js-pure "^3.0.0"
regenerator-runtime "^0.13.2"
"@babel/runtime@7.3.4": "@babel/runtime@7.3.4":
version "7.3.4" version "7.3.4"
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.3.4.tgz#73d12ba819e365fcf7fd152aed56d6df97d21c83" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.3.4.tgz#73d12ba819e365fcf7fd152aed56d6df97d21c83"
@ -1252,7 +1237,7 @@
dependencies: dependencies:
regenerator-runtime "^0.13.2" regenerator-runtime "^0.13.2"
"@babel/template@^7.1.0", "@babel/template@^7.2.2", "@babel/template@^7.4.0", "@babel/template@^7.4.4": "@babel/template@^7.1.0", "@babel/template@^7.4.0", "@babel/template@^7.4.4":
version "7.4.4" version "7.4.4"
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.4.4.tgz#f4b88d1225689a08f5bc3a17483545be9e4ed237" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.4.4.tgz#f4b88d1225689a08f5bc3a17483545be9e4ed237"
integrity sha512-CiGzLN9KgAvgZsnivND7rkA+AeJ9JB0ciPOD4U59GKbQP2iQl+olF1l76kJOupqidozfZ32ghwBEJDhnk9MEcw== integrity sha512-CiGzLN9KgAvgZsnivND7rkA+AeJ9JB0ciPOD4U59GKbQP2iQl+olF1l76kJOupqidozfZ32ghwBEJDhnk9MEcw==
@ -1270,7 +1255,7 @@
"@babel/parser" "^7.6.0" "@babel/parser" "^7.6.0"
"@babel/types" "^7.6.0" "@babel/types" "^7.6.0"
"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.2.2", "@babel/traverse@^7.4.3", "@babel/traverse@^7.4.4", "@babel/traverse@^7.5.5": "@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.4.3", "@babel/traverse@^7.4.4", "@babel/traverse@^7.5.5":
version "7.5.5" version "7.5.5"
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.5.5.tgz#f664f8f368ed32988cd648da9f72d5ca70f165bb" resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.5.5.tgz#f664f8f368ed32988cd648da9f72d5ca70f165bb"
integrity sha512-MqB0782whsfffYfSjH4TM+LMjrJnhCNEDMDIjeTpl+ASaUvxcjoiVCo/sM1GhS1pHOXYfWVCYneLjMckuUxDaQ== integrity sha512-MqB0782whsfffYfSjH4TM+LMjrJnhCNEDMDIjeTpl+ASaUvxcjoiVCo/sM1GhS1pHOXYfWVCYneLjMckuUxDaQ==
@ -1315,7 +1300,22 @@
globals "^11.1.0" globals "^11.1.0"
lodash "^4.17.13" lodash "^4.17.13"
"@babel/types@^7.0.0", "@babel/types@^7.2.0", "@babel/types@^7.2.2", "@babel/types@^7.3.0", "@babel/types@^7.4.0", "@babel/types@^7.4.4", "@babel/types@^7.5.5": "@babel/traverse@^7.6.3":
version "7.6.3"
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.6.3.tgz#66d7dba146b086703c0fb10dd588b7364cec47f9"
integrity sha512-unn7P4LGsijIxaAJo/wpoU11zN+2IaClkQAxcJWBNCMS6cmVh802IyLHNkAjQ0iYnRS3nnxk5O3fuXW28IMxTw==
dependencies:
"@babel/code-frame" "^7.5.5"
"@babel/generator" "^7.6.3"
"@babel/helper-function-name" "^7.1.0"
"@babel/helper-split-export-declaration" "^7.4.4"
"@babel/parser" "^7.6.3"
"@babel/types" "^7.6.3"
debug "^4.1.0"
globals "^11.1.0"
lodash "^4.17.13"
"@babel/types@^7.0.0", "@babel/types@^7.2.0", "@babel/types@^7.3.0", "@babel/types@^7.4.0", "@babel/types@^7.4.4", "@babel/types@^7.5.5":
version "7.5.5" version "7.5.5"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.5.5.tgz#97b9f728e182785909aa4ab56264f090a028d18a" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.5.5.tgz#97b9f728e182785909aa4ab56264f090a028d18a"
integrity sha512-s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw== integrity sha512-s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw==
@ -1333,6 +1333,15 @@
lodash "^4.17.13" lodash "^4.17.13"
to-fast-properties "^2.0.0" to-fast-properties "^2.0.0"
"@babel/types@^7.6.3":
version "7.6.3"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.6.3.tgz#3f07d96f854f98e2fbd45c64b0cb942d11e8ba09"
integrity sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==
dependencies:
esutils "^2.0.2"
lodash "^4.17.13"
to-fast-properties "^2.0.0"
"@cnakazawa/watch@^1.0.3": "@cnakazawa/watch@^1.0.3":
version "1.0.3" version "1.0.3"
resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.3.tgz#099139eaec7ebf07a27c1786a3ff64f39464d2ef" resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.3.tgz#099139eaec7ebf07a27c1786a3ff64f39464d2ef"
@ -4410,7 +4419,7 @@ axobject-query@^2.0.2:
dependencies: dependencies:
ast-types-flow "0.0.7" ast-types-flow "0.0.7"
babel-code-frame@^6.16.0, babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: babel-code-frame@^6.16.0, babel-code-frame@^6.22.0:
version "6.26.0" version "6.26.0"
resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s= integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=
@ -4559,14 +4568,6 @@ babel-plugin-jest-hoist@^24.9.0:
dependencies: dependencies:
"@types/babel__traverse" "^7.0.6" "@types/babel__traverse" "^7.0.6"
babel-plugin-macros@2.4.5:
version "2.4.5"
resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.4.5.tgz#7000a9b1f72d19ceee19a5804f1d23d6daf38c13"
integrity sha512-+/9yteNQw3yuZ3krQUfjAeoT/f4EAdn3ELwhFfDj0rTMIaoHfIdrcLePOfIaL0qmFLpIcgPIL2Lzm58h+CGWaw==
dependencies:
cosmiconfig "^5.0.5"
resolve "^1.8.1"
babel-plugin-macros@2.6.1, babel-plugin-macros@^2.0.0, babel-plugin-macros@^2.4.5: babel-plugin-macros@2.6.1, babel-plugin-macros@^2.0.0, babel-plugin-macros@^2.4.5:
version "2.6.1" version "2.6.1"
resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.6.1.tgz#41f7ead616fc36f6a93180e89697f69f51671181" resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.6.1.tgz#41f7ead616fc36f6a93180e89697f69f51671181"
@ -5683,7 +5684,7 @@ chokidar@2.1.6:
optionalDependencies: optionalDependencies:
fsevents "^1.2.7" fsevents "^1.2.7"
chokidar@^2.0.0, chokidar@^2.0.2, chokidar@^2.0.3, chokidar@^2.0.4, chokidar@^2.1.8: chokidar@^2.0.0, chokidar@^2.0.2, chokidar@^2.0.4, chokidar@^2.1.8:
version "2.1.8" version "2.1.8"
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917"
integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg== integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==
@ -6358,6 +6359,11 @@ core-js-compat@^3.1.1:
browserslist "^4.6.6" browserslist "^4.6.6"
semver "^6.3.0" semver "^6.3.0"
core-js-pure@^3.0.0:
version "3.3.3"
resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.3.3.tgz#c6a796e371782394ffb60d82ff67e0e073070093"
integrity sha512-sBLE90LngoFYwhLsy5ftt+WWxkQnMufRsn2uyYxJxW73SkvAlxonAdZARimkKrK1c+w01eX9r19vA/J5KMtqfA==
core-js-pure@^3.0.1: core-js-pure@^3.0.1:
version "3.2.1" version "3.2.1"
resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.2.1.tgz#879a23699cff46175bfd2d09158b5c50645a3c45" resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.2.1.tgz#879a23699cff46175bfd2d09158b5c50645a3c45"
@ -6399,7 +6405,7 @@ cors@2.8.5, cors@^2.8.1:
object-assign "^4" object-assign "^4"
vary "^1" vary "^1"
cosmiconfig@^5.0.0, cosmiconfig@^5.0.5, cosmiconfig@^5.1.0, cosmiconfig@^5.2.0, cosmiconfig@^5.2.1: cosmiconfig@^5.0.0, cosmiconfig@^5.1.0, cosmiconfig@^5.2.0, cosmiconfig@^5.2.1:
version "5.2.1" version "5.2.1"
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a"
integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==
@ -6580,24 +6586,6 @@ css-has-pseudo@^0.10.0:
postcss "^7.0.6" postcss "^7.0.6"
postcss-selector-parser "^5.0.0-rc.4" postcss-selector-parser "^5.0.0-rc.4"
css-loader@1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-1.0.0.tgz#9f46aaa5ca41dbe31860e3b62b8e23c42916bf56"
integrity sha512-tMXlTYf3mIMt3b0dDCOQFJiVvxbocJ5Ho577WiGPYPZcqVEO218L2iU22pDXzkTZCLDE+9AmGSUkWxeh/nZReA==
dependencies:
babel-code-frame "^6.26.0"
css-selector-tokenizer "^0.7.0"
icss-utils "^2.1.0"
loader-utils "^1.0.2"
lodash.camelcase "^4.3.0"
postcss "^6.0.23"
postcss-modules-extract-imports "^1.2.0"
postcss-modules-local-by-default "^1.2.0"
postcss-modules-scope "^1.1.0"
postcss-modules-values "^1.3.0"
postcss-value-parser "^3.3.0"
source-list-map "^2.0.0"
css-loader@2.1.1, css-loader@^2.1.1: css-loader@2.1.1, css-loader@^2.1.1:
version "2.1.1" version "2.1.1"
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-2.1.1.tgz#d8254f72e412bb2238bb44dd674ffbef497333ea" resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-2.1.1.tgz#d8254f72e412bb2238bb44dd674ffbef497333ea"
@ -6615,6 +6603,24 @@ css-loader@2.1.1, css-loader@^2.1.1:
postcss-value-parser "^3.3.0" postcss-value-parser "^3.3.0"
schema-utils "^1.0.0" schema-utils "^1.0.0"
css-loader@3.2.0:
version "3.2.0"
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.2.0.tgz#bb570d89c194f763627fcf1f80059c6832d009b2"
integrity sha512-QTF3Ud5H7DaZotgdcJjGMvyDj5F3Pn1j/sC6VBEOVp94cbwqyIBdcs/quzj4MC1BKQSrTpQznegH/5giYbhnCQ==
dependencies:
camelcase "^5.3.1"
cssesc "^3.0.0"
icss-utils "^4.1.1"
loader-utils "^1.2.3"
normalize-path "^3.0.0"
postcss "^7.0.17"
postcss-modules-extract-imports "^2.0.0"
postcss-modules-local-by-default "^3.0.2"
postcss-modules-scope "^2.1.0"
postcss-modules-values "^3.0.0"
postcss-value-parser "^4.0.0"
schema-utils "^2.0.0"
css-prefers-color-scheme@^3.1.1: css-prefers-color-scheme@^3.1.1:
version "3.1.1" version "3.1.1"
resolved "https://registry.yarnpkg.com/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz#6f830a2714199d4f0d0d0bb8a27916ed65cff1f4" resolved "https://registry.yarnpkg.com/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz#6f830a2714199d4f0d0d0bb8a27916ed65cff1f4"
@ -6647,15 +6653,6 @@ css-select@^2.0.0:
domutils "^1.7.0" domutils "^1.7.0"
nth-check "^1.0.2" nth-check "^1.0.2"
css-selector-tokenizer@^0.7.0:
version "0.7.1"
resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.1.tgz#a177271a8bca5019172f4f891fc6eed9cbf68d5d"
integrity sha512-xYL0AMZJ4gFzJQsHUKa5jiWWi2vH77WVNg7JYRyewwj6oPh4yb/y6Y9ZCw9dsj/9UauMhtuxR+ogQd//EdEVNA==
dependencies:
cssesc "^0.1.0"
fastparse "^1.1.1"
regexpu-core "^1.0.0"
css-tree@1.0.0-alpha.29: css-tree@1.0.0-alpha.29:
version "1.0.0-alpha.29" version "1.0.0-alpha.29"
resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.29.tgz#3fa9d4ef3142cbd1c301e7664c1f352bd82f5a39" resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.29.tgz#3fa9d4ef3142cbd1c301e7664c1f352bd82f5a39"
@ -6697,11 +6694,6 @@ cssdb@^4.4.0:
resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-4.4.0.tgz#3bf2f2a68c10f5c6a08abd92378331ee803cddb0" resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-4.4.0.tgz#3bf2f2a68c10f5c6a08abd92378331ee803cddb0"
integrity sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ== integrity sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ==
cssesc@^0.1.0:
version "0.1.0"
resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4"
integrity sha1-yBSQPkViM3GgR3tAEJqq++6t27Q=
cssesc@^2.0.0: cssesc@^2.0.0:
version "2.0.0" version "2.0.0"
resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-2.0.0.tgz#3b13bd1bb1cb36e1bcb5a4dcd27f54c5dcb35703" resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-2.0.0.tgz#3b13bd1bb1cb36e1bcb5a4dcd27f54c5dcb35703"
@ -9050,11 +9042,6 @@ fast-safe-stringify@^2.0.4:
resolved "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.0.6.tgz#04b26106cc56681f51a044cfc0d76cf0008ac2c2" resolved "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.0.6.tgz#04b26106cc56681f51a044cfc0d76cf0008ac2c2"
integrity sha512-q8BZ89jjc+mz08rSxROs8VsrBBcn1SIw1kq9NjolL509tkABRk9io01RAjSaEv1Xb2uFLt8VtRiZbGp5H8iDtg== integrity sha512-q8BZ89jjc+mz08rSxROs8VsrBBcn1SIw1kq9NjolL509tkABRk9io01RAjSaEv1Xb2uFLt8VtRiZbGp5H8iDtg==
fastparse@^1.1.1:
version "1.1.2"
resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.2.tgz#91728c5a5942eced8531283c79441ee4122c35a9"
integrity sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==
fault@^1.0.2: fault@^1.0.2:
version "1.0.3" version "1.0.3"
resolved "https://registry.yarnpkg.com/fault/-/fault-1.0.3.tgz#4da88cf979b6b792b4e13c7ec836767725170b7e" resolved "https://registry.yarnpkg.com/fault/-/fault-1.0.3.tgz#4da88cf979b6b792b4e13c7ec836767725170b7e"
@ -10694,14 +10681,7 @@ icss-replace-symbols@^1.1.0:
resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded"
integrity sha1-Bupvg2ead0njhs/h/oEq5dsiPe0= integrity sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=
icss-utils@^2.1.0: icss-utils@^4.0.0, icss-utils@^4.1.0, icss-utils@^4.1.1:
version "2.1.0"
resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-2.1.0.tgz#83f0a0ec378bf3246178b6c2ad9136f135b1c962"
integrity sha1-g/Cg7DeL8yRheLbCrZE28TWxyWI=
dependencies:
postcss "^6.0.1"
icss-utils@^4.1.0:
version "4.1.1" version "4.1.1"
resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467" resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467"
integrity sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA== integrity sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==
@ -12706,11 +12686,6 @@ lodash.assign@^4.0.3, lodash.assign@^4.0.6, lodash.assign@^4.2.0:
resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7"
integrity sha1-DZnzzNem0mHRm9rrkkUAXShYCOc= integrity sha1-DZnzzNem0mHRm9rrkkUAXShYCOc=
lodash.camelcase@^4.3.0:
version "4.3.0"
resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6"
integrity sha1-soqmKIorn8ZRA1x3EfZathkDMaY=
lodash.clonedeep@4.5.0, lodash.clonedeep@^4.3.2, lodash.clonedeep@^4.5.0: lodash.clonedeep@4.5.0, lodash.clonedeep@^4.3.2, lodash.clonedeep@^4.5.0:
version "4.5.0" version "4.5.0"
resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef"
@ -15509,13 +15484,6 @@ postcss-minify-selectors@^4.0.2:
postcss "^7.0.0" postcss "^7.0.0"
postcss-selector-parser "^3.0.0" postcss-selector-parser "^3.0.0"
postcss-modules-extract-imports@^1.2.0:
version "1.2.1"
resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.1.tgz#dc87e34148ec7eab5f791f7cd5849833375b741a"
integrity sha512-6jt9XZwUhwmRUhb/CkyJY020PYaPJsCyt3UjbaWo6XEbH/94Hmv6MP7fG2C5NDU/BcHzyGYxNtHvM+LTf9HrYw==
dependencies:
postcss "^6.0.1"
postcss-modules-extract-imports@^2.0.0: postcss-modules-extract-imports@^2.0.0:
version "2.0.0" version "2.0.0"
resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e" resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e"
@ -15523,14 +15491,6 @@ postcss-modules-extract-imports@^2.0.0:
dependencies: dependencies:
postcss "^7.0.5" postcss "^7.0.5"
postcss-modules-local-by-default@^1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz#f7d80c398c5a393fa7964466bd19500a7d61c069"
integrity sha1-99gMOYxaOT+nlkRmvRlQCn1hwGk=
dependencies:
css-selector-tokenizer "^0.7.0"
postcss "^6.0.1"
postcss-modules-local-by-default@^2.0.6: postcss-modules-local-by-default@^2.0.6:
version "2.0.6" version "2.0.6"
resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-2.0.6.tgz#dd9953f6dd476b5fd1ef2d8830c8929760b56e63" resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-2.0.6.tgz#dd9953f6dd476b5fd1ef2d8830c8929760b56e63"
@ -15540,13 +15500,15 @@ postcss-modules-local-by-default@^2.0.6:
postcss-selector-parser "^6.0.0" postcss-selector-parser "^6.0.0"
postcss-value-parser "^3.3.1" postcss-value-parser "^3.3.1"
postcss-modules-scope@^1.1.0: postcss-modules-local-by-default@^3.0.2:
version "1.1.0" version "3.0.2"
resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz#d6ea64994c79f97b62a72b426fbe6056a194bb90" resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.2.tgz#e8a6561be914aaf3c052876377524ca90dbb7915"
integrity sha1-1upkmUx5+XtipytCb75gVqGUu5A= integrity sha512-jM/V8eqM4oJ/22j0gx4jrp63GSvDH6v86OqyTHHUvk4/k1vceipZsaymiZ5PvocqZOl5SFHiFJqjs3la0wnfIQ==
dependencies: dependencies:
css-selector-tokenizer "^0.7.0" icss-utils "^4.1.1"
postcss "^6.0.1" postcss "^7.0.16"
postcss-selector-parser "^6.0.2"
postcss-value-parser "^4.0.0"
postcss-modules-scope@^2.1.0: postcss-modules-scope@^2.1.0:
version "2.1.0" version "2.1.0"
@ -15556,14 +15518,6 @@ postcss-modules-scope@^2.1.0:
postcss "^7.0.6" postcss "^7.0.6"
postcss-selector-parser "^6.0.0" postcss-selector-parser "^6.0.0"
postcss-modules-values@^1.3.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz#ecffa9d7e192518389f42ad0e83f72aec456ea20"
integrity sha1-7P+p1+GSUYOJ9CrQ6D9yrsRW6iA=
dependencies:
icss-replace-symbols "^1.1.0"
postcss "^6.0.1"
postcss-modules-values@^2.0.0: postcss-modules-values@^2.0.0:
version "2.0.0" version "2.0.0"
resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-2.0.0.tgz#479b46dc0c5ca3dc7fa5270851836b9ec7152f64" resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-2.0.0.tgz#479b46dc0c5ca3dc7fa5270851836b9ec7152f64"
@ -15572,6 +15526,14 @@ postcss-modules-values@^2.0.0:
icss-replace-symbols "^1.1.0" icss-replace-symbols "^1.1.0"
postcss "^7.0.6" postcss "^7.0.6"
postcss-modules-values@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz#5b5000d6ebae29b4255301b4a3a54574423e7f10"
integrity sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==
dependencies:
icss-utils "^4.0.0"
postcss "^7.0.6"
postcss-nesting@^7.0.0: postcss-nesting@^7.0.0:
version "7.0.1" version "7.0.1"
resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-7.0.1.tgz#b50ad7b7f0173e5b5e3880c3501344703e04c052" resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-7.0.1.tgz#b50ad7b7f0173e5b5e3880c3501344703e04c052"
@ -15820,7 +15782,7 @@ postcss-selector-parser@^5.0.0, postcss-selector-parser@^5.0.0-rc.3, postcss-sel
indexes-of "^1.0.1" indexes-of "^1.0.1"
uniq "^1.0.1" uniq "^1.0.1"
postcss-selector-parser@^6.0.0: postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2:
version "6.0.2" version "6.0.2"
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz#934cf799d016c83411859e09dcecade01286ec5c" resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz#934cf799d016c83411859e09dcecade01286ec5c"
integrity sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg== integrity sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg==
@ -15876,15 +15838,6 @@ postcss@7.0.14:
source-map "^0.6.1" source-map "^0.6.1"
supports-color "^6.1.0" supports-color "^6.1.0"
postcss@^6.0.1, postcss@^6.0.23:
version "6.0.23"
resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324"
integrity sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==
dependencies:
chalk "^2.4.1"
source-map "^0.6.1"
supports-color "^5.4.0"
postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.5, postcss@^7.0.6: postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.5, postcss@^7.0.6:
version "7.0.17" version "7.0.17"
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.17.tgz#4da1bdff5322d4a0acaab4d87f3e782436bad31f" resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.17.tgz#4da1bdff5322d4a0acaab4d87f3e782436bad31f"
@ -15894,6 +15847,15 @@ postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.2
source-map "^0.6.1" source-map "^0.6.1"
supports-color "^6.1.0" supports-color "^6.1.0"
postcss@^7.0.16:
version "7.0.20"
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.20.tgz#a107b68ef1ad1c5e6e214ebb3c5ede2799322837"
integrity sha512-VOdO3a5nHVftPSEbG1zaG320b4mH5KAflH+pIeVAF5/hlw6YumELSgHZQBekjg29Oj4qw7XAyp9tIEBpeNWcyg==
dependencies:
chalk "^2.4.2"
source-map "^0.6.1"
supports-color "^6.1.0"
prelude-ls@~1.1.2: prelude-ls@~1.1.2:
version "1.1.2" version "1.1.2"
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
@ -17305,7 +17267,7 @@ regenerate-unicode-properties@^8.1.0:
dependencies: dependencies:
regenerate "^1.4.0" regenerate "^1.4.0"
regenerate@^1.2.1, regenerate@^1.4.0: regenerate@^1.4.0:
version "1.4.0" version "1.4.0"
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11"
integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg== integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==
@ -17362,15 +17324,6 @@ regexpp@^2.0.1:
resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f"
integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==
regexpu-core@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-1.0.0.tgz#86a763f58ee4d7c2f6b102e4764050de7ed90c6b"
integrity sha1-hqdj9Y7k18L2sQLkdkBQ3n7ZDGs=
dependencies:
regenerate "^1.2.1"
regjsgen "^0.2.0"
regjsparser "^0.1.4"
regexpu-core@^4.5.4: regexpu-core@^4.5.4:
version "4.5.5" version "4.5.5"
resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.5.5.tgz#aaffe61c2af58269b3e516b61a73790376326411" resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.5.5.tgz#aaffe61c2af58269b3e516b61a73790376326411"
@ -17395,23 +17348,11 @@ regexpu-core@^4.6.0:
unicode-match-property-ecmascript "^1.0.4" unicode-match-property-ecmascript "^1.0.4"
unicode-match-property-value-ecmascript "^1.1.0" unicode-match-property-value-ecmascript "^1.1.0"
regjsgen@^0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7"
integrity sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=
regjsgen@^0.5.0: regjsgen@^0.5.0:
version "0.5.0" version "0.5.0"
resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.0.tgz#a7634dc08f89209c2049adda3525711fb97265dd" resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.0.tgz#a7634dc08f89209c2049adda3525711fb97265dd"
integrity sha512-RnIrLhrXCX5ow/E5/Mh2O4e/oa1/jW0eaBKTSy3LaCj+M3Bqvm97GWDp2yUtzIs4LEn65zR2yiYGFqb2ApnzDA== integrity sha512-RnIrLhrXCX5ow/E5/Mh2O4e/oa1/jW0eaBKTSy3LaCj+M3Bqvm97GWDp2yUtzIs4LEn65zR2yiYGFqb2ApnzDA==
regjsparser@^0.1.4:
version "0.1.5"
resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"
integrity sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=
dependencies:
jsesc "~0.5.0"
regjsparser@^0.6.0: regjsparser@^0.6.0:
version "0.6.0" version "0.6.0"
resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.0.tgz#f1e6ae8b7da2bae96c99399b868cd6c933a2ba9c" resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.0.tgz#f1e6ae8b7da2bae96c99399b868cd6c933a2ba9c"
@ -18097,6 +18038,14 @@ schema-utils@^2.0.0, schema-utils@^2.0.1, schema-utils@^2.1.0:
ajv "^6.10.2" ajv "^6.10.2"
ajv-keywords "^3.4.1" ajv-keywords "^3.4.1"
schema-utils@^2.4.1:
version "2.5.0"
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.5.0.tgz#8f254f618d402cc80257486213c8970edfd7c22f"
integrity sha512-32ISrwW2scPXHUSusP8qMg5dLUawKkyV+/qIEV9JdXKx+rsM6mi8vZY8khg2M69Qom16rtroWXD3Ybtiws38gQ==
dependencies:
ajv "^6.10.2"
ajv-keywords "^3.4.1"
scrypt-js@2.0.3: scrypt-js@2.0.3:
version "2.0.3" version "2.0.3"
resolved "https://registry.yarnpkg.com/scrypt-js/-/scrypt-js-2.0.3.tgz#bb0040be03043da9a012a2cea9fc9f852cfc87d4" resolved "https://registry.yarnpkg.com/scrypt-js/-/scrypt-js-2.0.3.tgz#bb0040be03043da9a012a2cea9fc9f852cfc87d4"
@ -19335,14 +19284,6 @@ strong-log-transformer@^2.0.0:
minimist "^1.2.0" minimist "^1.2.0"
through "^2.3.4" through "^2.3.4"
style-loader@0.23.1, style-loader@^0.23.1:
version "0.23.1"
resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.23.1.tgz#cb9154606f3e771ab6c4ab637026a1049174d925"
integrity sha512-XK+uv9kWwhZMZ1y7mysB+zoihsEj4wneFWAS5qoiLwzW0WzSqMrrsIy+a3zkQJq0ipFtBpX5W3MqyRIBF/WFGg==
dependencies:
loader-utils "^1.1.0"
schema-utils "^1.0.0"
style-loader@1.0.0: style-loader@1.0.0:
version "1.0.0" version "1.0.0"
resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.0.0.tgz#1d5296f9165e8e2c85d24eee0b7caf9ec8ca1f82" resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.0.0.tgz#1d5296f9165e8e2c85d24eee0b7caf9ec8ca1f82"
@ -19351,6 +19292,14 @@ style-loader@1.0.0:
loader-utils "^1.2.3" loader-utils "^1.2.3"
schema-utils "^2.0.1" schema-utils "^2.0.1"
style-loader@^0.23.1:
version "0.23.1"
resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.23.1.tgz#cb9154606f3e771ab6c4ab637026a1049174d925"
integrity sha512-XK+uv9kWwhZMZ1y7mysB+zoihsEj4wneFWAS5qoiLwzW0WzSqMrrsIy+a3zkQJq0ipFtBpX5W3MqyRIBF/WFGg==
dependencies:
loader-utils "^1.1.0"
schema-utils "^1.0.0"
stylehacks@^4.0.0: stylehacks@^4.0.0:
version "4.0.3" version "4.0.3"
resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-4.0.3.tgz#6718fcaf4d1e07d8a1318690881e8d96726a71d5" resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-4.0.3.tgz#6718fcaf4d1e07d8a1318690881e8d96726a71d5"
@ -19389,7 +19338,7 @@ supports-color@^3.1.0:
dependencies: dependencies:
has-flag "^1.0.0" has-flag "^1.0.0"
supports-color@^5.1.0, supports-color@^5.3.0, supports-color@^5.4.0, supports-color@^5.5.0: supports-color@^5.1.0, supports-color@^5.3.0, supports-color@^5.5.0:
version "5.5.0" version "5.5.0"
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
@ -20288,6 +20237,15 @@ url-loader@2.1.0:
mime "^2.4.4" mime "^2.4.4"
schema-utils "^2.0.0" schema-utils "^2.0.0"
url-loader@2.2.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-2.2.0.tgz#af321aece1fd0d683adc8aaeb27829f29c75b46e"
integrity sha512-G8nk3np8ZAnwhHXas1JxJEwJyQdqFXAKJehfgZ/XrC48volFBRtO+FIKtF2u0Ma3bw+4vnDVjHPAQYlF9p2vsw==
dependencies:
loader-utils "^1.2.3"
mime "^2.4.4"
schema-utils "^2.4.1"
url-loader@^1.1.2: url-loader@^1.1.2:
version "1.1.2" version "1.1.2"
resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-1.1.2.tgz#b971d191b83af693c5e3fea4064be9e1f2d7f8d8" resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-1.1.2.tgz#b971d191b83af693c5e3fea4064be9e1f2d7f8d8"
@ -21417,7 +21375,36 @@ webpack@4.40.2:
watchpack "^1.6.0" watchpack "^1.6.0"
webpack-sources "^1.4.1" webpack-sources "^1.4.1"
webpack@4.41.0, webpack@^4.33.0, webpack@^4.38.0: webpack@4.41.2:
version "4.41.2"
resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.41.2.tgz#c34ec76daa3a8468c9b61a50336d8e3303dce74e"
integrity sha512-Zhw69edTGfbz9/8JJoyRQ/pq8FYUoY0diOXqW0T6yhgdhCv6wr0hra5DwwWexNRns2Z2+gsnrNcbe9hbGBgk/A==
dependencies:
"@webassemblyjs/ast" "1.8.5"
"@webassemblyjs/helper-module-context" "1.8.5"
"@webassemblyjs/wasm-edit" "1.8.5"
"@webassemblyjs/wasm-parser" "1.8.5"
acorn "^6.2.1"
ajv "^6.10.2"
ajv-keywords "^3.4.1"
chrome-trace-event "^1.0.2"
enhanced-resolve "^4.1.0"
eslint-scope "^4.0.3"
json-parse-better-errors "^1.0.2"
loader-runner "^2.4.0"
loader-utils "^1.2.3"
memory-fs "^0.4.1"
micromatch "^3.1.10"
mkdirp "^0.5.1"
neo-async "^2.6.1"
node-libs-browser "^2.2.1"
schema-utils "^1.0.0"
tapable "^1.1.3"
terser-webpack-plugin "^1.4.1"
watchpack "^1.6.0"
webpack-sources "^1.4.1"
webpack@^4.33.0, webpack@^4.38.0:
version "4.41.0" version "4.41.0"
resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.41.0.tgz#db6a254bde671769f7c14e90a1a55e73602fc70b" resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.41.0.tgz#db6a254bde671769f7c14e90a1a55e73602fc70b"
integrity sha512-yNV98U4r7wX1VJAj5kyMsu36T8RPPQntcb5fJLOsMz/pt/WrKC0Vp1bAlqPLkA1LegSwQwf6P+kAbyhRKVQ72g== integrity sha512-yNV98U4r7wX1VJAj5kyMsu36T8RPPQntcb5fJLOsMz/pt/WrKC0Vp1bAlqPLkA1LegSwQwf6P+kAbyhRKVQ72g==