Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add storybook addon (#954)

* make example storybook project

* Add react support

* Add readme

* Start pulling stuff out

* Migrate over to package

* Update deps and lockfile

* Update README.md

* Update preview.tsx

* Update deps and lockfile

* Clean up decorator exports

* Add package.json

* Rename folder

* Add storybook addon to codesandbox

* Redo lockfile

* Use urql core import

* Revert "Use urql core import"

This reverts commit 529baea037eafa25b362f631a6b602e9413e1ac4.

* Add install command (lockfile)

* Attempt 2

* Remove explicit package deps

* Try different order lol

* Revert "Try different order lol"

This reverts commit f4ed408ef6b47c0ed1568d460413087c5f18354b.

* Rebuild yarn lock

* Use shared tsconfig

* Prep patch

* Fix submodule export

* Prep for first release

* Use global.d.ts format

* use working prepublish script

* Update ci.json

* Update packages/storybook-addon/package.json

Co-authored-by: Phil Pluckthun <phil@kitten.sh>

* Update packages/storybook-addon/src/decorator/preact.ts

* Update package.json

* Delete LICENSE

* Add dev flag to install script

* Restore lockfile and yarn force

* Add prepare script

* Fix declaration merging

* Add preact export map to publishing files

* /

* Remove preact (non compat) from package.json

* Update preact.ts

* Deduplicate locked dependencies and add version numbers to package.json

The internal versions are bumped by changesets; the others we keep in sync
manually.

* Fix up package.json entrypoints and file paths

* Add empty CHANGELOG

* Update package.json

* Rename index.d.ts to storybook.ts

* Update react.ts

* Fix React build for storybook addon package.json

* Very pretty

Co-authored-by: Phil Pluckthun <phil@kitten.sh>

authored by

Andy Richardson
Phil Pluckthun
and committed by
GitHub
aee95980 c1e72a67

+2915 -143
+1 -1
package.json
··· 89 89 "rollup-plugin-terser": "^7.0.2", 90 90 "rollup-plugin-typescript2": "^0.27.2", 91 91 "rollup-plugin-visualizer": "^4.1.1", 92 - "terser": "^5.3.0", 92 + "terser": "^5.3.1", 93 93 "ts-jest": "^26.3.0", 94 94 "typescript": "^4.0.2" 95 95 }
+5
packages/storybook-addon/CHANGELOG.md
··· 1 + # @urql/storybook-addon 2 + 3 + ## 1.0.3 4 + 5 + **Initial Release**
+80
packages/storybook-addon/README.md
··· 1 + # Urql Storybook Addon 2 + 3 + Create fixtures to model all the states of your GraphQL requests with Urql. 4 + 5 + ## Installation 6 + 7 + ```sh 8 + npm i -D @urql/storybook-addon 9 + ``` 10 + 11 + ## Usage 12 + 13 + Add the decorator in your preview file at `.storybook/preview` 14 + 15 + ```tsx 16 + import { addDecorator } from '@storybook/react'; 17 + import { urqlDecorator } from '@urql/storybook-addon'; 18 + 19 + addDecorator(urqlDecorator); 20 + ``` 21 + 22 + Mock states by using the `urql` parameter on your stories. 23 + 24 + ```tsx 25 + export const MyStory: Story = () => <Users />; 26 + 27 + MyStory.parameters = { 28 + urql: () => ({ data: { user: { id: 1234, name: 'Steve' } } }), 29 + }; 30 + ``` 31 + 32 + ## Examples 33 + 34 + ### Fetching state 35 + 36 + Setting a query in an infinitely fetching state. 37 + 38 + ```tsx 39 + MyStory.parameters = { 40 + urql: () => new Promise(() => {}), 41 + }; 42 + ``` 43 + 44 + ### Error state 45 + 46 + Returning an error for a query. 47 + 48 + ```tsx 49 + MyStory.parameters = { 50 + urql: () => ({ errors: ['Some error'] }), 51 + }; 52 + ``` 53 + 54 + ### Single response 55 + 56 + Returning data for a query (single request). 57 + 58 + ```tsx 59 + MyStory.parameters = { 60 + urql: () => ({ data: { user: { id: 1234, name: 'Steve' } } }), 61 + }; 62 + ``` 63 + 64 + ### Multiple queries 65 + 66 + Returning data for multiple queries (conditional response). 67 + 68 + ```tsx 69 + MyStory.parameters = { 70 + urql: op => { 71 + if (getQueryName(op.query) === 'GetUser') { 72 + return { data: { user: { id: 1234, name: 'Steve' } } }; 73 + } 74 + 75 + if (getQueryName(op.query) === 'GetFeed') { 76 + return { data: { feed: [{ id: 1, title: 'Fake news' }] } }; 77 + } 78 + }, 79 + }; 80 + ```
+57
packages/storybook-addon/package.json
··· 1 + { 2 + "name": "@urql/storybook-addon", 3 + "version": "1.0.3", 4 + "description": "Make stories in Storybook with urql", 5 + "sideEffects": false, 6 + "homepage": "https://github.com/FormidableLabs/urql/tree/main/packages/storybook-addon", 7 + "bugs": "https://github.com/FormidableLabs/urql/issues", 8 + "license": "MIT", 9 + "repository": { 10 + "type": "git", 11 + "url": "https://github.com/FormidableLabs/urql.git", 12 + "directory": "packages/storybook-addon" 13 + }, 14 + "keywords": [ 15 + "addon", 16 + "storybook", 17 + "urql", 18 + "formidablelabs", 19 + "preact", 20 + "react" 21 + ], 22 + "main": "dist/urql-storybook-addon.js", 23 + "module": "dist/urql-storybook-addon.es.js", 24 + "types": "dist/types/decorator/react.d.ts", 25 + "source": "src/decorator/react.ts", 26 + "files": [ 27 + "LICENSE", 28 + "CHANGELOG.md", 29 + "README.md", 30 + "dist/" 31 + ], 32 + "scripts": { 33 + "clean": "rimraf dist", 34 + "check": "tsc --noEmit", 35 + "lint": "eslint --ext=js,jsx,ts,tsx .", 36 + "build": "rollup -c ../../scripts/rollup/config.js", 37 + "prepare": "node ../../scripts/prepare/index.js", 38 + "prepublishOnly": "run-s clean build" 39 + }, 40 + "devDependencies": { 41 + "@urql/preact": ">=1.2.1", 42 + "@storybook/preact": ">=6.0.0", 43 + "@storybook/react": ">=6.0.0", 44 + "@types/webpack-env": "~1.15.3", 45 + "preact": "^10.3.4", 46 + "react": "^16.13.0", 47 + "urql": ">=1.10.0", 48 + "graphql": "^15.1.0", 49 + "wonka": "latest" 50 + }, 51 + "optionalDependencies": { 52 + "@storybook/addons": ">=6.0.0" 53 + }, 54 + "publishConfig": { 55 + "access": "public" 56 + } 57 + }
+1
packages/storybook-addon/register.js
··· 1 + require('./dist/register');
+17
packages/storybook-addon/src/decorator/preact.ts
··· 1 + /** FUTURE EXPORT - NOT CURRENTLY BEING USED */ 2 + import { addDecorator } from '@storybook/preact'; 3 + import { Provider, createClient } from '@urql/preact'; 4 + import { createElement } from 'preact'; 5 + import { getStorybookExchange } from '../exchange'; 6 + 7 + export const urqlDecorator: Parameters<typeof addDecorator>[0] = ( 8 + Story, 9 + context 10 + ) => { 11 + const client = createClient({ 12 + url: '/graphql', 13 + exchanges: [getStorybookExchange(context)], 14 + }); 15 + 16 + return createElement(Provider, { value: client, children: Story(context) }); 17 + };
+17
packages/storybook-addon/src/decorator/react.ts
··· 1 + import '../storybook'; 2 + import { addDecorator } from '@storybook/react'; 3 + import { createElement } from 'react'; 4 + import { Provider, createClient } from 'urql'; 5 + import { getStorybookExchange } from '../exchange'; 6 + 7 + export const urqlDecorator: Parameters<typeof addDecorator>[0] = ( 8 + Story, 9 + context 10 + ) => { 11 + const client = createClient({ 12 + url: 'storehhh', 13 + exchanges: [getStorybookExchange(context)], 14 + }); 15 + 16 + return createElement(Provider, { value: client, children: Story(context) }); 17 + };
+15
packages/storybook-addon/src/exchange.ts
··· 1 + import { Exchange, makeResult } from 'urql'; 2 + import { pipe, map, mergeMap, fromPromise, fromValue } from 'wonka'; 3 + 4 + export const getStorybookExchange = <T extends { parameters: any }>( 5 + context: T 6 + ): Exchange => () => op => 7 + pipe( 8 + op, 9 + map(operation => [operation, context.parameters.urql(operation)]), 10 + mergeMap(([operation, result]) => 11 + 'then' in result 12 + ? fromPromise(result.then((r: any) => makeResult(operation, r))) 13 + : fromValue(makeResult(operation, result)) 14 + ) 15 + );
+6
packages/storybook-addon/src/register.ts
··· 1 + import addons from '@storybook/addons'; 2 + 3 + // We might use this in the future... 4 + addons.register('storybook-addon-urql', () => { 5 + return; 6 + });
+11
packages/storybook-addon/src/storybook.ts
··· 1 + import { Operation, OperationResult } from '@urql/core'; 2 + 3 + declare module '@storybook/addons' { 4 + type UrqlParameterResponse = Pick<OperationResult, 'data' | 'error'>; 5 + 6 + export interface Parameters { 7 + urql: ( 8 + o: Operation 9 + ) => UrqlParameterResponse | Promise<UrqlParameterResponse>; 10 + } 11 + }
+12
packages/storybook-addon/tsconfig.json
··· 1 + { 2 + "extends": "../../tsconfig.json", 3 + "include": ["src"], 4 + "compilerOptions": { 5 + "baseUrl": "src", 6 + "paths": { 7 + "urql": ["../../node_modules/urql/src"], 8 + "*-urql": ["../../node_modules/*-urql/src"], 9 + "@urql/*": ["../../node_modules/@urql/*/src"] 10 + } 11 + } 12 + }
+7 -1
scripts/prepare/index.js
··· 7 7 const cwd = process.cwd(); 8 8 const workspaceRoot = path.resolve(__dirname, '../../'); 9 9 const pkg = require(path.resolve(cwd, 'package.json')); 10 - const hasReact = ['dependencies', 'optionalDependencies', 'peerDependencies'].some((dep) => dep in pkg && "react" in pkg[dep]); 10 + 11 + const hasReact = [ 12 + 'dependencies', 13 + 'optionalDependencies', 14 + 'peerDependencies', 15 + 'devDependencies' 16 + ].some((dep) => pkg[dep] && pkg[dep].react); 11 17 12 18 const normalize = name => name 13 19 .replace(/[@\s\/\.]+/g, ' ')
+4
scripts/rollup/settings.js
··· 33 33 export const externalModules = ['dns', 'fs', 'path', 'url']; 34 34 if (pkg.peerDependencies) 35 35 externalModules.push(...Object.keys(pkg.peerDependencies)); 36 + if (pkg.devDependencies) 37 + externalModules.push(...Object.keys(pkg.devDependencies)); 36 38 if (pkg.dependencies) 37 39 externalModules.push(...Object.keys(pkg.dependencies)); 40 + if (pkg.optionalDependencies) 41 + externalModules.push(...Object.keys(pkg.optionalDependencies)); 38 42 39 43 const externalPredicate = new RegExp(`^(${externalModules.join('|')})($|/)`); 40 44
+2682 -141
yarn.lock
··· 97 97 dependencies: 98 98 "@babel/highlight" "^7.10.4" 99 99 100 + "@babel/code-frame@7.8.3": 101 + version "7.8.3" 102 + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz#33e25903d7481181534e12ec0a25f16b6fcf419e" 103 + integrity sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g== 104 + dependencies: 105 + "@babel/highlight" "^7.8.3" 106 + 100 107 "@babel/compat-data@^7.10.4", "@babel/compat-data@^7.11.0": 101 108 version "7.11.0" 102 109 resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.11.0.tgz#e9f73efe09af1355b723a7f39b11bad637d7c99c" ··· 148 155 semver "^5.4.1" 149 156 source-map "^0.5.0" 150 157 151 - "@babel/core@^7.1.0", "@babel/core@^7.11.6", "@babel/core@^7.2.0", "@babel/core@^7.5.5", "@babel/core@^7.7.5": 158 + "@babel/core@^7.1.0", "@babel/core@^7.11.6", "@babel/core@^7.2.0", "@babel/core@^7.5.5", "@babel/core@^7.7.5", "@babel/core@^7.9.0": 152 159 version "7.11.6" 153 160 resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.11.6.tgz#3a9455dc7387ff1bac45770650bc13ba04a15651" 154 161 integrity sha512-Wpcv03AGnmkgm6uS6k8iwhIwTrcP0m17TL1n1sy7qD0qelDu4XNeW0dN0mHfa+Gei211yDaLoEe/VlbXQzM4Bg== ··· 394 401 "@babel/traverse" "^7.10.4" 395 402 "@babel/types" "^7.10.4" 396 403 397 - "@babel/highlight@^7.10.4": 404 + "@babel/highlight@^7.10.4", "@babel/highlight@^7.8.3": 398 405 version "7.10.4" 399 406 resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" 400 407 integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== ··· 417 424 "@babel/helper-remap-async-to-generator" "^7.10.4" 418 425 "@babel/plugin-syntax-async-generators" "^7.8.0" 419 426 420 - "@babel/plugin-proposal-class-properties@7.10.4", "@babel/plugin-proposal-class-properties@^7.10.4", "@babel/plugin-proposal-class-properties@^7.5.5": 427 + "@babel/plugin-proposal-class-properties@7.10.4", "@babel/plugin-proposal-class-properties@^7.10.4", "@babel/plugin-proposal-class-properties@^7.5.5", "@babel/plugin-proposal-class-properties@^7.8.3": 421 428 version "7.10.4" 422 429 resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.10.4.tgz#a33bf632da390a59c7a8c570045d1115cd778807" 423 430 integrity sha512-vhwkEROxzcHGNu2mzUC0OFFNXdZ4M23ib8aRRcJSsW8BZK9pQMD7QB7csl97NBbgGZO7ZyHUyKDnxzOaP4IrCg== ··· 425 432 "@babel/helper-create-class-features-plugin" "^7.10.4" 426 433 "@babel/helper-plugin-utils" "^7.10.4" 427 434 435 + "@babel/plugin-proposal-decorators@^7.8.3": 436 + version "7.10.5" 437 + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.10.5.tgz#42898bba478bc4b1ae242a703a953a7ad350ffb4" 438 + integrity sha512-Sc5TAQSZuLzgY0664mMDn24Vw2P8g/VhyLyGPaWiHahhgLqeZvcGeyBZOrJW0oSKIK2mvQ22a1ENXBIQLhrEiQ== 439 + dependencies: 440 + "@babel/helper-create-class-features-plugin" "^7.10.5" 441 + "@babel/helper-plugin-utils" "^7.10.4" 442 + "@babel/plugin-syntax-decorators" "^7.10.4" 443 + 428 444 "@babel/plugin-proposal-dynamic-import@^7.10.4": 429 445 version "7.10.4" 430 446 resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.10.4.tgz#ba57a26cb98b37741e9d5bca1b8b0ddf8291f17e" ··· 433 449 "@babel/helper-plugin-utils" "^7.10.4" 434 450 "@babel/plugin-syntax-dynamic-import" "^7.8.0" 435 451 436 - "@babel/plugin-proposal-export-default-from@^7.5.2": 452 + "@babel/plugin-proposal-export-default-from@^7.5.2", "@babel/plugin-proposal-export-default-from@^7.8.3": 437 453 version "7.10.4" 438 454 resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.10.4.tgz#08f66eef0067cbf6a7bc036977dcdccecaf0c6c5" 439 455 integrity sha512-G1l00VvDZ7Yk2yRlC5D8Ybvu3gmeHS3rCHoUYdjrqGYUtdeOBoRypnvDZ5KQqxyaiiGHWnVDeSEzA5F9ozItig== ··· 465 481 "@babel/helper-plugin-utils" "^7.10.4" 466 482 "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" 467 483 468 - "@babel/plugin-proposal-nullish-coalescing-operator@7.10.4", "@babel/plugin-proposal-nullish-coalescing-operator@^7.10.4": 484 + "@babel/plugin-proposal-nullish-coalescing-operator@7.10.4", "@babel/plugin-proposal-nullish-coalescing-operator@^7.10.1", "@babel/plugin-proposal-nullish-coalescing-operator@^7.10.4": 469 485 version "7.10.4" 470 486 resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.4.tgz#02a7e961fc32e6d5b2db0649e01bf80ddee7e04a" 471 487 integrity sha512-wq5n1M3ZUlHl9sqT2ok1T2/MTt6AXE0e1Lz4WzWBr95LsAZ5qDXe4KnFuauYyEyLiohvXFMdbsOTMyLZs91Zlw== ··· 490 506 "@babel/plugin-syntax-object-rest-spread" "^7.8.0" 491 507 "@babel/plugin-transform-parameters" "^7.10.4" 492 508 493 - "@babel/plugin-proposal-object-rest-spread@7.11.0", "@babel/plugin-proposal-object-rest-spread@^7.11.0": 509 + "@babel/plugin-proposal-object-rest-spread@7.11.0", "@babel/plugin-proposal-object-rest-spread@^7.11.0", "@babel/plugin-proposal-object-rest-spread@^7.9.6": 494 510 version "7.11.0" 495 511 resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.11.0.tgz#bd81f95a1f746760ea43b6c2d3d62b11790ad0af" 496 512 integrity sha512-wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA== ··· 507 523 "@babel/helper-plugin-utils" "^7.10.4" 508 524 "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" 509 525 510 - "@babel/plugin-proposal-optional-chaining@7.11.0", "@babel/plugin-proposal-optional-chaining@^7.11.0", "@babel/plugin-proposal-optional-chaining@^7.2.0": 526 + "@babel/plugin-proposal-optional-chaining@7.11.0", "@babel/plugin-proposal-optional-chaining@^7.10.1", "@babel/plugin-proposal-optional-chaining@^7.11.0", "@babel/plugin-proposal-optional-chaining@^7.2.0": 511 527 version "7.11.0" 512 528 resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.11.0.tgz#de5866d0646f6afdaab8a566382fe3a221755076" 513 529 integrity sha512-v9fZIu3Y8562RRwhm1BbMRxtqZNFmFA2EG+pT2diuU8PT3H6T/KXoZ54KgYisfOFZHV6PfvAiBIZ9Rcz+/JCxA== ··· 516 532 "@babel/helper-skip-transparent-expression-wrappers" "^7.11.0" 517 533 "@babel/plugin-syntax-optional-chaining" "^7.8.0" 518 534 519 - "@babel/plugin-proposal-private-methods@^7.10.4": 535 + "@babel/plugin-proposal-private-methods@^7.10.4", "@babel/plugin-proposal-private-methods@^7.8.3": 520 536 version "7.10.4" 521 537 resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.10.4.tgz#b160d972b8fdba5c7d111a145fc8c421fc2a6909" 522 538 integrity sha512-wh5GJleuI8k3emgTg5KkJK6kHNsGEr0uBTDBuQUBJwckk9xs1ez79ioheEVVxMLyPscB0LfkbVHslQqIzWV6Bw== ··· 553 569 dependencies: 554 570 "@babel/helper-plugin-utils" "^7.10.4" 555 571 556 - "@babel/plugin-syntax-dynamic-import@7.8.3", "@babel/plugin-syntax-dynamic-import@^7.2.0", "@babel/plugin-syntax-dynamic-import@^7.8.0": 572 + "@babel/plugin-syntax-decorators@^7.10.4": 573 + version "7.10.4" 574 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.10.4.tgz#6853085b2c429f9d322d02f5a635018cdeb2360c" 575 + integrity sha512-2NaoC6fAk2VMdhY1eerkfHV+lVYC1u8b+jmRJISqANCJlTxYy19HGdIkkQtix2UtkcPuPu+IlDgrVseZnU03bw== 576 + dependencies: 577 + "@babel/helper-plugin-utils" "^7.10.4" 578 + 579 + "@babel/plugin-syntax-dynamic-import@7.8.3", "@babel/plugin-syntax-dynamic-import@^7.2.0", "@babel/plugin-syntax-dynamic-import@^7.8.0", "@babel/plugin-syntax-dynamic-import@^7.8.3": 557 580 version "7.8.3" 558 581 resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" 559 582 integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== ··· 574 597 dependencies: 575 598 "@babel/helper-plugin-utils" "^7.8.3" 576 599 600 + "@babel/plugin-syntax-flow@^7.10.4": 601 + version "7.10.4" 602 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.10.4.tgz#53351dd7ae01995e567d04ce42af1a6e0ba846a6" 603 + integrity sha512-yxQsX1dJixF4qEEdzVbst3SZQ58Nrooz8NV9Z9GL4byTE25BvJgl5lf0RECUf0fh28rZBb/RYTWn/eeKwCMrZQ== 604 + dependencies: 605 + "@babel/helper-plugin-utils" "^7.10.4" 606 + 577 607 "@babel/plugin-syntax-import-meta@^7.8.3": 578 608 version "7.10.4" 579 609 resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" ··· 651 681 dependencies: 652 682 "@babel/helper-plugin-utils" "^7.10.4" 653 683 654 - "@babel/plugin-transform-arrow-functions@^7.10.4": 684 + "@babel/plugin-transform-arrow-functions@^7.10.4", "@babel/plugin-transform-arrow-functions@^7.8.3": 655 685 version "7.10.4" 656 686 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.10.4.tgz#e22960d77e697c74f41c501d44d73dbf8a6a64cd" 657 687 integrity sha512-9J/oD1jV0ZCBcgnoFWFq1vJd4msoKb/TCpGNFyyLt0zABdcvgK3aYikZ8HjzB14c26bc7E3Q1yugpwGy2aTPNA== ··· 674 704 dependencies: 675 705 "@babel/helper-plugin-utils" "^7.10.4" 676 706 677 - "@babel/plugin-transform-block-scoping@^7.10.4": 707 + "@babel/plugin-transform-block-scoping@^7.10.4", "@babel/plugin-transform-block-scoping@^7.8.3": 678 708 version "7.11.1" 679 709 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.11.1.tgz#5b7efe98852bef8d652c0b28144cd93a9e4b5215" 680 710 integrity sha512-00dYeDE0EVEHuuM+26+0w/SCL0BH2Qy7LwHuI4Hi4MH5gkC8/AqMN5uWFJIsoXZrAphiMm1iXzBw6L2T+eA0ew== 681 711 dependencies: 682 712 "@babel/helper-plugin-utils" "^7.10.4" 683 713 684 - "@babel/plugin-transform-classes@^7.10.4": 714 + "@babel/plugin-transform-classes@^7.10.4", "@babel/plugin-transform-classes@^7.9.5": 685 715 version "7.10.4" 686 716 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.10.4.tgz#405136af2b3e218bc4a1926228bc917ab1a0adc7" 687 717 integrity sha512-2oZ9qLjt161dn1ZE0Ms66xBncQH4In8Sqw1YWgBUZuGVJJS5c0OFZXL6dP2MRHrkU/eKhWg8CzFJhRQl50rQxA== ··· 702 732 dependencies: 703 733 "@babel/helper-plugin-utils" "^7.10.4" 704 734 705 - "@babel/plugin-transform-destructuring@^7.10.4", "@babel/plugin-transform-destructuring@^7.5.0": 735 + "@babel/plugin-transform-destructuring@^7.10.4", "@babel/plugin-transform-destructuring@^7.5.0", "@babel/plugin-transform-destructuring@^7.9.5": 706 736 version "7.10.4" 707 737 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.10.4.tgz#70ddd2b3d1bea83d01509e9bb25ddb3a74fc85e5" 708 738 integrity sha512-+WmfvyfsyF603iPa6825mq6Qrb7uLjTOsa3XOFzlYcYDHSS4QmpOWOL0NNBY5qMbvrcf3tq0Cw+v4lxswOBpgA== ··· 732 762 "@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.4" 733 763 "@babel/helper-plugin-utils" "^7.10.4" 734 764 735 - "@babel/plugin-transform-for-of@^7.10.4": 765 + "@babel/plugin-transform-flow-strip-types@^7.10.4": 766 + version "7.10.4" 767 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.10.4.tgz#c497957f09e86e3df7296271e9eb642876bf7788" 768 + integrity sha512-XTadyuqNst88UWBTdLjM+wEY7BFnY2sYtPyAidfC7M/QaZnSuIZpMvLxqGT7phAcnGyWh/XQFLKcGf04CnvxSQ== 769 + dependencies: 770 + "@babel/helper-plugin-utils" "^7.10.4" 771 + "@babel/plugin-syntax-flow" "^7.10.4" 772 + 773 + "@babel/plugin-transform-for-of@^7.10.4", "@babel/plugin-transform-for-of@^7.9.0": 736 774 version "7.10.4" 737 775 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.10.4.tgz#c08892e8819d3a5db29031b115af511dbbfebae9" 738 776 integrity sha512-ItdQfAzu9AlEqmusA/65TqJ79eRcgGmpPPFvBnGILXZH975G0LNjP1yjHvGgfuCxqrPPueXOPe+FsvxmxKiHHQ== ··· 827 865 "@babel/helper-plugin-utils" "^7.10.4" 828 866 "@babel/helper-replace-supers" "^7.10.4" 829 867 830 - "@babel/plugin-transform-parameters@^7.10.4": 868 + "@babel/plugin-transform-parameters@^7.10.4", "@babel/plugin-transform-parameters@^7.9.5": 831 869 version "7.10.5" 832 870 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.5.tgz#59d339d58d0b1950435f4043e74e2510005e2c4a" 833 871 integrity sha512-xPHwUj5RdFV8l1wuYiu5S9fqWGM2DrYc24TMvUiRrPVm+SM3XeqU9BcokQX/kEUe+p2RBwy+yoiR1w/Blq6ubw== ··· 842 880 dependencies: 843 881 "@babel/helper-plugin-utils" "^7.10.4" 844 882 883 + "@babel/plugin-transform-react-constant-elements@^7.9.0": 884 + version "7.10.4" 885 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.10.4.tgz#0f485260bf1c29012bb973e7e404749eaac12c9e" 886 + integrity sha512-cYmQBW1pXrqBte1raMkAulXmi7rjg3VI6ZLg9QIic8Hq7BtYXaWuZSxsr2siOMI6SWwpxjWfnwhTUrd7JlAV7g== 887 + dependencies: 888 + "@babel/helper-plugin-utils" "^7.10.4" 889 + 845 890 "@babel/plugin-transform-react-display-name@^7.10.4": 846 891 version "7.10.4" 847 892 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.10.4.tgz#b5795f4e3e3140419c3611b7a2a3832b9aef328d" ··· 874 919 "@babel/helper-plugin-utils" "^7.10.4" 875 920 "@babel/plugin-syntax-jsx" "^7.10.4" 876 921 877 - "@babel/plugin-transform-react-jsx@^7.10.4": 922 + "@babel/plugin-transform-react-jsx@^7.10.4", "@babel/plugin-transform-react-jsx@^7.3.0": 878 923 version "7.10.4" 879 924 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.10.4.tgz#673c9f913948764a4421683b2bef2936968fddf2" 880 925 integrity sha512-L+MfRhWjX0eI7Js093MM6MacKU4M6dnCRa/QPDwYMxjljzSCzzlzKzj9Pk4P3OtrPcxr2N3znR419nr3Xw+65A== ··· 916 961 resolve "^1.8.1" 917 962 semver "^5.5.1" 918 963 919 - "@babel/plugin-transform-shorthand-properties@^7.10.4": 964 + "@babel/plugin-transform-shorthand-properties@^7.10.4", "@babel/plugin-transform-shorthand-properties@^7.8.3": 920 965 version "7.10.4" 921 966 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.10.4.tgz#9fd25ec5cdd555bb7f473e5e6ee1c971eede4dd6" 922 967 integrity sha512-AC2K/t7o07KeTIxMoHneyX90v3zkm5cjHJEokrPEAGEy3UCp8sLKfnfOIGdZ194fyN4wfX/zZUWT9trJZ0qc+Q== 923 968 dependencies: 924 969 "@babel/helper-plugin-utils" "^7.10.4" 925 970 926 - "@babel/plugin-transform-spread@^7.11.0": 971 + "@babel/plugin-transform-spread@^7.11.0", "@babel/plugin-transform-spread@^7.8.3": 927 972 version "7.11.0" 928 973 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.11.0.tgz#fa84d300f5e4f57752fe41a6d1b3c554f13f17cc" 929 974 integrity sha512-UwQYGOqIdQJe4aWNyS7noqAnN2VbaczPLiEtln+zPowRNlD+79w3oi2TWfYe0eZgd+gjZCbsydN7lzWysDt+gw== ··· 939 984 "@babel/helper-plugin-utils" "^7.10.4" 940 985 "@babel/helper-regex" "^7.10.4" 941 986 942 - "@babel/plugin-transform-template-literals@^7.10.4": 987 + "@babel/plugin-transform-template-literals@^7.10.4", "@babel/plugin-transform-template-literals@^7.8.3": 943 988 version "7.10.5" 944 989 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.5.tgz#78bc5d626a6642db3312d9d0f001f5e7639fde8c" 945 990 integrity sha512-V/lnPGIb+KT12OQikDvgSuesRX14ck5FfJXt6+tXhdkJ+Vsd0lDCVtF6jcB4rNClYFzaB2jusZ+lNISDk2mMMw== ··· 978 1023 "@babel/helper-create-regexp-features-plugin" "^7.10.4" 979 1024 "@babel/helper-plugin-utils" "^7.10.4" 980 1025 981 - "@babel/preset-env@7.11.5", "@babel/preset-env@^7.5.5": 1026 + "@babel/preset-env@7.11.5", "@babel/preset-env@^7.5.5", "@babel/preset-env@^7.9.5", "@babel/preset-env@^7.9.6": 982 1027 version "7.11.5" 983 1028 resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.11.5.tgz#18cb4b9379e3e92ffea92c07471a99a2914e4272" 984 1029 integrity sha512-kXqmW1jVcnB2cdueV+fyBM8estd5mlNfaQi6lwLgRwCby4edpavgbFhiBNjmWA3JpB/yZGSISa7Srf+TwxDQoA== ··· 1052 1097 levenary "^1.1.1" 1053 1098 semver "^5.5.0" 1054 1099 1100 + "@babel/preset-flow@^7.0.0": 1101 + version "7.10.4" 1102 + resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.10.4.tgz#e0d9c72f8cb02d1633f6a5b7b16763aa2edf659f" 1103 + integrity sha512-XI6l1CptQCOBv+ZKYwynyswhtOKwpZZp5n0LG1QKCo8erRhqjoQV6nvx61Eg30JHpysWQSBwA2AWRU3pBbSY5g== 1104 + dependencies: 1105 + "@babel/helper-plugin-utils" "^7.10.4" 1106 + "@babel/plugin-transform-flow-strip-types" "^7.10.4" 1107 + 1055 1108 "@babel/preset-modules@0.1.4", "@babel/preset-modules@^0.1.3": 1056 1109 version "0.1.4" 1057 1110 resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.4.tgz#362f2b68c662842970fdb5e254ffc8fc1c2e415e" ··· 1063 1116 "@babel/types" "^7.4.4" 1064 1117 esutils "^2.0.2" 1065 1118 1066 - "@babel/preset-react@7.10.4", "@babel/preset-react@^7.0.0": 1119 + "@babel/preset-react@7.10.4", "@babel/preset-react@^7.0.0", "@babel/preset-react@^7.8.3", "@babel/preset-react@^7.9.4": 1067 1120 version "7.10.4" 1068 1121 resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.10.4.tgz#92e8a66d816f9911d11d4cc935be67adfc82dbcf" 1069 1122 integrity sha512-BrHp4TgOIy4M19JAfO1LhycVXOPWdDbTRep7eVyatf174Hff+6Uk53sDyajqZPu8W1qXRBiYOfIamek6jA7YVw== ··· 1081 1134 resolved "https://registry.yarnpkg.com/@babel/preset-stage-0/-/preset-stage-0-7.8.3.tgz#b6a0eca1a3b72e07f9caf58f998e97568028f6f5" 1082 1135 integrity sha512-+l6FlG1j73t4wh78W41StbcCz0/9a1/y+vxfnjtHl060kSmcgMfGzK9MEkLvrCOXfhp9RCX+d88sm6rOqxEIEQ== 1083 1136 1084 - "@babel/preset-typescript@7.10.4": 1137 + "@babel/preset-typescript@7.10.4", "@babel/preset-typescript@^7.9.0": 1085 1138 version "7.10.4" 1086 1139 resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.10.4.tgz#7d5d052e52a682480d6e2cc5aa31be61c8c25e36" 1087 1140 integrity sha512-SdYnvGPv+bLlwkF2VkJnaX/ni1sMNetcGI1+nThF1gyv6Ph8Qucc4ZZAjM5yZcE/AKRXIOTZz7eSRDWOEjPyRQ== ··· 1089 1142 "@babel/helper-plugin-utils" "^7.10.4" 1090 1143 "@babel/plugin-transform-typescript" "^7.10.4" 1091 1144 1092 - "@babel/register@^7.5.5": 1145 + "@babel/register@^7.10.5", "@babel/register@^7.5.5": 1093 1146 version "7.11.5" 1094 1147 resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.11.5.tgz#79becf89e0ddd0fba8b92bc279bc0f5d2d7ce2ea" 1095 1148 integrity sha512-CAml0ioKX+kOAvBQDHa/+t1fgOt3qkTIz0TrRtRAT6XY0m5qYZXR85k6/sLCNPMGhYDlCFHCYuU0ybTJbvlC6w== ··· 1108 1161 core-js-pure "^3.0.0" 1109 1162 regenerator-runtime "^0.13.4" 1110 1163 1111 - "@babel/runtime@7.11.2", "@babel/runtime@^7.1.2", "@babel/runtime@^7.10.2", "@babel/runtime@^7.10.3", "@babel/runtime@^7.10.4", "@babel/runtime@^7.11.2", "@babel/runtime@^7.4.4", "@babel/runtime@^7.5.4", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4": 1164 + "@babel/runtime@7.11.2", "@babel/runtime@^7.1.2", "@babel/runtime@^7.10.2", "@babel/runtime@^7.10.3", "@babel/runtime@^7.10.4", "@babel/runtime@^7.11.2", "@babel/runtime@^7.3.1", "@babel/runtime@^7.4.4", "@babel/runtime@^7.5.0", "@babel/runtime@^7.5.4", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.7.6", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2": 1112 1165 version "7.11.2" 1113 1166 resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.11.2.tgz#f549c13c754cc40b87644b9fa9f09a6a95fe0736" 1114 1167 integrity sha512-TeWkU52so0mPtDcaCTxNBI/IHiz0pZgr8VEFqXFtZWpYD08ZB6FaSwVAS8MKRQAP3bYKiVjwysOJgMFY28o6Tw== ··· 1139 1192 globals "^11.1.0" 1140 1193 lodash "^4.17.19" 1141 1194 1142 - "@babel/types@7.11.5", "@babel/types@^7.0.0", "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.11.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.4": 1195 + "@babel/types@7.11.5", "@babel/types@^7.0.0", "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.11.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.4", "@babel/types@^7.9.5": 1143 1196 version "7.11.5" 1144 1197 resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.11.5.tgz#d9de577d01252d77c6800cee039ee64faf75662d" 1145 1198 integrity sha512-bvM7Qz6eKnJVFIn+1LPtjlBFPVN5jNDc1XmN15vWe7Q3DPBufWWsLiIvUu7xW87uTG6QoggpIDnUgLQvPheU+Q== ··· 1360 1413 exec-sh "^0.3.2" 1361 1414 minimist "^1.2.0" 1362 1415 1363 - "@emotion/is-prop-valid@^0.8.8": 1416 + "@emotion/cache@^10.0.27": 1417 + version "10.0.29" 1418 + resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-10.0.29.tgz#87e7e64f412c060102d589fe7c6dc042e6f9d1e0" 1419 + integrity sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ== 1420 + dependencies: 1421 + "@emotion/sheet" "0.9.4" 1422 + "@emotion/stylis" "0.8.5" 1423 + "@emotion/utils" "0.11.3" 1424 + "@emotion/weak-memoize" "0.2.5" 1425 + 1426 + "@emotion/core@^10.0.20": 1427 + version "10.0.35" 1428 + resolved "https://registry.yarnpkg.com/@emotion/core/-/core-10.0.35.tgz#513fcf2e22cd4dfe9d3894ed138c9d7a859af9b3" 1429 + integrity sha512-sH++vJCdk025fBlRZSAhkRlSUoqSqgCzYf5fMOmqqi3bM6how+sQpg3hkgJonj8GxXM4WbD7dRO+4tegDB9fUw== 1430 + dependencies: 1431 + "@babel/runtime" "^7.5.5" 1432 + "@emotion/cache" "^10.0.27" 1433 + "@emotion/css" "^10.0.27" 1434 + "@emotion/serialize" "^0.11.15" 1435 + "@emotion/sheet" "0.9.4" 1436 + "@emotion/utils" "0.11.3" 1437 + 1438 + "@emotion/css@^10.0.27": 1439 + version "10.0.27" 1440 + resolved "https://registry.yarnpkg.com/@emotion/css/-/css-10.0.27.tgz#3a7458198fbbebb53b01b2b87f64e5e21241e14c" 1441 + integrity sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw== 1442 + dependencies: 1443 + "@emotion/serialize" "^0.11.15" 1444 + "@emotion/utils" "0.11.3" 1445 + babel-plugin-emotion "^10.0.27" 1446 + 1447 + "@emotion/hash@0.8.0": 1448 + version "0.8.0" 1449 + resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.8.0.tgz#bbbff68978fefdbe68ccb533bc8cbe1d1afb5413" 1450 + integrity sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow== 1451 + 1452 + "@emotion/is-prop-valid@0.8.8", "@emotion/is-prop-valid@^0.8.6", "@emotion/is-prop-valid@^0.8.8": 1364 1453 version "0.8.8" 1365 1454 resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz#db28b1c4368a259b60a97311d6a952d4fd01ac1a" 1366 1455 integrity sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA== ··· 1372 1461 resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.4.tgz#19bf0f5af19149111c40d98bb0cf82119f5d9eeb" 1373 1462 integrity sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw== 1374 1463 1375 - "@emotion/stylis@^0.8.4": 1464 + "@emotion/serialize@^0.11.15", "@emotion/serialize@^0.11.16": 1465 + version "0.11.16" 1466 + resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-0.11.16.tgz#dee05f9e96ad2fb25a5206b6d759b2d1ed3379ad" 1467 + integrity sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg== 1468 + dependencies: 1469 + "@emotion/hash" "0.8.0" 1470 + "@emotion/memoize" "0.7.4" 1471 + "@emotion/unitless" "0.7.5" 1472 + "@emotion/utils" "0.11.3" 1473 + csstype "^2.5.7" 1474 + 1475 + "@emotion/sheet@0.9.4": 1476 + version "0.9.4" 1477 + resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-0.9.4.tgz#894374bea39ec30f489bbfc3438192b9774d32e5" 1478 + integrity sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA== 1479 + 1480 + "@emotion/styled-base@^10.0.27": 1481 + version "10.0.31" 1482 + resolved "https://registry.yarnpkg.com/@emotion/styled-base/-/styled-base-10.0.31.tgz#940957ee0aa15c6974adc7d494ff19765a2f742a" 1483 + integrity sha512-wTOE1NcXmqMWlyrtwdkqg87Mu6Rj1MaukEoEmEkHirO5IoHDJ8LgCQL4MjJODgxWxXibGR3opGp1p7YvkNEdXQ== 1484 + dependencies: 1485 + "@babel/runtime" "^7.5.5" 1486 + "@emotion/is-prop-valid" "0.8.8" 1487 + "@emotion/serialize" "^0.11.15" 1488 + "@emotion/utils" "0.11.3" 1489 + 1490 + "@emotion/styled@^10.0.17": 1491 + version "10.0.27" 1492 + resolved "https://registry.yarnpkg.com/@emotion/styled/-/styled-10.0.27.tgz#12cb67e91f7ad7431e1875b1d83a94b814133eaf" 1493 + integrity sha512-iK/8Sh7+NLJzyp9a5+vIQIXTYxfT4yB/OJbjzQanB2RZpvmzBQOHZWhpAMZWYEKRNNbsD6WfBw5sVWkb6WzS/Q== 1494 + dependencies: 1495 + "@emotion/styled-base" "^10.0.27" 1496 + babel-plugin-emotion "^10.0.27" 1497 + 1498 + "@emotion/stylis@0.8.5", "@emotion/stylis@^0.8.4": 1376 1499 version "0.8.5" 1377 1500 resolved "https://registry.yarnpkg.com/@emotion/stylis/-/stylis-0.8.5.tgz#deacb389bd6ee77d1e7fcaccce9e16c5c7e78e04" 1378 1501 integrity sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ== 1379 1502 1380 - "@emotion/unitless@^0.7.4": 1503 + "@emotion/unitless@0.7.5", "@emotion/unitless@^0.7.4": 1381 1504 version "0.7.5" 1382 1505 resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed" 1383 1506 integrity sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg== 1384 1507 1508 + "@emotion/utils@0.11.3": 1509 + version "0.11.3" 1510 + resolved "https://registry.yarnpkg.com/@emotion/utils/-/utils-0.11.3.tgz#a759863867befa7e583400d322652a3f44820924" 1511 + integrity sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw== 1512 + 1513 + "@emotion/weak-memoize@0.2.5": 1514 + version "0.2.5" 1515 + resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz#8eed982e2ee6f7f4e44c253e12962980791efd46" 1516 + integrity sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA== 1517 + 1385 1518 "@eslint/eslintrc@^0.1.3": 1386 1519 version "0.1.3" 1387 1520 resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.1.3.tgz#7d1a2b2358552cc04834c0979bd4275362e37085" ··· 1397 1530 lodash "^4.17.19" 1398 1531 minimatch "^3.0.4" 1399 1532 strip-json-comments "^3.1.1" 1533 + 1534 + "@icons/material@^0.2.4": 1535 + version "0.2.4" 1536 + resolved "https://registry.yarnpkg.com/@icons/material/-/material-0.2.4.tgz#e90c9f71768b3736e76d7dd6783fc6c2afa88bc8" 1537 + integrity sha512-QPcGmICAPbGLGb6F/yNf/KzKqvFx8z5qx3D1yFqVAjoFmXK35EgyW+cJ57Te3CNsmzblwtzakLGFqHPqrfb4Tw== 1400 1538 1401 1539 "@istanbuljs/load-nyc-config@^1.0.0": 1402 1540 version "1.1.0" ··· 1665 1803 resolved "https://registry.yarnpkg.com/@mdx-js/util/-/util-1.6.16.tgz#07a7342f6b61ea1ecbfb31e6e23bf7a8c79b9b57" 1666 1804 integrity sha512-SFtLGIGZummuyMDPRL5KdmpgI8U19Ble28UjEWihPjGxF1Lgj8aDjLWY8KiaUy9eqb9CKiVCqEIrK9jbnANfkw== 1667 1805 1806 + "@mrmlnc/readdir-enhanced@^2.2.1": 1807 + version "2.2.1" 1808 + resolved "https://registry.yarnpkg.com/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde" 1809 + integrity sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g== 1810 + dependencies: 1811 + call-me-maybe "^1.0.1" 1812 + glob-to-regexp "^0.3.0" 1813 + 1668 1814 "@next/react-dev-overlay@9.5.3": 1669 1815 version "9.5.3" 1670 1816 resolved "https://registry.yarnpkg.com/@next/react-dev-overlay/-/react-dev-overlay-9.5.3.tgz#3275301f08045ecc709e3273031973a1f5e81427" ··· 1699 1845 resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz#34dc5f4cabbc720f4e60f75a747e7ecd6c175bd3" 1700 1846 integrity sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA== 1701 1847 1848 + "@nodelib/fs.stat@^1.1.2": 1849 + version "1.1.3" 1850 + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz#2b5a3ab3f918cca48a8c754c08168e3f03eba61b" 1851 + integrity sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw== 1852 + 1702 1853 "@nodelib/fs.walk@^1.2.3": 1703 1854 version "1.2.4" 1704 1855 resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz#011b9202a70a6366e436ca5c065844528ab04976" ··· 1707 1858 "@nodelib/fs.scandir" "2.1.3" 1708 1859 fastq "^1.6.0" 1709 1860 1710 - "@reach/router@^1.3.1": 1861 + "@npmcli/move-file@^1.0.1": 1862 + version "1.0.1" 1863 + resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-1.0.1.tgz#de103070dac0f48ce49cf6693c23af59c0f70464" 1864 + integrity sha512-Uv6h1sT+0DrblvIrolFtbvM1FgWm+/sy4B3pvLp67Zys+thcukzS5ekn7HsZFGpWP4Q3fYJCljbWQE/XivMRLw== 1865 + dependencies: 1866 + mkdirp "^1.0.4" 1867 + 1868 + "@reach/router@^1.3.1", "@reach/router@^1.3.3": 1711 1869 version "1.3.4" 1712 1870 resolved "https://registry.yarnpkg.com/@reach/router/-/router-1.3.4.tgz#d2574b19370a70c80480ed91f3da840136d10f8c" 1713 1871 integrity sha512-+mtn9wjlB9NN2CNnnC/BRYtwdKBfSyyasPYraNAyvaV1occr/5NnB4CVzjEZipNHwYebQwcndGUmpFzxAUoqSA== ··· 1800 1958 dependencies: 1801 1959 "@sinonjs/commons" "^1.7.0" 1802 1960 1961 + "@storybook/addons@6.0.21", "@storybook/addons@>=6.0.0": 1962 + version "6.0.21" 1963 + resolved "https://registry.yarnpkg.com/@storybook/addons/-/addons-6.0.21.tgz#bd5229652102c3aed59b78ef6920ff6b482b4d78" 1964 + integrity sha512-yDttNLc3vXqBxwK795ykgzTC6MpvuXDQuF4LHSlHZQe6wsMu1m3fljnbYdafJWdx6cNZwUblU3KYcR11PqhkPg== 1965 + dependencies: 1966 + "@storybook/api" "6.0.21" 1967 + "@storybook/channels" "6.0.21" 1968 + "@storybook/client-logger" "6.0.21" 1969 + "@storybook/core-events" "6.0.21" 1970 + "@storybook/router" "6.0.21" 1971 + "@storybook/theming" "6.0.21" 1972 + core-js "^3.0.1" 1973 + global "^4.3.2" 1974 + regenerator-runtime "^0.13.3" 1975 + 1976 + "@storybook/api@6.0.21": 1977 + version "6.0.21" 1978 + resolved "https://registry.yarnpkg.com/@storybook/api/-/api-6.0.21.tgz#a25a1eb4d07dc43500e03c856db43baba46726f1" 1979 + integrity sha512-cRRGf/KGFwYiDouTouEcDdp45N1AbYnAfvLqYZ3KuUTGZ+CiU/PN/vavkp07DQeM4FIQO8TLhzHdsLFpLT7Lkw== 1980 + dependencies: 1981 + "@reach/router" "^1.3.3" 1982 + "@storybook/channels" "6.0.21" 1983 + "@storybook/client-logger" "6.0.21" 1984 + "@storybook/core-events" "6.0.21" 1985 + "@storybook/csf" "0.0.1" 1986 + "@storybook/router" "6.0.21" 1987 + "@storybook/semver" "^7.3.2" 1988 + "@storybook/theming" "6.0.21" 1989 + "@types/reach__router" "^1.3.5" 1990 + core-js "^3.0.1" 1991 + fast-deep-equal "^3.1.1" 1992 + global "^4.3.2" 1993 + lodash "^4.17.15" 1994 + memoizerific "^1.11.3" 1995 + react "^16.8.3" 1996 + regenerator-runtime "^0.13.3" 1997 + store2 "^2.7.1" 1998 + telejson "^5.0.2" 1999 + ts-dedent "^1.1.1" 2000 + util-deprecate "^1.0.2" 2001 + 2002 + "@storybook/channel-postmessage@6.0.21": 2003 + version "6.0.21" 2004 + resolved "https://registry.yarnpkg.com/@storybook/channel-postmessage/-/channel-postmessage-6.0.21.tgz#97e8f43c1b66f84c7b8271e447d45d4f66d355d1" 2005 + integrity sha512-ArRnoaS+b7qpAku/SO27z/yjRDCXb37mCPYGX0ntPbiQajootUbGO7otfnjFkaP44hCEC9uDYlOfMU1hYU1N6A== 2006 + dependencies: 2007 + "@storybook/channels" "6.0.21" 2008 + "@storybook/client-logger" "6.0.21" 2009 + "@storybook/core-events" "6.0.21" 2010 + core-js "^3.0.1" 2011 + global "^4.3.2" 2012 + qs "^6.6.0" 2013 + telejson "^5.0.2" 2014 + 2015 + "@storybook/channels@6.0.21": 2016 + version "6.0.21" 2017 + resolved "https://registry.yarnpkg.com/@storybook/channels/-/channels-6.0.21.tgz#bc0951efacbaa5f8827693fba4fe7c2290b5772c" 2018 + integrity sha512-G6gjcEotSwDmOlxSmOMgsO3VhQ42RLJK7kFp6D5eg0Q6S8vsypltdT8orxdu+6+AbcBrL+5Sla8lThzaCvXsVQ== 2019 + dependencies: 2020 + core-js "^3.0.1" 2021 + ts-dedent "^1.1.1" 2022 + util-deprecate "^1.0.2" 2023 + 2024 + "@storybook/client-api@6.0.21": 2025 + version "6.0.21" 2026 + resolved "https://registry.yarnpkg.com/@storybook/client-api/-/client-api-6.0.21.tgz#6a652dea67d219a31d18af0e05b9f17ba6c7c316" 2027 + integrity sha512-emBXd/ml6pc3G8gP3MsR9zQsAq1zZbqof9MxB51tG/jpTXdqWQ8ce1pt1tJS8Xj0QDM072jR6wsY+mmro0GZnA== 2028 + dependencies: 2029 + "@storybook/addons" "6.0.21" 2030 + "@storybook/channel-postmessage" "6.0.21" 2031 + "@storybook/channels" "6.0.21" 2032 + "@storybook/client-logger" "6.0.21" 2033 + "@storybook/core-events" "6.0.21" 2034 + "@storybook/csf" "0.0.1" 2035 + "@types/qs" "^6.9.0" 2036 + "@types/webpack-env" "^1.15.2" 2037 + core-js "^3.0.1" 2038 + global "^4.3.2" 2039 + lodash "^4.17.15" 2040 + memoizerific "^1.11.3" 2041 + qs "^6.6.0" 2042 + stable "^0.1.8" 2043 + store2 "^2.7.1" 2044 + ts-dedent "^1.1.1" 2045 + util-deprecate "^1.0.2" 2046 + 2047 + "@storybook/client-logger@6.0.21": 2048 + version "6.0.21" 2049 + resolved "https://registry.yarnpkg.com/@storybook/client-logger/-/client-logger-6.0.21.tgz#20369addf9eb79fc0c85a2e0dcb48f5a1a544532" 2050 + integrity sha512-8aUEbhjXV+UMYQWukVYnp+kZafF+LD4Dm7eMo37IUZvt3VIjV1VvhxIDVJtqjk2vv0KZTepESFBkZQLmBzI9Zg== 2051 + dependencies: 2052 + core-js "^3.0.1" 2053 + global "^4.3.2" 2054 + 2055 + "@storybook/components@6.0.21": 2056 + version "6.0.21" 2057 + resolved "https://registry.yarnpkg.com/@storybook/components/-/components-6.0.21.tgz#2f355370f993e0b7b9062094a03dffc2cdda91db" 2058 + integrity sha512-r6btqFW/rcXIU5v231EifZfdh9O0fy7bJDXwwDf8zVUgLx8JRc0VnSs3nvK3Is9HF1wZ9vjx/7Lh4rTIDZAjgg== 2059 + dependencies: 2060 + "@storybook/client-logger" "6.0.21" 2061 + "@storybook/csf" "0.0.1" 2062 + "@storybook/theming" "6.0.21" 2063 + "@types/overlayscrollbars" "^1.9.0" 2064 + "@types/react-color" "^3.0.1" 2065 + "@types/react-syntax-highlighter" "11.0.4" 2066 + core-js "^3.0.1" 2067 + fast-deep-equal "^3.1.1" 2068 + global "^4.3.2" 2069 + lodash "^4.17.15" 2070 + markdown-to-jsx "^6.11.4" 2071 + memoizerific "^1.11.3" 2072 + overlayscrollbars "^1.10.2" 2073 + polished "^3.4.4" 2074 + popper.js "^1.14.7" 2075 + react "^16.8.3" 2076 + react-color "^2.17.0" 2077 + react-dom "^16.8.3" 2078 + react-popper-tooltip "^2.11.0" 2079 + react-syntax-highlighter "^12.2.1" 2080 + react-textarea-autosize "^8.1.1" 2081 + ts-dedent "^1.1.1" 2082 + 2083 + "@storybook/core-events@6.0.21": 2084 + version "6.0.21" 2085 + resolved "https://registry.yarnpkg.com/@storybook/core-events/-/core-events-6.0.21.tgz#2ce51e6d7524e7543dbb29571beac1dbeb4e5f40" 2086 + integrity sha512-p84fbPcsAhnqDhp+HJ4P8+vI2BqJus4IRoVAemLAwuPjyPElrV9UvOa/RHy1BN8Z6jXwFA+FFzfGl2kPJ3WYcA== 2087 + dependencies: 2088 + core-js "^3.0.1" 2089 + 2090 + "@storybook/core@6.0.21": 2091 + version "6.0.21" 2092 + resolved "https://registry.yarnpkg.com/@storybook/core/-/core-6.0.21.tgz#105c2b90ab27e7b478cb1b7d10e9fe5aba5e0708" 2093 + integrity sha512-/Et5NLabB12dnuPdhHDA/Q1pj0Mm2DGdL3KiLO4IC2VZeICCLGmU3/EGJBgjLK+anQ59pkclOiQ8i9eMXFiJ6A== 2094 + dependencies: 2095 + "@babel/plugin-proposal-class-properties" "^7.8.3" 2096 + "@babel/plugin-proposal-decorators" "^7.8.3" 2097 + "@babel/plugin-proposal-export-default-from" "^7.8.3" 2098 + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.10.1" 2099 + "@babel/plugin-proposal-object-rest-spread" "^7.9.6" 2100 + "@babel/plugin-proposal-optional-chaining" "^7.10.1" 2101 + "@babel/plugin-proposal-private-methods" "^7.8.3" 2102 + "@babel/plugin-syntax-dynamic-import" "^7.8.3" 2103 + "@babel/plugin-transform-arrow-functions" "^7.8.3" 2104 + "@babel/plugin-transform-block-scoping" "^7.8.3" 2105 + "@babel/plugin-transform-classes" "^7.9.5" 2106 + "@babel/plugin-transform-destructuring" "^7.9.5" 2107 + "@babel/plugin-transform-for-of" "^7.9.0" 2108 + "@babel/plugin-transform-parameters" "^7.9.5" 2109 + "@babel/plugin-transform-shorthand-properties" "^7.8.3" 2110 + "@babel/plugin-transform-spread" "^7.8.3" 2111 + "@babel/plugin-transform-template-literals" "^7.8.3" 2112 + "@babel/preset-env" "^7.9.6" 2113 + "@babel/preset-react" "^7.8.3" 2114 + "@babel/preset-typescript" "^7.9.0" 2115 + "@babel/register" "^7.10.5" 2116 + "@storybook/addons" "6.0.21" 2117 + "@storybook/api" "6.0.21" 2118 + "@storybook/channel-postmessage" "6.0.21" 2119 + "@storybook/channels" "6.0.21" 2120 + "@storybook/client-api" "6.0.21" 2121 + "@storybook/client-logger" "6.0.21" 2122 + "@storybook/components" "6.0.21" 2123 + "@storybook/core-events" "6.0.21" 2124 + "@storybook/csf" "0.0.1" 2125 + "@storybook/node-logger" "6.0.21" 2126 + "@storybook/router" "6.0.21" 2127 + "@storybook/semver" "^7.3.2" 2128 + "@storybook/theming" "6.0.21" 2129 + "@storybook/ui" "6.0.21" 2130 + "@types/glob-base" "^0.3.0" 2131 + "@types/micromatch" "^4.0.1" 2132 + "@types/node-fetch" "^2.5.4" 2133 + airbnb-js-shims "^2.2.1" 2134 + ansi-to-html "^0.6.11" 2135 + autoprefixer "^9.7.2" 2136 + babel-loader "^8.0.6" 2137 + babel-plugin-emotion "^10.0.20" 2138 + babel-plugin-macros "^2.8.0" 2139 + babel-preset-minify "^0.5.0 || 0.6.0-alpha.5" 2140 + better-opn "^2.0.0" 2141 + boxen "^4.1.0" 2142 + case-sensitive-paths-webpack-plugin "^2.2.0" 2143 + chalk "^4.0.0" 2144 + cli-table3 "0.6.0" 2145 + commander "^5.0.0" 2146 + core-js "^3.0.1" 2147 + css-loader "^3.5.3" 2148 + detect-port "^1.3.0" 2149 + dotenv-webpack "^1.7.0" 2150 + ejs "^3.1.2" 2151 + express "^4.17.0" 2152 + file-loader "^6.0.0" 2153 + file-system-cache "^1.0.5" 2154 + find-up "^4.1.0" 2155 + fork-ts-checker-webpack-plugin "^4.1.4" 2156 + fs-extra "^9.0.0" 2157 + glob "^7.1.6" 2158 + glob-base "^0.3.0" 2159 + glob-promise "^3.4.0" 2160 + global "^4.3.2" 2161 + html-webpack-plugin "^4.2.1" 2162 + inquirer "^7.0.0" 2163 + interpret "^2.0.0" 2164 + ip "^1.1.5" 2165 + json5 "^2.1.1" 2166 + lazy-universal-dotenv "^3.0.1" 2167 + micromatch "^4.0.2" 2168 + node-fetch "^2.6.0" 2169 + pkg-dir "^4.2.0" 2170 + pnp-webpack-plugin "1.6.4" 2171 + postcss-flexbugs-fixes "^4.1.0" 2172 + postcss-loader "^3.0.0" 2173 + pretty-hrtime "^1.0.3" 2174 + qs "^6.6.0" 2175 + raw-loader "^4.0.1" 2176 + react-dev-utils "^10.0.0" 2177 + regenerator-runtime "^0.13.3" 2178 + resolve-from "^5.0.0" 2179 + serve-favicon "^2.5.0" 2180 + shelljs "^0.8.3" 2181 + stable "^0.1.8" 2182 + style-loader "^1.2.1" 2183 + terser-webpack-plugin "^3.0.0" 2184 + ts-dedent "^1.1.1" 2185 + unfetch "^4.1.0" 2186 + url-loader "^4.0.0" 2187 + util-deprecate "^1.0.2" 2188 + webpack "^4.43.0" 2189 + webpack-dev-middleware "^3.7.0" 2190 + webpack-hot-middleware "^2.25.0" 2191 + webpack-virtual-modules "^0.2.2" 2192 + 2193 + "@storybook/csf@0.0.1": 2194 + version "0.0.1" 2195 + resolved "https://registry.yarnpkg.com/@storybook/csf/-/csf-0.0.1.tgz#95901507dc02f0bc6f9ac8ee1983e2fc5bb98ce6" 2196 + integrity sha512-USTLkZze5gkel8MYCujSRBVIrUQ3YPBrLOx7GNk/0wttvVtlzWXAq9eLbQ4p/NicGxP+3T7KPEMVV//g+yubpw== 2197 + dependencies: 2198 + lodash "^4.17.15" 2199 + 2200 + "@storybook/node-logger@6.0.21": 2201 + version "6.0.21" 2202 + resolved "https://registry.yarnpkg.com/@storybook/node-logger/-/node-logger-6.0.21.tgz#5b8ba589d5cca6a67c69ee8f5258755b7e1dbc08" 2203 + integrity sha512-KRBf+Fz7fgtwHdnYt70JTZbcYMZ1pQPtDyqbrFYCjwkbx5GPX5vMOozlxCIj9elseqPIsF8CKgHOW7cFHVyWYw== 2204 + dependencies: 2205 + "@types/npmlog" "^4.1.2" 2206 + chalk "^4.0.0" 2207 + core-js "^3.0.1" 2208 + npmlog "^4.1.2" 2209 + pretty-hrtime "^1.0.3" 2210 + 2211 + "@storybook/preact@>=6.0.0": 2212 + version "6.0.21" 2213 + resolved "https://registry.yarnpkg.com/@storybook/preact/-/preact-6.0.21.tgz#d8de22affbd4fb252321404905d3e1e293c2a187" 2214 + integrity sha512-ni+hj4A7i9ShhiiBnoGUQmpwYFl+WgOfLc3nsUDEIiGGj2SZCIYkrfuG96P4GTEfm5lci8teeTUzR8/bfB6Vwg== 2215 + dependencies: 2216 + "@babel/plugin-transform-react-jsx" "^7.3.0" 2217 + "@storybook/addons" "6.0.21" 2218 + "@storybook/core" "6.0.21" 2219 + "@types/webpack-env" "^1.15.2" 2220 + core-js "^3.0.1" 2221 + global "^4.3.2" 2222 + regenerator-runtime "^0.13.3" 2223 + ts-dedent "^1.1.1" 2224 + 2225 + "@storybook/react@>=6.0.0": 2226 + version "6.0.21" 2227 + resolved "https://registry.yarnpkg.com/@storybook/react/-/react-6.0.21.tgz#68f8a318e9940305b06eb894896624a35a9868b0" 2228 + integrity sha512-L3PcoBJq5aK1aTaJNfwsSJ8Kxgcyk0WknN4TDqhP7a+oXmuMY1YEi96hEvQVIm0TBCkQxs61K70/T7vlilEtHg== 2229 + dependencies: 2230 + "@babel/preset-flow" "^7.0.0" 2231 + "@babel/preset-react" "^7.0.0" 2232 + "@storybook/addons" "6.0.21" 2233 + "@storybook/core" "6.0.21" 2234 + "@storybook/node-logger" "6.0.21" 2235 + "@storybook/semver" "^7.3.2" 2236 + "@svgr/webpack" "^5.4.0" 2237 + "@types/webpack-env" "^1.15.2" 2238 + babel-plugin-add-react-displayname "^0.0.5" 2239 + babel-plugin-named-asset-import "^0.3.1" 2240 + babel-plugin-react-docgen "^4.1.0" 2241 + core-js "^3.0.1" 2242 + global "^4.3.2" 2243 + lodash "^4.17.15" 2244 + prop-types "^15.7.2" 2245 + react-dev-utils "^10.0.0" 2246 + react-docgen-typescript-plugin "^0.5.2" 2247 + regenerator-runtime "^0.13.3" 2248 + ts-dedent "^1.1.1" 2249 + webpack "^4.43.0" 2250 + 2251 + "@storybook/router@6.0.21": 2252 + version "6.0.21" 2253 + resolved "https://registry.yarnpkg.com/@storybook/router/-/router-6.0.21.tgz#0f22261d4782c72a5a13e80cfcd8d50aed1f98c6" 2254 + integrity sha512-46SsKJfcd12lRrISnfrWhicJx8EylkgGDGohfH0n5p7inkkGOkKV8QFZoYPRKZueMXmUKpzJ0Z3HmVsLTCrCDw== 2255 + dependencies: 2256 + "@reach/router" "^1.3.3" 2257 + "@types/reach__router" "^1.3.5" 2258 + core-js "^3.0.1" 2259 + global "^4.3.2" 2260 + memoizerific "^1.11.3" 2261 + qs "^6.6.0" 2262 + 2263 + "@storybook/semver@^7.3.2": 2264 + version "7.3.2" 2265 + resolved "https://registry.yarnpkg.com/@storybook/semver/-/semver-7.3.2.tgz#f3b9c44a1c9a0b933c04e66d0048fcf2fa10dac0" 2266 + integrity sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg== 2267 + dependencies: 2268 + core-js "^3.6.5" 2269 + find-up "^4.1.0" 2270 + 2271 + "@storybook/theming@6.0.21": 2272 + version "6.0.21" 2273 + resolved "https://registry.yarnpkg.com/@storybook/theming/-/theming-6.0.21.tgz#d56051c0b8679c2b701ce08385660ab4146cf15f" 2274 + integrity sha512-n97DfB9kG6WrV1xBGDyeQibTrh8pBBCp3dSL3UTGH+KX3C2+4sm6QHlTgyekbi5FrbFEbnuZOKAS3YbLVONsRQ== 2275 + dependencies: 2276 + "@emotion/core" "^10.0.20" 2277 + "@emotion/is-prop-valid" "^0.8.6" 2278 + "@emotion/styled" "^10.0.17" 2279 + "@storybook/client-logger" "6.0.21" 2280 + core-js "^3.0.1" 2281 + deep-object-diff "^1.1.0" 2282 + emotion-theming "^10.0.19" 2283 + global "^4.3.2" 2284 + memoizerific "^1.11.3" 2285 + polished "^3.4.4" 2286 + resolve-from "^5.0.0" 2287 + ts-dedent "^1.1.1" 2288 + 2289 + "@storybook/ui@6.0.21": 2290 + version "6.0.21" 2291 + resolved "https://registry.yarnpkg.com/@storybook/ui/-/ui-6.0.21.tgz#5dac2b68a30f5dba5457e0315f58977e07138968" 2292 + integrity sha512-50QYF8tHUgpVq7B7PWp7kmyf79NySWJO0piQFjHv027vV8GfbXMWVswAXwo3IfCihPlnLKe01WbsigM/9T1HCQ== 2293 + dependencies: 2294 + "@emotion/core" "^10.0.20" 2295 + "@storybook/addons" "6.0.21" 2296 + "@storybook/api" "6.0.21" 2297 + "@storybook/channels" "6.0.21" 2298 + "@storybook/client-logger" "6.0.21" 2299 + "@storybook/components" "6.0.21" 2300 + "@storybook/core-events" "6.0.21" 2301 + "@storybook/router" "6.0.21" 2302 + "@storybook/semver" "^7.3.2" 2303 + "@storybook/theming" "6.0.21" 2304 + "@types/markdown-to-jsx" "^6.11.0" 2305 + copy-to-clipboard "^3.0.8" 2306 + core-js "^3.0.1" 2307 + core-js-pure "^3.0.1" 2308 + emotion-theming "^10.0.19" 2309 + fuse.js "^3.6.1" 2310 + global "^4.3.2" 2311 + lodash "^4.17.15" 2312 + markdown-to-jsx "^6.11.4" 2313 + memoizerific "^1.11.3" 2314 + polished "^3.4.4" 2315 + qs "^6.6.0" 2316 + react "^16.8.3" 2317 + react-dom "^16.8.3" 2318 + react-draggable "^4.0.3" 2319 + react-helmet-async "^1.0.2" 2320 + react-hotkeys "2.0.0" 2321 + react-sizeme "^2.6.7" 2322 + regenerator-runtime "^0.13.3" 2323 + resolve-from "^5.0.0" 2324 + store2 "^2.7.1" 2325 + 2326 + "@svgr/babel-plugin-add-jsx-attribute@^5.4.0": 2327 + version "5.4.0" 2328 + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz#81ef61947bb268eb9d50523446f9c638fb355906" 2329 + integrity sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg== 2330 + 2331 + "@svgr/babel-plugin-remove-jsx-attribute@^5.4.0": 2332 + version "5.4.0" 2333 + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz#6b2c770c95c874654fd5e1d5ef475b78a0a962ef" 2334 + integrity sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg== 2335 + 2336 + "@svgr/babel-plugin-remove-jsx-empty-expression@^5.0.1": 2337 + version "5.0.1" 2338 + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz#25621a8915ed7ad70da6cea3d0a6dbc2ea933efd" 2339 + integrity sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA== 2340 + 2341 + "@svgr/babel-plugin-replace-jsx-attribute-value@^5.0.1": 2342 + version "5.0.1" 2343 + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz#0b221fc57f9fcd10e91fe219e2cd0dd03145a897" 2344 + integrity sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ== 2345 + 2346 + "@svgr/babel-plugin-svg-dynamic-title@^5.4.0": 2347 + version "5.4.0" 2348 + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz#139b546dd0c3186b6e5db4fefc26cb0baea729d7" 2349 + integrity sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg== 2350 + 2351 + "@svgr/babel-plugin-svg-em-dimensions@^5.4.0": 2352 + version "5.4.0" 2353 + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz#6543f69526632a133ce5cabab965deeaea2234a0" 2354 + integrity sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw== 2355 + 2356 + "@svgr/babel-plugin-transform-react-native-svg@^5.4.0": 2357 + version "5.4.0" 2358 + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz#00bf9a7a73f1cad3948cdab1f8dfb774750f8c80" 2359 + integrity sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q== 2360 + 2361 + "@svgr/babel-plugin-transform-svg-component@^5.4.0": 2362 + version "5.4.0" 2363 + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.4.0.tgz#a2212b4d018e6075a058bb7e220a66959ef7a03c" 2364 + integrity sha512-zLl4Fl3NvKxxjWNkqEcpdSOpQ3LGVH2BNFQ6vjaK6sFo2IrSznrhURIPI0HAphKiiIwNYjAfE0TNoQDSZv0U9A== 2365 + 2366 + "@svgr/babel-preset@^5.4.0": 2367 + version "5.4.0" 2368 + resolved "https://registry.yarnpkg.com/@svgr/babel-preset/-/babel-preset-5.4.0.tgz#da21854643e1c4ad2279239baa7d5a8b128c1f15" 2369 + integrity sha512-Gyx7cCxua04DBtyILTYdQxeO/pwfTBev6+eXTbVbxe4HTGhOUW6yo7PSbG2p6eJMl44j6XSequ0ZDP7bl0nu9A== 2370 + dependencies: 2371 + "@svgr/babel-plugin-add-jsx-attribute" "^5.4.0" 2372 + "@svgr/babel-plugin-remove-jsx-attribute" "^5.4.0" 2373 + "@svgr/babel-plugin-remove-jsx-empty-expression" "^5.0.1" 2374 + "@svgr/babel-plugin-replace-jsx-attribute-value" "^5.0.1" 2375 + "@svgr/babel-plugin-svg-dynamic-title" "^5.4.0" 2376 + "@svgr/babel-plugin-svg-em-dimensions" "^5.4.0" 2377 + "@svgr/babel-plugin-transform-react-native-svg" "^5.4.0" 2378 + "@svgr/babel-plugin-transform-svg-component" "^5.4.0" 2379 + 2380 + "@svgr/core@^5.4.0": 2381 + version "5.4.0" 2382 + resolved "https://registry.yarnpkg.com/@svgr/core/-/core-5.4.0.tgz#655378ee43679eb94fee3d4e1976e38252dff8e7" 2383 + integrity sha512-hWGm1DCCvd4IEn7VgDUHYiC597lUYhFau2lwJBYpQWDirYLkX4OsXu9IslPgJ9UpP7wsw3n2Ffv9sW7SXJVfqQ== 2384 + dependencies: 2385 + "@svgr/plugin-jsx" "^5.4.0" 2386 + camelcase "^6.0.0" 2387 + cosmiconfig "^6.0.0" 2388 + 2389 + "@svgr/hast-util-to-babel-ast@^5.4.0": 2390 + version "5.4.0" 2391 + resolved "https://registry.yarnpkg.com/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.4.0.tgz#bb5d002e428f510aa5b53ec0a02377a95b367715" 2392 + integrity sha512-+U0TZZpPsP2V1WvVhqAOSTk+N+CjYHdZx+x9UBa1eeeZDXwH8pt0CrQf2+SvRl/h2CAPRFkm+Ey96+jKP8Bsgg== 2393 + dependencies: 2394 + "@babel/types" "^7.9.5" 2395 + 2396 + "@svgr/plugin-jsx@^5.4.0": 2397 + version "5.4.0" 2398 + resolved "https://registry.yarnpkg.com/@svgr/plugin-jsx/-/plugin-jsx-5.4.0.tgz#ab47504c55615833c6db70fca2d7e489f509787c" 2399 + integrity sha512-SGzO4JZQ2HvGRKDzRga9YFSqOqaNrgLlQVaGvpZ2Iht2gwRp/tq+18Pvv9kS9ZqOMYgyix2LLxZMY1LOe9NPqw== 2400 + dependencies: 2401 + "@babel/core" "^7.7.5" 2402 + "@svgr/babel-preset" "^5.4.0" 2403 + "@svgr/hast-util-to-babel-ast" "^5.4.0" 2404 + svg-parser "^2.0.2" 2405 + 2406 + "@svgr/plugin-svgo@^5.4.0": 2407 + version "5.4.0" 2408 + resolved "https://registry.yarnpkg.com/@svgr/plugin-svgo/-/plugin-svgo-5.4.0.tgz#45d9800b7099a6f7b4d85ebac89ab9abe8592f64" 2409 + integrity sha512-3Cgv3aYi1l6SHyzArV9C36yo4kgwVdF3zPQUC6/aCDUeXAofDYwE5kk3e3oT5ZO2a0N3lB+lLGvipBG6lnG8EA== 2410 + dependencies: 2411 + cosmiconfig "^6.0.0" 2412 + merge-deep "^3.0.2" 2413 + svgo "^1.2.2" 2414 + 2415 + "@svgr/webpack@^5.4.0": 2416 + version "5.4.0" 2417 + resolved "https://registry.yarnpkg.com/@svgr/webpack/-/webpack-5.4.0.tgz#b68bc86e29cf007292b96ced65f80971175632e0" 2418 + integrity sha512-LjepnS/BSAvelnOnnzr6Gg0GcpLmnZ9ThGFK5WJtm1xOqdBE/1IACZU7MMdVzjyUkfFqGz87eRE4hFaSLiUwYg== 2419 + dependencies: 2420 + "@babel/core" "^7.9.0" 2421 + "@babel/plugin-transform-react-constant-elements" "^7.9.0" 2422 + "@babel/preset-env" "^7.9.5" 2423 + "@babel/preset-react" "^7.9.4" 2424 + "@svgr/core" "^5.4.0" 2425 + "@svgr/plugin-jsx" "^5.4.0" 2426 + "@svgr/plugin-svgo" "^5.4.0" 2427 + loader-utils "^2.0.0" 2428 + 1803 2429 "@testing-library/dom@^6.1.0": 1804 2430 version "6.16.0" 1805 2431 resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-6.16.0.tgz#04ada27ed74ad4c0f0d984a1245bb29b1fd90ba9" ··· 1858 2484 "@babel/runtime" "^7.11.2" 1859 2485 "@testing-library/dom" "^7.23.0" 1860 2486 2487 + "@types/anymatch@*": 2488 + version "1.3.1" 2489 + resolved "https://registry.yarnpkg.com/@types/anymatch/-/anymatch-1.3.1.tgz#336badc1beecb9dacc38bea2cf32adf627a8421a" 2490 + integrity sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA== 2491 + 1861 2492 "@types/aria-query@^4.2.0": 1862 2493 version "4.2.0" 1863 2494 resolved "https://registry.yarnpkg.com/@types/aria-query/-/aria-query-4.2.0.tgz#14264692a9d6e2fa4db3df5e56e94b5e25647ac0" ··· 1896 2527 dependencies: 1897 2528 "@babel/types" "^7.3.0" 1898 2529 2530 + "@types/braces@*": 2531 + version "3.0.0" 2532 + resolved "https://registry.yarnpkg.com/@types/braces/-/braces-3.0.0.tgz#7da1c0d44ff1c7eb660a36ec078ea61ba7eb42cb" 2533 + integrity sha512-TbH79tcyi9FHwbyboOKeRachRq63mSuWYXOflsNO9ZyE5ClQ/JaozNKl+aWUq87qPNsXasXxi2AbgfwIJ+8GQw== 2534 + 1899 2535 "@types/buble@^0.19.2": 1900 2536 version "0.19.2" 1901 2537 resolved "https://registry.yarnpkg.com/@types/buble/-/buble-0.19.2.tgz#a4289d20b175b3c206aaad80caabdabe3ecdfdd1" ··· 1940 2576 resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f" 1941 2577 integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== 1942 2578 1943 - "@types/glob@^7.1.1": 2579 + "@types/glob-base@^0.3.0": 2580 + version "0.3.0" 2581 + resolved "https://registry.yarnpkg.com/@types/glob-base/-/glob-base-0.3.0.tgz#a581d688347e10e50dd7c17d6f2880a10354319d" 2582 + integrity sha1-pYHWiDR+EOUN18F9byiAoQNUMZ0= 2583 + 2584 + "@types/glob@*", "@types/glob@^7.1.1": 1944 2585 version "7.1.3" 1945 2586 resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.3.tgz#e6ba80f36b7daad2c685acd9266382e68985c183" 1946 2587 integrity sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w== ··· 1962 2603 dependencies: 1963 2604 "@types/unist" "*" 1964 2605 2606 + "@types/history@*": 2607 + version "4.7.8" 2608 + resolved "https://registry.yarnpkg.com/@types/history/-/history-4.7.8.tgz#49348387983075705fe8f4e02fb67f7daaec4934" 2609 + integrity sha512-S78QIYirQcUoo6UJZx9CSP0O2ix9IaeAXwQi26Rhr/+mg7qqPy8TzaxHSUut7eGjL8WmLccT7/MXf304WjqHcA== 2610 + 2611 + "@types/html-minifier-terser@^5.0.0": 2612 + version "5.1.0" 2613 + resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-5.1.0.tgz#551a4589b6ee2cc9c1dff08056128aec29b94880" 2614 + integrity sha512-iYCgjm1dGPRuo12+BStjd1HiVQqhlRhWDOQigNxn023HcjnhsiFz9pc6CzJj4HwDCSQca9bxTL4PxJDbkdm3PA== 2615 + 2616 + "@types/is-function@^1.0.0": 2617 + version "1.0.0" 2618 + resolved "https://registry.yarnpkg.com/@types/is-function/-/is-function-1.0.0.tgz#1b0b819b1636c7baf0d6785d030d12edf70c3e83" 2619 + integrity sha512-iTs9HReBu7evG77Q4EC8hZnqRt57irBDkK9nvmHroiOIVwYMQc4IvYvdRgwKfYepunIY7Oh/dBuuld+Gj9uo6w== 2620 + 1965 2621 "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": 1966 2622 version "2.0.3" 1967 2623 resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#4ba8ddb720221f432e443bd5f9117fd22cfd4762" ··· 2007 2663 resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" 2008 2664 integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= 2009 2665 2666 + "@types/markdown-to-jsx@^6.11.0": 2667 + version "6.11.2" 2668 + resolved "https://registry.yarnpkg.com/@types/markdown-to-jsx/-/markdown-to-jsx-6.11.2.tgz#05d1aaffbf15be7be12c70535fa4fed65cc7c64f" 2669 + integrity sha512-ESuCu8Bk7jpTZ3YPdMW1+6wUj13F5N15vXfc7BuUAN0eCp0lrvVL9nzOTzoqvbRzXMciuqXr1KrHt3xQAhfwPA== 2670 + dependencies: 2671 + "@types/react" "*" 2672 + 2010 2673 "@types/mdast@^3.0.0": 2011 2674 version "3.0.3" 2012 2675 resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.3.tgz#2d7d671b1cd1ea3deb306ea75036c2a0407d2deb" ··· 2014 2677 dependencies: 2015 2678 "@types/unist" "*" 2016 2679 2680 + "@types/micromatch@^4.0.1": 2681 + version "4.0.1" 2682 + resolved "https://registry.yarnpkg.com/@types/micromatch/-/micromatch-4.0.1.tgz#9381449dd659fc3823fd2a4190ceacc985083bc7" 2683 + integrity sha512-my6fLBvpY70KattTNzYOK6KU1oR1+UCz9ug/JbcF5UrEmeCt9P7DV2t7L8+t18mMPINqGQCE4O8PLOPbI84gxw== 2684 + dependencies: 2685 + "@types/braces" "*" 2686 + 2017 2687 "@types/minimatch@*": 2018 2688 version "3.0.3" 2019 2689 resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" ··· 2041 2711 version "2.4.0" 2042 2712 resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz#e486d0d97396d79beedd0a6e33f4534ff6b4973e" 2043 2713 integrity sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA== 2714 + 2715 + "@types/npmlog@^4.1.2": 2716 + version "4.1.2" 2717 + resolved "https://registry.yarnpkg.com/@types/npmlog/-/npmlog-4.1.2.tgz#d070fe6a6b78755d1092a3dc492d34c3d8f871c4" 2718 + integrity sha512-4QQmOF5KlwfxJ5IGXFIudkeLCdMABz03RcUXu+LCb24zmln8QW6aDjuGl4d4XPVLf2j+FnjelHTP7dvceAFbhA== 2719 + 2720 + "@types/overlayscrollbars@^1.9.0": 2721 + version "1.12.0" 2722 + resolved "https://registry.yarnpkg.com/@types/overlayscrollbars/-/overlayscrollbars-1.12.0.tgz#98456caceca8ad73bd5bb572632a585074e70764" 2723 + integrity sha512-h/pScHNKi4mb+TrJGDon8Yb06ujFG0mSg12wIO0sWMUF3dQIe2ExRRdNRviaNt9IjxIiOfnRr7FsQAdHwK4sMg== 2044 2724 2045 2725 "@types/parse-json@^4.0.0": 2046 2726 version "4.0.0" ··· 2067 2747 resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.4.tgz#15925414e0ad2cd765bfef58842f7e26a7accb24" 2068 2748 integrity sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug== 2069 2749 2750 + "@types/qs@^6.9.0": 2751 + version "6.9.5" 2752 + resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.5.tgz#434711bdd49eb5ee69d90c1d67c354a9a8ecb18b" 2753 + integrity sha512-/JHkVHtx/REVG0VVToGRGH2+23hsYLHdyG+GrvoUGlGAd0ErauXDyvHtRI/7H7mzLm+tBCKA7pfcpkQ1lf58iQ== 2754 + 2755 + "@types/reach__router@^1.3.5": 2756 + version "1.3.5" 2757 + resolved "https://registry.yarnpkg.com/@types/reach__router/-/reach__router-1.3.5.tgz#14e1e981cccd3a5e50dc9e969a72de0b9d472f6d" 2758 + integrity sha512-h0NbqXN/tJuBY/xggZSej1SKQEstbHO7J/omt1tYoFGmj3YXOodZKbbqD4mNDh7zvEGYd7YFrac1LTtAr3xsYQ== 2759 + dependencies: 2760 + "@types/history" "*" 2761 + "@types/react" "*" 2762 + 2763 + "@types/react-color@^3.0.1": 2764 + version "3.0.4" 2765 + resolved "https://registry.yarnpkg.com/@types/react-color/-/react-color-3.0.4.tgz#c63daf012ad067ac0127bdd86725f079d02082bd" 2766 + integrity sha512-EswbYJDF1kkrx93/YU+BbBtb46CCtDMvTiGmcOa/c5PETnwTiSWoseJ1oSWeRl/4rUXkhME9bVURvvPg0W5YQw== 2767 + dependencies: 2768 + "@types/react" "*" 2769 + "@types/reactcss" "*" 2770 + 2070 2771 "@types/react-dom@^16.9.2": 2071 2772 version "16.9.8" 2072 2773 resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-16.9.8.tgz#fe4c1e11dfc67155733dfa6aa65108b4971cb423" ··· 2074 2775 dependencies: 2075 2776 "@types/react" "*" 2076 2777 2778 + "@types/react-syntax-highlighter@11.0.4": 2779 + version "11.0.4" 2780 + resolved "https://registry.yarnpkg.com/@types/react-syntax-highlighter/-/react-syntax-highlighter-11.0.4.tgz#d86d17697db62f98046874f62fdb3e53a0bbc4cd" 2781 + integrity sha512-9GfTo3a0PHwQeTVoqs0g5bS28KkSY48pp5659wA+Dp4MqceDEa8EHBqrllJvvtyusszyJhViUEap0FDvlk/9Zg== 2782 + dependencies: 2783 + "@types/react" "*" 2784 + 2077 2785 "@types/react-test-renderer@*", "@types/react-test-renderer@^16.9.2", "@types/react-test-renderer@^16.9.3": 2078 2786 version "16.9.3" 2079 2787 resolved "https://registry.yarnpkg.com/@types/react-test-renderer/-/react-test-renderer-16.9.3.tgz#96bab1860904366f4e848b739ba0e2f67bcae87e" ··· 2089 2797 "@types/prop-types" "*" 2090 2798 csstype "^3.0.2" 2091 2799 2800 + "@types/reactcss@*": 2801 + version "1.2.3" 2802 + resolved "https://registry.yarnpkg.com/@types/reactcss/-/reactcss-1.2.3.tgz#af28ae11bbb277978b99d04d1eedfd068ca71834" 2803 + integrity sha512-d2gQQ0IL6hXLnoRfVYZukQNWHuVsE75DzFTLPUuyyEhJS8G2VvlE+qfQQ91SJjaMqlURRCNIsX7Jcsw6cEuJlA== 2804 + dependencies: 2805 + "@types/react" "*" 2806 + 2092 2807 "@types/resolve@1.17.1": 2093 2808 version "1.17.1" 2094 2809 resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-1.17.1.tgz#3afd6ad8967c77e4376c598a82ddd58f46ec45d6" ··· 2101 2816 resolved "https://registry.yarnpkg.com/@types/semver/-/semver-6.2.1.tgz#a236185670a7860f1597cf73bea2e16d001461ba" 2102 2817 integrity sha512-+beqKQOh9PYxuHvijhVl+tIHvT6tuwOrE9m14zd+MT2A38KoKZhh7pYJ0SNleLtwDsiIxHDsIk9bv01oOxvSvA== 2103 2818 2819 + "@types/source-list-map@*": 2820 + version "0.1.2" 2821 + resolved "https://registry.yarnpkg.com/@types/source-list-map/-/source-list-map-0.1.2.tgz#0078836063ffaf17412349bba364087e0ac02ec9" 2822 + integrity sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA== 2823 + 2104 2824 "@types/stack-utils@^1.0.1": 2105 2825 version "1.0.1" 2106 2826 resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e" 2107 2827 integrity sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw== 2108 2828 2829 + "@types/tapable@*", "@types/tapable@^1.0.5": 2830 + version "1.0.6" 2831 + resolved "https://registry.yarnpkg.com/@types/tapable/-/tapable-1.0.6.tgz#a9ca4b70a18b270ccb2bc0aaafefd1d486b7ea74" 2832 + integrity sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA== 2833 + 2109 2834 "@types/testing-library__dom@^6.12.1": 2110 2835 version "6.14.0" 2111 2836 resolved "https://registry.yarnpkg.com/@types/testing-library__dom/-/testing-library__dom-6.14.0.tgz#1aede831cb4ed4a398448df5a2c54b54a365644e" ··· 2120 2845 dependencies: 2121 2846 "@types/react-test-renderer" "*" 2122 2847 2848 + "@types/uglify-js@*": 2849 + version "3.9.3" 2850 + resolved "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-3.9.3.tgz#d94ed608e295bc5424c9600e6b8565407b6b4b6b" 2851 + integrity sha512-KswB5C7Kwduwjj04Ykz+AjvPcfgv/37Za24O2EDzYNbwyzOo8+ydtvzUfZ5UMguiVu29Gx44l1A6VsPPcmYu9w== 2852 + dependencies: 2853 + source-map "^0.6.1" 2854 + 2123 2855 "@types/unist@*", "@types/unist@^2.0.0", "@types/unist@^2.0.2", "@types/unist@^2.0.3": 2124 2856 version "2.0.3" 2125 2857 resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.3.tgz#9c088679876f374eb5983f150d4787aa6fb32d7e" 2126 2858 integrity sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ== 2127 2859 2860 + "@types/webpack-env@^1.15.2", "@types/webpack-env@~1.15.3": 2861 + version "1.15.3" 2862 + resolved "https://registry.yarnpkg.com/@types/webpack-env/-/webpack-env-1.15.3.tgz#fb602cd4c2f0b7c0fb857e922075fdf677d25d84" 2863 + integrity sha512-5oiXqR7kwDGZ6+gmzIO2lTC+QsriNuQXZDWNYRV3l2XRN/zmPgnC21DLSx2D05zvD8vnXW6qUg7JnXZ4I6qLVQ== 2864 + 2865 + "@types/webpack-sources@*": 2866 + version "1.4.2" 2867 + resolved "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-1.4.2.tgz#5d3d4dea04008a779a90135ff96fb5c0c9e6292c" 2868 + integrity sha512-77T++JyKow4BQB/m9O96n9d/UUHWLQHlcqXb9Vsf4F1+wKNrrlWNFPDLKNT92RJnCSL6CieTc+NDXtCVZswdTw== 2869 + dependencies: 2870 + "@types/node" "*" 2871 + "@types/source-list-map" "*" 2872 + source-map "^0.7.3" 2873 + 2874 + "@types/webpack@^4.41.8": 2875 + version "4.41.22" 2876 + resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.22.tgz#ff9758a17c6bd499e459b91e78539848c32d0731" 2877 + integrity sha512-JQDJK6pj8OMV9gWOnN1dcLCyU9Hzs6lux0wBO4lr1+gyEhIBR9U3FMrz12t2GPkg110XAxEAw2WHF6g7nZIbRQ== 2878 + dependencies: 2879 + "@types/anymatch" "*" 2880 + "@types/node" "*" 2881 + "@types/tapable" "*" 2882 + "@types/uglify-js" "*" 2883 + "@types/webpack-sources" "*" 2884 + source-map "^0.6.0" 2885 + 2128 2886 "@types/yargs-parser@*": 2129 2887 version "15.0.0" 2130 2888 resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-15.0.0.tgz#cb3f9f741869e20cce330ffbeb9271590483882d" ··· 2359 3117 "@webassemblyjs/wast-parser" "1.9.0" 2360 3118 "@xtuc/long" "4.2.2" 2361 3119 3120 + "@webpack-contrib/schema-utils@^1.0.0-beta.0": 3121 + version "1.0.0-beta.0" 3122 + resolved "https://registry.yarnpkg.com/@webpack-contrib/schema-utils/-/schema-utils-1.0.0-beta.0.tgz#bf9638c9464d177b48209e84209e23bee2eb4f65" 3123 + integrity sha512-LonryJP+FxQQHsjGBi6W786TQB1Oym+agTpY0c+Kj8alnIw+DLUJb6SI8Y1GHGhLCH1yPRrucjObUmxNICQ1pg== 3124 + dependencies: 3125 + ajv "^6.1.0" 3126 + ajv-keywords "^3.1.0" 3127 + chalk "^2.3.2" 3128 + strip-ansi "^4.0.0" 3129 + text-table "^0.2.0" 3130 + webpack-log "^1.1.2" 3131 + 2362 3132 "@xtuc/ieee754@^1.2.0": 2363 3133 version "1.2.0" 2364 3134 resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" ··· 2437 3207 resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.0.tgz#e1ad486e6c54501634c6c397c5c121daa383607c" 2438 3208 integrity sha512-+G7P8jJmCHr+S+cLfQxygbWhXy+8YTVGzAkpEbcLo2mLoL7tij/VG41QSHACSf5QgYRhMZYHuNc6drJaO0Da+w== 2439 3209 3210 + address@1.1.2, address@^1.0.1: 3211 + version "1.1.2" 3212 + resolved "https://registry.yarnpkg.com/address/-/address-1.1.2.tgz#bf1116c9c758c51b7a933d296b72c221ed9428b6" 3213 + integrity sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA== 3214 + 2440 3215 adjust-sourcemap-loader@2.0.0: 2441 3216 version "2.0.0" 2442 3217 resolved "https://registry.yarnpkg.com/adjust-sourcemap-loader/-/adjust-sourcemap-loader-2.0.0.tgz#6471143af75ec02334b219f54bc7970c52fb29a4" ··· 2468 3243 clean-stack "^2.0.0" 2469 3244 indent-string "^4.0.0" 2470 3245 3246 + airbnb-js-shims@^2.2.1: 3247 + version "2.2.1" 3248 + resolved "https://registry.yarnpkg.com/airbnb-js-shims/-/airbnb-js-shims-2.2.1.tgz#db481102d682b98ed1daa4c5baa697a05ce5c040" 3249 + integrity sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ== 3250 + dependencies: 3251 + array-includes "^3.0.3" 3252 + array.prototype.flat "^1.2.1" 3253 + array.prototype.flatmap "^1.2.1" 3254 + es5-shim "^4.5.13" 3255 + es6-shim "^0.35.5" 3256 + function.prototype.name "^1.1.0" 3257 + globalthis "^1.0.0" 3258 + object.entries "^1.1.0" 3259 + object.fromentries "^2.0.0 || ^1.0.0" 3260 + object.getownpropertydescriptors "^2.0.3" 3261 + object.values "^1.1.0" 3262 + promise.allsettled "^1.0.0" 3263 + promise.prototype.finally "^3.1.0" 3264 + string.prototype.matchall "^4.0.0 || ^3.0.1" 3265 + string.prototype.padend "^3.0.0" 3266 + string.prototype.padstart "^3.0.0" 3267 + symbol.prototype.description "^1.0.0" 3268 + 2471 3269 airbnb-prop-types@^2.16.0: 2472 3270 version "2.16.0" 2473 3271 resolved "https://registry.yarnpkg.com/airbnb-prop-types/-/airbnb-prop-types-2.16.0.tgz#b96274cefa1abb14f623f804173ee97c13971dc2" ··· 2538 3336 dependencies: 2539 3337 string-width "^2.0.0" 2540 3338 3339 + ansi-align@^3.0.0: 3340 + version "3.0.0" 3341 + resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.0.tgz#b536b371cf687caaef236c18d3e21fe3797467cb" 3342 + integrity sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw== 3343 + dependencies: 3344 + string-width "^3.0.0" 3345 + 2541 3346 ansi-colors@^3.0.0: 2542 3347 version "3.2.4" 2543 3348 resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf" ··· 2585 3390 resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" 2586 3391 integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== 2587 3392 3393 + ansi-styles@^2.2.1: 3394 + version "2.2.1" 3395 + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 3396 + integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= 3397 + 2588 3398 ansi-styles@^3.2.0, ansi-styles@^3.2.1: 2589 3399 version "3.2.1" 2590 3400 resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" ··· 2600 3410 "@types/color-name" "^1.1.1" 2601 3411 color-convert "^2.0.1" 2602 3412 3413 + ansi-to-html@^0.6.11: 3414 + version "0.6.14" 3415 + resolved "https://registry.yarnpkg.com/ansi-to-html/-/ansi-to-html-0.6.14.tgz#65fe6d08bba5dd9db33f44a20aec331e0010dad8" 3416 + integrity sha512-7ZslfB1+EnFSDO5Ju+ue5Y6It19DRnZXWv8jrGHgIlPna5Mh4jz7BV5jCbQneXNFurQcKoolaaAjHtgSBfOIuA== 3417 + dependencies: 3418 + entities "^1.1.2" 3419 + 2603 3420 any-promise@^1.0.0: 2604 3421 version "1.3.0" 2605 3422 resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" ··· 2621 3438 normalize-path "^3.0.0" 2622 3439 picomatch "^2.0.4" 2623 3440 2624 - aproba@^1.1.1: 3441 + app-root-dir@^1.0.2: 3442 + version "1.0.2" 3443 + resolved "https://registry.yarnpkg.com/app-root-dir/-/app-root-dir-1.0.2.tgz#38187ec2dea7577fff033ffcb12172692ff6e118" 3444 + integrity sha1-OBh+wt6nV3//Az/8sSFyaS/24Rg= 3445 + 3446 + aproba@^1.0.3, aproba@^1.1.1: 2625 3447 version "1.2.0" 2626 3448 resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 2627 3449 integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== ··· 2637 3459 integrity sha1-+S5yIzBW38aWlHJ0nCZ72wRrHXA= 2638 3460 dependencies: 2639 3461 file-type "^4.2.0" 3462 + 3463 + are-we-there-yet@~1.1.2: 3464 + version "1.1.5" 3465 + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 3466 + integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== 3467 + dependencies: 3468 + delegates "^1.0.0" 3469 + readable-stream "^2.0.6" 2640 3470 2641 3471 arg@2.0.0: 2642 3472 version "2.0.0" ··· 2698 3528 resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.2.tgz#24ef80a28c1a893617e2149b0c6d0d788293b099" 2699 3529 integrity sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ== 2700 3530 2701 - array-includes@^3.1.1: 3531 + array-includes@^3.0.3, array-includes@^3.1.1: 2702 3532 version "3.1.1" 2703 3533 resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.1.tgz#cdd67e6852bdf9c1215460786732255ed2459348" 2704 3534 integrity sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ== ··· 2737 3567 define-properties "^1.1.3" 2738 3568 es-abstract "^1.17.4" 2739 3569 2740 - array.prototype.flat@^1.2.3: 3570 + array.prototype.flat@^1.2.1, array.prototype.flat@^1.2.3: 2741 3571 version "1.2.3" 2742 3572 resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz#0de82b426b0318dbfdb940089e38b043d37f6c7b" 2743 3573 integrity sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ== ··· 2745 3575 define-properties "^1.1.3" 2746 3576 es-abstract "^1.17.0-next.1" 2747 3577 2748 - array.prototype.flatmap@^1.2.3: 3578 + array.prototype.flatmap@^1.2.1, array.prototype.flatmap@^1.2.3: 2749 3579 version "1.2.3" 2750 3580 resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.3.tgz#1c13f84a178566042dd63de4414440db9222e443" 2751 3581 integrity sha512-OOEk+lkePcg+ODXIpvuU9PAryCikCJyo7GlDG1upleEpQRx6mzL9puEBkozQ5iAx20KV0l3DbyQwqciJtqe5Pg== ··· 2754 3584 es-abstract "^1.17.0-next.1" 2755 3585 function-bind "^1.1.1" 2756 3586 3587 + array.prototype.map@^1.0.1: 3588 + version "1.0.2" 3589 + resolved "https://registry.yarnpkg.com/array.prototype.map/-/array.prototype.map-1.0.2.tgz#9a4159f416458a23e9483078de1106b2ef68f8ec" 3590 + integrity sha512-Az3OYxgsa1g7xDYp86l0nnN4bcmuEITGe1rbdEBVkrqkzMgDcbdQ2R7r41pNzti+4NMces3H8gMmuioZUilLgw== 3591 + dependencies: 3592 + define-properties "^1.1.3" 3593 + es-abstract "^1.17.0-next.1" 3594 + es-array-method-boxes-properly "^1.0.0" 3595 + is-string "^1.0.4" 3596 + 2757 3597 arraybuffer.slice@~0.0.7: 2758 3598 version "0.0.7" 2759 3599 resolved "https://registry.yarnpkg.com/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz#3bbc4275dd584cc1b10809b89d4e8b63a69e7675" ··· 2816 3656 resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 2817 3657 integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= 2818 3658 3659 + ast-types@0.11.3: 3660 + version "0.11.3" 3661 + resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.11.3.tgz#c20757fe72ee71278ea0ff3d87e5c2ca30d9edf8" 3662 + integrity sha512-XA5o5dsNw8MhyW0Q7MWXJWc4oOzZKbdsEJq45h7c8q/d9DwWZ5F2ugUc1PuMLPGsUnphCt/cNDHu8JeBbxf1qA== 3663 + 2819 3664 ast-types@0.13.2: 2820 3665 version "0.13.2" 2821 3666 resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.13.2.tgz#df39b677a911a83f3a049644fb74fdded23cea48" 2822 3667 integrity sha512-uWMHxJxtfj/1oZClOxDEV1sQ1HCDkA4MG8Gr69KKeBjEVH0R84WlejZ0y2DcwyBlpAEMltmVYkVgqfLFb2oyiA== 2823 3668 3669 + ast-types@^0.13.2: 3670 + version "0.13.4" 3671 + resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.13.4.tgz#ee0d77b343263965ecc3fb62da16e7222b2b6782" 3672 + integrity sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w== 3673 + dependencies: 3674 + tslib "^2.0.1" 3675 + 2824 3676 astral-regex@^1.0.0: 2825 3677 version "1.0.0" 2826 3678 resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" ··· 2846 3698 resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" 2847 3699 integrity sha1-trvgsGdLnXGXCMo43owjfLUmw9E= 2848 3700 3701 + async@0.9.x: 3702 + version "0.9.2" 3703 + resolved "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d" 3704 + integrity sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0= 3705 + 2849 3706 async@^2.6.2: 2850 3707 version "2.6.3" 2851 3708 resolved "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff" ··· 2858 3715 resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 2859 3716 integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= 2860 3717 3718 + at-least-node@^1.0.0: 3719 + version "1.0.0" 3720 + resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" 3721 + integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== 3722 + 2861 3723 atob@^2.1.2: 2862 3724 version "2.1.2" 2863 3725 resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" 2864 3726 integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== 2865 3727 2866 - autoprefixer@^9.7.4: 3728 + autoprefixer@^9.7.2, autoprefixer@^9.7.4: 2867 3729 version "9.8.6" 2868 3730 resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.8.6.tgz#3b73594ca1bf9266320c5acf1588d74dea74210f" 2869 3731 integrity sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg== ··· 2900 3762 dependencies: 2901 3763 follow-redirects "1.5.10" 2902 3764 3765 + babel-code-frame@^6.22.0: 3766 + version "6.26.0" 3767 + resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 3768 + integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s= 3769 + dependencies: 3770 + chalk "^1.1.3" 3771 + esutils "^2.0.2" 3772 + js-tokens "^3.0.2" 3773 + 2903 3774 babel-core@7.0.0-bridge.0: 2904 3775 version "7.0.0-bridge.0" 2905 3776 resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-7.0.0-bridge.0.tgz#95a492ddd90f9b4e9a4a1da14eb335b87b634ece" 2906 3777 integrity sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg== 2907 3778 3779 + babel-helper-evaluate-path@^0.5.0: 3780 + version "0.5.0" 3781 + resolved "https://registry.yarnpkg.com/babel-helper-evaluate-path/-/babel-helper-evaluate-path-0.5.0.tgz#a62fa9c4e64ff7ea5cea9353174ef023a900a67c" 3782 + integrity sha512-mUh0UhS607bGh5wUMAQfOpt2JX2ThXMtppHRdRU1kL7ZLRWIXxoV2UIV1r2cAeeNeU1M5SB5/RSUgUxrK8yOkA== 3783 + 3784 + babel-helper-flip-expressions@^0.4.3: 3785 + version "0.4.3" 3786 + resolved "https://registry.yarnpkg.com/babel-helper-flip-expressions/-/babel-helper-flip-expressions-0.4.3.tgz#3696736a128ac18bc25254b5f40a22ceb3c1d3fd" 3787 + integrity sha1-NpZzahKKwYvCUlS19AoizrPB0/0= 3788 + 3789 + babel-helper-is-nodes-equiv@^0.0.1: 3790 + version "0.0.1" 3791 + resolved "https://registry.yarnpkg.com/babel-helper-is-nodes-equiv/-/babel-helper-is-nodes-equiv-0.0.1.tgz#34e9b300b1479ddd98ec77ea0bbe9342dfe39684" 3792 + integrity sha1-NOmzALFHnd2Y7HfqC76TQt/jloQ= 3793 + 3794 + babel-helper-is-void-0@^0.4.3: 3795 + version "0.4.3" 3796 + resolved "https://registry.yarnpkg.com/babel-helper-is-void-0/-/babel-helper-is-void-0-0.4.3.tgz#7d9c01b4561e7b95dbda0f6eee48f5b60e67313e" 3797 + integrity sha1-fZwBtFYee5Xb2g9u7kj1tg5nMT4= 3798 + 3799 + babel-helper-mark-eval-scopes@^0.4.3: 3800 + version "0.4.3" 3801 + resolved "https://registry.yarnpkg.com/babel-helper-mark-eval-scopes/-/babel-helper-mark-eval-scopes-0.4.3.tgz#d244a3bef9844872603ffb46e22ce8acdf551562" 3802 + integrity sha1-0kSjvvmESHJgP/tG4izorN9VFWI= 3803 + 3804 + babel-helper-remove-or-void@^0.4.3: 3805 + version "0.4.3" 3806 + resolved "https://registry.yarnpkg.com/babel-helper-remove-or-void/-/babel-helper-remove-or-void-0.4.3.tgz#a4f03b40077a0ffe88e45d07010dee241ff5ae60" 3807 + integrity sha1-pPA7QAd6D/6I5F0HAQ3uJB/1rmA= 3808 + 3809 + babel-helper-to-multiple-sequence-expressions@^0.5.0: 3810 + version "0.5.0" 3811 + resolved "https://registry.yarnpkg.com/babel-helper-to-multiple-sequence-expressions/-/babel-helper-to-multiple-sequence-expressions-0.5.0.tgz#a3f924e3561882d42fcf48907aa98f7979a4588d" 3812 + integrity sha512-m2CvfDW4+1qfDdsrtf4dwOslQC3yhbgyBFptncp4wvtdrDHqueW7slsYv4gArie056phvQFhT2nRcGS4bnm6mA== 3813 + 2908 3814 babel-jest@^26.3.0: 2909 3815 version "26.3.0" 2910 3816 resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-26.3.0.tgz#10d0ca4b529ca3e7d1417855ef7d7bd6fc0c3463" ··· 2930 3836 pify "^4.0.1" 2931 3837 schema-utils "^2.6.5" 2932 3838 3839 + babel-plugin-add-react-displayname@^0.0.5: 3840 + version "0.0.5" 3841 + resolved "https://registry.yarnpkg.com/babel-plugin-add-react-displayname/-/babel-plugin-add-react-displayname-0.0.5.tgz#339d4cddb7b65fd62d1df9db9fe04de134122bd5" 3842 + integrity sha1-M51M3be2X9YtHfnbn+BN4TQSK9U= 3843 + 2933 3844 babel-plugin-apply-mdx-type-prop@1.6.16: 2934 3845 version "1.6.16" 2935 3846 resolved "https://registry.yarnpkg.com/babel-plugin-apply-mdx-type-prop/-/babel-plugin-apply-mdx-type-prop-1.6.16.tgz#4becd65b3aa108f15c524a0b125ca7c81f3443d8" ··· 2950 3861 dependencies: 2951 3862 object.assign "^4.1.0" 2952 3863 3864 + babel-plugin-emotion@^10.0.20, babel-plugin-emotion@^10.0.27: 3865 + version "10.0.33" 3866 + resolved "https://registry.yarnpkg.com/babel-plugin-emotion/-/babel-plugin-emotion-10.0.33.tgz#ce1155dcd1783bbb9286051efee53f4e2be63e03" 3867 + integrity sha512-bxZbTTGz0AJQDHm8k6Rf3RQJ8tX2scsfsRyKVgAbiUPUNIRtlK+7JxP+TAd1kRLABFxe0CFm2VdK4ePkoA9FxQ== 3868 + dependencies: 3869 + "@babel/helper-module-imports" "^7.0.0" 3870 + "@emotion/hash" "0.8.0" 3871 + "@emotion/memoize" "0.7.4" 3872 + "@emotion/serialize" "^0.11.16" 3873 + babel-plugin-macros "^2.0.0" 3874 + babel-plugin-syntax-jsx "^6.18.0" 3875 + convert-source-map "^1.5.0" 3876 + escape-string-regexp "^1.0.5" 3877 + find-root "^1.1.0" 3878 + source-map "^0.5.7" 3879 + 2953 3880 babel-plugin-extract-import-names@1.6.16: 2954 3881 version "1.6.16" 2955 3882 resolved "https://registry.yarnpkg.com/babel-plugin-extract-import-names/-/babel-plugin-extract-import-names-1.6.16.tgz#b964004e794bdd62534c525db67d9e890d5cc079" ··· 2978 3905 "@types/babel__core" "^7.0.0" 2979 3906 "@types/babel__traverse" "^7.0.6" 2980 3907 2981 - babel-plugin-macros@^2.6.1: 3908 + babel-plugin-macros@^2.0.0, babel-plugin-macros@^2.6.1, babel-plugin-macros@^2.8.0: 2982 3909 version "2.8.0" 2983 3910 resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz#0f958a7cc6556b1e65344465d99111a1e5e10138" 2984 3911 integrity sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg== ··· 2987 3914 cosmiconfig "^6.0.0" 2988 3915 resolve "^1.12.0" 2989 3916 3917 + babel-plugin-minify-builtins@^0.5.0: 3918 + version "0.5.0" 3919 + resolved "https://registry.yarnpkg.com/babel-plugin-minify-builtins/-/babel-plugin-minify-builtins-0.5.0.tgz#31eb82ed1a0d0efdc31312f93b6e4741ce82c36b" 3920 + integrity sha512-wpqbN7Ov5hsNwGdzuzvFcjgRlzbIeVv1gMIlICbPj0xkexnfoIDe7q+AZHMkQmAE/F9R5jkrB6TLfTegImlXag== 3921 + 3922 + babel-plugin-minify-constant-folding@^0.5.0: 3923 + version "0.5.0" 3924 + resolved "https://registry.yarnpkg.com/babel-plugin-minify-constant-folding/-/babel-plugin-minify-constant-folding-0.5.0.tgz#f84bc8dbf6a561e5e350ff95ae216b0ad5515b6e" 3925 + integrity sha512-Vj97CTn/lE9hR1D+jKUeHfNy+m1baNiJ1wJvoGyOBUx7F7kJqDZxr9nCHjO/Ad+irbR3HzR6jABpSSA29QsrXQ== 3926 + dependencies: 3927 + babel-helper-evaluate-path "^0.5.0" 3928 + 3929 + babel-plugin-minify-dead-code-elimination@^0.5.1: 3930 + version "0.5.1" 3931 + resolved "https://registry.yarnpkg.com/babel-plugin-minify-dead-code-elimination/-/babel-plugin-minify-dead-code-elimination-0.5.1.tgz#1a0c68e44be30de4976ca69ffc535e08be13683f" 3932 + integrity sha512-x8OJOZIrRmQBcSqxBcLbMIK8uPmTvNWPXH2bh5MDCW1latEqYiRMuUkPImKcfpo59pTUB2FT7HfcgtG8ZlR5Qg== 3933 + dependencies: 3934 + babel-helper-evaluate-path "^0.5.0" 3935 + babel-helper-mark-eval-scopes "^0.4.3" 3936 + babel-helper-remove-or-void "^0.4.3" 3937 + lodash "^4.17.11" 3938 + 3939 + babel-plugin-minify-flip-comparisons@^0.4.3: 3940 + version "0.4.3" 3941 + resolved "https://registry.yarnpkg.com/babel-plugin-minify-flip-comparisons/-/babel-plugin-minify-flip-comparisons-0.4.3.tgz#00ca870cb8f13b45c038b3c1ebc0f227293c965a" 3942 + integrity sha1-AMqHDLjxO0XAOLPB68DyJyk8llo= 3943 + dependencies: 3944 + babel-helper-is-void-0 "^0.4.3" 3945 + 3946 + babel-plugin-minify-guarded-expressions@^0.4.4: 3947 + version "0.4.4" 3948 + resolved "https://registry.yarnpkg.com/babel-plugin-minify-guarded-expressions/-/babel-plugin-minify-guarded-expressions-0.4.4.tgz#818960f64cc08aee9d6c75bec6da974c4d621135" 3949 + integrity sha512-RMv0tM72YuPPfLT9QLr3ix9nwUIq+sHT6z8Iu3sLbqldzC1Dls8DPCywzUIzkTx9Zh1hWX4q/m9BPoPed9GOfA== 3950 + dependencies: 3951 + babel-helper-evaluate-path "^0.5.0" 3952 + babel-helper-flip-expressions "^0.4.3" 3953 + 3954 + babel-plugin-minify-infinity@^0.4.3: 3955 + version "0.4.3" 3956 + resolved "https://registry.yarnpkg.com/babel-plugin-minify-infinity/-/babel-plugin-minify-infinity-0.4.3.tgz#dfb876a1b08a06576384ef3f92e653ba607b39ca" 3957 + integrity sha1-37h2obCKBldjhO8/kuZTumB7Oco= 3958 + 3959 + babel-plugin-minify-mangle-names@^0.5.0: 3960 + version "0.5.0" 3961 + resolved "https://registry.yarnpkg.com/babel-plugin-minify-mangle-names/-/babel-plugin-minify-mangle-names-0.5.0.tgz#bcddb507c91d2c99e138bd6b17a19c3c271e3fd3" 3962 + integrity sha512-3jdNv6hCAw6fsX1p2wBGPfWuK69sfOjfd3zjUXkbq8McbohWy23tpXfy5RnToYWggvqzuMOwlId1PhyHOfgnGw== 3963 + dependencies: 3964 + babel-helper-mark-eval-scopes "^0.4.3" 3965 + 3966 + babel-plugin-minify-numeric-literals@^0.4.3: 3967 + version "0.4.3" 3968 + resolved "https://registry.yarnpkg.com/babel-plugin-minify-numeric-literals/-/babel-plugin-minify-numeric-literals-0.4.3.tgz#8e4fd561c79f7801286ff60e8c5fd9deee93c0bc" 3969 + integrity sha1-jk/VYcefeAEob/YOjF/Z3u6TwLw= 3970 + 3971 + babel-plugin-minify-replace@^0.5.0: 3972 + version "0.5.0" 3973 + resolved "https://registry.yarnpkg.com/babel-plugin-minify-replace/-/babel-plugin-minify-replace-0.5.0.tgz#d3e2c9946c9096c070efc96761ce288ec5c3f71c" 3974 + integrity sha512-aXZiaqWDNUbyNNNpWs/8NyST+oU7QTpK7J9zFEFSA0eOmtUNMU3fczlTTTlnCxHmq/jYNFEmkkSG3DDBtW3Y4Q== 3975 + 3976 + babel-plugin-minify-simplify@^0.5.1: 3977 + version "0.5.1" 3978 + resolved "https://registry.yarnpkg.com/babel-plugin-minify-simplify/-/babel-plugin-minify-simplify-0.5.1.tgz#f21613c8b95af3450a2ca71502fdbd91793c8d6a" 3979 + integrity sha512-OSYDSnoCxP2cYDMk9gxNAed6uJDiDz65zgL6h8d3tm8qXIagWGMLWhqysT6DY3Vs7Fgq7YUDcjOomhVUb+xX6A== 3980 + dependencies: 3981 + babel-helper-evaluate-path "^0.5.0" 3982 + babel-helper-flip-expressions "^0.4.3" 3983 + babel-helper-is-nodes-equiv "^0.0.1" 3984 + babel-helper-to-multiple-sequence-expressions "^0.5.0" 3985 + 3986 + babel-plugin-minify-type-constructors@^0.4.3: 3987 + version "0.4.3" 3988 + resolved "https://registry.yarnpkg.com/babel-plugin-minify-type-constructors/-/babel-plugin-minify-type-constructors-0.4.3.tgz#1bc6f15b87f7ab1085d42b330b717657a2156500" 3989 + integrity sha1-G8bxW4f3qxCF1CszC3F2V6IVZQA= 3990 + dependencies: 3991 + babel-helper-is-void-0 "^0.4.3" 3992 + 2990 3993 babel-plugin-modular-graphql@0.1.3: 2991 3994 version "0.1.3" 2992 3995 resolved "https://registry.yarnpkg.com/babel-plugin-modular-graphql/-/babel-plugin-modular-graphql-0.1.3.tgz#23d474daab2278229bfc9a9f2491f3e1d9f555f1" 2993 3996 integrity sha512-13QBZm1sqPTHVBlG79p0jswR+FdNIIaxRrg1tNjpfGYU4U9M8bEDVQ51QK9+cZ6zUBQ0k2mh0iRvCjZt+856pg== 2994 3997 3998 + babel-plugin-named-asset-import@^0.3.1: 3999 + version "0.3.6" 4000 + resolved "https://registry.yarnpkg.com/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.6.tgz#c9750a1b38d85112c9e166bf3ef7c5dbc605f4be" 4001 + integrity sha512-1aGDUfL1qOOIoqk9QKGIo2lANk+C7ko/fqH0uIyC71x3PEGz0uVP8ISgfEsFuG+FKmjHTvFK/nNM8dowpmUxLA== 4002 + 4003 + babel-plugin-react-docgen@^4.1.0: 4004 + version "4.1.0" 4005 + resolved "https://registry.yarnpkg.com/babel-plugin-react-docgen/-/babel-plugin-react-docgen-4.1.0.tgz#1dfa447dac9ca32d625a123df5733a9e47287c26" 4006 + integrity sha512-vzpnBlfGv8XOhJM2zbPyyqw2OLEbelgZZsaaRRTpVwNKuYuc+pUg4+dy7i9gCRms0uOQn4osX571HRcCJMJCmA== 4007 + dependencies: 4008 + lodash "^4.17.15" 4009 + react-docgen "^5.0.0" 4010 + recast "^0.14.7" 4011 + 2995 4012 "babel-plugin-styled-components@>= 1": 2996 4013 version "1.11.1" 2997 4014 resolved "https://registry.yarnpkg.com/babel-plugin-styled-components/-/babel-plugin-styled-components-1.11.1.tgz#5296a9e557d736c3186be079fff27c6665d63d76" ··· 3020 4037 lodash "^4.17.11" 3021 4038 traverse "0.6.6" 3022 4039 4040 + babel-plugin-transform-inline-consecutive-adds@^0.4.3: 4041 + version "0.4.3" 4042 + resolved "https://registry.yarnpkg.com/babel-plugin-transform-inline-consecutive-adds/-/babel-plugin-transform-inline-consecutive-adds-0.4.3.tgz#323d47a3ea63a83a7ac3c811ae8e6941faf2b0d1" 4043 + integrity sha1-Mj1Ho+pjqDp6w8gRro5pQfrysNE= 4044 + 4045 + babel-plugin-transform-member-expression-literals@^6.9.4: 4046 + version "6.9.4" 4047 + resolved "https://registry.yarnpkg.com/babel-plugin-transform-member-expression-literals/-/babel-plugin-transform-member-expression-literals-6.9.4.tgz#37039c9a0c3313a39495faac2ff3a6b5b9d038bf" 4048 + integrity sha1-NwOcmgwzE6OUlfqsL/OmtbnQOL8= 4049 + 4050 + babel-plugin-transform-merge-sibling-variables@^6.9.4: 4051 + version "6.9.4" 4052 + resolved "https://registry.yarnpkg.com/babel-plugin-transform-merge-sibling-variables/-/babel-plugin-transform-merge-sibling-variables-6.9.4.tgz#85b422fc3377b449c9d1cde44087203532401dae" 4053 + integrity sha1-hbQi/DN3tEnJ0c3kQIcgNTJAHa4= 4054 + 4055 + babel-plugin-transform-minify-booleans@^6.9.4: 4056 + version "6.9.4" 4057 + resolved "https://registry.yarnpkg.com/babel-plugin-transform-minify-booleans/-/babel-plugin-transform-minify-booleans-6.9.4.tgz#acbb3e56a3555dd23928e4b582d285162dd2b198" 4058 + integrity sha1-rLs+VqNVXdI5KOS1gtKFFi3SsZg= 4059 + 4060 + babel-plugin-transform-property-literals@^6.9.4: 4061 + version "6.9.4" 4062 + resolved "https://registry.yarnpkg.com/babel-plugin-transform-property-literals/-/babel-plugin-transform-property-literals-6.9.4.tgz#98c1d21e255736573f93ece54459f6ce24985d39" 4063 + integrity sha1-mMHSHiVXNlc/k+zlRFn2ziSYXTk= 4064 + dependencies: 4065 + esutils "^2.0.2" 4066 + 3023 4067 babel-plugin-transform-react-remove-prop-types@0.4.24, babel-plugin-transform-react-remove-prop-types@^0.4.24: 3024 4068 version "0.4.24" 3025 4069 resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz#f2edaf9b4c6a5fbe5c1d678bfb531078c1555f3a" 3026 4070 integrity sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA== 4071 + 4072 + babel-plugin-transform-regexp-constructors@^0.4.3: 4073 + version "0.4.3" 4074 + resolved "https://registry.yarnpkg.com/babel-plugin-transform-regexp-constructors/-/babel-plugin-transform-regexp-constructors-0.4.3.tgz#58b7775b63afcf33328fae9a5f88fbd4fb0b4965" 4075 + integrity sha1-WLd3W2OvzzMyj66aX4j71PsLSWU= 4076 + 4077 + babel-plugin-transform-remove-console@^6.9.4: 4078 + version "6.9.4" 4079 + resolved "https://registry.yarnpkg.com/babel-plugin-transform-remove-console/-/babel-plugin-transform-remove-console-6.9.4.tgz#b980360c067384e24b357a588d807d3c83527780" 4080 + integrity sha1-uYA2DAZzhOJLNXpYjYB9PINSd4A= 4081 + 4082 + babel-plugin-transform-remove-debugger@^6.9.4: 4083 + version "6.9.4" 4084 + resolved "https://registry.yarnpkg.com/babel-plugin-transform-remove-debugger/-/babel-plugin-transform-remove-debugger-6.9.4.tgz#42b727631c97978e1eb2d199a7aec84a18339ef2" 4085 + integrity sha1-QrcnYxyXl44estGZp67IShgznvI= 4086 + 4087 + babel-plugin-transform-remove-undefined@^0.5.0: 4088 + version "0.5.0" 4089 + resolved "https://registry.yarnpkg.com/babel-plugin-transform-remove-undefined/-/babel-plugin-transform-remove-undefined-0.5.0.tgz#80208b31225766c630c97fa2d288952056ea22dd" 4090 + integrity sha512-+M7fJYFaEE/M9CXa0/IRkDbiV3wRELzA1kKQFCJ4ifhrzLKn/9VCCgj9OFmYWwBd8IB48YdgPkHYtbYq+4vtHQ== 4091 + dependencies: 4092 + babel-helper-evaluate-path "^0.5.0" 4093 + 4094 + babel-plugin-transform-simplify-comparison-operators@^6.9.4: 4095 + version "6.9.4" 4096 + resolved "https://registry.yarnpkg.com/babel-plugin-transform-simplify-comparison-operators/-/babel-plugin-transform-simplify-comparison-operators-6.9.4.tgz#f62afe096cab0e1f68a2d753fdf283888471ceb9" 4097 + integrity sha1-9ir+CWyrDh9ootdT/fKDiIRxzrk= 4098 + 4099 + babel-plugin-transform-undefined-to-void@^6.9.4: 4100 + version "6.9.4" 4101 + resolved "https://registry.yarnpkg.com/babel-plugin-transform-undefined-to-void/-/babel-plugin-transform-undefined-to-void-6.9.4.tgz#be241ca81404030678b748717322b89d0c8fe280" 4102 + integrity sha1-viQcqBQEAwZ4t0hxcyK4nQyP4oA= 3027 4103 3028 4104 babel-plugin-universal-import@^4.0.0: 3029 4105 version "4.0.2" ··· 3057 4133 babel-plugin-jest-hoist "^26.2.0" 3058 4134 babel-preset-current-node-syntax "^0.1.3" 3059 4135 4136 + "babel-preset-minify@^0.5.0 || 0.6.0-alpha.5": 4137 + version "0.5.1" 4138 + resolved "https://registry.yarnpkg.com/babel-preset-minify/-/babel-preset-minify-0.5.1.tgz#25f5d0bce36ec818be80338d0e594106e21eaa9f" 4139 + integrity sha512-1IajDumYOAPYImkHbrKeiN5AKKP9iOmRoO2IPbIuVp0j2iuCcj0n7P260z38siKMZZ+85d3mJZdtW8IgOv+Tzg== 4140 + dependencies: 4141 + babel-plugin-minify-builtins "^0.5.0" 4142 + babel-plugin-minify-constant-folding "^0.5.0" 4143 + babel-plugin-minify-dead-code-elimination "^0.5.1" 4144 + babel-plugin-minify-flip-comparisons "^0.4.3" 4145 + babel-plugin-minify-guarded-expressions "^0.4.4" 4146 + babel-plugin-minify-infinity "^0.4.3" 4147 + babel-plugin-minify-mangle-names "^0.5.0" 4148 + babel-plugin-minify-numeric-literals "^0.4.3" 4149 + babel-plugin-minify-replace "^0.5.0" 4150 + babel-plugin-minify-simplify "^0.5.1" 4151 + babel-plugin-minify-type-constructors "^0.4.3" 4152 + babel-plugin-transform-inline-consecutive-adds "^0.4.3" 4153 + babel-plugin-transform-member-expression-literals "^6.9.4" 4154 + babel-plugin-transform-merge-sibling-variables "^6.9.4" 4155 + babel-plugin-transform-minify-booleans "^6.9.4" 4156 + babel-plugin-transform-property-literals "^6.9.4" 4157 + babel-plugin-transform-regexp-constructors "^0.4.3" 4158 + babel-plugin-transform-remove-console "^6.9.4" 4159 + babel-plugin-transform-remove-debugger "^6.9.4" 4160 + babel-plugin-transform-remove-undefined "^0.5.0" 4161 + babel-plugin-transform-simplify-comparison-operators "^6.9.4" 4162 + babel-plugin-transform-undefined-to-void "^6.9.4" 4163 + lodash "^4.17.11" 4164 + 3060 4165 babel-runtime@^6.26.0: 3061 4166 version "6.26.0" 3062 4167 resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" ··· 3108 4213 mixin-deep "^1.2.0" 3109 4214 pascalcase "^0.1.1" 3110 4215 4216 + batch-processor@1.0.0: 4217 + version "1.0.0" 4218 + resolved "https://registry.yarnpkg.com/batch-processor/-/batch-processor-1.0.0.tgz#75c95c32b748e0850d10c2b168f6bdbe9891ace8" 4219 + integrity sha1-dclcMrdI4IUNEMKxaPa9vpiRrOg= 4220 + 3111 4221 batch@0.6.1: 3112 4222 version "0.6.1" 3113 4223 resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16" ··· 3127 4237 dependencies: 3128 4238 callsite "1.0.0" 3129 4239 4240 + better-opn@^2.0.0: 4241 + version "2.0.0" 4242 + resolved "https://registry.yarnpkg.com/better-opn/-/better-opn-2.0.0.tgz#c70d198e51164bdc220306a28a885d9ac7a14c44" 4243 + integrity sha512-PPbGRgO/K0LowMHbH/JNvaV3qY3Vt+A2nH28fzJxy16h/DfR5OsVti6ldGl6S9SMsyUqT13sltikiAVtI6tKLA== 4244 + dependencies: 4245 + open "^7.0.3" 4246 + 3130 4247 better-path-resolve@1.0.0: 3131 4248 version "1.0.0" 3132 4249 resolved "https://registry.yarnpkg.com/better-path-resolve/-/better-path-resolve-1.0.0.tgz#13a35a1104cdd48a7b74bf8758f96a1ee613f99d" ··· 3200 4317 dependencies: 3201 4318 inherits "~2.0.0" 3202 4319 3203 - bluebird@^3.5.5: 4320 + bluebird@^3.3.5, bluebird@^3.5.5: 3204 4321 version "3.7.2" 3205 4322 resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" 3206 4323 integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== ··· 3261 4378 term-size "^1.2.0" 3262 4379 widest-line "^2.0.0" 3263 4380 4381 + boxen@^4.1.0: 4382 + version "4.2.0" 4383 + resolved "https://registry.yarnpkg.com/boxen/-/boxen-4.2.0.tgz#e411b62357d6d6d36587c8ac3d5d974daa070e64" 4384 + integrity sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ== 4385 + dependencies: 4386 + ansi-align "^3.0.0" 4387 + camelcase "^5.3.1" 4388 + chalk "^3.0.0" 4389 + cli-boxes "^2.2.0" 4390 + string-width "^4.1.0" 4391 + term-size "^2.1.0" 4392 + type-fest "^0.8.1" 4393 + widest-line "^3.1.0" 4394 + 3264 4395 brace-expansion@^1.1.7: 3265 4396 version "1.1.11" 3266 4397 resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" ··· 3376 4507 integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA== 3377 4508 dependencies: 3378 4509 pako "~1.0.5" 4510 + 4511 + browserslist@4.10.0: 4512 + version "4.10.0" 4513 + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.10.0.tgz#f179737913eaf0d2b98e4926ac1ca6a15cbcc6a9" 4514 + integrity sha512-TpfK0TDgv71dzuTsEAlQiHeWQ/tiPqgNZVdv046fvNtBZrjbv2O3TsWCDU0AWGJJKCF/KsjNdLzR9hXOsh/CfA== 4515 + dependencies: 4516 + caniuse-lite "^1.0.30001035" 4517 + electron-to-chromium "^1.3.378" 4518 + node-releases "^1.1.52" 4519 + pkg-up "^3.1.0" 3379 4520 3380 4521 browserslist@4.13.0: 3381 4522 version "4.13.0" ··· 3544 4685 unique-filename "^1.1.1" 3545 4686 y18n "^4.0.0" 3546 4687 4688 + cacache@^15.0.5: 4689 + version "15.0.5" 4690 + resolved "https://registry.yarnpkg.com/cacache/-/cacache-15.0.5.tgz#69162833da29170d6732334643c60e005f5f17d0" 4691 + integrity sha512-lloiL22n7sOjEEXdL8NAjTgv9a1u43xICE9/203qonkZUCj5X1UEWIdf2/Y0d6QcCtMzbKQyhrcDbdvlZTs/+A== 4692 + dependencies: 4693 + "@npmcli/move-file" "^1.0.1" 4694 + chownr "^2.0.0" 4695 + fs-minipass "^2.0.0" 4696 + glob "^7.1.4" 4697 + infer-owner "^1.0.4" 4698 + lru-cache "^6.0.0" 4699 + minipass "^3.1.1" 4700 + minipass-collect "^1.0.2" 4701 + minipass-flush "^1.0.5" 4702 + minipass-pipeline "^1.2.2" 4703 + mkdirp "^1.0.3" 4704 + p-map "^4.0.0" 4705 + promise-inflight "^1.0.1" 4706 + rimraf "^3.0.2" 4707 + ssri "^8.0.0" 4708 + tar "^6.0.2" 4709 + unique-filename "^1.1.1" 4710 + 3547 4711 cache-base@^1.0.1: 3548 4712 version "1.0.1" 3549 4713 resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" ··· 3571 4735 lowercase-keys "1.0.0" 3572 4736 normalize-url "2.0.1" 3573 4737 responselike "1.0.2" 4738 + 4739 + call-me-maybe@^1.0.1: 4740 + version "1.0.1" 4741 + resolved "https://registry.yarnpkg.com/call-me-maybe/-/call-me-maybe-1.0.1.tgz#26d208ea89e37b5cbde60250a15f031c16a4d66b" 4742 + integrity sha1-JtII6onje1y95gJQoV8DHBak1ms= 3574 4743 3575 4744 caller-callsite@^2.0.0: 3576 4745 version "2.0.0" ··· 3609 4778 no-case "^2.2.0" 3610 4779 upper-case "^1.1.1" 3611 4780 4781 + camel-case@^4.1.1: 4782 + version "4.1.1" 4783 + resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.1.tgz#1fc41c854f00e2f7d0139dfeba1542d6896fe547" 4784 + integrity sha512-7fa2WcG4fYFkclIvEmxBbTvmibwF2/agfEBc6q3lOpVu0A13ltLsA+Hr/8Hp6kp5f+G7hKi6t8lys6XxP+1K6Q== 4785 + dependencies: 4786 + pascal-case "^3.1.1" 4787 + tslib "^1.10.0" 4788 + 3612 4789 camelcase-css@2.0.1: 3613 4790 version "2.0.1" 3614 4791 resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" ··· 3658 4835 lodash.memoize "^4.1.2" 3659 4836 lodash.uniq "^4.5.0" 3660 4837 3661 - caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001093, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001113, caniuse-lite@^1.0.30001124: 3662 - version "1.0.30001124" 3663 - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001124.tgz#5d9998190258e11630d674fc50ea8e579ae0ced2" 3664 - integrity sha512-zQW8V3CdND7GHRH6rxm6s59Ww4g/qGWTheoboW9nfeMg7sUoopIfKCcNZUjwYRCOrvereh3kwDpZj4VLQ7zGtA== 4838 + caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001035, caniuse-lite@^1.0.30001093, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001113, caniuse-lite@^1.0.30001124: 4839 + version "1.0.30001131" 4840 + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001131.tgz#afad8a28fc2b7a0d3ae9407e71085a0ead905d54" 4841 + integrity sha512-4QYi6Mal4MMfQMSqGIRPGbKIbZygeN83QsWq1ixpUwvtfgAZot5BrCKzGygvZaV+CnELdTwD0S4cqUNozq7/Cw== 3665 4842 3666 4843 capture-exit@^2.0.0: 3667 4844 version "2.0.0" ··· 3704 4881 escape-string-regexp "^1.0.5" 3705 4882 supports-color "^5.3.0" 3706 4883 3707 - chalk@2.x, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.4.1, chalk@^2.4.2: 4884 + chalk@2.4.2, chalk@2.x, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.2, chalk@^2.4.1, chalk@^2.4.2: 3708 4885 version "2.4.2" 3709 4886 resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 3710 4887 integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== ··· 3721 4898 ansi-styles "^4.1.0" 3722 4899 supports-color "^7.1.0" 3723 4900 4901 + chalk@^1.1.3: 4902 + version "1.1.3" 4903 + resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 4904 + integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= 4905 + dependencies: 4906 + ansi-styles "^2.2.1" 4907 + escape-string-regexp "^1.0.2" 4908 + has-ansi "^2.0.0" 4909 + strip-ansi "^3.0.0" 4910 + supports-color "^2.0.0" 4911 + 3724 4912 chalk@^3.0.0: 3725 4913 version "3.0.0" 3726 4914 resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" ··· 3803 4991 optionalDependencies: 3804 4992 fsevents "^1.2.7" 3805 4993 3806 - chokidar@^3.0.2, chokidar@^3.4.1: 4994 + chokidar@^3.0.2, chokidar@^3.3.0, chokidar@^3.4.1: 3807 4995 version "3.4.2" 3808 4996 resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.2.tgz#38dc8e658dec3809741eb3ef7bb0a47fe424232d" 3809 4997 integrity sha512-IZHaDeBeI+sZJRX7lGcXsdzgvZqKv6sECqsbErJA4mHWfpRrD8B97kSFN4cQz6nGBGiuFia1MKR4d6c1o8Cv7A== ··· 3822 5010 version "1.1.4" 3823 5011 resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" 3824 5012 integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== 5013 + 5014 + chownr@^2.0.0: 5015 + version "2.0.0" 5016 + resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" 5017 + integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== 3825 5018 3826 5019 chrome-trace-event@^1.0.2: 3827 5020 version "1.0.2" ··· 3858 5051 isobject "^3.0.0" 3859 5052 static-extend "^0.1.1" 3860 5053 3861 - classnames@2.2.6: 5054 + classnames@2.2.6, classnames@^2.2.5: 3862 5055 version "2.2.6" 3863 5056 resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.2.6.tgz#43935bffdd291f326dad0a205309b38d00f650ce" 3864 5057 integrity sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q== 3865 5058 3866 - clean-css@4.2.x: 5059 + clean-css@4.2.x, clean-css@^4.2.3: 3867 5060 version "4.2.3" 3868 5061 resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.3.tgz#507b5de7d97b48ee53d84adb0160ff6216380f78" 3869 5062 integrity sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA== ··· 3880 5073 resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 3881 5074 integrity sha1-T6kXw+WclKAEzWH47lCdplFocUM= 3882 5075 5076 + cli-boxes@^2.2.0: 5077 + version "2.2.1" 5078 + resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.1.tgz#ddd5035d25094fce220e9cab40a45840a440318f" 5079 + integrity sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw== 5080 + 3883 5081 cli-cursor@^2.1.0: 3884 5082 version "2.1.0" 3885 5083 resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" ··· 3894 5092 dependencies: 3895 5093 restore-cursor "^3.1.0" 3896 5094 5095 + cli-table3@0.6.0: 5096 + version "0.6.0" 5097 + resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.0.tgz#b7b1bc65ca8e7b5cef9124e13dc2b21e2ce4faee" 5098 + integrity sha512-gnB85c3MGC7Nm9I/FkiasNBOKjOiO1RNuXXarQms37q4QMpWdlbBgD/VnOStA2faG1dpXMv31RFApjX1/QdgWQ== 5099 + dependencies: 5100 + object-assign "^4.1.0" 5101 + string-width "^4.2.0" 5102 + optionalDependencies: 5103 + colors "^1.1.2" 5104 + 3897 5105 cli-table3@^0.5.1: 3898 5106 version "0.5.1" 3899 5107 resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.5.1.tgz#0252372d94dfc40dbd8df06005f48f31f656f202" ··· 3917 5125 resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48" 3918 5126 integrity sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw== 3919 5127 5128 + cli-width@^3.0.0: 5129 + version "3.0.0" 5130 + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6" 5131 + integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== 5132 + 5133 + clipboard@^2.0.0: 5134 + version "2.0.6" 5135 + resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.6.tgz#52921296eec0fdf77ead1749421b21c968647376" 5136 + integrity sha512-g5zbiixBRk/wyKakSwCKd7vQXDjFnAMGHoEyBogG/bw9kTD9GvdAvaoRR1ALcEzt3pVKxZR0pViekPMIS0QyGg== 5137 + dependencies: 5138 + good-listener "^1.2.2" 5139 + select "^1.1.2" 5140 + tiny-emitter "^2.0.0" 5141 + 3920 5142 clipboardy@1.2.3: 3921 5143 version "1.2.3" 3922 5144 resolved "https://registry.yarnpkg.com/clipboardy/-/clipboardy-1.2.3.tgz#0526361bf78724c1f20be248d428e365433c07ef" ··· 3947 5169 version "1.0.0" 3948 5170 resolved "https://registry.yarnpkg.com/clone-buffer/-/clone-buffer-1.0.0.tgz#e3e25b207ac4e701af721e2cb5a16792cac3dc58" 3949 5171 integrity sha1-4+JbIHrE5wGvch4staFnksrD3Fg= 5172 + 5173 + clone-deep@^0.2.4: 5174 + version "0.2.4" 5175 + resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-0.2.4.tgz#4e73dd09e9fb971cc38670c5dced9c1896481cc6" 5176 + integrity sha1-TnPdCen7lxzDhnDF3O2cGJZIHMY= 5177 + dependencies: 5178 + for-own "^0.1.3" 5179 + is-plain-object "^2.0.1" 5180 + kind-of "^3.0.2" 5181 + lazy-cache "^1.0.3" 5182 + shallow-clone "^0.1.2" 3950 5183 3951 5184 clone-deep@^4.0.1: 3952 5185 version "4.0.1" ··· 4002 5235 chalk "^2.4.1" 4003 5236 q "^1.1.2" 4004 5237 5238 + code-point-at@^1.0.0: 5239 + version "1.1.0" 5240 + resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 5241 + integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= 5242 + 4005 5243 collapse-white-space@^1.0.0, collapse-white-space@^1.0.2: 4006 5244 version "1.0.6" 4007 5245 resolved "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-1.0.6.tgz#e63629c0016665792060dbbeb79c42239d2c5287" ··· 4097 5335 resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" 4098 5336 integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== 4099 5337 4100 - commander@^4.0.0, commander@^4.0.1: 5338 + commander@^4.0.0, commander@^4.0.1, commander@^4.1.1: 4101 5339 version "4.1.1" 4102 5340 resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" 4103 5341 integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== 5342 + 5343 + commander@^5.0.0: 5344 + version "5.1.0" 5345 + resolved "https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz#46abbd1652f8e059bddaef99bbdcb2ad9cf179ae" 5346 + integrity sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg== 4104 5347 4105 5348 commander@^6.0.0: 4106 5349 version "6.1.0" ··· 4215 5458 resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336" 4216 5459 integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA== 4217 5460 5461 + console-control-strings@^1.0.0, console-control-strings@~1.1.0: 5462 + version "1.1.0" 5463 + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 5464 + integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= 5465 + 4218 5466 constants-browserify@^1.0.0: 4219 5467 version "1.0.0" 4220 5468 resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" ··· 4242 5490 resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" 4243 5491 integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== 4244 5492 4245 - convert-source-map@1.7.0, convert-source-map@^1.1.0, convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: 5493 + convert-source-map@1.7.0, convert-source-map@^1.1.0, convert-source-map@^1.4.0, convert-source-map@^1.5.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: 4246 5494 version "1.7.0" 4247 5495 resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" 4248 5496 integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== ··· 4286 5534 resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 4287 5535 integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= 4288 5536 5537 + copy-to-clipboard@^3.0.8: 5538 + version "3.3.1" 5539 + resolved "https://registry.yarnpkg.com/copy-to-clipboard/-/copy-to-clipboard-3.3.1.tgz#115aa1a9998ffab6196f93076ad6da3b913662ae" 5540 + integrity sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw== 5541 + dependencies: 5542 + toggle-selection "^1.0.6" 5543 + 4289 5544 core-js-compat@^3.6.2: 4290 5545 version "3.6.5" 4291 5546 resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.6.5.tgz#2a51d9a4e25dfd6e690251aa81f99e3c05481f1c" ··· 4294 5549 browserslist "^4.8.5" 4295 5550 semver "7.0.0" 4296 5551 4297 - core-js-pure@^3.0.0: 5552 + core-js-pure@^3.0.0, core-js-pure@^3.0.1: 4298 5553 version "3.6.5" 4299 5554 resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.6.5.tgz#c79e75f5e38dbc85a662d91eea52b8256d53b813" 4300 5555 integrity sha512-lacdXOimsiD0QyNf9BC/mxivNJ/ybBGJXQFKzRekp1WTHoVUWsUHEn+2T8GJAzzIhyOuXA+gOxCVN3l+5PLPUA== ··· 4303 5558 version "2.6.11" 4304 5559 resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c" 4305 5560 integrity sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg== 5561 + 5562 + core-js@^3.0.1, core-js@^3.0.4, core-js@^3.6.5: 5563 + version "3.6.5" 5564 + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.6.5.tgz#7395dc273af37fb2e50e9bd3d9fe841285231d1a" 5565 + integrity sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA== 4306 5566 4307 5567 core-util-is@1.0.2, core-util-is@~1.0.0: 4308 5568 version "1.0.2" ··· 4380 5640 safe-buffer "^5.0.1" 4381 5641 sha.js "^2.4.8" 4382 5642 4383 - create-react-context@0.3.0: 5643 + create-react-context@0.3.0, create-react-context@^0.3.0: 4384 5644 version "0.3.0" 4385 5645 resolved "https://registry.yarnpkg.com/create-react-context/-/create-react-context-0.3.0.tgz#546dede9dc422def0d3fc2fe03afe0bc0f4f7d8c" 4386 5646 integrity sha512-dNldIoSuNSvlTJ7slIKC/ZFGKexBMBrrcc+TTe1NdmROnaASuLPvqpwj9v4XS4uXZ8+YPu0sNmShX2rXI5LNsw== ··· 4394 5654 integrity sha512-FFLcLtraisj5eteosnX1gf01qYDCOc4fDy0+euOt8Kn9YBY2NtXL/pCoYPavw24NIQkQqm5ZOLsGD5Zzj0gyew== 4395 5655 dependencies: 4396 5656 node-fetch "2.6.0" 5657 + 5658 + cross-spawn@7.0.1: 5659 + version "7.0.1" 5660 + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.1.tgz#0ab56286e0f7c24e153d04cc2aa027e43a9a5d14" 5661 + integrity sha512-u7v4o84SwFpD32Z8IIcPZ6z1/ie24O6RU3RbtL5Y316l3KuHVPx9ItBgWQ6VlfAFnRnTtMUrsQ9MUUTuEZjogg== 5662 + dependencies: 5663 + path-key "^3.1.0" 5664 + shebang-command "^2.0.0" 5665 + which "^2.0.1" 4397 5666 4398 5667 cross-spawn@^5.0.1, cross-spawn@^5.1.0: 4399 5668 version "5.1.0" ··· 4495 5764 postcss-value-parser "^3.3.0" 4496 5765 schema-utils "^1.0.0" 4497 5766 5767 + css-loader@^3.5.3: 5768 + version "3.6.0" 5769 + resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.6.0.tgz#2e4b2c7e6e2d27f8c8f28f61bffcd2e6c91ef645" 5770 + integrity sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ== 5771 + dependencies: 5772 + camelcase "^5.3.1" 5773 + cssesc "^3.0.0" 5774 + icss-utils "^4.1.1" 5775 + loader-utils "^1.2.3" 5776 + normalize-path "^3.0.0" 5777 + postcss "^7.0.32" 5778 + postcss-modules-extract-imports "^2.0.0" 5779 + postcss-modules-local-by-default "^3.0.2" 5780 + postcss-modules-scope "^2.2.0" 5781 + postcss-modules-values "^3.0.0" 5782 + postcss-value-parser "^4.1.0" 5783 + schema-utils "^2.7.0" 5784 + semver "^6.3.0" 5785 + 4498 5786 css-select-base-adapter@^0.1.1: 4499 5787 version "0.1.1" 4500 5788 resolved "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz#3b2ff4972cc362ab88561507a95408a1432135d7" ··· 4703 5991 dependencies: 4704 5992 cssom "~0.3.6" 4705 5993 5994 + csstype@^2.5.7: 5995 + version "2.6.13" 5996 + resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.13.tgz#a6893015b90e84dd6e85d0e3b442a1e84f2dbe0f" 5997 + integrity sha512-ul26pfSQTZW8dcOnD2iiJssfXw0gdNVX9IJDH/X3K5DGPfj+fUYe3kB+swUY6BF3oZDxaID3AJt+9/ojSAE05A== 5998 + 4706 5999 csstype@^3.0.2: 4707 6000 version "3.0.3" 4708 6001 resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.3.tgz#2b410bbeba38ba9633353aff34b05d9755d065f8" ··· 4786 6079 resolved "https://registry.yarnpkg.com/dataloader/-/dataloader-1.4.0.tgz#bca11d867f5d3f1b9ed9f737bd15970c65dff5c8" 4787 6080 integrity sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw== 4788 6081 4789 - debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.9: 6082 + debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.9: 4790 6083 version "2.6.9" 4791 6084 resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 4792 6085 integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== ··· 4807 6100 dependencies: 4808 6101 ms "2.0.0" 4809 6102 4810 - debug@^3.1.1, debug@^3.2.5: 6103 + debug@^3.0.0, debug@^3.1.1, debug@^3.2.5: 4811 6104 version "3.2.6" 4812 6105 resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" 4813 6106 integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== ··· 4922 6215 which-collection "^1.0.1" 4923 6216 which-typed-array "^1.1.2" 4924 6217 4925 - deep-equal@^1.0.1: 6218 + deep-equal@^1.0.1, deep-equal@^1.1.1: 4926 6219 version "1.1.1" 4927 6220 resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.1.1.tgz#b5c98c942ceffaf7cb051e24e1434a25a2e6076a" 4928 6221 integrity sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g== ··· 4944 6237 resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 4945 6238 integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= 4946 6239 6240 + deep-object-diff@^1.1.0: 6241 + version "1.1.0" 6242 + resolved "https://registry.yarnpkg.com/deep-object-diff/-/deep-object-diff-1.1.0.tgz#d6fabf476c2ed1751fc94d5ca693d2ed8c18bc5a" 6243 + integrity sha512-b+QLs5vHgS+IoSNcUE4n9HP2NwcHj7aqnJWsjPtuG75Rh5TOaGt0OjAYInh77d5T16V5cRDC+Pw/6ZZZiETBGw== 6244 + 4947 6245 deepmerge@^4.2.2: 4948 6246 version "4.2.2" 4949 6247 resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" ··· 5010 6308 version "1.0.0" 5011 6309 resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 5012 6310 integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= 6311 + 6312 + delegate@^3.1.2: 6313 + version "3.2.0" 6314 + resolved "https://registry.yarnpkg.com/delegate/-/delegate-3.2.0.tgz#b66b71c3158522e8ab5744f720d8ca0c2af59166" 6315 + integrity sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw== 6316 + 6317 + delegates@^1.0.0: 6318 + version "1.0.0" 6319 + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 6320 + integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= 5013 6321 5014 6322 depd@~1.1.2: 5015 6323 version "1.1.2" ··· 5051 6359 resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.4.tgz#014ee8f8f669c5c58023da64b8179c083a28c46c" 5052 6360 integrity sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw== 5053 6361 6362 + detect-port-alt@1.1.6: 6363 + version "1.1.6" 6364 + resolved "https://registry.yarnpkg.com/detect-port-alt/-/detect-port-alt-1.1.6.tgz#24707deabe932d4a3cf621302027c2b266568275" 6365 + integrity sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q== 6366 + dependencies: 6367 + address "^1.0.1" 6368 + debug "^2.6.0" 6369 + 6370 + detect-port@^1.3.0: 6371 + version "1.3.0" 6372 + resolved "https://registry.yarnpkg.com/detect-port/-/detect-port-1.3.0.tgz#d9c40e9accadd4df5cac6a782aefd014d573d1f1" 6373 + integrity sha512-E+B1gzkl2gqxt1IhUzwjrxBKRqx1UzC3WLONHinn8S3T6lwV/agVCyitiFOsGJ/eYuEUBvD71MZHy3Pv1G9doQ== 6374 + dependencies: 6375 + address "^1.0.1" 6376 + debug "^2.6.0" 6377 + 5054 6378 diff-sequences@^25.2.6: 5055 6379 version "25.2.6" 5056 6380 resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-25.2.6.tgz#5f467c00edd35352b7bca46d7927d60e687a76dd" ··· 5076 6400 integrity sha512-r5Cb8jvJ9YOTKQje2wrD6ncjpyDM4l94+OqgatYNzTb0viKS0/XomCjty1+F827u1pBiPt1ubSYdowZfE1L5Tw== 5077 6401 dependencies: 5078 6402 rewrite-imports "^2.0.3" 6403 + 6404 + dir-glob@2.0.0: 6405 + version "2.0.0" 6406 + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.0.0.tgz#0b205d2b6aef98238ca286598a8204d29d0a0034" 6407 + integrity sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag== 6408 + dependencies: 6409 + arrify "^1.0.1" 6410 + path-type "^3.0.0" 5079 6411 5080 6412 dir-glob@^3.0.1: 5081 6413 version "3.0.1" ··· 5248 6580 domelementtype "^2.0.1" 5249 6581 domhandler "^3.0.0" 5250 6582 6583 + dot-case@^3.0.3: 6584 + version "3.0.3" 6585 + resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.3.tgz#21d3b52efaaba2ea5fda875bb1aa8124521cf4aa" 6586 + integrity sha512-7hwEmg6RiSQfm/GwPL4AAWXKy3YNNZA3oFv2Pdiey0mwkRCPZ9x6SZbkLcn8Ma5PYeVokzoD4Twv2n7LKp5WeA== 6587 + dependencies: 6588 + no-case "^3.0.3" 6589 + tslib "^1.10.0" 6590 + 5251 6591 dot-prop@^5.2.0: 5252 6592 version "5.3.0" 5253 6593 resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" ··· 5255 6595 dependencies: 5256 6596 is-obj "^2.0.0" 5257 6597 5258 - dotenv@^8.2.0: 6598 + dotenv-defaults@^1.0.2: 6599 + version "1.1.1" 6600 + resolved "https://registry.yarnpkg.com/dotenv-defaults/-/dotenv-defaults-1.1.1.tgz#032c024f4b5906d9990eb06d722dc74cc60ec1bd" 6601 + integrity sha512-6fPRo9o/3MxKvmRZBD3oNFdxODdhJtIy1zcJeUSCs6HCy4tarUpd+G67UTU9tF6OWXeSPqsm4fPAB+2eY9Rt9Q== 6602 + dependencies: 6603 + dotenv "^6.2.0" 6604 + 6605 + dotenv-expand@^5.1.0: 6606 + version "5.1.0" 6607 + resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-5.1.0.tgz#3fbaf020bfd794884072ea26b1e9791d45a629f0" 6608 + integrity sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA== 6609 + 6610 + dotenv-webpack@^1.7.0: 6611 + version "1.8.0" 6612 + resolved "https://registry.yarnpkg.com/dotenv-webpack/-/dotenv-webpack-1.8.0.tgz#7ca79cef2497dd4079d43e81e0796bc9d0f68a5e" 6613 + integrity sha512-o8pq6NLBehtrqA8Jv8jFQNtG9nhRtVqmoD4yWbgUyoU3+9WBlPe+c2EAiaJok9RB28QvrWvdWLZGeTT5aATDMg== 6614 + dependencies: 6615 + dotenv-defaults "^1.0.2" 6616 + 6617 + dotenv@^6.2.0: 6618 + version "6.2.0" 6619 + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-6.2.0.tgz#941c0410535d942c8becf28d3f357dbd9d476064" 6620 + integrity sha512-HygQCKUBSFl8wKQZBSemMywRWcEDNidvNbjGVyZu3nbZ8qq9ubiPoGLMdRDpfSrpkkm9BXYFkpKxxFX38o/76w== 6621 + 6622 + dotenv@^8.0.0, dotenv@^8.2.0: 5259 6623 version "8.2.0" 5260 6624 resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.2.0.tgz#97e619259ada750eea3e4ea3e26bceea5424b16a" 5261 6625 integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw== ··· 5325 6689 resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.7.4.tgz#48661287573dcc53e366c7a1ae52c3a120eec9ba" 5326 6690 integrity sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA== 5327 6691 5328 - electron-to-chromium@^1.3.488, electron-to-chromium@^1.3.562: 5329 - version "1.3.562" 5330 - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.562.tgz#79c20277ee1c8d0173a22af00e38433b752bc70f" 5331 - integrity sha512-WhRe6liQ2q/w1MZc8mD8INkenHivuHdrr4r5EQHNomy3NJux+incP6M6lDMd0paShP3MD0WGe5R1TWmEClf+Bg== 6692 + ejs@^3.1.2: 6693 + version "3.1.5" 6694 + resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.5.tgz#aed723844dc20acb4b170cd9ab1017e476a0d93b" 6695 + integrity sha512-dldq3ZfFtgVTJMLjOe+/3sROTzALlL9E34V4/sDtUd/KlBSS0s6U1/+WPE1B4sj9CXHJpL1M6rhNJnc9Wbal9w== 6696 + dependencies: 6697 + jake "^10.6.1" 6698 + 6699 + electron-to-chromium@^1.3.378, electron-to-chromium@^1.3.488, electron-to-chromium@^1.3.562: 6700 + version "1.3.570" 6701 + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.570.tgz#3f5141cc39b4e3892a276b4889980dabf1d29c7f" 6702 + integrity sha512-Y6OCoVQgFQBP5py6A/06+yWxUZHDlNr/gNDGatjH8AZqXl8X0tE4LfjLJsXGz/JmWJz8a6K7bR1k+QzZ+k//fg== 6703 + 6704 + element-resize-detector@^1.2.1: 6705 + version "1.2.1" 6706 + resolved "https://registry.yarnpkg.com/element-resize-detector/-/element-resize-detector-1.2.1.tgz#b0305194447a4863155e58f13323a0aef30851d1" 6707 + integrity sha512-BdFsPepnQr9fznNPF9nF4vQ457U/ZJXQDSNF1zBe7yaga8v9AdZf3/NElYxFdUh7SitSGt040QygiTo6dtatIw== 6708 + dependencies: 6709 + batch-processor "1.0.0" 5332 6710 5333 6711 elliptic@^6.5.3: 5334 6712 version "6.5.3" ··· 5372 6750 version "3.0.0" 5373 6751 resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" 5374 6752 integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== 6753 + 6754 + emotion-theming@^10.0.19: 6755 + version "10.0.27" 6756 + resolved "https://registry.yarnpkg.com/emotion-theming/-/emotion-theming-10.0.27.tgz#1887baaec15199862c89b1b984b79806f2b9ab10" 6757 + integrity sha512-MlF1yu/gYh8u+sLUqA0YuA9JX0P4Hb69WlKc/9OLo+WCXuX6sy/KoIa+qJimgmr2dWqnypYKYPX37esjDBbhdw== 6758 + dependencies: 6759 + "@babel/runtime" "^7.5.5" 6760 + "@emotion/weak-memoize" "0.2.5" 6761 + hoist-non-react-statics "^3.3.0" 5375 6762 5376 6763 encodeurl@~1.0.2: 5377 6764 version "1.0.2" ··· 5385 6772 dependencies: 5386 6773 once "^1.4.0" 5387 6774 6775 + endent@^2.0.1: 6776 + version "2.0.1" 6777 + resolved "https://registry.yarnpkg.com/endent/-/endent-2.0.1.tgz#fb18383a3f37ae3213a5d9f6c4a880d1061eb4c5" 6778 + integrity sha512-mADztvcC+vCk4XEZaCz6xIPO2NHQuprv5CAEjuVAu6aZwqAj7nVNlMyl1goPFYqCCpS2OJV9jwpumJLkotZrNw== 6779 + dependencies: 6780 + dedent "^0.7.0" 6781 + fast-json-parse "^1.0.3" 6782 + objectorarray "^1.0.4" 6783 + 5388 6784 engine.io-client@~3.4.0: 5389 6785 version "3.4.3" 5390 6786 resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-3.4.3.tgz#192d09865403e3097e3575ebfeb3861c4d01a66c" ··· 5441 6837 dependencies: 5442 6838 ansi-colors "^4.1.1" 5443 6839 5444 - entities@^1.1.1, entities@~1.1.1: 6840 + entities@^1.1.1, entities@^1.1.2, entities@~1.1.1: 5445 6841 version "1.1.2" 5446 6842 resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" 5447 6843 integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== ··· 5528 6924 dependencies: 5529 6925 is-arrayish "^0.2.1" 5530 6926 5531 - es-abstract@^1.17.0, es-abstract@^1.17.0-next.1, es-abstract@^1.17.2, es-abstract@^1.17.4, es-abstract@^1.17.5: 6927 + es-abstract@^1.17.0, es-abstract@^1.17.0-next.0, es-abstract@^1.17.0-next.1, es-abstract@^1.17.2, es-abstract@^1.17.4, es-abstract@^1.17.5: 5532 6928 version "1.17.6" 5533 6929 resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.6.tgz#9142071707857b2cacc7b89ecb670316c3e2d52a" 5534 6930 integrity sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw== ··· 5563 6959 string.prototype.trimend "^1.0.1" 5564 6960 string.prototype.trimstart "^1.0.1" 5565 6961 5566 - es-get-iterator@^1.1.0: 6962 + es-array-method-boxes-properly@^1.0.0: 6963 + version "1.0.0" 6964 + resolved "https://registry.yarnpkg.com/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz#873f3e84418de4ee19c5be752990b2e44718d09e" 6965 + integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA== 6966 + 6967 + es-get-iterator@^1.0.2, es-get-iterator@^1.1.0: 5567 6968 version "1.1.0" 5568 6969 resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.0.tgz#bb98ad9d6d63b31aacdc8f89d5d0ee57bcb5b4c8" 5569 6970 integrity sha512-UfrmHuWQlNMTs35e1ypnvikg6jCz3SK8v8ImvmDsh36fCVUR1MqoFDiyn0/k52C8NqO3YsO8Oe0azeesNuqSsQ== ··· 5594 6995 es6-symbol "~3.1.3" 5595 6996 next-tick "~1.0.0" 5596 6997 6998 + es5-shim@^4.5.13: 6999 + version "4.5.14" 7000 + resolved "https://registry.yarnpkg.com/es5-shim/-/es5-shim-4.5.14.tgz#90009e1019d0ea327447cb523deaff8fe45697ef" 7001 + integrity sha512-7SwlpL+2JpymWTt8sNLuC2zdhhc+wrfe5cMPI2j0o6WsPdfAiPwmFy2f0AocPB4RQVBOZ9kNTgi5YF7TdhkvEg== 7002 + 5597 7003 es6-iterator@2.0.3, es6-iterator@~2.0.3: 5598 7004 version "2.0.3" 5599 7005 resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" ··· 5607 7013 version "1.1.0" 5608 7014 resolved "https://registry.yarnpkg.com/es6-object-assign/-/es6-object-assign-1.1.0.tgz#c2c3582656247c39ea107cb1e6652b6f9f24523c" 5609 7015 integrity sha1-wsNYJlYkfDnqEHyx5mUrb58kUjw= 7016 + 7017 + es6-shim@^0.35.5: 7018 + version "0.35.5" 7019 + resolved "https://registry.yarnpkg.com/es6-shim/-/es6-shim-0.35.5.tgz#46f59dc0a84a1c5029e8ff1166ca0a902077a9ab" 7020 + integrity sha512-E9kK/bjtCQRpN1K28Xh4BlmP8egvZBGJJ+9GtnzOwt7mdqtrjHFuVGr7QJfdjBIKqrlU5duPf3pCBoDrkjVYFg== 5610 7021 5611 7022 es6-symbol@^3.1.1, es6-symbol@~3.1.3: 5612 7023 version "3.1.3" ··· 5631 7042 resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 5632 7043 integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= 5633 7044 7045 + escape-string-regexp@2.0.0, escape-string-regexp@^2.0.0: 7046 + version "2.0.0" 7047 + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" 7048 + integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== 7049 + 5634 7050 escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 5635 7051 version "1.0.5" 5636 7052 resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 5637 7053 integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 5638 7054 5639 - escape-string-regexp@^2.0.0: 5640 - version "2.0.0" 5641 - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" 5642 - integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== 5643 - 5644 7055 escodegen@^1.14.1: 5645 7056 version "1.14.3" 5646 7057 resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503" ··· 5809 7220 acorn-jsx "^5.2.0" 5810 7221 eslint-visitor-keys "^1.3.0" 5811 7222 5812 - esprima@^4.0.0, esprima@^4.0.1: 7223 + esprima@^4.0.0, esprima@^4.0.1, esprima@~4.0.0: 5813 7224 version "4.0.1" 5814 7225 resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 5815 7226 integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== ··· 5987 7398 jest-message-util "^26.3.0" 5988 7399 jest-regex-util "^26.0.0" 5989 7400 5990 - express@^4.16.3, express@^4.17.1: 7401 + express@^4.16.3, express@^4.17.0, express@^4.17.1: 5991 7402 version "4.17.1" 5992 7403 resolved "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134" 5993 7404 integrity sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g== ··· 6139 7550 resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" 6140 7551 integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== 6141 7552 7553 + fast-glob@^2.0.2: 7554 + version "2.2.7" 7555 + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.7.tgz#6953857c3afa475fff92ee6015d52da70a4cd39d" 7556 + integrity sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw== 7557 + dependencies: 7558 + "@mrmlnc/readdir-enhanced" "^2.2.1" 7559 + "@nodelib/fs.stat" "^1.1.2" 7560 + glob-parent "^3.1.0" 7561 + is-glob "^4.0.0" 7562 + merge2 "^1.2.3" 7563 + micromatch "^3.1.10" 7564 + 6142 7565 fast-glob@^3.1.1: 6143 7566 version "3.2.4" 6144 7567 resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.4.tgz#d20aefbf99579383e7f3cc66529158c9b98554d3" ··· 6150 7573 merge2 "^1.3.0" 6151 7574 micromatch "^4.0.2" 6152 7575 picomatch "^2.2.1" 7576 + 7577 + fast-json-parse@^1.0.3: 7578 + version "1.0.3" 7579 + resolved "https://registry.yarnpkg.com/fast-json-parse/-/fast-json-parse-1.0.3.tgz#43e5c61ee4efa9265633046b770fb682a7577c4d" 7580 + integrity sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw== 6153 7581 6154 7582 fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0: 6155 7583 version "2.1.0" ··· 6175 7603 dependencies: 6176 7604 reusify "^1.0.4" 6177 7605 6178 - fault@^1.0.1: 7606 + fault@^1.0.1, fault@^1.0.2: 6179 7607 version "1.0.4" 6180 7608 resolved "https://registry.yarnpkg.com/fault/-/fault-1.0.4.tgz#eafcfc0a6d214fc94601e170df29954a4f842f13" 6181 7609 integrity sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA== ··· 6222 7650 dependencies: 6223 7651 escape-string-regexp "^1.0.5" 6224 7652 6225 - figures@^3.2.0: 7653 + figures@^3.0.0, figures@^3.2.0: 6226 7654 version "3.2.0" 6227 7655 resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" 6228 7656 integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== ··· 6244 7672 loader-utils "^1.0.2" 6245 7673 schema-utils "^1.0.0" 6246 7674 7675 + file-loader@^6.0.0: 7676 + version "6.1.0" 7677 + resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-6.1.0.tgz#65b9fcfb0ea7f65a234a1f10cdd7f1ab9a33f253" 7678 + integrity sha512-26qPdHyTsArQ6gU4P1HJbAbnFTyT2r0pG7czh1GFAd9TZbj0n94wWbupgixZH/ET/meqi2/5+F7DhW4OAXD+Lg== 7679 + dependencies: 7680 + loader-utils "^2.0.0" 7681 + schema-utils "^2.7.1" 7682 + 7683 + file-system-cache@^1.0.5: 7684 + version "1.0.5" 7685 + resolved "https://registry.yarnpkg.com/file-system-cache/-/file-system-cache-1.0.5.tgz#84259b36a2bbb8d3d6eb1021d3132ffe64cfff4f" 7686 + integrity sha1-hCWbNqK7uNPW6xAh0xMv/mTP/08= 7687 + dependencies: 7688 + bluebird "^3.3.5" 7689 + fs-extra "^0.30.0" 7690 + ramda "^0.21.0" 7691 + 6247 7692 file-type@^3.8.0: 6248 7693 version "3.9.0" 6249 7694 resolved "https://registry.yarnpkg.com/file-type/-/file-type-3.9.0.tgz#257a078384d1db8087bc449d107d52a52672b9e9" ··· 6274 7719 resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" 6275 7720 integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== 6276 7721 7722 + filelist@^1.0.1: 7723 + version "1.0.1" 7724 + resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.1.tgz#f10d1a3ae86c1694808e8f20906f43d4c9132dbb" 7725 + integrity sha512-8zSK6Nu0DQIC08mUC46sWGXi+q3GGpKydAG36k+JDba6VRpkevvOWUW5a/PhShij4+vHT9M+ghgG7eM+a9JDUQ== 7726 + dependencies: 7727 + minimatch "^3.0.4" 7728 + 6277 7729 filename-reserved-regex@^2.0.0: 6278 7730 version "2.0.0" 6279 7731 resolved "https://registry.yarnpkg.com/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz#abf73dfab735d045440abfea2d91f389ebbfa229" ··· 6287 7739 filename-reserved-regex "^2.0.0" 6288 7740 strip-outer "^1.0.0" 6289 7741 trim-repeated "^1.0.0" 7742 + 7743 + filesize@6.0.1: 7744 + version "6.0.1" 7745 + resolved "https://registry.yarnpkg.com/filesize/-/filesize-6.0.1.tgz#f850b509909c7c86f7e450ea19006c31c2ed3d2f" 7746 + integrity sha512-u4AYWPgbI5GBhs6id1KdImZWn5yfyFrrQ8OWZdN7ZMfA8Bf4HcO0BGo9bmUIEV8yrp8I1xVfJ/dn90GtFNNJcg== 6290 7747 6291 7748 filesize@^3.6.1: 6292 7749 version "3.6.1" ··· 6341 7798 make-dir "^2.0.0" 6342 7799 pkg-dir "^3.0.0" 6343 7800 7801 + find-root@^1.1.0: 7802 + version "1.1.0" 7803 + resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4" 7804 + integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng== 7805 + 7806 + find-up@4.1.0, find-up@^4.0.0, find-up@^4.1.0: 7807 + version "4.1.0" 7808 + resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 7809 + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 7810 + dependencies: 7811 + locate-path "^5.0.0" 7812 + path-exists "^4.0.0" 7813 + 6344 7814 find-up@^2.0.0, find-up@^2.1.0: 6345 7815 version "2.1.0" 6346 7816 resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" ··· 6355 7825 dependencies: 6356 7826 locate-path "^3.0.0" 6357 7827 6358 - find-up@^4.0.0, find-up@^4.1.0: 6359 - version "4.1.0" 6360 - resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 6361 - integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 6362 - dependencies: 6363 - locate-path "^5.0.0" 6364 - path-exists "^4.0.0" 6365 - 6366 7828 find-up@^5.0.0: 6367 7829 version "5.0.0" 6368 7830 resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" ··· 6420 7882 resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.13.0.tgz#b42e8d93a2a7eea5ed88633676d6597bc8e384db" 6421 7883 integrity sha512-aq6gF1BEKje4a9i9+5jimNFIpq4Q1WiwBToeRK5NvZBd/TRsmW8BsJfOEGkr76TbOyPVD3OVDN910EcUNtRYEA== 6422 7884 6423 - for-in@^1.0.2: 7885 + for-in@^0.1.3: 7886 + version "0.1.8" 7887 + resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.8.tgz#d8773908e31256109952b1fdb9b3fa867d2775e1" 7888 + integrity sha1-2Hc5COMSVhCZUrH9ubP6hn0ndeE= 7889 + 7890 + for-in@^1.0.1, for-in@^1.0.2: 6424 7891 version "1.0.2" 6425 7892 resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 6426 7893 integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= 6427 7894 7895 + for-own@^0.1.3: 7896 + version "0.1.5" 7897 + resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 7898 + integrity sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4= 7899 + dependencies: 7900 + for-in "^1.0.1" 7901 + 6428 7902 foreach@^2.0.5: 6429 7903 version "2.0.5" 6430 7904 resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" ··· 6435 7909 resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 6436 7910 integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= 6437 7911 7912 + fork-ts-checker-webpack-plugin@3.1.1: 7913 + version "3.1.1" 7914 + resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-3.1.1.tgz#a1642c0d3e65f50c2cc1742e9c0a80f441f86b19" 7915 + integrity sha512-DuVkPNrM12jR41KM2e+N+styka0EgLkTnXmNcXdgOM37vtGeY+oCBK/Jx0hzSeEU6memFCtWb4htrHPMDfwwUQ== 7916 + dependencies: 7917 + babel-code-frame "^6.22.0" 7918 + chalk "^2.4.1" 7919 + chokidar "^3.3.0" 7920 + micromatch "^3.1.10" 7921 + minimatch "^3.0.4" 7922 + semver "^5.6.0" 7923 + tapable "^1.0.0" 7924 + worker-rpc "^0.1.0" 7925 + 7926 + fork-ts-checker-webpack-plugin@^4.1.4: 7927 + version "4.1.6" 7928 + resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.6.tgz#5055c703febcf37fa06405d400c122b905167fc5" 7929 + integrity sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw== 7930 + dependencies: 7931 + "@babel/code-frame" "^7.5.5" 7932 + chalk "^2.4.1" 7933 + micromatch "^3.1.10" 7934 + minimatch "^3.0.4" 7935 + semver "^5.6.0" 7936 + tapable "^1.0.0" 7937 + worker-rpc "^0.1.0" 7938 + 6438 7939 form-data@^3.0.0: 6439 7940 version "3.0.0" 6440 7941 resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.0.tgz#31b7e39c85f1355b7139ee0c647cf0de7f83c682" ··· 6502 8003 jsonfile "^4.0.0" 6503 8004 universalify "^0.1.0" 6504 8005 8006 + fs-extra@^0.30.0: 8007 + version "0.30.0" 8008 + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0" 8009 + integrity sha1-8jP/zAjU2n1DLapEl3aYnbHfk/A= 8010 + dependencies: 8011 + graceful-fs "^4.1.2" 8012 + jsonfile "^2.1.0" 8013 + klaw "^1.0.0" 8014 + path-is-absolute "^1.0.0" 8015 + rimraf "^2.2.8" 8016 + 6505 8017 fs-extra@^7.0.1: 6506 8018 version "7.0.1" 6507 8019 resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" ··· 6511 8023 jsonfile "^4.0.0" 6512 8024 universalify "^0.1.0" 6513 8025 8026 + fs-extra@^9.0.0: 8027 + version "9.0.1" 8028 + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.0.1.tgz#910da0062437ba4c39fedd863f1675ccfefcb9fc" 8029 + integrity sha512-h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ== 8030 + dependencies: 8031 + at-least-node "^1.0.0" 8032 + graceful-fs "^4.2.0" 8033 + jsonfile "^6.0.1" 8034 + universalify "^1.0.0" 8035 + 6514 8036 fs-minipass@^2.0.0: 6515 8037 version "2.1.0" 6516 8038 resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" ··· 6566 8088 resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 6567 8089 integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 6568 8090 6569 - function.prototype.name@^1.1.2: 8091 + function.prototype.name@^1.1.0, function.prototype.name@^1.1.2: 6570 8092 version "1.1.2" 6571 8093 resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.2.tgz#5cdf79d7c05db401591dfde83e3b70c5123e9a45" 6572 8094 integrity sha512-C8A+LlHBJjB2AdcRPorc5JvJ5VUoWlXdEHLOJdCI7kjHEtGTpHQUiqMvCIKUwIsGwZX2jZJy761AXsn356bJQg== ··· 6584 8106 version "1.2.1" 6585 8107 resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.1.tgz#a981ac397fa0c9964551402cdc5533d7a4d52f91" 6586 8108 integrity sha512-j48B/ZI7VKs3sgeI2cZp7WXWmZXu7Iq5pl5/vptV5N2mq+DGFuS/ulaDjtaoLpYzuD6u8UgrUKHfgo7fDTSiBA== 8109 + 8110 + fuse.js@^3.6.1: 8111 + version "3.6.1" 8112 + resolved "https://registry.yarnpkg.com/fuse.js/-/fuse.js-3.6.1.tgz#7de85fdd6e1b3377c23ce010892656385fd9b10c" 8113 + integrity sha512-hT9yh/tiinkmirKrlv4KWOjztdoZo1mx9Qh4KvWqC7isoXwdUY3PNWUxceF4/qO9R6riA2C29jdTOeQOIROjgw== 8114 + 8115 + gauge@~2.7.3: 8116 + version "2.7.4" 8117 + resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 8118 + integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= 8119 + dependencies: 8120 + aproba "^1.0.3" 8121 + console-control-strings "^1.0.0" 8122 + has-unicode "^2.0.0" 8123 + object-assign "^4.1.0" 8124 + signal-exit "^3.0.0" 8125 + string-width "^1.0.1" 8126 + strip-ansi "^3.0.1" 8127 + wide-align "^1.1.0" 6587 8128 6588 8129 gensync@^1.0.0-beta.1: 6589 8130 version "1.0.0-beta.1" ··· 6676 8217 dependencies: 6677 8218 emoji-regex ">=6.0.0 <=6.1.1" 6678 8219 8220 + glob-base@^0.3.0: 8221 + version "0.3.0" 8222 + resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 8223 + integrity sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q= 8224 + dependencies: 8225 + glob-parent "^2.0.0" 8226 + is-glob "^2.0.0" 8227 + 8228 + glob-parent@^2.0.0: 8229 + version "2.0.0" 8230 + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 8231 + integrity sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg= 8232 + dependencies: 8233 + is-glob "^2.0.0" 8234 + 6679 8235 glob-parent@^3.1.0: 6680 8236 version "3.1.0" 6681 8237 resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" ··· 6691 8247 dependencies: 6692 8248 is-glob "^4.0.1" 6693 8249 8250 + glob-promise@^3.4.0: 8251 + version "3.4.0" 8252 + resolved "https://registry.yarnpkg.com/glob-promise/-/glob-promise-3.4.0.tgz#b6b8f084504216f702dc2ce8c9bc9ac8866fdb20" 8253 + integrity sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw== 8254 + dependencies: 8255 + "@types/glob" "*" 8256 + 8257 + glob-to-regexp@^0.3.0: 8258 + version "0.3.0" 8259 + resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab" 8260 + integrity sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs= 8261 + 6694 8262 glob-to-regexp@^0.4.1: 6695 8263 version "0.4.1" 6696 8264 resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" ··· 6708 8276 once "^1.3.0" 6709 8277 path-is-absolute "^1.0.0" 6710 8278 6711 - global@^4.3.0: 8279 + global-modules@2.0.0: 8280 + version "2.0.0" 8281 + resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780" 8282 + integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A== 8283 + dependencies: 8284 + global-prefix "^3.0.0" 8285 + 8286 + global-prefix@^3.0.0: 8287 + version "3.0.0" 8288 + resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97" 8289 + integrity sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg== 8290 + dependencies: 8291 + ini "^1.3.5" 8292 + kind-of "^6.0.2" 8293 + which "^1.3.1" 8294 + 8295 + global@^4.3.0, global@^4.3.2, global@^4.4.0: 6712 8296 version "4.4.0" 6713 8297 resolved "https://registry.yarnpkg.com/global/-/global-4.4.0.tgz#3e7b105179006a323ed71aafca3e9c57a5cc6406" 6714 8298 integrity sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w== ··· 6728 8312 dependencies: 6729 8313 type-fest "^0.8.1" 6730 8314 8315 + globalthis@^1.0.0: 8316 + version "1.0.1" 8317 + resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.1.tgz#40116f5d9c071f9e8fb0037654df1ab3a83b7ef9" 8318 + integrity sha512-mJPRTc/P39NH/iNG4mXa9aIhNymaQikTrnspeCa2ZuJ+mH2QN/rXwtX3XwKrHqWgUQFbNZKtHM105aHzJalElw== 8319 + dependencies: 8320 + define-properties "^1.1.3" 8321 + 8322 + globby@8.0.2: 8323 + version "8.0.2" 8324 + resolved "https://registry.yarnpkg.com/globby/-/globby-8.0.2.tgz#5697619ccd95c5275dbb2d6faa42087c1a941d8d" 8325 + integrity sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w== 8326 + dependencies: 8327 + array-union "^1.0.1" 8328 + dir-glob "2.0.0" 8329 + fast-glob "^2.0.2" 8330 + glob "^7.1.2" 8331 + ignore "^3.3.5" 8332 + pify "^3.0.0" 8333 + slash "^1.0.0" 8334 + 6731 8335 globby@^11.0.0, globby@^11.0.1: 6732 8336 version "11.0.1" 6733 8337 resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.1.tgz#9a2bf107a068f3ffeabc49ad702c79ede8cfd357" ··· 6751 8355 pify "^2.0.0" 6752 8356 pinkie-promise "^2.0.0" 6753 8357 8358 + good-listener@^1.2.2: 8359 + version "1.2.2" 8360 + resolved "https://registry.yarnpkg.com/good-listener/-/good-listener-1.2.2.tgz#d53b30cdf9313dffb7dc9a0d477096aa6d145c50" 8361 + integrity sha1-1TswzfkxPf+33JoNR3CWqm0UXFA= 8362 + dependencies: 8363 + delegate "^3.1.2" 8364 + 6754 8365 google-closure-compiler-java@^20200517.0.0: 6755 8366 version "20200517.0.0" 6756 8367 resolved "https://registry.yarnpkg.com/google-closure-compiler-java/-/google-closure-compiler-java-20200517.0.0.tgz#778370c22273c9085f4cf959ce063f8f112c02ac" ··· 6815 8426 url-parse-lax "^3.0.0" 6816 8427 url-to-options "^1.0.1" 6817 8428 6818 - graceful-fs@^4.1.10, graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.5, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.2, graceful-fs@^4.2.4: 8429 + graceful-fs@^4.1.10, graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.5, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.0, graceful-fs@^4.2.2, graceful-fs@^4.2.4: 6819 8430 version "4.2.4" 6820 8431 resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" 6821 8432 integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== ··· 6857 8468 pumpify "^1.3.3" 6858 8469 through2 "^2.0.3" 6859 8470 6860 - gzip-size@^5.0.0: 8471 + gzip-size@5.1.1, gzip-size@^5.0.0: 6861 8472 version "5.1.1" 6862 8473 resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-5.1.1.tgz#cb9bee692f87c0612b232840a873904e4c135274" 6863 8474 integrity sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA== ··· 6883 8494 ajv "^6.12.3" 6884 8495 har-schema "^2.0.0" 6885 8496 8497 + has-ansi@^2.0.0: 8498 + version "2.0.0" 8499 + resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 8500 + integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= 8501 + dependencies: 8502 + ansi-regex "^2.0.0" 8503 + 6886 8504 has-binary2@~1.0.2: 6887 8505 version "1.0.3" 6888 8506 resolved "https://registry.yarnpkg.com/has-binary2/-/has-binary2-1.0.3.tgz#7776ac627f3ea77250cfc332dab7ddf5e4f5d11d" ··· 6921 8539 integrity sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw== 6922 8540 dependencies: 6923 8541 has-symbol-support-x "^1.4.1" 8542 + 8543 + has-unicode@^2.0.0: 8544 + version "2.0.1" 8545 + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 8546 + integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= 6924 8547 6925 8548 has-value@^0.3.1: 6926 8549 version "0.3.1" ··· 7049 8672 resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" 7050 8673 integrity sha1-k0EP0hsAlzUVH4howvJx80J+I/0= 7051 8674 7052 - he@1.2.x: 8675 + he@1.2.x, he@^1.2.0: 7053 8676 version "1.2.0" 7054 8677 resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" 7055 8678 integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== ··· 7058 8681 version "1.1.0" 7059 8682 resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e" 7060 8683 integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ== 8684 + 8685 + highlight.js@~9.15.0, highlight.js@~9.15.1: 8686 + version "9.15.10" 8687 + resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.15.10.tgz#7b18ed75c90348c045eef9ed08ca1319a2219ad2" 8688 + integrity sha512-RoV7OkQm0T3os3Dd2VHLNMoaoDVx77Wygln3n9l5YV172XonWG6rgQD3XnF/BuFFZw9A0TJgmMSO8FEWQgvcXw== 7061 8689 7062 8690 history@^4.7.2, history@^4.9.0: 7063 8691 version "4.10.1" ··· 7136 8764 dependencies: 7137 8765 whatwg-encoding "^1.0.5" 7138 8766 7139 - html-entities@^1.3.1: 8767 + html-entities@^1.2.0, html-entities@^1.3.1: 7140 8768 version "1.3.1" 7141 8769 resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.3.1.tgz#fb9a1a4b5b14c5daba82d3e34c6ae4fe701a0e44" 7142 8770 integrity sha512-rhE/4Z3hIhzHAUKbW8jVcCyuT5oJCXXqhN/6mXXVCpzTmvJnoH2HL/bt3EZ6p55jbFJBeAe1ZNpL5BugLujxNA== ··· 7145 8773 version "2.0.2" 7146 8774 resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" 7147 8775 integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== 8776 + 8777 + html-minifier-terser@^5.0.1: 8778 + version "5.1.1" 8779 + resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz#922e96f1f3bb60832c2634b79884096389b1f054" 8780 + integrity sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg== 8781 + dependencies: 8782 + camel-case "^4.1.1" 8783 + clean-css "^4.2.3" 8784 + commander "^4.1.1" 8785 + he "^1.2.0" 8786 + param-case "^3.0.3" 8787 + relateurl "^0.2.7" 8788 + terser "^4.6.3" 7148 8789 7149 8790 html-minifier@^3.2.3: 7150 8791 version "3.5.21" ··· 7177 8818 toposort "^1.0.0" 7178 8819 util.promisify "1.0.0" 7179 8820 8821 + html-webpack-plugin@^4.2.1: 8822 + version "4.4.1" 8823 + resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.4.1.tgz#61ab85aa1a84ba181443345ebaead51abbb84149" 8824 + integrity sha512-nEtdEIsIGXdXGG7MjTTZlmhqhpHU9pJFc1OYxcP36c5/ZKP6b0BJMww2QTvJGQYA9aMxUnjDujpZdYcVOXiBCQ== 8825 + dependencies: 8826 + "@types/html-minifier-terser" "^5.0.0" 8827 + "@types/tapable" "^1.0.5" 8828 + "@types/webpack" "^4.41.8" 8829 + html-minifier-terser "^5.0.1" 8830 + loader-utils "^1.2.3" 8831 + lodash "^4.17.15" 8832 + pretty-error "^2.1.1" 8833 + tapable "^1.1.3" 8834 + util.promisify "1.0.0" 8835 + 7180 8836 htmlparser2@4.1.0: 7181 8837 version "4.1.0" 7182 8838 resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-4.1.0.tgz#9a4ef161f2e4625ebf7dfbe6c0a2f52d18a59e78" ··· 7347 9003 resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" 7348 9004 integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE= 7349 9005 9006 + ignore@^3.3.5: 9007 + version "3.3.10" 9008 + resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" 9009 + integrity sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug== 9010 + 7350 9011 ignore@^4.0.6: 7351 9012 version "4.0.6" 7352 9013 resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" ··· 7357 9018 resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57" 7358 9019 integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== 7359 9020 9021 + immer@1.10.0: 9022 + version "1.10.0" 9023 + resolved "https://registry.yarnpkg.com/immer/-/immer-1.10.0.tgz#bad67605ba9c810275d91e1c2a47d4582e98286d" 9024 + integrity sha512-O3sR1/opvCDGLEVcvrGTMtLac8GJ5IwZC4puPrLuRj3l7ICKvkmA0vGuU9OW8mV9WIBRnaxp5GJh9IEAaNOoYg== 9025 + 7360 9026 import-cwd@^2.0.0: 7361 9027 version "2.1.0" 7362 9028 resolved "https://registry.yarnpkg.com/import-cwd/-/import-cwd-2.1.0.tgz#aa6cf36e722761285cb371ec6519f53e2435b0a9" ··· 7456 9122 resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 7457 9123 integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= 7458 9124 7459 - ini@^1.3.4, ini@~1.3.0: 9125 + ini@^1.3.4, ini@^1.3.5, ini@~1.3.0: 7460 9126 version "1.3.5" 7461 9127 resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 7462 9128 integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== ··· 7477 9143 run-async "^2.4.0" 7478 9144 rxjs "^6.6.2" 7479 9145 9146 + inquirer@7.0.4: 9147 + version "7.0.4" 9148 + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.0.4.tgz#99af5bde47153abca23f5c7fc30db247f39da703" 9149 + integrity sha512-Bu5Td5+j11sCkqfqmUTiwv+tWisMtP0L7Q8WrqA2C/BbBhy1YTdFrvjjlrKq8oagA/tLQBski2Gcx/Sqyi2qSQ== 9150 + dependencies: 9151 + ansi-escapes "^4.2.1" 9152 + chalk "^2.4.2" 9153 + cli-cursor "^3.1.0" 9154 + cli-width "^2.0.0" 9155 + external-editor "^3.0.3" 9156 + figures "^3.0.0" 9157 + lodash "^4.17.15" 9158 + mute-stream "0.0.8" 9159 + run-async "^2.2.0" 9160 + rxjs "^6.5.3" 9161 + string-width "^4.1.0" 9162 + strip-ansi "^5.1.0" 9163 + through "^2.3.6" 9164 + 7480 9165 inquirer@^6.2.2, inquirer@^6.5.1: 7481 9166 version "6.5.2" 7482 9167 resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.2.tgz#ad50942375d036d327ff528c08bd5fab089928ca" ··· 7496 9181 strip-ansi "^5.1.0" 7497 9182 through "^2.3.6" 7498 9183 9184 + inquirer@^7.0.0: 9185 + version "7.3.3" 9186 + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.3.3.tgz#04d176b2af04afc157a83fd7c100e98ee0aad003" 9187 + integrity sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA== 9188 + dependencies: 9189 + ansi-escapes "^4.2.1" 9190 + chalk "^4.1.0" 9191 + cli-cursor "^3.1.0" 9192 + cli-width "^3.0.0" 9193 + external-editor "^3.0.3" 9194 + figures "^3.0.0" 9195 + lodash "^4.17.19" 9196 + mute-stream "0.0.8" 9197 + run-async "^2.4.0" 9198 + rxjs "^6.6.0" 9199 + string-width "^4.1.0" 9200 + strip-ansi "^6.0.0" 9201 + through "^2.3.6" 9202 + 7499 9203 internal-ip@^4.3.0: 7500 9204 version "4.3.0" 7501 9205 resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-4.3.0.tgz#845452baad9d2ca3b69c635a137acb9a0dad0907" ··· 7513 9217 has "^1.0.3" 7514 9218 side-channel "^1.0.2" 7515 9219 9220 + interpret@^1.0.0: 9221 + version "1.4.0" 9222 + resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e" 9223 + integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA== 9224 + 9225 + interpret@^2.0.0: 9226 + version "2.2.0" 9227 + resolved "https://registry.yarnpkg.com/interpret/-/interpret-2.2.0.tgz#1a78a0b5965c40a5416d007ad6f50ad27c417df9" 9228 + integrity sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw== 9229 + 7516 9230 intersection-observer@^0.7.0: 7517 9231 version "0.7.0" 7518 9232 resolved "https://registry.yarnpkg.com/intersection-observer/-/intersection-observer-0.7.0.tgz#ee16bee978db53516ead2f0a8154b09b400bbdc9" ··· 7629 9343 resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.0.1.tgz#10edc0900dd127697a92f6f9807c7617d68ac48e" 7630 9344 integrity sha512-TqZuVwa/sppcrhUCAYkGBk7w0yxfQQnxq28fjkO53tnK9FQXmdwz2JS5+GjsWQ6RByES1K40nI+yDic5c9/aAQ== 7631 9345 7632 - is-buffer@^1.1.5: 9346 + is-buffer@^1.0.2, is-buffer@^1.1.5: 7633 9347 version "1.1.6" 7634 9348 resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 7635 9349 integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== ··· 7737 9451 dependencies: 7738 9452 is-plain-object "^2.0.4" 7739 9453 9454 + is-extglob@^1.0.0: 9455 + version "1.0.0" 9456 + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 9457 + integrity sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA= 9458 + 7740 9459 is-extglob@^2.1.0, is-extglob@^2.1.1: 7741 9460 version "2.1.1" 7742 9461 resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 7743 9462 integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 9463 + 9464 + is-fullwidth-code-point@^1.0.0: 9465 + version "1.0.0" 9466 + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 9467 + integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= 9468 + dependencies: 9469 + number-is-nan "^1.0.0" 7744 9470 7745 9471 is-fullwidth-code-point@^2.0.0: 7746 9472 version "2.0.0" ··· 7752 9478 resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 7753 9479 integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 7754 9480 9481 + is-function@^1.0.2: 9482 + version "1.0.2" 9483 + resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.2.tgz#4f097f30abf6efadac9833b17ca5dc03f8144e08" 9484 + integrity sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ== 9485 + 7755 9486 is-generator-fn@^2.0.0: 7756 9487 version "2.1.0" 7757 9488 resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" ··· 7762 9493 resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.7.tgz#d2132e529bb0000a7f80794d4bdf5cd5e5813522" 7763 9494 integrity sha512-YZc5EwyO4f2kWCax7oegfuSr9mFz1ZvieNYBEjmukLxgXfBUbxAWGVF7GZf0zidYtoBl3WvC07YK0wT76a+Rtw== 7764 9495 9496 + is-glob@^2.0.0: 9497 + version "2.0.1" 9498 + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 9499 + integrity sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM= 9500 + dependencies: 9501 + is-extglob "^1.0.0" 9502 + 7765 9503 is-glob@^3.1.0: 7766 9504 version "3.1.0" 7767 9505 resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" ··· 7874 9612 resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" 7875 9613 integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== 7876 9614 7877 - is-plain-object@^2.0.3, is-plain-object@^2.0.4: 9615 + is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 7878 9616 version "2.0.4" 7879 9617 resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 7880 9618 integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== ··· 7915 9653 resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4" 7916 9654 integrity sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg== 7917 9655 9656 + is-root@2.1.0: 9657 + version "2.1.0" 9658 + resolved "https://registry.yarnpkg.com/is-root/-/is-root-2.1.0.tgz#809e18129cf1129644302a4f8544035d51984a9c" 9659 + integrity sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg== 9660 + 7918 9661 is-set@^2.0.1: 7919 9662 version "2.0.1" 7920 9663 resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.1.tgz#d1604afdab1724986d30091575f54945da7e5f43" ··· 7954 9697 dependencies: 7955 9698 html-comment-regex "^1.1.0" 7956 9699 7957 - is-symbol@^1.0.2: 9700 + is-symbol@^1.0.2, is-symbol@^1.0.3: 7958 9701 version "1.0.3" 7959 9702 resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" 7960 9703 integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== ··· 8050 9793 resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 8051 9794 integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= 8052 9795 9796 + isobject@^4.0.0: 9797 + version "4.0.0" 9798 + resolved "https://registry.yarnpkg.com/isobject/-/isobject-4.0.0.tgz#3f1c9155e73b192022a80819bacd0343711697b0" 9799 + integrity sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA== 9800 + 8053 9801 isomorphic-unfetch@^3.0.0: 8054 9802 version "3.0.0" 8055 9803 resolved "https://registry.yarnpkg.com/isomorphic-unfetch/-/isomorphic-unfetch-3.0.0.tgz#de6d80abde487b17de2c400a7ef9e5ecc2efb362" ··· 8112 9860 has-to-string-tag-x "^1.2.0" 8113 9861 is-object "^1.0.1" 8114 9862 9863 + iterate-iterator@^1.0.1: 9864 + version "1.0.1" 9865 + resolved "https://registry.yarnpkg.com/iterate-iterator/-/iterate-iterator-1.0.1.tgz#1693a768c1ddd79c969051459453f082fe82e9f6" 9866 + integrity sha512-3Q6tudGN05kbkDQDI4CqjaBf4qf85w6W6GnuZDtUVYwKgtC1q8yxYX7CZed7N+tLzQqS6roujWvszf13T+n9aw== 9867 + 9868 + iterate-value@^1.0.0: 9869 + version "1.0.2" 9870 + resolved "https://registry.yarnpkg.com/iterate-value/-/iterate-value-1.0.2.tgz#935115bd37d006a52046535ebc8d07e9c9337f57" 9871 + integrity sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ== 9872 + dependencies: 9873 + es-get-iterator "^1.0.2" 9874 + iterate-iterator "^1.0.1" 9875 + 9876 + jake@^10.6.1: 9877 + version "10.8.2" 9878 + resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.2.tgz#ebc9de8558160a66d82d0eadc6a2e58fbc500a7b" 9879 + integrity sha512-eLpKyrfG3mzvGE2Du8VoPbeSkRry093+tyNjdYaBbJS9v17knImYGNXQCUV0gLxQtF82m3E8iRb/wdSQZLoq7A== 9880 + dependencies: 9881 + async "0.9.x" 9882 + chalk "^2.4.2" 9883 + filelist "^1.0.1" 9884 + minimatch "^3.0.4" 9885 + 8115 9886 jest-changed-files@^26.3.0: 8116 9887 version "26.3.0" 8117 9888 resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-26.3.0.tgz#68fb2a7eb125f50839dab1f5a17db3607fe195b1" ··· 8528 10299 resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 8529 10300 integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 8530 10301 10302 + js-tokens@^3.0.2: 10303 + version "3.0.2" 10304 + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 10305 + integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls= 10306 + 8531 10307 js-yaml@^3.13.0, js-yaml@^3.13.1, js-yaml@^3.6.1: 8532 10308 version "3.14.0" 8533 10309 resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482" ··· 8623 10399 resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.3.tgz#7fc10e375fc5ae42c4705a5cc0aa6f62be305b81" 8624 10400 integrity sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA== 8625 10401 8626 - json5@2.x, json5@^2.1.0, json5@^2.1.2: 10402 + json5@2.x, json5@^2.1.0, json5@^2.1.1, json5@^2.1.2: 8627 10403 version "2.1.3" 8628 10404 resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43" 8629 10405 integrity sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA== ··· 8642 10418 dependencies: 8643 10419 minimist "^1.2.0" 8644 10420 10421 + jsonfile@^2.1.0: 10422 + version "2.4.0" 10423 + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 10424 + integrity sha1-NzaitCi4e72gzIO1P6PWM6NcKug= 10425 + optionalDependencies: 10426 + graceful-fs "^4.1.6" 10427 + 8645 10428 jsonfile@^4.0.0: 8646 10429 version "4.0.0" 8647 10430 resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" ··· 8649 10432 optionalDependencies: 8650 10433 graceful-fs "^4.1.6" 8651 10434 10435 + jsonfile@^6.0.1: 10436 + version "6.0.1" 10437 + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.0.1.tgz#98966cba214378c8c84b82e085907b40bf614179" 10438 + integrity sha512-jR2b5v7d2vIOust+w3wtFKZIfpC2pnRmFAhAC/BuweZFQR8qZzxH1OyrQ10HmdVYiXWkYUqPVsz91cG7EL2FBg== 10439 + dependencies: 10440 + universalify "^1.0.0" 10441 + optionalDependencies: 10442 + graceful-fs "^4.1.6" 10443 + 8652 10444 jsprim@^1.2.2: 8653 10445 version "1.4.1" 8654 10446 resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" ··· 8678 10470 version "1.0.1" 8679 10471 resolved "https://registry.yarnpkg.com/killable/-/killable-1.0.1.tgz#4c8ce441187a061c7474fb87ca08e2a638194892" 8680 10472 integrity sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg== 10473 + 10474 + kind-of@^2.0.1: 10475 + version "2.0.1" 10476 + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-2.0.1.tgz#018ec7a4ce7e3a86cb9141be519d24c8faa981b5" 10477 + integrity sha1-AY7HpM5+OobLkUG+UZ0kyPqpgbU= 10478 + dependencies: 10479 + is-buffer "^1.0.2" 8681 10480 8682 10481 kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 8683 10482 version "3.2.2" ··· 8703 10502 resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" 8704 10503 integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== 8705 10504 10505 + klaw@^1.0.0: 10506 + version "1.3.1" 10507 + resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" 10508 + integrity sha1-QIhDO0azsbolnXh4XY6W9zugJDk= 10509 + optionalDependencies: 10510 + graceful-fs "^4.1.9" 10511 + 8706 10512 kleur@^3.0.0, kleur@^3.0.3: 8707 10513 version "3.0.3" 8708 10514 resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" ··· 8716 10522 lodash "^4.17.5" 8717 10523 webpack-sources "^1.1.0" 8718 10524 10525 + lazy-cache@^0.2.3: 10526 + version "0.2.7" 10527 + resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-0.2.7.tgz#7feddf2dcb6edb77d11ef1d117ab5ffdf0ab1b65" 10528 + integrity sha1-f+3fLctu23fRHvHRF6tf/fCrG2U= 10529 + 10530 + lazy-cache@^1.0.3: 10531 + version "1.0.4" 10532 + resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 10533 + integrity sha1-odePw6UEdMuAhF07O24dpJpEbo4= 10534 + 10535 + lazy-universal-dotenv@^3.0.1: 10536 + version "3.0.1" 10537 + resolved "https://registry.yarnpkg.com/lazy-universal-dotenv/-/lazy-universal-dotenv-3.0.1.tgz#a6c8938414bca426ab8c9463940da451a911db38" 10538 + integrity sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ== 10539 + dependencies: 10540 + "@babel/runtime" "^7.5.0" 10541 + app-root-dir "^1.0.2" 10542 + core-js "^3.0.4" 10543 + dotenv "^8.0.0" 10544 + dotenv-expand "^5.1.0" 10545 + 8719 10546 leven@^3.1.0: 8720 10547 version "3.1.0" 8721 10548 resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" ··· 8931 10758 resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" 8932 10759 integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= 8933 10760 8934 - lodash@^4.15.0, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.3, lodash@^4.17.5: 10761 + lodash@^4.0.1, lodash@^4.15.0, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.3, lodash@^4.17.5: 8935 10762 version "4.17.20" 8936 10763 resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" 8937 10764 integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== 10765 + 10766 + log-symbols@^2.1.0: 10767 + version "2.2.0" 10768 + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" 10769 + integrity sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg== 10770 + dependencies: 10771 + chalk "^2.0.1" 8938 10772 8939 10773 log-symbols@^4.0.0: 8940 10774 version "4.0.0" ··· 8958 10792 resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.7.0.tgz#728166855a740d59d38db01cf46f042caa041bb0" 8959 10793 integrity sha512-i2sY04nal5jDcagM3FMfG++T69GEEM8CYuOfeOIvmXzOIcwE9a/CJPR0MFM97pYMj/u10lzz7/zd7+qwhrBTqQ== 8960 10794 10795 + loglevelnext@^1.0.1: 10796 + version "1.0.5" 10797 + resolved "https://registry.yarnpkg.com/loglevelnext/-/loglevelnext-1.0.5.tgz#36fc4f5996d6640f539ff203ba819641680d75a2" 10798 + integrity sha512-V/73qkPuJmx4BcBF19xPBr+0ZRVBhc4POxvZTZdMeXpJ4NItXSJ/MSwuFT0kQJlCbXvdlZoQQ/418bS1y9Jh6A== 10799 + dependencies: 10800 + es6-symbol "^3.1.1" 10801 + object.assign "^4.1.0" 10802 + 8961 10803 longest-streak@^2.0.1: 8962 10804 version "2.0.4" 8963 10805 resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-2.0.4.tgz#b8599957da5b5dab64dee3fe316fa774597d90e4" ··· 8983 10825 resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac" 8984 10826 integrity sha1-miyr0bno4K6ZOkv31YdcOcQujqw= 8985 10827 10828 + lower-case@^2.0.1: 10829 + version "2.0.1" 10830 + resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.1.tgz#39eeb36e396115cc05e29422eaea9e692c9408c7" 10831 + integrity sha512-LiWgfDLLb1dwbFQZsSglpRj+1ctGnayXz3Uv0/WO8n558JycT5fg6zkNcnW0G68Nn0aEldTFeEfmjCfmqry/rQ== 10832 + dependencies: 10833 + tslib "^1.10.0" 10834 + 8986 10835 lowercase-keys@1.0.0: 8987 10836 version "1.0.0" 8988 10837 resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" ··· 8993 10842 resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" 8994 10843 integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== 8995 10844 8996 - lru-cache@6.0.0: 10845 + lowlight@1.12.1: 10846 + version "1.12.1" 10847 + resolved "https://registry.yarnpkg.com/lowlight/-/lowlight-1.12.1.tgz#014acf8dd73a370e02ff1cc61debcde3bb1681eb" 10848 + integrity sha512-OqaVxMGIESnawn+TU/QMV5BJLbUghUfjDWPAtFqDYDmDtr4FnB+op8xM+pR7nKlauHNUHXGt0VgWatFB8voS5w== 10849 + dependencies: 10850 + fault "^1.0.2" 10851 + highlight.js "~9.15.0" 10852 + 10853 + lru-cache@6.0.0, lru-cache@^6.0.0: 8997 10854 version "6.0.0" 8998 10855 resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 8999 10856 integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== ··· 9085 10942 resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-2.0.0.tgz#a65cd29087a92598b8791257a523e021222ac1f9" 9086 10943 integrity sha1-plzSkIepJZi4eRJXpSPgISIqwfk= 9087 10944 10945 + map-or-similar@^1.5.0: 10946 + version "1.5.0" 10947 + resolved "https://registry.yarnpkg.com/map-or-similar/-/map-or-similar-1.5.0.tgz#6de2653174adfb5d9edc33c69d3e92a1b76faf08" 10948 + integrity sha1-beJlMXSt+12e3DPGnT6Sobdvrwg= 10949 + 9088 10950 map-visit@^1.0.0: 9089 10951 version "1.0.0" 9090 10952 resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" ··· 9101 10963 version "1.1.3" 9102 10964 resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-1.1.3.tgz#9fcb69bcfdb8717bfd0398c6ec2d93036ef8de60" 9103 10965 integrity sha512-1RUZVgQlpJSPWYbFSpmudq5nHY1doEIv89gBtF0s4gW1GF2XorxcA/70M5vq7rLv0a6mhOUccRsqkwhwLCIQ2Q== 10966 + 10967 + markdown-to-jsx@^6.11.4: 10968 + version "6.11.4" 10969 + resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-6.11.4.tgz#b4528b1ab668aef7fe61c1535c27e837819392c5" 10970 + integrity sha512-3lRCD5Sh+tfA52iGgfs/XZiw33f7fFX9Bn55aNnVNUd2GzLDkOWyKYYD8Yju2B1Vn+feiEdgJs8T6Tg0xNokPw== 10971 + dependencies: 10972 + prop-types "^15.6.2" 10973 + unquote "^1.1.0" 9104 10974 9105 10975 match-sorter@^3.1.1: 9106 10976 version "3.1.1" ··· 9109 10979 dependencies: 9110 10980 remove-accents "0.4.2" 9111 10981 10982 + material-colors@^1.2.1: 10983 + version "1.2.6" 10984 + resolved "https://registry.yarnpkg.com/material-colors/-/material-colors-1.2.6.tgz#6d1958871126992ceecc72f4bcc4d8f010865f46" 10985 + integrity sha512-6qE4B9deFBIa9YSpOc9O0Sgc43zTeVYbgDT5veRKSlB2+ZuHNoVVxA1L/ckMUayV9Ay9y7Z/SZCLcGteW9i7bg== 10986 + 9112 10987 md5.js@^1.3.4: 9113 10988 version "1.3.5" 9114 10989 resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" ··· 9196 11071 map-age-cleaner "^0.1.3" 9197 11072 mimic-fn "^3.0.0" 9198 11073 11074 + memoizerific@^1.11.3: 11075 + version "1.11.3" 11076 + resolved "https://registry.yarnpkg.com/memoizerific/-/memoizerific-1.11.3.tgz#7c87a4646444c32d75438570905f2dbd1b1a805a" 11077 + integrity sha1-fIekZGREwy11Q4VwkF8tvRsagFo= 11078 + dependencies: 11079 + map-or-similar "^1.5.0" 11080 + 9199 11081 memory-fs@^0.4.1: 9200 11082 version "0.4.1" 9201 11083 resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" ··· 9232 11114 trim-newlines "^2.0.0" 9233 11115 yargs-parser "^10.0.0" 9234 11116 11117 + merge-deep@^3.0.2: 11118 + version "3.0.2" 11119 + resolved "https://registry.yarnpkg.com/merge-deep/-/merge-deep-3.0.2.tgz#f39fa100a4f1bd34ff29f7d2bf4508fbb8d83ad2" 11120 + integrity sha512-T7qC8kg4Zoti1cFd8Cr0M+qaZfOwjlPDEdZIIPPB2JZctjaPM4fX+i7HOId69tAti2fvO6X5ldfYUONDODsrkA== 11121 + dependencies: 11122 + arr-union "^3.1.0" 11123 + clone-deep "^0.2.4" 11124 + kind-of "^3.0.2" 11125 + 9235 11126 merge-descriptors@1.0.1: 9236 11127 version "1.0.1" 9237 11128 resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" ··· 9242 11133 resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 9243 11134 integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 9244 11135 9245 - merge2@^1.3.0: 11136 + merge2@^1.2.3, merge2@^1.3.0: 9246 11137 version "1.4.1" 9247 11138 resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 9248 11139 integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== ··· 9270 11161 version "1.1.2" 9271 11162 resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 9272 11163 integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= 11164 + 11165 + microevent.ts@~0.1.1: 11166 + version "0.1.1" 11167 + resolved "https://registry.yarnpkg.com/microevent.ts/-/microevent.ts-0.1.1.tgz#70b09b83f43df5172d0205a63025bce0f7357fa0" 11168 + integrity sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g== 9273 11169 9274 11170 micromatch@^3.1.10, micromatch@^3.1.4: 9275 11171 version "3.1.10" ··· 9323 11219 dependencies: 9324 11220 mime-db "~1.33.0" 9325 11221 9326 - mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.19, mime-types@~2.1.24: 11222 + mime-types@^2.1.12, mime-types@^2.1.26, mime-types@~2.1.17, mime-types@~2.1.19, mime-types@~2.1.24: 9327 11223 version "2.1.27" 9328 11224 resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f" 9329 11225 integrity sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w== ··· 9367 11263 dependencies: 9368 11264 dom-walk "^0.1.0" 9369 11265 11266 + min-indent@^1.0.0: 11267 + version "1.0.1" 11268 + resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" 11269 + integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== 11270 + 9370 11271 mini-create-react-context@^0.4.0: 9371 11272 version "0.4.0" 9372 11273 resolved "https://registry.yarnpkg.com/mini-create-react-context/-/mini-create-react-context-0.4.0.tgz#df60501c83151db69e28eac0ef08b4002efab040" ··· 9385 11286 resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 9386 11287 integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= 9387 11288 9388 - minimatch@3.0.4, minimatch@^3.0.0, minimatch@^3.0.4: 11289 + minimatch@3.0.4, minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 9389 11290 version "3.0.4" 9390 11291 resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 9391 11292 integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== ··· 9438 11339 dependencies: 9439 11340 yallist "^4.0.0" 9440 11341 11342 + minizlib@^2.1.1: 11343 + version "2.1.2" 11344 + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" 11345 + integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== 11346 + dependencies: 11347 + minipass "^3.0.0" 11348 + yallist "^4.0.0" 11349 + 9441 11350 mississippi@^3.0.0: 9442 11351 version "3.0.0" 9443 11352 resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022" ··· 9462 11371 for-in "^1.0.2" 9463 11372 is-extendable "^1.0.1" 9464 11373 11374 + mixin-object@^2.0.1: 11375 + version "2.0.1" 11376 + resolved "https://registry.yarnpkg.com/mixin-object/-/mixin-object-2.0.1.tgz#4fb949441dab182540f1fe035ba60e1947a5e57e" 11377 + integrity sha1-T7lJRB2rGCVA8f4DW6YOGUel5X4= 11378 + dependencies: 11379 + for-in "^0.1.3" 11380 + is-extendable "^0.1.1" 11381 + 9465 11382 mixme@^0.3.1: 9466 11383 version "0.3.5" 9467 11384 resolved "https://registry.yarnpkg.com/mixme/-/mixme-0.3.5.tgz#304652cdaf24a3df0487205e61ac6162c6906ddd" ··· 9486 11403 dependencies: 9487 11404 minimist "^1.2.5" 9488 11405 9489 - mkdirp@1.x: 11406 + mkdirp@1.x, mkdirp@^1.0.3, mkdirp@^1.0.4: 9490 11407 version "1.0.4" 9491 11408 resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" 9492 11409 integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== ··· 9551 11468 resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 9552 11469 integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s= 9553 11470 9554 - mute-stream@~0.0.4: 11471 + mute-stream@0.0.8, mute-stream@~0.0.4: 9555 11472 version "0.0.8" 9556 11473 resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" 9557 11474 integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== ··· 9722 11639 dependencies: 9723 11640 lower-case "^1.1.1" 9724 11641 11642 + no-case@^3.0.3: 11643 + version "3.0.3" 11644 + resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.3.tgz#c21b434c1ffe48b39087e86cfb4d2582e9df18f8" 11645 + integrity sha512-ehY/mVQCf9BL0gKfsJBvFJen+1V//U+0HQMPrWct40ixE4jnv0bfvxDbWtAHL9EcaPEOJHVVYKoQn1TlZUB8Tw== 11646 + dependencies: 11647 + lower-case "^2.0.1" 11648 + tslib "^1.10.0" 11649 + 11650 + node-dir@^0.1.10: 11651 + version "0.1.17" 11652 + resolved "https://registry.yarnpkg.com/node-dir/-/node-dir-0.1.17.tgz#5f5665d93351335caabef8f1c554516cf5f1e4e5" 11653 + integrity sha1-X1Zl2TNRM1yqvvjxxVRRbPXx5OU= 11654 + dependencies: 11655 + minimatch "^3.0.2" 11656 + 9725 11657 node-fetch@2.6.0: 9726 11658 version "2.6.0" 9727 11659 resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.0.tgz#e633456386d4aa55863f676a7ab0daa8fdecb0fd" 9728 11660 integrity sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA== 9729 11661 9730 - node-fetch@^2.2.0, node-fetch@^2.5.0: 11662 + node-fetch@^2.2.0, node-fetch@^2.5.0, node-fetch@^2.6.0: 9731 11663 version "2.6.1" 9732 11664 resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" 9733 11665 integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== ··· 9795 11727 uuid "^8.3.0" 9796 11728 which "^2.0.2" 9797 11729 9798 - node-releases@^1.1.58, node-releases@^1.1.60: 9799 - version "1.1.60" 9800 - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.60.tgz#6948bdfce8286f0b5d0e5a88e8384e954dfe7084" 9801 - integrity sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA== 11730 + node-releases@^1.1.52, node-releases@^1.1.58, node-releases@^1.1.60: 11731 + version "1.1.61" 11732 + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.61.tgz#707b0fca9ce4e11783612ba4a2fcba09047af16e" 11733 + integrity sha512-DD5vebQLg8jLCOzwupn954fbIiZht05DAZs0k2u8NStSe6h9XdsuIQL8hSRKYiU8WUQRznmSDrKGbv3ObOmC7g== 9802 11734 9803 11735 normalize-html-whitespace@1.0.0: 9804 11736 version "1.0.0" ··· 9898 11830 dependencies: 9899 11831 path-key "^3.0.0" 9900 11832 11833 + npmlog@^4.1.2: 11834 + version "4.1.2" 11835 + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 11836 + integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== 11837 + dependencies: 11838 + are-we-there-yet "~1.1.2" 11839 + console-control-strings "~1.1.0" 11840 + gauge "~2.7.3" 11841 + set-blocking "~2.0.0" 11842 + 9901 11843 nth-check@^1.0.0, nth-check@^1.0.2, nth-check@~1.0.1: 9902 11844 version "1.0.2" 9903 11845 resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" ··· 9909 11851 version "1.2.2" 9910 11852 resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" 9911 11853 integrity sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4= 11854 + 11855 + number-is-nan@^1.0.0: 11856 + version "1.0.1" 11857 + resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 11858 + integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= 9912 11859 9913 11860 nwsapi@^2.2.0: 9914 11861 version "2.2.0" ··· 9979 11926 has-symbols "^1.0.0" 9980 11927 object-keys "^1.0.11" 9981 11928 9982 - object.entries@^1.1.1, object.entries@^1.1.2: 11929 + object.entries@^1.1.0, object.entries@^1.1.1, object.entries@^1.1.2: 9983 11930 version "1.1.2" 9984 11931 resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.2.tgz#bc73f00acb6b6bb16c203434b10f9a7e797d3add" 9985 11932 integrity sha512-BQdB9qKmb/HyNdMNWVr7O3+z5MUIx3aiegEIJqjMBbBf0YT9RRxTJSim4mzFqtyr7PDAHigq0N9dO0m0tRakQA== ··· 9988 11935 es-abstract "^1.17.5" 9989 11936 has "^1.0.3" 9990 11937 9991 - object.fromentries@^2.0.2: 11938 + "object.fromentries@^2.0.0 || ^1.0.0", object.fromentries@^2.0.2: 9992 11939 version "2.0.2" 9993 11940 resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.2.tgz#4a09c9b9bb3843dd0f89acdb517a794d4f355ac9" 9994 11941 integrity sha512-r3ZiBH7MQppDJVLx6fhD618GKNG40CZYH9wgwdhKxBDDbQgjeWGGd4AtkZad84d291YxvWe7bJGuE65Anh0dxQ== ··· 10022 11969 es-abstract "^1.17.0-next.1" 10023 11970 function-bind "^1.1.1" 10024 11971 has "^1.0.3" 11972 + 11973 + objectorarray@^1.0.4: 11974 + version "1.0.4" 11975 + resolved "https://registry.yarnpkg.com/objectorarray/-/objectorarray-1.0.4.tgz#d69b2f0ff7dc2701903d308bb85882f4ddb49483" 11976 + integrity sha512-91k8bjcldstRz1bG6zJo8lWD7c6QXcB4nTDUqiEvIL1xAsLoZlOOZZG+nd6YPz+V7zY1580J4Xxh1vZtyv4i/w== 10025 11977 10026 11978 obuf@^1.0.0, obuf@^1.1.2: 10027 11979 version "1.1.2" ··· 10061 12013 dependencies: 10062 12014 mimic-fn "^2.1.0" 10063 12015 10064 - open@^7.0.3: 12016 + open@^7.0.2, open@^7.0.3: 10065 12017 version "7.2.1" 10066 12018 resolved "https://registry.yarnpkg.com/open/-/open-7.2.1.tgz#07b0ade11a43f2a8ce718480bdf3d7563a095195" 10067 12019 integrity sha512-xbYCJib4spUdmcs0g/2mK1nKo/jO2T7INClWd/beL7PFkXRWgr8B23ssDHX/USPn2M2IjDR5UdpYs6I67SnTSA== ··· 10140 12092 resolved "https://registry.yarnpkg.com/outdent/-/outdent-0.5.0.tgz#9e10982fdc41492bb473ad13840d22f9655be2ff" 10141 12093 integrity sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q== 10142 12094 12095 + overlayscrollbars@^1.10.2: 12096 + version "1.13.0" 12097 + resolved "https://registry.yarnpkg.com/overlayscrollbars/-/overlayscrollbars-1.13.0.tgz#1edb436328133b94877b558f77966d5497ca36a7" 12098 + integrity sha512-p8oHrMeRAKxXDMPI/EBNITj/zTVHKNnAnM59Im+xnoZUlV07FyTg46wom2286jJlXGGfcPFG/ba5NUiCwWNd4w== 12099 + 10143 12100 p-cancelable@^0.4.0: 10144 12101 version "0.4.1" 10145 12102 resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.4.1.tgz#35f363d67d52081c8d9585e37bcceb7e0bbcb2a0" ··· 10297 12254 dependencies: 10298 12255 no-case "^2.2.0" 10299 12256 12257 + param-case@^3.0.3: 12258 + version "3.0.3" 12259 + resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.3.tgz#4be41f8399eff621c56eebb829a5e451d9801238" 12260 + integrity sha512-VWBVyimc1+QrzappRs7waeN2YmoZFCGXWASRYX1/rGHtXqEcrGEIDm+jqIwFa2fRXNgQEwrxaYuIrX0WcAguTA== 12261 + dependencies: 12262 + dot-case "^3.0.3" 12263 + tslib "^1.10.0" 12264 + 10300 12265 parent-module@^1.0.0: 10301 12266 version "1.0.1" 10302 12267 resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" ··· 10315 12280 pbkdf2 "^3.0.3" 10316 12281 safe-buffer "^5.1.1" 10317 12282 10318 - parse-entities@^1.0.2, parse-entities@^1.1.0: 12283 + parse-entities@^1.0.2, parse-entities@^1.1.0, parse-entities@^1.1.2: 10319 12284 version "1.2.2" 10320 12285 resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-1.2.2.tgz#c31bf0f653b6661354f8973559cb86dd1d5edf50" 10321 12286 integrity sha512-NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg== ··· 10399 12364 version "1.3.3" 10400 12365 resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" 10401 12366 integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== 12367 + 12368 + pascal-case@^3.1.1: 12369 + version "3.1.1" 12370 + resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.1.tgz#5ac1975133ed619281e88920973d2cd1f279de5f" 12371 + integrity sha512-XIeHKqIrsquVTQL2crjq3NfJUxmdLasn3TYOU0VBM+UX2a6ztAWBlJQBePLGY7VHW8+2dRadeIPK5+KImwTxQA== 12372 + dependencies: 12373 + no-case "^3.0.3" 12374 + tslib "^1.10.0" 10402 12375 10403 12376 pascalcase@^0.1.1: 10404 12377 version "0.1.1" ··· 10594 12567 dependencies: 10595 12568 find-up "^4.0.0" 10596 12569 10597 - pkg-up@^3.1.0: 12570 + pkg-up@3.1.0, pkg-up@^3.1.0: 10598 12571 version "3.1.0" 10599 12572 resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-3.1.0.tgz#100ec235cc150e4fd42519412596a28512a0def5" 10600 12573 integrity sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA== ··· 10630 12603 dependencies: 10631 12604 ts-pnp "^1.1.6" 10632 12605 12606 + polished@^3.4.4: 12607 + version "3.6.6" 12608 + resolved "https://registry.yarnpkg.com/polished/-/polished-3.6.6.tgz#91ef9eface9be5366c07672b63b736f50c151185" 12609 + integrity sha512-yiB2ims2DZPem0kCD6V0wnhcVGFEhNh0Iw0axNpKU+oSAgFt6yx6HxIT23Qg0WWvgS379cS35zT4AOyZZRzpQQ== 12610 + dependencies: 12611 + "@babel/runtime" "^7.9.2" 12612 + 12613 + popper.js@^1.14.4, popper.js@^1.14.7: 12614 + version "1.16.1" 12615 + resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.16.1.tgz#2a223cb3dc7b6213d740e40372be40de43e65b1b" 12616 + integrity sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ== 12617 + 10633 12618 portfinder@^1.0.21, portfinder@^1.0.26: 10634 12619 version "1.0.28" 10635 12620 resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.28.tgz#67c4622852bd5374dd1dd900f779f53462fac778" ··· 11109 13094 ansi-styles "^4.0.0" 11110 13095 react-is "^16.12.0" 11111 13096 13097 + pretty-hrtime@^1.0.3: 13098 + version "1.0.3" 13099 + resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" 13100 + integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE= 13101 + 11112 13102 prism-react-renderer@^1.1.0: 11113 13103 version "1.1.1" 11114 13104 resolved "https://registry.yarnpkg.com/prism-react-renderer/-/prism-react-renderer-1.1.1.tgz#1c1be61b1eb9446a146ca7a50b7bcf36f2a70a44" 11115 13105 integrity sha512-MgMhSdHuHymNRqD6KM3eGS0PNqgK9q4QF5P0yoQQvpB6jNjeSAi3jcSAz0Sua/t9fa4xDOMar9HJbLa08gl9ug== 11116 13106 13107 + prismjs@^1.8.4: 13108 + version "1.21.0" 13109 + resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.21.0.tgz#36c086ec36b45319ec4218ee164c110f9fc015a3" 13110 + integrity sha512-uGdSIu1nk3kej2iZsLyDoJ7e9bnPzIgY0naW/HdknGj61zScaprVEVGHrPoXqI+M9sP0NDnTK2jpkvmldpuqDw== 13111 + optionalDependencies: 13112 + clipboard "^2.0.0" 13113 + 13114 + prismjs@~1.17.0: 13115 + version "1.17.1" 13116 + resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.17.1.tgz#e669fcbd4cdd873c35102881c33b14d0d68519be" 13117 + integrity sha512-PrEDJAFdUGbOP6xK/UsfkC5ghJsPJviKgnQOoxaDbBjwc8op68Quupwt1DeAFoG8GImPhiKXAvvsH7wDSLsu1Q== 13118 + optionalDependencies: 13119 + clipboard "^2.0.0" 13120 + 13121 + private@~0.1.5: 13122 + version "0.1.8" 13123 + resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 13124 + integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== 13125 + 11117 13126 process-nextick-args@^2.0.0, process-nextick-args@~2.0.0: 11118 13127 version "2.0.1" 11119 13128 resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" ··· 11139 13148 resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" 11140 13149 integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM= 11141 13150 13151 + promise.allsettled@^1.0.0: 13152 + version "1.0.2" 13153 + resolved "https://registry.yarnpkg.com/promise.allsettled/-/promise.allsettled-1.0.2.tgz#d66f78fbb600e83e863d893e98b3d4376a9c47c9" 13154 + integrity sha512-UpcYW5S1RaNKT6pd+s9jp9K9rlQge1UXKskec0j6Mmuq7UJCvlS2J2/s/yuPN8ehftf9HXMxWlKiPbGGUzpoRg== 13155 + dependencies: 13156 + array.prototype.map "^1.0.1" 13157 + define-properties "^1.1.3" 13158 + es-abstract "^1.17.0-next.1" 13159 + function-bind "^1.1.1" 13160 + iterate-value "^1.0.0" 13161 + 13162 + promise.prototype.finally@^3.1.0: 13163 + version "3.1.2" 13164 + resolved "https://registry.yarnpkg.com/promise.prototype.finally/-/promise.prototype.finally-3.1.2.tgz#b8af89160c9c673cefe3b4c4435b53cfd0287067" 13165 + integrity sha512-A2HuJWl2opDH0EafgdjwEw7HysI8ff/n4lW4QEVBCUXFk9QeGecBWv0Deph0UmLe3tTNYegz8MOjsVuE6SMoJA== 13166 + dependencies: 13167 + define-properties "^1.1.3" 13168 + es-abstract "^1.17.0-next.0" 13169 + function-bind "^1.1.1" 13170 + 11142 13171 prompt@~0.2.14: 11143 13172 version "0.2.14" 11144 13173 resolved "https://registry.yarnpkg.com/prompt/-/prompt-0.2.14.tgz#57754f64f543fd7b0845707c818ece618f05ffdc" ··· 11175 13204 object.assign "^4.1.0" 11176 13205 reflect.ownkeys "^0.2.0" 11177 13206 11178 - prop-types@15.7.2, prop-types@^15.5.4, prop-types@^15.6.1, prop-types@^15.6.2, prop-types@^15.7.2: 13207 + prop-types@15.7.2, prop-types@^15.5.10, prop-types@^15.5.4, prop-types@^15.6.0, prop-types@^15.6.1, prop-types@^15.6.2, prop-types@^15.7.2: 11179 13208 version "15.7.2" 11180 13209 resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" 11181 13210 integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ== ··· 11293 13322 resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc" 11294 13323 integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ== 11295 13324 13325 + qs@^6.6.0: 13326 + version "6.9.4" 13327 + resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.4.tgz#9090b290d1f91728d3c22e54843ca44aea5ab687" 13328 + integrity sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ== 13329 + 11296 13330 qs@~6.5.2: 11297 13331 version "6.5.2" 11298 13332 resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" ··· 11347 13381 resolved "https://registry.yarnpkg.com/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz#eb7e6267548ddedfb899c1b90e57374559cddb7e" 11348 13382 integrity sha1-635iZ1SN3t+4mcG5Dlc3RVnN234= 11349 13383 13384 + ramda@^0.21.0: 13385 + version "0.21.0" 13386 + resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.21.0.tgz#a001abedb3ff61077d4ff1d577d44de77e8d0a35" 13387 + integrity sha1-oAGr7bP/YQd9T/HVd9RN536NCjU= 13388 + 11350 13389 randexp@0.4.6: 11351 13390 version "0.4.6" 11352 13391 resolved "https://registry.yarnpkg.com/randexp/-/randexp-0.4.6.tgz#e986ad5e5e31dae13ddd6f7b3019aa7c87f60ca3" ··· 11398 13437 loader-utils "^1.1.0" 11399 13438 schema-utils "^2.0.1" 11400 13439 13440 + raw-loader@^4.0.1: 13441 + version "4.0.1" 13442 + resolved "https://registry.yarnpkg.com/raw-loader/-/raw-loader-4.0.1.tgz#14e1f726a359b68437e183d5a5b7d33a3eba6933" 13443 + integrity sha512-baolhQBSi3iNh1cglJjA0mYzga+wePk7vdEX//1dTFd+v4TsQlQE0jitJSNF1OIP82rdYulH7otaVmdlDaJ64A== 13444 + dependencies: 13445 + loader-utils "^2.0.0" 13446 + schema-utils "^2.6.5" 13447 + 11401 13448 rc@^1.0.1, rc@^1.1.6: 11402 13449 version "1.2.8" 11403 13450 resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" ··· 11408 13455 minimist "^1.2.0" 11409 13456 strip-json-comments "~2.0.1" 11410 13457 11411 - react-dom@^16.13.0, react-dom@^16.13.1, react-dom@^16.9.0: 13458 + react-color@^2.17.0: 13459 + version "2.18.1" 13460 + resolved "https://registry.yarnpkg.com/react-color/-/react-color-2.18.1.tgz#2cda8cc8e06a9e2c52ad391a30ddad31972472f4" 13461 + integrity sha512-X5XpyJS6ncplZs74ak0JJoqPi+33Nzpv5RYWWxn17bslih+X7OlgmfpmGC1fNvdkK7/SGWYf1JJdn7D2n5gSuQ== 13462 + dependencies: 13463 + "@icons/material" "^0.2.4" 13464 + lodash "^4.17.11" 13465 + material-colors "^1.2.1" 13466 + prop-types "^15.5.10" 13467 + reactcss "^1.2.0" 13468 + tinycolor2 "^1.4.1" 13469 + 13470 + react-dev-utils@^10.0.0: 13471 + version "10.2.1" 13472 + resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-10.2.1.tgz#f6de325ae25fa4d546d09df4bb1befdc6dd19c19" 13473 + integrity sha512-XxTbgJnYZmxuPtY3y/UV0D8/65NKkmaia4rXzViknVnZeVlklSh8u6TnaEYPfAi/Gh1TP4mEOXHI6jQOPbeakQ== 13474 + dependencies: 13475 + "@babel/code-frame" "7.8.3" 13476 + address "1.1.2" 13477 + browserslist "4.10.0" 13478 + chalk "2.4.2" 13479 + cross-spawn "7.0.1" 13480 + detect-port-alt "1.1.6" 13481 + escape-string-regexp "2.0.0" 13482 + filesize "6.0.1" 13483 + find-up "4.1.0" 13484 + fork-ts-checker-webpack-plugin "3.1.1" 13485 + global-modules "2.0.0" 13486 + globby "8.0.2" 13487 + gzip-size "5.1.1" 13488 + immer "1.10.0" 13489 + inquirer "7.0.4" 13490 + is-root "2.1.0" 13491 + loader-utils "1.2.3" 13492 + open "^7.0.2" 13493 + pkg-up "3.1.0" 13494 + react-error-overlay "^6.0.7" 13495 + recursive-readdir "2.2.2" 13496 + shell-quote "1.7.2" 13497 + strip-ansi "6.0.0" 13498 + text-table "0.2.0" 13499 + 13500 + react-docgen-typescript-loader@^3.7.2: 13501 + version "3.7.2" 13502 + resolved "https://registry.yarnpkg.com/react-docgen-typescript-loader/-/react-docgen-typescript-loader-3.7.2.tgz#45cb2305652c0602767242a8700ad1ebd66bbbbd" 13503 + integrity sha512-fNzUayyUGzSyoOl7E89VaPKJk9dpvdSgyXg81cUkwy0u+NBvkzQG3FC5WBIlXda0k/iaxS+PWi+OC+tUiGxzPA== 13504 + dependencies: 13505 + "@webpack-contrib/schema-utils" "^1.0.0-beta.0" 13506 + loader-utils "^1.2.3" 13507 + react-docgen-typescript "^1.15.0" 13508 + 13509 + react-docgen-typescript-plugin@^0.5.2: 13510 + version "0.5.2" 13511 + resolved "https://registry.yarnpkg.com/react-docgen-typescript-plugin/-/react-docgen-typescript-plugin-0.5.2.tgz#2b294d75ef3145c36303da82be5d447cb67dc0dc" 13512 + integrity sha512-NQfWyWLmzUnedkiN2nPDb6Nkm68ik6fqbC3UvgjqYSeZsbKijXUA4bmV6aU7qICOXdop9PevPdjEgJuAN0nNVQ== 13513 + dependencies: 13514 + debug "^4.1.1" 13515 + endent "^2.0.1" 13516 + micromatch "^4.0.2" 13517 + react-docgen-typescript "^1.20.1" 13518 + react-docgen-typescript-loader "^3.7.2" 13519 + tslib "^2.0.0" 13520 + 13521 + react-docgen-typescript@^1.15.0, react-docgen-typescript@^1.20.1: 13522 + version "1.20.4" 13523 + resolved "https://registry.yarnpkg.com/react-docgen-typescript/-/react-docgen-typescript-1.20.4.tgz#9a5655986077ccfc58c1a447f92c3d19f7a875bf" 13524 + integrity sha512-gE2SeseJd6+o981qr9VQJRbvFJ5LjLSKQiwhHsuLN4flt+lheKtG1jp2BPzrv2MKR5gmbLwpmNtK4wbLCPSZAw== 13525 + 13526 + react-docgen@^5.0.0: 13527 + version "5.3.0" 13528 + resolved "https://registry.yarnpkg.com/react-docgen/-/react-docgen-5.3.0.tgz#9aabde5e69f1993c8ba839fd9a86696504654589" 13529 + integrity sha512-hUrv69k6nxazOuOmdGeOpC/ldiKy7Qj/UFpxaQi0eDMrUFUTIPGtY5HJu7BggSmiyAMfREaESbtBL9UzdQ+hyg== 13530 + dependencies: 13531 + "@babel/core" "^7.7.5" 13532 + "@babel/runtime" "^7.7.6" 13533 + ast-types "^0.13.2" 13534 + commander "^2.19.0" 13535 + doctrine "^3.0.0" 13536 + neo-async "^2.6.1" 13537 + node-dir "^0.1.10" 13538 + strip-indent "^3.0.0" 13539 + 13540 + react-dom@^16.13.0, react-dom@^16.13.1, react-dom@^16.8.3, react-dom@^16.9.0: 11412 13541 version "16.13.1" 11413 13542 resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.13.1.tgz#c1bd37331a0486c078ee54c4740720993b2e0e7f" 11414 13543 integrity sha512-81PIMmVLnCNLO/fFOQxdQkvEq/+Hfpv24XNJfpyZhTRfO0QcmQIF/PgCa1zCOj2w1hrn12MFLyaJ/G0+Mxtfag== ··· 11418 13547 prop-types "^15.6.2" 11419 13548 scheduler "^0.19.1" 11420 13549 13550 + react-draggable@^4.0.3: 13551 + version "4.4.3" 13552 + resolved "https://registry.yarnpkg.com/react-draggable/-/react-draggable-4.4.3.tgz#0727f2cae5813e36b0e4962bf11b2f9ef2b406f3" 13553 + integrity sha512-jV4TE59MBuWm7gb6Ns3Q1mxX8Azffb7oTtDtBgFkxRvhDp38YAARmRplrj0+XGkhOJB5XziArX+4HUUABtyZ0w== 13554 + dependencies: 13555 + classnames "^2.2.5" 13556 + prop-types "^15.6.0" 13557 + 13558 + react-error-overlay@^6.0.7: 13559 + version "6.0.7" 13560 + resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.7.tgz#1dcfb459ab671d53f660a991513cb2f0a0553108" 13561 + integrity sha512-TAv1KJFh3RhqxNvhzxj6LeT5NWklP6rDr2a0jaTfsZ5wSZWHOGeqQyejUp3xxLfPt2UpyJEcVQB/zyPcmonNFA== 13562 + 11421 13563 react-fast-compare@^2.0.2: 11422 13564 version "2.0.4" 11423 13565 resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-2.0.4.tgz#e84b4d455b0fec113e0402c329352715196f81f9" 11424 13566 integrity sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw== 11425 13567 13568 + react-fast-compare@^3.2.0: 13569 + version "3.2.0" 13570 + resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-3.2.0.tgz#641a9da81b6a6320f270e89724fb45a0b39e43bb" 13571 + integrity sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA== 13572 + 11426 13573 react-from-dom@^0.3.0: 11427 13574 version "0.3.1" 11428 13575 resolved "https://registry.yarnpkg.com/react-from-dom/-/react-from-dom-0.3.1.tgz#49ba6e7d679314807786aa88a37436ec73637bce" ··· 11433 13580 resolved "https://registry.yarnpkg.com/react-ga/-/react-ga-3.1.2.tgz#e13f211c51a2e5c401ea69cf094b9501fe3c51ce" 11434 13581 integrity sha512-OJrMqaHEHbodm+XsnjA6ISBEHTwvpFrxco65mctzl/v3CASMSLSyUkFqz9yYrPDKGBUfNQzKCjuMJwctjlWBbw== 11435 13582 13583 + react-helmet-async@^1.0.2: 13584 + version "1.0.7" 13585 + resolved "https://registry.yarnpkg.com/react-helmet-async/-/react-helmet-async-1.0.7.tgz#b988fbc3abdc4b704982bb74b9cb4a08fcf062c1" 13586 + integrity sha512-By90p5uxAriGukbyejq2poK41DwTxpNWOpOjN8mIyX/BKrCd3+sXZ5pHUZXjHyjR5OYS7PGsOD9dbM61YxfFmA== 13587 + dependencies: 13588 + "@babel/runtime" "^7.11.2" 13589 + invariant "^2.2.4" 13590 + prop-types "^15.7.2" 13591 + react-fast-compare "^3.2.0" 13592 + shallowequal "^1.1.0" 13593 + 11436 13594 react-helmet@^5.2.1: 11437 13595 version "5.2.1" 11438 13596 resolved "https://registry.yarnpkg.com/react-helmet/-/react-helmet-5.2.1.tgz#16a7192fdd09951f8e0fe22ffccbf9bb3e591ffa" ··· 11457 13615 shallowequal "^1.1.0" 11458 13616 source-map "^0.7.3" 11459 13617 13618 + react-hotkeys@2.0.0: 13619 + version "2.0.0" 13620 + resolved "https://registry.yarnpkg.com/react-hotkeys/-/react-hotkeys-2.0.0.tgz#a7719c7340cbba888b0e9184f806a9ec0ac2c53f" 13621 + integrity sha512-3n3OU8vLX/pfcJrR3xJ1zlww6KS1kEJt0Whxc4FiGV+MJrQ1mYSYI3qS/11d2MJDFm8IhOXMTFQirfu6AVOF6Q== 13622 + dependencies: 13623 + prop-types "^15.6.1" 13624 + 11460 13625 react-inlinesvg@^1.2.0: 11461 13626 version "1.2.0" 11462 13627 resolved "https://registry.yarnpkg.com/react-inlinesvg/-/react-inlinesvg-1.2.0.tgz#fa63bda004ed941449a034574269ad4819cdbc8d" ··· 11475 13640 resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362" 11476 13641 integrity sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA== 11477 13642 13643 + react-popper-tooltip@^2.11.0: 13644 + version "2.11.1" 13645 + resolved "https://registry.yarnpkg.com/react-popper-tooltip/-/react-popper-tooltip-2.11.1.tgz#3c4bdfd8bc10d1c2b9a162e859bab8958f5b2644" 13646 + integrity sha512-04A2f24GhyyMicKvg/koIOQ5BzlrRbKiAgP6L+Pdj1MVX3yJ1NeZ8+EidndQsbejFT55oW1b++wg2Z8KlAyhfQ== 13647 + dependencies: 13648 + "@babel/runtime" "^7.9.2" 13649 + react-popper "^1.3.7" 13650 + 13651 + react-popper@^1.3.7: 13652 + version "1.3.7" 13653 + resolved "https://registry.yarnpkg.com/react-popper/-/react-popper-1.3.7.tgz#f6a3471362ef1f0d10a4963673789de1baca2324" 13654 + integrity sha512-nmqYTx7QVjCm3WUZLeuOomna138R1luC4EqkW3hxJUrAe+3eNz3oFCLYdnPwILfn0mX1Ew2c3wctrjlUMYYUww== 13655 + dependencies: 13656 + "@babel/runtime" "^7.1.2" 13657 + create-react-context "^0.3.0" 13658 + deep-equal "^1.1.1" 13659 + popper.js "^1.14.4" 13660 + prop-types "^15.6.1" 13661 + typed-styles "^0.0.7" 13662 + warning "^4.0.2" 13663 + 11478 13664 react-refresh@0.8.3: 11479 13665 version "0.8.3" 11480 13666 resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.8.3.tgz#721d4657672d400c5e3c75d063c4a85fb2d5d68f" ··· 11528 13714 integrity sha512-v1ht1aHg5k/thv56DRcjw+WtojuuDHFUgGfc+bFHOWsF4ZK6C2V57DO0Or0GPsg6+LSTE0M6Ry/gfzhzSwbc5w== 11529 13715 dependencies: 11530 13716 shallowequal "^1.0.1" 13717 + 13718 + react-sizeme@^2.6.7: 13719 + version "2.6.12" 13720 + resolved "https://registry.yarnpkg.com/react-sizeme/-/react-sizeme-2.6.12.tgz#ed207be5476f4a85bf364e92042520499455453e" 13721 + integrity sha512-tL4sCgfmvapYRZ1FO2VmBmjPVzzqgHA7kI8lSJ6JS6L78jXFNRdOZFpXyK6P1NBZvKPPCZxReNgzZNUajAerZw== 13722 + dependencies: 13723 + element-resize-detector "^1.2.1" 13724 + invariant "^2.2.4" 13725 + shallowequal "^1.1.0" 13726 + throttle-debounce "^2.1.0" 11531 13727 11532 13728 react-ssr-prepass@^1.1.2, react-ssr-prepass@^1.2.1: 11533 13729 version "1.2.1" ··· 11654 13850 webpack-flush-chunks "^2.0.3" 11655 13851 webpack-node-externals "^1.7.2" 11656 13852 13853 + react-syntax-highlighter@^12.2.1: 13854 + version "12.2.1" 13855 + resolved "https://registry.yarnpkg.com/react-syntax-highlighter/-/react-syntax-highlighter-12.2.1.tgz#14d78352da1c1c3f93c6698b70ec7c706b83493e" 13856 + integrity sha512-CTsp0ZWijwKRYFg9xhkWD4DSpQqE4vb2NKVMdPAkomnILSmsNBHE0n5GuI5zB+PU3ySVvXvdt9jo+ViD9XibCA== 13857 + dependencies: 13858 + "@babel/runtime" "^7.3.1" 13859 + highlight.js "~9.15.1" 13860 + lowlight "1.12.1" 13861 + prismjs "^1.8.4" 13862 + refractor "^2.4.1" 13863 + 11657 13864 react-test-renderer@^16.0.0-0, react-test-renderer@^16.12.0, react-test-renderer@^16.13.1: 11658 13865 version "16.13.1" 11659 13866 resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-16.13.1.tgz#de25ea358d9012606de51e012d9742e7f0deabc1" ··· 11664 13871 react-is "^16.8.6" 11665 13872 scheduler "^0.19.1" 11666 13873 13874 + react-textarea-autosize@^8.1.1: 13875 + version "8.2.0" 13876 + resolved "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-8.2.0.tgz#fae38653f5ec172a855fd5fffb39e466d56aebdb" 13877 + integrity sha512-grajUlVbkx6VdtSxCgzloUIphIZF5bKr21OYMceWPKkniy7H0mRAT/AXPrRtObAe+zUePnNlBwUc4ivVjUGIjw== 13878 + dependencies: 13879 + "@babel/runtime" "^7.10.2" 13880 + use-composed-ref "^1.0.0" 13881 + use-latest "^1.0.0" 13882 + 11667 13883 react-universal-component@^4.0.0: 11668 13884 version "4.0.1" 11669 13885 resolved "https://registry.yarnpkg.com/react-universal-component/-/react-universal-component-4.0.1.tgz#01eec19dafda55ee7cf71f3aeb996c924718cc19" ··· 11673 13889 prop-types "^15.7.2" 11674 13890 react-hot-loader "^4.3.6" 11675 13891 11676 - react@^16.13.0, react@^16.13.1, react@^16.9.0: 13892 + react@^16.13.0, react@^16.13.1, react@^16.8.3, react@^16.9.0: 11677 13893 version "16.13.1" 11678 13894 resolved "https://registry.yarnpkg.com/react/-/react-16.13.1.tgz#2e818822f1a9743122c063d6410d85c1e3afe48e" 11679 13895 integrity sha512-YMZQQq32xHLX0bz5Mnibv1/LHb3Sqzngu7xstSM+vrkE5Kzr9xE0yMByK5kMoTK30YVJE61WfbxIFFvfeDKT1w== ··· 11681 13897 loose-envify "^1.1.0" 11682 13898 object-assign "^4.1.1" 11683 13899 prop-types "^15.6.2" 13900 + 13901 + reactcss@^1.2.0: 13902 + version "1.2.3" 13903 + resolved "https://registry.yarnpkg.com/reactcss/-/reactcss-1.2.3.tgz#c00013875e557b1cf0dfd9a368a1c3dab3b548dd" 13904 + integrity sha512-KiwVUcFu1RErkI97ywr8nvx8dNOpT03rbnma0SSalTYjkrPYaEajR4a/MRt6DZ46K6arDRbWMNHF+xH7G7n/8A== 13905 + dependencies: 13906 + lodash "^4.0.1" 11684 13907 11685 13908 read-pkg-up@^2.0.0: 11686 13909 version "2.0.0" ··· 11759 13982 dependencies: 11760 13983 mute-stream "~0.0.4" 11761 13984 11762 - "readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.0, readable-stream@^2.3.3, readable-stream@^2.3.5, readable-stream@^2.3.6, readable-stream@~2.3.6: 13985 + "readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.0, readable-stream@^2.3.3, readable-stream@^2.3.5, readable-stream@^2.3.6, readable-stream@~2.3.6: 11763 13986 version "2.3.7" 11764 13987 resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" 11765 13988 integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== ··· 11797 14020 dependencies: 11798 14021 picomatch "^2.2.1" 11799 14022 14023 + recast@^0.14.7: 14024 + version "0.14.7" 14025 + resolved "https://registry.yarnpkg.com/recast/-/recast-0.14.7.tgz#4f1497c2b5826d42a66e8e3c9d80c512983ff61d" 14026 + integrity sha512-/nwm9pkrcWagN40JeJhkPaRxiHXBRkXyRh/hgU088Z/v+qCy+zIHHY6bC6o7NaKAxPqtE6nD8zBH1LfU0/Wx6A== 14027 + dependencies: 14028 + ast-types "0.11.3" 14029 + esprima "~4.0.0" 14030 + private "~0.1.5" 14031 + source-map "~0.6.1" 14032 + 14033 + rechoir@^0.6.2: 14034 + version "0.6.2" 14035 + resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 14036 + integrity sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q= 14037 + dependencies: 14038 + resolve "^1.1.6" 14039 + 14040 + recursive-readdir@2.2.2: 14041 + version "2.2.2" 14042 + resolved "https://registry.yarnpkg.com/recursive-readdir/-/recursive-readdir-2.2.2.tgz#9946fb3274e1628de6e36b2f6714953b4845094f" 14043 + integrity sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg== 14044 + dependencies: 14045 + minimatch "3.0.4" 14046 + 11800 14047 redent@^2.0.0: 11801 14048 version "2.0.0" 11802 14049 resolved "https://registry.yarnpkg.com/redent/-/redent-2.0.0.tgz#c1b2007b42d57eb1389079b3c8333639d5e1ccaa" ··· 11810 14057 resolved "https://registry.yarnpkg.com/reflect.ownkeys/-/reflect.ownkeys-0.2.0.tgz#749aceec7f3fdf8b63f927a04809e90c5c0b3460" 11811 14058 integrity sha1-dJrO7H8/34tj+SegSAnpDFwLNGA= 11812 14059 14060 + refractor@^2.4.1: 14061 + version "2.10.1" 14062 + resolved "https://registry.yarnpkg.com/refractor/-/refractor-2.10.1.tgz#166c32f114ed16fd96190ad21d5193d3afc7d34e" 14063 + integrity sha512-Xh9o7hQiQlDbxo5/XkOX6H+x/q8rmlmZKr97Ie1Q8ZM32IRRd3B/UxuA/yXDW79DBSXGWxm2yRTbcTVmAciJRw== 14064 + dependencies: 14065 + hastscript "^5.0.0" 14066 + parse-entities "^1.1.2" 14067 + prismjs "~1.17.0" 14068 + 11813 14069 regenerate-unicode-properties@^8.0.2, regenerate-unicode-properties@^8.2.0: 11814 14070 version "8.2.0" 11815 14071 resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec" ··· 11827 14083 resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 11828 14084 integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== 11829 14085 11830 - regenerator-runtime@^0.13.4: 14086 + regenerator-runtime@^0.13.3, regenerator-runtime@^0.13.4: 11831 14087 version "0.13.7" 11832 14088 resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55" 11833 14089 integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew== ··· 11916 14172 dependencies: 11917 14173 jsesc "~0.5.0" 11918 14174 11919 - relateurl@0.2.x: 14175 + relateurl@0.2.x, relateurl@^0.2.7: 11920 14176 version "0.2.7" 11921 14177 resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" 11922 14178 integrity sha1-VNvzd+UUQKypCkzSdGANP/LYiKk= ··· 12187 14443 resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 12188 14444 integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= 12189 14445 12190 - resolve@1.17.0, resolve@^1.10.0, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.17.0, resolve@^1.3.2, resolve@^1.8.1: 14446 + resolve@1.17.0, resolve@^1.1.6, resolve@^1.10.0, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.17.0, resolve@^1.3.2, resolve@^1.8.1: 12191 14447 version "1.17.0" 12192 14448 resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444" 12193 14449 integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w== ··· 12265 14521 resolved "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3" 12266 14522 integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM= 12267 14523 12268 - rimraf@2, rimraf@2.x.x, rimraf@^2.5.4, rimraf@^2.6.3, rimraf@^2.7.1: 14524 + rimraf@2, rimraf@2.x.x, rimraf@^2.2.8, rimraf@^2.5.4, rimraf@^2.6.3, rimraf@^2.7.1: 12269 14525 version "2.7.1" 12270 14526 resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" 12271 14527 integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== ··· 12386 14642 dependencies: 12387 14643 aproba "^1.1.1" 12388 14644 12389 - rxjs@^6.4.0, rxjs@^6.6.2: 14645 + rxjs@^6.4.0, rxjs@^6.5.3, rxjs@^6.6.0, rxjs@^6.6.2: 12390 14646 version "6.6.3" 12391 14647 resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.3.tgz#8ca84635c4daa900c0d3967a6ee7ac60271ee552" 12392 14648 integrity sha512-trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ== 12393 14649 dependencies: 12394 14650 tslib "^1.9.0" 14651 + 14652 + safe-buffer@5.1.1: 14653 + version "5.1.1" 14654 + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 14655 + integrity sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg== 12395 14656 12396 14657 safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 12397 14658 version "5.1.2" ··· 12478 14739 ajv-errors "^1.0.0" 12479 14740 ajv-keywords "^3.1.0" 12480 14741 12481 - schema-utils@^2.0.1, schema-utils@^2.5.0, schema-utils@^2.6.1, schema-utils@^2.6.5, schema-utils@^2.6.6: 14742 + schema-utils@^2.0.1, schema-utils@^2.5.0, schema-utils@^2.6.1, schema-utils@^2.6.5, schema-utils@^2.6.6, schema-utils@^2.7.0, schema-utils@^2.7.1: 12482 14743 version "2.7.1" 12483 14744 resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7" 12484 14745 integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg== ··· 12499 14760 resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca" 12500 14761 integrity sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo= 12501 14762 14763 + select@^1.1.2: 14764 + version "1.1.2" 14765 + resolved "https://registry.yarnpkg.com/select/-/select-1.1.2.tgz#0e7350acdec80b1108528786ec1d4418d11b396d" 14766 + integrity sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0= 14767 + 12502 14768 selfsigned@^1.10.7: 12503 14769 version "1.10.7" 12504 14770 resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.7.tgz#da5819fd049d5574f28e88a9bcc6dbc6e6f3906b" ··· 12562 14828 dependencies: 12563 14829 randombytes "^2.1.0" 12564 14830 14831 + serve-favicon@^2.5.0: 14832 + version "2.5.0" 14833 + resolved "https://registry.yarnpkg.com/serve-favicon/-/serve-favicon-2.5.0.tgz#935d240cdfe0f5805307fdfe967d88942a2cbcf0" 14834 + integrity sha1-k10kDN/g9YBTB/3+ln2IlCosvPA= 14835 + dependencies: 14836 + etag "~1.8.1" 14837 + fresh "0.5.2" 14838 + ms "2.1.1" 14839 + parseurl "~1.3.2" 14840 + safe-buffer "5.1.1" 14841 + 12565 14842 serve-handler@6.1.3: 12566 14843 version "6.1.3" 12567 14844 resolved "https://registry.yarnpkg.com/serve-handler/-/serve-handler-6.1.3.tgz#1bf8c5ae138712af55c758477533b9117f6435e8" ··· 12614 14891 serve-handler "6.1.3" 12615 14892 update-check "1.5.2" 12616 14893 12617 - set-blocking@^2.0.0: 14894 + set-blocking@^2.0.0, set-blocking@~2.0.0: 12618 14895 version "2.0.0" 12619 14896 resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 12620 14897 integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= ··· 12652 14929 inherits "^2.0.1" 12653 14930 safe-buffer "^5.0.1" 12654 14931 14932 + shallow-clone@^0.1.2: 14933 + version "0.1.2" 14934 + resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-0.1.2.tgz#5909e874ba77106d73ac414cfec1ffca87d97060" 14935 + integrity sha1-WQnodLp3EG1zrEFM/sH/yofZcGA= 14936 + dependencies: 14937 + is-extendable "^0.1.1" 14938 + kind-of "^2.0.1" 14939 + lazy-cache "^0.2.3" 14940 + mixin-object "^2.0.1" 14941 + 12655 14942 shallow-clone@^3.0.0: 12656 14943 version "3.0.1" 12657 14944 resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" ··· 12693 14980 resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2" 12694 14981 integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg== 12695 14982 14983 + shelljs@^0.8.3: 14984 + version "0.8.4" 14985 + resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.4.tgz#de7684feeb767f8716b326078a8a00875890e3c2" 14986 + integrity sha512-7gk3UZ9kOfPLIAbslLzyWeGiEqx9e3rxwZM0KE6EL8GlGwjym9Mrlx5/p33bWTu9YG6vcS4MBxYZDHYr5lr8BQ== 14987 + dependencies: 14988 + glob "^7.0.0" 14989 + interpret "^1.0.0" 14990 + rechoir "^0.6.2" 14991 + 12696 14992 shelljs@~0.5.3: 12697 14993 version "0.5.3" 12698 14994 resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.5.3.tgz#c54982b996c76ef0c1e6b59fbdc5825f5b713113" ··· 12732 15028 version "1.0.5" 12733 15029 resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" 12734 15030 integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== 15031 + 15032 + slash@^1.0.0: 15033 + version "1.0.0" 15034 + resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 15035 + integrity sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU= 12735 15036 12736 15037 slash@^2.0.0: 12737 15038 version "2.0.0" ··· 12954 15255 dependencies: 12955 15256 whatwg-url "^7.0.0" 12956 15257 12957 - source-map@^0.5.0, source-map@^0.5.1, source-map@^0.5.6: 15258 + source-map@^0.5.0, source-map@^0.5.1, source-map@^0.5.6, source-map@^0.5.7: 12958 15259 version "0.5.7" 12959 15260 resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 12960 15261 integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= ··· 13075 15376 figgy-pudding "^3.5.1" 13076 15377 minipass "^3.1.1" 13077 15378 15379 + ssri@^8.0.0: 15380 + version "8.0.0" 15381 + resolved "https://registry.yarnpkg.com/ssri/-/ssri-8.0.0.tgz#79ca74e21f8ceaeddfcb4b90143c458b8d988808" 15382 + integrity sha512-aq/pz989nxVYwn16Tsbj1TqFpD5LLrQxHf5zaHuieFV+R0Bbr4y8qUsOA45hXT/N4/9UNXTarBjnjVmjSOVaAA== 15383 + dependencies: 15384 + minipass "^3.1.1" 15385 + 13078 15386 stable@^0.1.8: 13079 15387 version "0.1.8" 13080 15388 resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" ··· 13121 15429 version "1.1.1" 13122 15430 resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" 13123 15431 integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= 15432 + 15433 + store2@^2.7.1: 15434 + version "2.12.0" 15435 + resolved "https://registry.yarnpkg.com/store2/-/store2-2.12.0.tgz#e1f1b7e1a59b6083b2596a8d067f6ee88fd4d3cf" 15436 + integrity sha512-7t+/wpKLanLzSnQPX8WAcuLCCeuSHoWdQuh9SB3xD0kNOM38DNf+0Oa+wmvxmYueRzkmh6IcdKFtvTa+ecgPDw== 13124 15437 13125 15438 stream-browserify@3.0.0: 13126 15439 version "3.0.0" ··· 13192 15505 char-regex "^1.0.2" 13193 15506 strip-ansi "^6.0.0" 13194 15507 13195 - string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: 15508 + string-width@^1.0.1: 15509 + version "1.0.2" 15510 + resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 15511 + integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= 15512 + dependencies: 15513 + code-point-at "^1.0.0" 15514 + is-fullwidth-code-point "^1.0.0" 15515 + strip-ansi "^3.0.0" 15516 + 15517 + "string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: 13196 15518 version "2.1.1" 13197 15519 resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 13198 15520 integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== ··· 13209 15531 is-fullwidth-code-point "^2.0.0" 13210 15532 strip-ansi "^5.1.0" 13211 15533 13212 - string-width@^4.1.0, string-width@^4.2.0: 15534 + string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0: 13213 15535 version "4.2.0" 13214 15536 resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" 13215 15537 integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg== ··· 13218 15540 is-fullwidth-code-point "^3.0.0" 13219 15541 strip-ansi "^6.0.0" 13220 15542 13221 - string.prototype.matchall@^4.0.2: 15543 + "string.prototype.matchall@^4.0.0 || ^3.0.1", string.prototype.matchall@^4.0.2: 13222 15544 version "4.0.2" 13223 15545 resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.2.tgz#48bb510326fb9fdeb6a33ceaa81a6ea04ef7648e" 13224 15546 integrity sha512-N/jp6O5fMf9os0JU3E72Qhf590RSRZU/ungsL/qJUYVTNv7hTG0P/dbPjxINVN9jpscu3nzYwKESU3P3RY5tOg== ··· 13234 15556 version "3.1.0" 13235 15557 resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.1.0.tgz#dc08f57a8010dc5c153550318f67e13adbb72ac3" 13236 15558 integrity sha512-3aIv8Ffdp8EZj8iLwREGpQaUZiPyrWrpzMBHvkiSW/bK/EGve9np07Vwy7IJ5waydpGXzQZu/F8Oze2/IWkBaA== 15559 + dependencies: 15560 + define-properties "^1.1.3" 15561 + es-abstract "^1.17.0-next.1" 15562 + 15563 + string.prototype.padstart@^3.0.0: 15564 + version "3.1.0" 15565 + resolved "https://registry.yarnpkg.com/string.prototype.padstart/-/string.prototype.padstart-3.1.0.tgz#b47c087540d0710be5a49375751a0a627bd4ff90" 15566 + integrity sha512-envqZvUp2JItI+OeQ5UAh1ihbAV5G/2bixTojvlIa090GGqF+NQRxbWb2nv9fTGrZABv6+pE6jXoAZhhS2k4Hw== 13237 15567 dependencies: 13238 15568 define-properties "^1.1.3" 13239 15569 es-abstract "^1.17.0-next.1" ··· 13357 15687 resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" 13358 15688 integrity sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g= 13359 15689 15690 + strip-indent@^3.0.0: 15691 + version "3.0.0" 15692 + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" 15693 + integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== 15694 + dependencies: 15695 + min-indent "^1.0.0" 15696 + 13360 15697 strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: 13361 15698 version "3.1.1" 13362 15699 resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" ··· 13382 15719 loader-utils "^1.1.0" 13383 15720 schema-utils "^1.0.0" 13384 15721 13385 - style-loader@1.2.1: 15722 + style-loader@1.2.1, style-loader@^1.2.1: 13386 15723 version "1.2.1" 13387 15724 resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.2.1.tgz#c5cbbfbf1170d076cfdd86e0109c5bba114baa1a" 13388 15725 integrity sha512-ByHSTQvHLkWE9Ir5+lGbVOXhxX10fbprhLvdg96wedFZb4NDekDPxVKv5Fwmio+QcMlkkNfuK+5W1peQ5CUhZg== ··· 13458 15795 pirates "^4.0.1" 13459 15796 ts-interface-checker "^0.1.9" 13460 15797 15798 + supports-color@^2.0.0: 15799 + version "2.0.0" 15800 + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 15801 + integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= 15802 + 13461 15803 supports-color@^5.3.0, supports-color@^5.5.0: 13462 15804 version "5.5.0" 13463 15805 resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" ··· 13527 15869 resolved "https://registry.yarnpkg.com/svelte/-/svelte-3.24.1.tgz#aca364937dd1df27fe131e2a4c234acb6061db4b" 13528 15870 integrity sha512-OX/IBVUJSFo1rnznXdwf9rv6LReJ3qQ0PwRjj76vfUWyTfbHbR9OXqJBnUrpjyis2dwYcbT2Zm1DFjOOF1ZbbQ== 13529 15871 13530 - svgo@^1.0.0: 15872 + svg-parser@^2.0.2: 15873 + version "2.0.4" 15874 + resolved "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.4.tgz#fdc2e29e13951736140b76cb122c8ee6630eb6b5" 15875 + integrity sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ== 15876 + 15877 + svgo@^1.0.0, svgo@^1.2.2: 13531 15878 version "1.3.2" 13532 15879 resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.3.2.tgz#b6dc511c063346c9e415b81e43401145b96d4167" 13533 15880 integrity sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw== ··· 13557 15904 version "3.2.4" 13558 15905 resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" 13559 15906 integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== 15907 + 15908 + symbol.prototype.description@^1.0.0: 15909 + version "1.0.2" 15910 + resolved "https://registry.yarnpkg.com/symbol.prototype.description/-/symbol.prototype.description-1.0.2.tgz#f325e1e6ad534b3b29c9c3ca73c136c9ce03c5e2" 15911 + integrity sha512-2CW5SU4/Ki1cYOOHcL2cXK4rxSg5hCU1TwZ7X4euKhV9VnfqKslh7T6/UyKkubA8cq2tOmsOv7m3ZUmQslBRuw== 15912 + dependencies: 15913 + es-abstract "^1.17.0-next.1" 15914 + has-symbols "^1.0.1" 13560 15915 13561 15916 table@^5.2.3: 13562 15917 version "5.4.6" ··· 13607 15962 inherits "^2.0.3" 13608 15963 readable-stream "^3.1.1" 13609 15964 15965 + tar@^6.0.2: 15966 + version "6.0.5" 15967 + resolved "https://registry.yarnpkg.com/tar/-/tar-6.0.5.tgz#bde815086e10b39f1dcd298e89d596e1535e200f" 15968 + integrity sha512-0b4HOimQHj9nXNEAA7zWwMM91Zhhba3pspja6sQbgTpynOJf+bkjBnfybNYzbpLbnwXnbyB4LOREvlyXLkCHSg== 15969 + dependencies: 15970 + chownr "^2.0.0" 15971 + fs-minipass "^2.0.0" 15972 + minipass "^3.0.0" 15973 + minizlib "^2.1.1" 15974 + mkdirp "^1.0.3" 15975 + yallist "^4.0.0" 15976 + 13610 15977 tarr@1.1.0: 13611 15978 version "1.1.0" 13612 15979 resolved "https://registry.yarnpkg.com/tarr/-/tarr-1.1.0.tgz#d7a9532ce97f08f5200b78ae0a82a6883173c8c8" ··· 13616 15983 fstream ">=1.0.12" 13617 15984 inherits "2" 13618 15985 15986 + telejson@^5.0.2: 15987 + version "5.0.2" 15988 + resolved "https://registry.yarnpkg.com/telejson/-/telejson-5.0.2.tgz#ed1e64be250cc1c757a53c19e1740b49832b3d51" 15989 + integrity sha512-XCrDHGbinczsscs8LXFr9jDhvy37yBk9piB7FJrCfxE8oP66WDkolNMpaBkWYgQqB9dQGBGtTDzGQPedc9KJmw== 15990 + dependencies: 15991 + "@types/is-function" "^1.0.0" 15992 + global "^4.4.0" 15993 + is-function "^1.0.2" 15994 + is-regex "^1.1.1" 15995 + is-symbol "^1.0.3" 15996 + isobject "^4.0.0" 15997 + lodash "^4.17.19" 15998 + memoizerific "^1.11.3" 15999 + 13619 16000 term-size@^1.2.0: 13620 16001 version "1.2.0" 13621 16002 resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" ··· 13651 16032 webpack-sources "^1.4.0" 13652 16033 worker-farm "^1.7.0" 13653 16034 13654 - terser@4.8.0, terser@^4.1.2: 16035 + terser-webpack-plugin@^3.0.0: 16036 + version "3.1.0" 16037 + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-3.1.0.tgz#91e6d39571460ed240c0cf69d295bcf30ebf98cb" 16038 + integrity sha512-cjdZte66fYkZ65rQ2oJfrdCAkkhJA7YLYk5eGOcGCSGlq0ieZupRdjedSQXYknMPo2IveQL+tPdrxUkERENCFA== 16039 + dependencies: 16040 + cacache "^15.0.5" 16041 + find-cache-dir "^3.3.1" 16042 + jest-worker "^26.2.1" 16043 + p-limit "^3.0.2" 16044 + schema-utils "^2.6.6" 16045 + serialize-javascript "^4.0.0" 16046 + source-map "^0.6.1" 16047 + terser "^4.8.0" 16048 + webpack-sources "^1.4.3" 16049 + 16050 + terser@4.8.0, terser@^4.1.2, terser@^4.6.3, terser@^4.8.0: 13655 16051 version "4.8.0" 13656 16052 resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.0.tgz#63056343d7c70bb29f3af665865a46fe03a0df17" 13657 16053 integrity sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw== ··· 13660 16056 source-map "~0.6.1" 13661 16057 source-map-support "~0.5.12" 13662 16058 13663 - terser@^5.0.0, terser@^5.3.0: 13664 - version "5.3.0" 13665 - resolved "https://registry.yarnpkg.com/terser/-/terser-5.3.0.tgz#c481f4afecdcc182d5e2bdd2ff2dc61555161e81" 13666 - integrity sha512-XTT3D3AwxC54KywJijmY2mxZ8nJiEjBHVYzq8l9OaYuRFWeQNBwvipuzzYEP4e+/AVcd1hqG/CqgsdIRyT45Fg== 16059 + terser@^5.0.0, terser@^5.3.1: 16060 + version "5.3.2" 16061 + resolved "https://registry.yarnpkg.com/terser/-/terser-5.3.2.tgz#f4bea90eb92945b2a028ceef79181b9bb586e7af" 16062 + integrity sha512-H67sydwBz5jCUA32ZRL319ULu+Su1cAoZnnc+lXnenGRYWyLE3Scgkt8mNoAsMx0h5kdo758zdoS0LG9rYZXDQ== 13667 16063 dependencies: 13668 16064 commander "^2.20.0" 13669 16065 source-map "~0.6.1" ··· 13678 16074 glob "^7.1.4" 13679 16075 minimatch "^3.0.4" 13680 16076 13681 - text-table@^0.2.0: 16077 + text-table@0.2.0, text-table@^0.2.0: 13682 16078 version "0.2.0" 13683 16079 resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 13684 16080 integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= ··· 13702 16098 resolved "https://registry.yarnpkg.com/throat/-/throat-5.0.0.tgz#c5199235803aad18754a667d659b5e72ce16764b" 13703 16099 integrity sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA== 13704 16100 16101 + throttle-debounce@^2.1.0: 16102 + version "2.3.0" 16103 + resolved "https://registry.yarnpkg.com/throttle-debounce/-/throttle-debounce-2.3.0.tgz#fd31865e66502071e411817e241465b3e9c372e2" 16104 + integrity sha512-H7oLPV0P7+jgvrk+6mwwwBDmxTaxnu9HMXmloNLXwnNO0ZxZ31Orah2n8lU1eMPvsaowP2CX+USCgyovXfdOFQ== 16105 + 13705 16106 through2@^2.0.0, through2@^2.0.3: 13706 16107 version "2.0.5" 13707 16108 resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" ··· 13737 16138 resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4" 13738 16139 integrity sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q= 13739 16140 16141 + tiny-emitter@^2.0.0: 16142 + version "2.1.0" 16143 + resolved "https://registry.yarnpkg.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz#1d1a56edfc51c43e863cbb5382a72330e3555423" 16144 + integrity sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q== 16145 + 13740 16146 tiny-invariant@^1.0.2: 13741 16147 version "1.1.0" 13742 16148 resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.1.0.tgz#634c5f8efdc27714b7f386c35e6760991d230875" ··· 13746 16152 version "1.0.3" 13747 16153 resolved "https://registry.yarnpkg.com/tiny-warning/-/tiny-warning-1.0.3.tgz#94a30db453df4c643d0fd566060d60a875d84754" 13748 16154 integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA== 16155 + 16156 + tinycolor2@^1.4.1: 16157 + version "1.4.1" 16158 + resolved "https://registry.yarnpkg.com/tinycolor2/-/tinycolor2-1.4.1.tgz#f4fad333447bc0b07d4dc8e9209d8f39a8ac77e8" 16159 + integrity sha1-9PrTM0R7wLB9TcjpIJ2POaisd+g= 13749 16160 13750 16161 tmp@^0.0.33: 13751 16162 version "0.0.33" ··· 13819 16230 is-buffer "^2.0.0" 13820 16231 vfile "^4.0.0" 13821 16232 16233 + toggle-selection@^1.0.6: 16234 + version "1.0.6" 16235 + resolved "https://registry.yarnpkg.com/toggle-selection/-/toggle-selection-1.0.6.tgz#6e45b1263f2017fa0acc7d89d78b15b8bf77da32" 16236 + integrity sha1-bkWxJj8gF/oKzH2J14sVuL932jI= 16237 + 13822 16238 toidentifier@1.0.0: 13823 16239 version "1.0.0" 13824 16240 resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" ··· 13902 16318 resolved "https://registry.yarnpkg.com/tryer/-/tryer-1.0.1.tgz#f2c85406800b9b0f74c9f7465b81eaad241252f8" 13903 16319 integrity sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA== 13904 16320 16321 + ts-dedent@^1.1.1: 16322 + version "1.1.1" 16323 + resolved "https://registry.yarnpkg.com/ts-dedent/-/ts-dedent-1.1.1.tgz#68fad040d7dbd53a90f545b450702340e17d18f3" 16324 + integrity sha512-UGTRZu1evMw4uTPyYF66/KFd22XiU+jMaIuHrkIHQ2GivAXVlLV0v/vHrpOuTRf9BmpNHi/SO7Vd0rLu0y57jg== 16325 + 16326 + ts-essentials@^2.0.3: 16327 + version "2.0.12" 16328 + resolved "https://registry.yarnpkg.com/ts-essentials/-/ts-essentials-2.0.12.tgz#c9303f3d74f75fa7528c3d49b80e089ab09d8745" 16329 + integrity sha512-3IVX4nI6B5cc31/GFFE+i8ey/N2eA0CZDbo6n0yrz0zDX8ZJ8djmU1p+XRz7G3is0F3bB3pu2pAroFdAWQKU3w== 16330 + 13905 16331 ts-interface-checker@^0.1.9: 13906 16332 version "0.1.13" 13907 16333 resolved "https://registry.yarnpkg.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699" ··· 13939 16365 minimist "^1.2.0" 13940 16366 strip-bom "^3.0.0" 13941 16367 13942 - tslib@2.0.1: 16368 + tslib@2.0.1, tslib@^2.0.0, tslib@^2.0.1: 13943 16369 version "2.0.1" 13944 16370 resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.0.1.tgz#410eb0d113e5b6356490eec749603725b021b43e" 13945 16371 integrity sha512-SgIkNheinmEBgx1IUNirK0TUD4X9yjjBRTqqjggWCU3pUEqIk3/Uwl3yRixYKT6WjQuGiwDv4NomL3wqRCj+CQ== 13946 16372 13947 - tslib@^1.8.1, tslib@^1.9.0: 16373 + tslib@^1.10.0, tslib@^1.8.1, tslib@^1.9.0: 13948 16374 version "1.13.0" 13949 16375 resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043" 13950 16376 integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== ··· 14047 16473 resolved "https://registry.yarnpkg.com/type/-/type-2.1.0.tgz#9bdc22c648cf8cf86dd23d32336a41cfb6475e3f" 14048 16474 integrity sha512-G9absDWvhAWCV2gmF1zKud3OyC61nZDwWvBL2DApaVFogI07CprggiQAOOjvp2NRjYWFzPyu7vwtDrQFq8jeSA== 14049 16475 16476 + typed-styles@^0.0.7: 16477 + version "0.0.7" 16478 + resolved "https://registry.yarnpkg.com/typed-styles/-/typed-styles-0.0.7.tgz#93392a008794c4595119ff62dde6809dbc40a3d9" 16479 + integrity sha512-pzP0PWoZUhsECYjABgCGQlRGL1n7tOHsgwYv3oIiEpJwGhFTuty/YNeduxQYzXXa3Ge5BdT6sHYIQYpl4uJ+5Q== 16480 + 14050 16481 typedarray-to-buffer@^3.1.5: 14051 16482 version "3.1.5" 14052 16483 resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" ··· 14080 16511 buffer "^5.2.1" 14081 16512 through "^2.3.8" 14082 16513 14083 - unfetch@^4.0.0: 16514 + unfetch@^4.0.0, unfetch@^4.1.0: 14084 16515 version "4.1.0" 14085 16516 resolved "https://registry.yarnpkg.com/unfetch/-/unfetch-4.1.0.tgz#6ec2dd0de887e58a4dee83a050ded80ffc4137db" 14086 16517 integrity sha512-crP/n3eAPUJxZXM9T80/yv0YhkTEx2K1D3h7D1AJM6fzsWZrxdyRuLN0JH/dkZh1LNH8LxCnBzoPFCPbb2iGpg== ··· 14280 16711 resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" 14281 16712 integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== 14282 16713 16714 + universalify@^1.0.0: 16715 + version "1.0.0" 16716 + resolved "https://registry.yarnpkg.com/universalify/-/universalify-1.0.0.tgz#b61a1da173e8435b2fe3c67d29b9adf8594bd16d" 16717 + integrity sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug== 16718 + 14283 16719 unpipe@1.0.0, unpipe@~1.0.0: 14284 16720 version "1.0.0" 14285 16721 resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 14286 16722 integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= 14287 16723 14288 - unquote@~1.1.1: 16724 + unquote@^1.1.0, unquote@~1.1.1: 14289 16725 version "1.1.1" 14290 16726 resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544" 14291 16727 integrity sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ= ··· 14337 16773 mime "^2.4.4" 14338 16774 schema-utils "^2.5.0" 14339 16775 16776 + url-loader@^4.0.0: 16777 + version "4.1.0" 16778 + resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-4.1.0.tgz#c7d6b0d6b0fccd51ab3ffc58a78d32b8d89a7be2" 16779 + integrity sha512-IzgAAIC8wRrg6NYkFIJY09vtktQcsvU8V6HhtQj9PTefbYImzLB1hufqo4m+RyM5N3mLx5BqJKccgxJS+W3kqw== 16780 + dependencies: 16781 + loader-utils "^2.0.0" 16782 + mime-types "^2.1.26" 16783 + schema-utils "^2.6.5" 16784 + 14340 16785 url-parse-as-address@1.0.0: 14341 16786 version "1.0.0" 14342 16787 resolved "https://registry.yarnpkg.com/url-parse-as-address/-/url-parse-as-address-1.0.0.tgz#fb80901883f338b3cbed3538f5faa26adaf7f2e7" ··· 14370 16815 punycode "1.3.2" 14371 16816 querystring "0.2.0" 14372 16817 16818 + use-composed-ref@^1.0.0: 16819 + version "1.0.0" 16820 + resolved "https://registry.yarnpkg.com/use-composed-ref/-/use-composed-ref-1.0.0.tgz#bb13e8f4a0b873632cde4940abeb88b92d03023a" 16821 + integrity sha512-RVqY3NFNjZa0xrmK3bIMWNmQ01QjKPDc7DeWR3xa/N8aliVppuutOE5bZzPkQfvL+5NRWMMp0DJ99Trd974FIw== 16822 + dependencies: 16823 + ts-essentials "^2.0.3" 16824 + 16825 + use-isomorphic-layout-effect@^1.0.0: 16826 + version "1.0.0" 16827 + resolved "https://registry.yarnpkg.com/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.0.0.tgz#f56b4ed633e1c21cd9fc76fe249002a1c28989fb" 16828 + integrity sha512-JMwJ7Vd86NwAt1jH7q+OIozZSIxA4ND0fx6AsOe2q1H8ooBUp5aN6DvVCqZiIaYU6JaMRJGyR0FO7EBCIsb/Rg== 16829 + 16830 + use-latest@^1.0.0: 16831 + version "1.1.0" 16832 + resolved "https://registry.yarnpkg.com/use-latest/-/use-latest-1.1.0.tgz#7bf9684555869c3f5f37e10d0884c8accf4d3aa6" 16833 + integrity sha512-gF04d0ZMV3AMB8Q7HtfkAWe+oq1tFXP6dZKwBHQF5nVXtGsh2oAYeeqma5ZzxtlpOcW8Ro/tLcfmEodjDeqtuw== 16834 + dependencies: 16835 + use-isomorphic-layout-effect "^1.0.0" 16836 + 14373 16837 use-subscription@1.4.1: 14374 16838 version "1.4.1" 14375 16839 resolved "https://registry.yarnpkg.com/use-subscription/-/use-subscription-1.4.1.tgz#edcbcc220f1adb2dd4fa0b2f61b6cc308e620069" ··· 14382 16846 resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" 14383 16847 integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== 14384 16848 14385 - util-deprecate@^1.0.1, util-deprecate@~1.0.1: 16849 + util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: 14386 16850 version "1.0.2" 14387 16851 resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 14388 16852 integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= ··· 14465 16929 resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.1.0.tgz#6f1536eb43249f473abc6bd58ff983da1ca30d8d" 14466 16930 integrity sha512-CI18flHDznR0lq54xBycOVmphdCYnQLKn8abKn7PXUiKUGdEd+/l9LWNJmugXel4hXq7S+RMNl34ecyC9TntWg== 14467 16931 14468 - uuid@^3.3.2, uuid@^3.4.0: 16932 + uuid@^3.1.0, uuid@^3.3.2, uuid@^3.4.0: 14469 16933 version "3.4.0" 14470 16934 resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" 14471 16935 integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== ··· 14600 17064 dependencies: 14601 17065 makeerror "1.0.x" 14602 17066 14603 - warning@^4.0.3: 17067 + warning@^4.0.2, warning@^4.0.3: 14604 17068 version "4.0.3" 14605 17069 resolved "https://registry.yarnpkg.com/warning/-/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3" 14606 17070 integrity sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w== ··· 14691 17155 opener "^1.5.1" 14692 17156 ws "^6.0.0" 14693 17157 14694 - webpack-dev-middleware@^3.7.2: 17158 + webpack-dev-middleware@^3.7.0, webpack-dev-middleware@^3.7.2: 14695 17159 version "3.7.2" 14696 17160 resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-3.7.2.tgz#0019c3db716e3fa5cecbf64f2ab88a74bab331f3" 14697 17161 integrity sha512-1xC42LxbYoqLNAhV6YzTYacicgMZQTqRd27Sim9wn5hJrX3I5nxYy1SxSd4+gjUFsz1dQFj+yEe6zEVmSkeJjw== ··· 14759 17223 resolved "https://registry.yarnpkg.com/webpack-flush-chunks/-/webpack-flush-chunks-2.0.3.tgz#77a4f18d101f889ec33456a0c64a8c0f8b4600db" 14760 17224 integrity sha512-CXGOyXG5YjjxyI+Qyt3VlI//JX92UmGRNP65zN3o9CIntEzfzc1J30YTKRRvF1JsE/iEzbnp5u99yCkL9obotQ== 14761 17225 17226 + webpack-hot-middleware@^2.25.0: 17227 + version "2.25.0" 17228 + resolved "https://registry.yarnpkg.com/webpack-hot-middleware/-/webpack-hot-middleware-2.25.0.tgz#4528a0a63ec37f8f8ef565cf9e534d57d09fe706" 17229 + integrity sha512-xs5dPOrGPCzuRXNi8F6rwhawWvQQkeli5Ro48PRuQh8pYPCPmNnltP9itiUPT4xI8oW+y0m59lyyeQk54s5VgA== 17230 + dependencies: 17231 + ansi-html "0.0.7" 17232 + html-entities "^1.2.0" 17233 + querystring "^0.2.0" 17234 + strip-ansi "^3.0.0" 17235 + 17236 + webpack-log@^1.1.2: 17237 + version "1.2.0" 17238 + resolved "https://registry.yarnpkg.com/webpack-log/-/webpack-log-1.2.0.tgz#a4b34cda6b22b518dbb0ab32e567962d5c72a43d" 17239 + integrity sha512-U9AnICnu50HXtiqiDxuli5gLB5PGBo7VvcHx36jRZHwK4vzOYLbImqT4lwWwoMHdQWwEKw736fCHEekokTEKHA== 17240 + dependencies: 17241 + chalk "^2.1.0" 17242 + log-symbols "^2.1.0" 17243 + loglevelnext "^1.0.1" 17244 + uuid "^3.1.0" 17245 + 14762 17246 webpack-log@^2.0.0: 14763 17247 version "2.0.0" 14764 17248 resolved "https://registry.yarnpkg.com/webpack-log/-/webpack-log-2.0.0.tgz#5b7928e0637593f119d32f6227c1e0ac31e1b47f" ··· 14772 17256 resolved "https://registry.yarnpkg.com/webpack-node-externals/-/webpack-node-externals-1.7.2.tgz#6e1ee79ac67c070402ba700ef033a9b8d52ac4e3" 14773 17257 integrity sha512-ajerHZ+BJKeCLviLUUmnyd5B4RavLF76uv3cs6KNuO8W+HuQaEs0y0L7o40NQxdPy5w0pcv8Ew7yPUAQG0UdCg== 14774 17258 14775 - webpack-sources@1.4.3, webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1: 17259 + webpack-sources@1.4.3, webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1, webpack-sources@^1.4.3: 14776 17260 version "1.4.3" 14777 17261 resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933" 14778 17262 integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ== ··· 14780 17264 source-list-map "^2.0.0" 14781 17265 source-map "~0.6.1" 14782 17266 14783 - webpack@4.44.1, webpack@^4.39.2: 17267 + webpack-virtual-modules@^0.2.2: 17268 + version "0.2.2" 17269 + resolved "https://registry.yarnpkg.com/webpack-virtual-modules/-/webpack-virtual-modules-0.2.2.tgz#20863dc3cb6bb2104729fff951fbe14b18bd0299" 17270 + integrity sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA== 17271 + dependencies: 17272 + debug "^3.0.0" 17273 + 17274 + webpack@4.44.1: 14784 17275 version "4.44.1" 14785 17276 resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.44.1.tgz#17e69fff9f321b8f117d1fda714edfc0b939cc21" 14786 17277 integrity sha512-4UOGAohv/VGUNQJstzEywwNxqX417FnjZgZJpJQegddzPmTvph37eBIRbRTfdySXzVtJXLJfbMN3mMYhM6GdmQ== ··· 14809 17300 watchpack "^1.7.4" 14810 17301 webpack-sources "^1.4.1" 14811 17302 17303 + webpack@^4.39.2, webpack@^4.43.0: 17304 + version "4.44.2" 17305 + resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.44.2.tgz#6bfe2b0af055c8b2d1e90ed2cd9363f841266b72" 17306 + integrity sha512-6KJVGlCxYdISyurpQ0IPTklv+DULv05rs2hseIXer6D7KrUicRDLFb4IUM1S6LUAKypPM/nSiVSuv8jHu1m3/Q== 17307 + dependencies: 17308 + "@webassemblyjs/ast" "1.9.0" 17309 + "@webassemblyjs/helper-module-context" "1.9.0" 17310 + "@webassemblyjs/wasm-edit" "1.9.0" 17311 + "@webassemblyjs/wasm-parser" "1.9.0" 17312 + acorn "^6.4.1" 17313 + ajv "^6.10.2" 17314 + ajv-keywords "^3.4.1" 17315 + chrome-trace-event "^1.0.2" 17316 + enhanced-resolve "^4.3.0" 17317 + eslint-scope "^4.0.3" 17318 + json-parse-better-errors "^1.0.2" 17319 + loader-runner "^2.4.0" 17320 + loader-utils "^1.2.3" 17321 + memory-fs "^0.4.1" 17322 + micromatch "^3.1.10" 17323 + mkdirp "^0.5.3" 17324 + neo-async "^2.6.1" 17325 + node-libs-browser "^2.2.1" 17326 + schema-utils "^1.0.0" 17327 + tapable "^1.1.3" 17328 + terser-webpack-plugin "^1.4.3" 17329 + watchpack "^1.7.4" 17330 + webpack-sources "^1.4.1" 17331 + 14812 17332 websocket-driver@0.6.5: 14813 17333 version "0.6.5" 14814 17334 resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.6.5.tgz#5cb2556ceb85f4373c6d8238aa691c8454e13a36" ··· 14911 17431 has-symbols "^1.0.1" 14912 17432 is-typed-array "^1.1.3" 14913 17433 14914 - which@^1.2.9: 17434 + which@^1.2.9, which@^1.3.1: 14915 17435 version "1.3.1" 14916 17436 resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 14917 17437 integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== ··· 14925 17445 dependencies: 14926 17446 isexe "^2.0.0" 14927 17447 17448 + wide-align@^1.1.0: 17449 + version "1.1.3" 17450 + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 17451 + integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== 17452 + dependencies: 17453 + string-width "^1.0.2 || 2" 17454 + 14928 17455 widest-line@^2.0.0: 14929 17456 version "2.0.1" 14930 17457 resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.1.tgz#7438764730ec7ef4381ce4df82fb98a53142a3fc" ··· 14932 17459 dependencies: 14933 17460 string-width "^2.1.1" 14934 17461 17462 + widest-line@^3.1.0: 17463 + version "3.1.0" 17464 + resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-3.1.0.tgz#8292333bbf66cb45ff0de1603b136b7ae1496eca" 17465 + integrity sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg== 17466 + dependencies: 17467 + string-width "^4.0.0" 17468 + 14935 17469 winston@0.8.x: 14936 17470 version "0.8.3" 14937 17471 resolved "https://registry.yarnpkg.com/winston/-/winston-0.8.3.tgz#64b6abf4cd01adcaefd5009393b1d8e8bec19db0" ··· 14945 17479 pkginfo "0.3.x" 14946 17480 stack-trace "0.0.x" 14947 17481 14948 - wonka@^4.0.14: 17482 + wonka@^4.0.14, wonka@latest: 14949 17483 version "4.0.14" 14950 17484 resolved "https://registry.yarnpkg.com/wonka/-/wonka-4.0.14.tgz#77d680a84e575ed15a9f975eb87d6c530488f3a4" 14951 17485 integrity sha512-v9vmsTxpZjrA8CYfztbuoTQSHEsG3ZH+NCYfasHm0V3GqBupXrjuuz0RJyUaw2cRO7ouW2js0P6i853/qxlDcA== ··· 14961 17495 integrity sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw== 14962 17496 dependencies: 14963 17497 errno "~0.1.7" 17498 + 17499 + worker-rpc@^0.1.0: 17500 + version "0.1.1" 17501 + resolved "https://registry.yarnpkg.com/worker-rpc/-/worker-rpc-0.1.1.tgz#cb565bd6d7071a8f16660686051e969ad32f54d5" 17502 + integrity sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg== 17503 + dependencies: 17504 + microevent.ts "~0.1.1" 14964 17505 14965 17506 wrap-ansi@^5.1.0: 14966 17507 version "5.1.0"