postcss / postcss-import

PostCSS plugin to inline at-import rules content
MIT License
1.37k stars 116 forks source link

Invalid PostCSS Plugin found at: plugins[0] #437

Closed dfalling closed 3 years ago

dfalling commented 3 years ago

v13 of this plugin won't compile for me. Is there something different I need to do to import the plugin as of v13?

Failed to compile.

./src/assets/Index.css (./node_modules/css-loader/dist/cjs.js??ref--5-oneOf-4-1!./node_modules/react-scripts/node_modules/postcss-loader/src??postcss!./src/assets/Index.css)
TypeError: Invalid PostCSS Plugin found at: plugins[0]

(@/Users/dfalling/Code/ido/postcss.config.js)
    at Array.forEach (<anonymous>)

Node 10.18.0

postcss.config.js:

const postcssImport = require("postcss-import");

module.exports = {
  plugins: [
    postcssImport
  ],
};

package.json:

    "postcss": "8.1.4",
    "postcss-loader": "4.0.4",
    "postcss-import": "13.0.0",
RyanZim commented 3 years ago

Nope, what you're showing me looks good; I suspect dependency issues; what's the output of npm ls in your project directory?

dfalling commented 3 years ago

npm ls output:

``` ├─┬ @craco/craco@5.7.0 │ ├─┬ cross-spawn@7.0.1 │ │ ├── path-key@3.1.0 │ │ ├─┬ shebang-command@2.0.0 │ │ │ └── shebang-regex@3.0.0 │ │ └─┬ which@2.0.1 │ │ └── isexe@2.0.0 │ ├── lodash@4.17.20 │ └─┬ webpack-merge@4.2.2 │ └── lodash@4.17.20 deduped ├─┬ @fullcalendar/core@5.3.1 │ ├─┬ @fullcalendar/common@5.3.1 │ │ └── tslib@2.0.3 deduped │ ├── preact@10.4.4 │ └── tslib@2.0.3 ├─┬ @fullcalendar/daygrid@5.3.2 │ ├── @fullcalendar/common@5.3.1 deduped │ └── tslib@2.0.3 deduped ├─┬ @fullcalendar/interaction@5.3.1 │ ├── @fullcalendar/common@5.3.1 deduped │ └── tslib@2.0.3 deduped ├─┬ @fullcalendar/list@5.3.1 │ ├── @fullcalendar/common@5.3.1 deduped │ └── tslib@2.0.3 deduped ├─┬ @fullcalendar/react@5.3.1 │ ├── @fullcalendar/common@5.3.1 deduped │ └── tslib@2.0.3 deduped ├─┬ @glennsl/bs-jest@0.6.0 │ └─┬ jest@26.6.1 │ ├─┬ @jest/core@26.6.1 │ │ ├─┬ @jest/console@26.6.1 │ │ │ ├── @jest/types@26.6.1 deduped │ │ │ ├── @types/node@12.12.14 deduped │ │ │ ├── chalk@4.1.0 deduped │ │ │ ├── jest-message-util@26.6.1 deduped │ │ │ ├── jest-util@26.6.1 deduped │ │ │ └── slash@3.0.0 deduped │ │ ├─┬ @jest/reporters@26.6.1 │ │ │ ├── @bcoe/v8-coverage@0.2.3 │ │ │ ├── @jest/console@26.6.1 deduped │ │ │ ├── @jest/test-result@26.6.1 deduped │ │ │ ├── @jest/transform@26.6.1 deduped │ │ │ ├── @jest/types@26.6.1 deduped │ │ │ ├── chalk@4.1.0 deduped │ │ │ ├── collect-v8-coverage@1.0.0 deduped │ │ │ ├── exit@0.1.2 deduped │ │ │ ├── glob@7.1.4 deduped │ │ │ ├── graceful-fs@4.2.4 deduped │ │ │ ├── istanbul-lib-coverage@3.0.0 │ │ │ ├─┬ istanbul-lib-instrument@4.0.3 │ │ │ │ ├── @babel/core@7.12.3 deduped │ │ │ │ ├── @istanbuljs/schema@0.1.2 deduped │ │ │ │ ├── istanbul-lib-coverage@3.0.0 deduped │ │ │ │ └── semver@6.3.0 │ │ │ ├─┬ istanbul-lib-report@3.0.0 │ │ │ │ ├── istanbul-lib-coverage@3.0.0 deduped │ │ │ │ ├─┬ make-dir@3.0.0 │ │ │ │ │ └── semver@6.3.0 │ │ │ │ └─┬ supports-color@7.2.0 │ │ │ │ └── has-flag@4.0.0 │ │ │ ├─┬ istanbul-lib-source-maps@4.0.0 │ │ │ │ ├── debug@4.1.1 deduped │ │ │ │ ├── istanbul-lib-coverage@3.0.0 deduped │ │ │ │ └── source-map@0.6.1 deduped │ │ │ ├─┬ istanbul-reports@3.0.2 │ │ │ │ ├── html-escaper@2.0.0 │ │ │ │ └── istanbul-lib-report@3.0.0 deduped │ │ │ ├── jest-haste-map@26.6.1 deduped │ │ │ ├── jest-resolve@26.6.1 deduped │ │ │ ├── jest-util@26.6.1 deduped │ │ │ ├── jest-worker@26.6.1 deduped │ │ │ ├─┬ node-notifier@8.0.0 │ │ │ │ ├── growly@1.3.0 │ │ │ │ ├─┬ is-wsl@2.2.0 │ │ │ │ │ └── is-docker@2.0.0 deduped │ │ │ │ ├── semver@7.3.2 │ │ │ │ ├── shellwords@0.1.1 │ │ │ │ ├── uuid@8.3.1 │ │ │ │ └─┬ which@2.0.2 │ │ │ │ └── isexe@2.0.0 deduped │ │ │ ├── slash@3.0.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ ├── string-length@4.0.1 deduped │ │ │ ├─┬ terminal-link@2.1.1 │ │ │ │ ├── ansi-escapes@4.2.1 deduped │ │ │ │ └─┬ supports-hyperlinks@2.1.0 │ │ │ │ ├── has-flag@4.0.0 │ │ │ │ └─┬ supports-color@7.2.0 │ │ │ │ └── has-flag@4.0.0 deduped │ │ │ └─┬ v8-to-istanbul@6.0.1 │ │ │ ├── @types/istanbul-lib-coverage@2.0.1 deduped │ │ │ ├── convert-source-map@1.7.0 deduped │ │ │ └── source-map@0.7.3 │ │ ├── @jest/test-result@26.6.1 deduped │ │ ├── @jest/transform@26.6.1 deduped │ │ ├── @jest/types@26.6.1 deduped │ │ ├── @types/node@12.12.14 deduped │ │ ├─┬ ansi-escapes@4.2.1 │ │ │ └── type-fest@0.5.2 │ │ ├── chalk@4.1.0 deduped │ │ ├── exit@0.1.2 │ │ ├── graceful-fs@4.2.4 deduped │ │ ├─┬ jest-changed-files@26.6.1 │ │ │ ├── @jest/types@26.6.1 deduped │ │ │ ├─┬ execa@4.0.3 │ │ │ │ ├── cross-spawn@7.0.1 deduped │ │ │ │ ├─┬ get-stream@5.1.0 │ │ │ │ │ └── pump@3.0.0 deduped │ │ │ │ ├── human-signals@1.1.1 deduped │ │ │ │ ├── is-stream@2.0.0 │ │ │ │ ├── merge-stream@2.0.0 deduped │ │ │ │ ├─┬ npm-run-path@4.0.1 │ │ │ │ │ └── path-key@3.1.1 │ │ │ │ ├── onetime@5.1.0 deduped │ │ │ │ ├── signal-exit@3.0.2 deduped │ │ │ │ └── strip-final-newline@2.0.0 deduped │ │ │ └── throat@5.0.0 deduped │ │ ├─┬ jest-config@26.6.1 │ │ │ ├── @babel/core@7.12.3 deduped │ │ │ ├─┬ @jest/test-sequencer@26.6.1 │ │ │ │ ├── @jest/test-result@26.6.1 deduped │ │ │ │ ├── graceful-fs@4.2.4 deduped │ │ │ │ ├── jest-haste-map@26.6.1 deduped │ │ │ │ ├── jest-runner@26.6.1 deduped │ │ │ │ └── jest-runtime@26.6.1 deduped │ │ │ ├── @jest/types@26.6.1 deduped │ │ │ ├── babel-jest@26.6.1 deduped │ │ │ ├── chalk@4.1.0 deduped │ │ │ ├── deepmerge@4.2.2 │ │ │ ├── glob@7.1.4 deduped │ │ │ ├── graceful-fs@4.2.4 deduped │ │ │ ├─┬ jest-environment-jsdom@26.6.1 │ │ │ │ ├── @jest/environment@26.6.1 deduped │ │ │ │ ├── @jest/fake-timers@26.6.1 deduped │ │ │ │ ├── @jest/types@26.6.1 deduped │ │ │ │ ├── @types/node@12.12.14 deduped │ │ │ │ ├── jest-mock@26.6.1 deduped │ │ │ │ ├── jest-util@26.6.1 deduped │ │ │ │ └─┬ jsdom@16.4.0 │ │ │ │ ├── abab@2.0.5 │ │ │ │ ├── acorn@7.4.1 deduped │ │ │ │ ├─┬ acorn-globals@6.0.0 │ │ │ │ │ ├── acorn@7.4.1 deduped │ │ │ │ │ └── acorn-walk@7.2.0 │ │ │ │ ├── cssom@0.4.4 │ │ │ │ ├─┬ cssstyle@2.3.0 │ │ │ │ │ └── cssom@0.3.8 │ │ │ │ ├─┬ data-urls@2.0.0 │ │ │ │ │ ├── abab@2.0.5 deduped │ │ │ │ │ ├── whatwg-mimetype@2.3.0 deduped │ │ │ │ │ └── whatwg-url@8.4.0 deduped │ │ │ │ ├── decimal.js@10.2.1 │ │ │ │ ├─┬ domexception@2.0.1 │ │ │ │ │ └── webidl-conversions@5.0.0 │ │ │ │ ├─┬ escodegen@1.14.3 │ │ │ │ │ ├── esprima@4.0.1 deduped │ │ │ │ │ ├── estraverse@4.2.0 deduped │ │ │ │ │ ├── esutils@2.0.2 deduped │ │ │ │ │ ├─┬ optionator@0.8.2 │ │ │ │ │ │ ├── deep-is@0.1.3 deduped │ │ │ │ │ │ ├── fast-levenshtein@2.0.6 deduped │ │ │ │ │ │ ├─┬ levn@0.3.0 │ │ │ │ │ │ │ ├── prelude-ls@1.1.2 deduped │ │ │ │ │ │ │ └── type-check@0.3.2 deduped │ │ │ │ │ │ ├── prelude-ls@1.1.2 │ │ │ │ │ │ ├─┬ type-check@0.3.2 │ │ │ │ │ │ │ └── prelude-ls@1.1.2 deduped │ │ │ │ │ │ └── wordwrap@1.0.0 │ │ │ │ │ └── source-map@0.6.1 deduped │ │ │ │ ├─┬ html-encoding-sniffer@2.0.1 │ │ │ │ │ └── whatwg-encoding@1.0.5 deduped │ │ │ │ ├── is-potential-custom-element-name@1.0.0 │ │ │ │ ├── nwsapi@2.2.0 │ │ │ │ ├── parse5@5.1.1 │ │ │ │ ├─┬ request@2.88.2 │ │ │ │ │ ├── aws-sign2@0.7.0 deduped │ │ │ │ │ ├── aws4@1.8.0 deduped │ │ │ │ │ ├── caseless@0.12.0 deduped │ │ │ │ │ ├── combined-stream@1.0.7 deduped │ │ │ │ │ ├── extend@3.0.2 deduped │ │ │ │ │ ├── forever-agent@0.6.1 deduped │ │ │ │ │ ├── form-data@2.3.3 deduped │ │ │ │ │ ├── har-validator@5.1.3 deduped │ │ │ │ │ ├── http-signature@1.2.0 deduped │ │ │ │ │ ├── is-typedarray@1.0.0 deduped │ │ │ │ │ ├── isstream@0.1.2 deduped │ │ │ │ │ ├── json-stringify-safe@5.0.1 deduped │ │ │ │ │ ├── mime-types@2.1.24 deduped │ │ │ │ │ ├── oauth-sign@0.9.0 deduped │ │ │ │ │ ├── performance-now@2.1.0 deduped │ │ │ │ │ ├── qs@6.5.2 deduped │ │ │ │ │ ├── safe-buffer@5.1.2 deduped │ │ │ │ │ ├── tough-cookie@2.5.0 deduped │ │ │ │ │ ├── tunnel-agent@0.6.0 deduped │ │ │ │ │ └── uuid@3.3.2 deduped │ │ │ │ ├─┬ request-promise-native@1.0.9 │ │ │ │ │ ├─┬ request-promise-core@1.1.4 │ │ │ │ │ │ └── lodash@4.17.20 deduped │ │ │ │ │ ├── stealthy-require@1.1.1 │ │ │ │ │ └── tough-cookie@2.5.0 deduped │ │ │ │ ├─┬ saxes@5.0.1 │ │ │ │ │ └── xmlchars@2.2.0 │ │ │ │ ├── symbol-tree@3.2.4 │ │ │ │ ├─┬ tough-cookie@3.0.1 │ │ │ │ │ ├── ip-regex@2.1.0 deduped │ │ │ │ │ ├── psl@1.1.31 deduped │ │ │ │ │ └── punycode@2.1.1 deduped │ │ │ │ ├─┬ w3c-hr-time@1.0.2 │ │ │ │ │ └── browser-process-hrtime@1.0.0 │ │ │ │ ├─┬ w3c-xmlserializer@2.0.0 │ │ │ │ │ └── xml-name-validator@3.0.0 deduped │ │ │ │ ├── webidl-conversions@6.1.0 │ │ │ │ ├─┬ whatwg-encoding@1.0.5 │ │ │ │ │ └── iconv-lite@0.4.24 deduped │ │ │ │ ├── whatwg-mimetype@2.3.0 │ │ │ │ ├─┬ whatwg-url@8.4.0 │ │ │ │ │ ├── lodash.sortby@4.7.0 │ │ │ │ │ ├─┬ tr46@2.0.2 │ │ │ │ │ │ └── punycode@2.1.1 deduped │ │ │ │ │ └── webidl-conversions@6.1.0 deduped │ │ │ │ ├── ws@7.3.1 │ │ │ │ └── xml-name-validator@3.0.0 │ │ │ ├─┬ jest-environment-node@26.6.1 │ │ │ │ ├── @jest/environment@26.6.1 deduped │ │ │ │ ├── @jest/fake-timers@26.6.1 deduped │ │ │ │ ├── @jest/types@26.6.1 deduped │ │ │ │ ├── @types/node@12.12.14 deduped │ │ │ │ ├── jest-mock@26.6.1 deduped │ │ │ │ └── jest-util@26.6.1 deduped │ │ │ ├── jest-get-type@26.3.0 deduped │ │ │ ├─┬ jest-jasmine2@26.6.1 │ │ │ │ ├─┬ @babel/traverse@7.4.4 │ │ │ │ │ ├── @babel/code-frame@7.0.0 deduped │ │ │ │ │ ├─┬ @babel/generator@7.4.4 │ │ │ │ │ │ ├── @babel/types@7.4.4 deduped │ │ │ │ │ │ ├── jsesc@2.5.2 deduped │ │ │ │ │ │ ├── lodash@4.17.20 deduped │ │ │ │ │ │ ├── source-map@0.5.7 │ │ │ │ │ │ └── trim-right@1.0.1 deduped │ │ │ │ │ ├─┬ @babel/helper-function-name@7.1.0 │ │ │ │ │ │ ├─┬ @babel/helper-get-function-arity@7.0.0 │ │ │ │ │ │ │ └── @babel/types@7.4.4 deduped │ │ │ │ │ │ ├─┬ @babel/template@7.4.4 │ │ │ │ │ │ │ ├── @babel/code-frame@7.0.0 deduped │ │ │ │ │ │ │ ├── @babel/parser@7.4.4 deduped │ │ │ │ │ │ │ └── @babel/types@7.4.4 deduped │ │ │ │ │ │ └── @babel/types@7.4.4 deduped │ │ │ │ │ ├─┬ @babel/helper-split-export-declaration@7.4.4 │ │ │ │ │ │ └── @babel/types@7.4.4 deduped │ │ │ │ │ ├── @babel/parser@7.4.4 deduped │ │ │ │ │ ├─┬ @babel/types@7.4.4 │ │ │ │ │ │ ├── esutils@2.0.2 deduped │ │ │ │ │ │ ├── lodash@4.17.20 deduped │ │ │ │ │ │ └── to-fast-properties@2.0.0 deduped │ │ │ │ │ ├── debug@4.1.1 deduped │ │ │ │ │ ├── globals@11.12.0 deduped │ │ │ │ │ └── lodash@4.17.20 deduped │ │ │ │ ├── @jest/environment@26.6.1 deduped │ │ │ │ ├── @jest/source-map@26.5.0 deduped │ │ │ │ ├── @jest/test-result@26.6.1 deduped │ │ │ │ ├── @jest/types@26.6.1 deduped │ │ │ │ ├── @types/node@12.12.14 deduped │ │ │ │ ├── chalk@4.1.0 deduped │ │ │ │ ├── co@4.6.0 deduped │ │ │ │ ├── expect@26.6.1 deduped │ │ │ │ ├── is-generator-fn@2.1.0 deduped │ │ │ │ ├── jest-each@26.6.1 deduped │ │ │ │ ├── jest-matcher-utils@26.6.1 deduped │ │ │ │ ├── jest-message-util@26.6.1 deduped │ │ │ │ ├── jest-runtime@26.6.1 deduped │ │ │ │ ├── jest-snapshot@26.6.1 deduped │ │ │ │ ├── jest-util@26.6.1 deduped │ │ │ │ ├── pretty-format@26.6.1 deduped │ │ │ │ └── throat@5.0.0 deduped │ │ │ ├── jest-regex-util@26.0.0 deduped │ │ │ ├── jest-resolve@26.6.1 deduped │ │ │ ├── jest-util@26.6.1 deduped │ │ │ ├── jest-validate@26.6.1 deduped │ │ │ ├── micromatch@4.0.2 deduped │ │ │ └── pretty-format@26.6.1 deduped │ │ ├─┬ jest-haste-map@26.6.1 │ │ │ ├── @jest/types@26.6.1 deduped │ │ │ ├─┬ @types/graceful-fs@4.1.4 │ │ │ │ └── @types/node@12.12.14 deduped │ │ │ ├── @types/node@12.12.14 deduped │ │ │ ├─┬ anymatch@3.1.1 │ │ │ │ ├── normalize-path@3.0.0 deduped │ │ │ │ └── picomatch@2.2.1 │ │ │ ├─┬ fb-watchman@2.0.0 │ │ │ │ └─┬ bser@2.0.0 │ │ │ │ └── node-int64@0.4.0 │ │ │ ├── fsevents@2.1.2 │ │ │ ├── graceful-fs@4.2.4 deduped │ │ │ ├── jest-regex-util@26.0.0 deduped │ │ │ ├─┬ jest-serializer@26.5.0 │ │ │ │ ├── @types/node@12.12.14 deduped │ │ │ │ └── graceful-fs@4.2.4 deduped │ │ │ ├── jest-util@26.6.1 deduped │ │ │ ├── jest-worker@26.6.1 deduped │ │ │ ├── micromatch@4.0.2 deduped │ │ │ ├─┬ sane@4.1.0 │ │ │ │ ├─┬ @cnakazawa/watch@1.0.3 │ │ │ │ │ ├── exec-sh@0.3.2 deduped │ │ │ │ │ └── minimist@1.2.5 deduped │ │ │ │ ├── anymatch@2.0.0 deduped │ │ │ │ ├─┬ capture-exit@2.0.0 │ │ │ │ │ └── rsvp@4.8.4 │ │ │ │ ├── exec-sh@0.3.2 │ │ │ │ ├── execa@1.0.0 deduped │ │ │ │ ├── fb-watchman@2.0.0 deduped │ │ │ │ ├─┬ micromatch@3.1.10 │ │ │ │ │ ├── arr-diff@4.0.0 deduped │ │ │ │ │ ├── array-unique@0.3.2 deduped │ │ │ │ │ ├── braces@2.3.2 deduped │ │ │ │ │ ├─┬ define-property@2.0.2 │ │ │ │ │ │ ├── is-descriptor@1.0.2 deduped │ │ │ │ │ │ └── isobject@3.0.1 deduped │ │ │ │ │ ├─┬ extend-shallow@3.0.2 │ │ │ │ │ │ ├── assign-symbols@1.0.0 deduped │ │ │ │ │ │ └─┬ is-extendable@1.0.1 │ │ │ │ │ │ └── is-plain-object@2.0.4 deduped │ │ │ │ │ ├── extglob@2.0.4 deduped │ │ │ │ │ ├── fragment-cache@0.2.1 deduped │ │ │ │ │ ├── kind-of@6.0.2 │ │ │ │ │ ├── nanomatch@1.2.13 deduped │ │ │ │ │ ├── object.pick@1.3.0 deduped │ │ │ │ │ ├── regex-not@1.0.2 deduped │ │ │ │ │ ├── snapdragon@0.8.2 deduped │ │ │ │ │ └── to-regex@3.0.2 deduped │ │ │ │ ├── minimist@1.2.5 deduped │ │ │ │ └── walker@1.0.7 deduped │ │ │ └─┬ walker@1.0.7 │ │ │ └─┬ makeerror@1.0.11 │ │ │ └── tmpl@1.0.4 │ │ ├── jest-message-util@26.6.1 deduped │ │ ├── jest-regex-util@26.0.0 deduped │ │ ├─┬ jest-resolve@26.6.1 │ │ │ ├── @jest/types@26.6.1 deduped │ │ │ ├── chalk@4.1.0 deduped │ │ │ ├── graceful-fs@4.2.4 deduped │ │ │ ├── jest-pnp-resolver@1.2.2 deduped │ │ │ ├── jest-util@26.6.1 deduped │ │ │ ├── read-pkg-up@7.0.1 deduped │ │ │ ├── resolve@1.18.1 deduped │ │ │ └── slash@3.0.0 deduped │ │ ├─┬ jest-resolve-dependencies@26.6.1 │ │ │ ├── @jest/types@26.6.1 deduped │ │ │ ├── jest-regex-util@26.0.0 deduped │ │ │ └── jest-snapshot@26.6.1 deduped │ │ ├── jest-runner@26.6.1 deduped │ │ ├── jest-runtime@26.6.1 deduped │ │ ├── jest-snapshot@26.6.1 deduped │ │ ├── jest-util@26.6.1 deduped │ │ ├─┬ jest-validate@26.6.1 │ │ │ ├── @jest/types@26.6.1 deduped │ │ │ ├── camelcase@6.1.0 │ │ │ ├── chalk@4.1.0 deduped │ │ │ ├── jest-get-type@26.3.0 deduped │ │ │ ├── leven@3.1.0 │ │ │ └── pretty-format@26.6.1 deduped │ │ ├── jest-watcher@26.6.1 deduped │ │ ├── micromatch@4.0.2 deduped │ │ ├── p-each-series@2.1.0 │ │ ├─┬ rimraf@3.0.2 │ │ │ └── glob@7.1.4 deduped │ │ ├── slash@3.0.0 deduped │ │ └── strip-ansi@6.0.0 deduped │ ├─┬ import-local@3.0.2 │ │ ├─┬ pkg-dir@4.2.0 │ │ │ └── find-up@4.1.0 deduped │ │ └─┬ resolve-cwd@3.0.0 │ │ └── resolve-from@5.0.0 │ └─┬ jest-cli@26.6.1 │ ├── @jest/core@26.6.1 deduped │ ├── @jest/test-result@26.6.1 deduped │ ├── @jest/types@26.6.1 deduped │ ├── chalk@4.1.0 deduped │ ├── exit@0.1.2 deduped │ ├── graceful-fs@4.2.4 deduped │ ├── import-local@3.0.2 deduped │ ├── is-ci@2.0.0 deduped │ ├── jest-config@26.6.1 deduped │ ├── jest-util@26.6.1 deduped │ ├── jest-validate@26.6.1 deduped │ ├─┬ prompts@2.0.4 │ │ ├── kleur@3.0.3 │ │ └── sisteransi@1.0.0 │ └─┬ yargs@15.4.1 │ ├─┬ cliui@6.0.0 │ │ ├── string-width@4.2.0 deduped │ │ ├── strip-ansi@6.0.0 deduped │ │ └─┬ wrap-ansi@6.2.0 │ │ ├── ansi-styles@4.2.1 deduped │ │ ├─┬ string-width@4.1.0 │ │ │ ├── emoji-regex@8.0.0 deduped │ │ │ ├── is-fullwidth-code-point@3.0.0 deduped │ │ │ └─┬ strip-ansi@5.2.0 │ │ │ └── ansi-regex@4.1.0 │ │ └── strip-ansi@6.0.0 deduped │ ├── decamelize@1.2.0 │ ├── find-up@4.1.0 deduped │ ├── get-caller-file@2.0.5 deduped │ ├── require-directory@2.1.1 deduped │ ├── require-main-filename@2.0.0 deduped │ ├── set-blocking@2.0.0 deduped │ ├─┬ string-width@4.2.0 │ │ ├── emoji-regex@8.0.0 deduped │ │ ├── is-fullwidth-code-point@3.0.0 │ │ └── strip-ansi@6.0.0 deduped │ ├── which-module@2.0.0 deduped │ ├── y18n@4.0.0 deduped │ └─┬ yargs-parser@18.1.3 │ ├── camelcase@5.3.1 deduped │ └── decamelize@1.2.0 deduped ├── @glennsl/bs-json@5.0.2 ├── @moox/bs-react-helmet@3.0.0 ├─┬ @sentry/browser@5.27.2 │ ├─┬ @sentry/core@5.27.2 │ │ ├─┬ @sentry/hub@5.27.2 │ │ │ ├── @sentry/types@5.27.2 deduped │ │ │ ├── @sentry/utils@5.27.2 deduped │ │ │ └── tslib@1.10.0 │ │ ├─┬ @sentry/minimal@5.27.2 │ │ │ ├── @sentry/hub@5.27.2 deduped │ │ │ ├── @sentry/types@5.27.2 deduped │ │ │ └── tslib@1.10.0 │ │ ├── @sentry/types@5.27.2 deduped │ │ ├── @sentry/utils@5.27.2 deduped │ │ └── tslib@1.10.0 │ ├── @sentry/types@5.27.2 │ ├─┬ @sentry/utils@5.27.2 │ │ ├── @sentry/types@5.27.2 deduped │ │ └── tslib@1.10.0 │ └── tslib@1.10.0 ├─┬ @turf/bbox@6.0.1 │ ├── @turf/helpers@6.1.4 deduped │ └─┬ @turf/meta@6.0.2 │ └── @turf/helpers@6.1.4 deduped ├─┬ @turf/buffer@5.1.5 │ ├─┬ @turf/bbox@5.1.5 │ │ ├── @turf/helpers@5.1.5 deduped │ │ └── @turf/meta@5.2.0 deduped │ ├─┬ @turf/center@5.1.5 │ │ ├─┬ @turf/bbox@5.1.5 │ │ │ ├── @turf/helpers@5.1.5 deduped │ │ │ └── @turf/meta@5.2.0 deduped │ │ └── @turf/helpers@5.1.5 │ ├── @turf/helpers@5.1.5 │ ├─┬ @turf/meta@5.2.0 │ │ └── @turf/helpers@5.1.5 │ ├─┬ @turf/projection@5.1.5 │ │ ├─┬ @turf/clone@5.1.5 │ │ │ └── @turf/helpers@5.1.5 │ │ ├── @turf/helpers@5.1.5 │ │ └── @turf/meta@5.2.0 deduped │ ├─┬ d3-geo@1.7.1 │ │ └── d3-array@1.2.4 │ └── turf-jsts@1.2.3 ├── @turf/helpers@6.1.4 ├─┬ autoprefixer@10.0.1 │ ├─┬ browserslist@4.14.5 │ │ ├── caniuse-lite@1.0.30001137 deduped │ │ ├── electron-to-chromium@1.3.573 │ │ ├── escalade@3.1.0 │ │ └── node-releases@1.1.61 │ ├── caniuse-lite@1.0.30001137 │ ├── colorette@1.2.1 │ ├── normalize-range@0.1.2 │ ├── num2fraction@1.2.2 │ └── postcss-value-parser@4.1.0 ├── bs-fetch@0.6.2 ├─┬ bs-marky-markdown@2.1.7 │ └─┬ marky-markdown@12.0.0 │ ├── atom-language-diff@1.0.2 │ ├── atom-language-nginx@0.6.1 │ ├─┬ github-slugger@1.2.1 │ │ └── emoji-regex@6.1.1 │ ├─┬ github-url-to-object@4.0.4 │ │ └── is-url@1.2.4 │ ├─┬ highlights@3.2.0-candidate.1 │ │ ├─┬ first-mate@6.3.0 │ │ │ ├─┬ emissary@1.3.3 │ │ │ │ ├─┬ es6-weak-map@0.1.4 │ │ │ │ │ ├─┬ d@0.1.1 │ │ │ │ │ │ └── es5-ext@0.10.50 deduped │ │ │ │ │ ├── es5-ext@0.10.50 deduped │ │ │ │ │ ├─┬ es6-iterator@0.1.3 │ │ │ │ │ │ ├── d@0.1.1 deduped │ │ │ │ │ │ ├── es5-ext@0.10.50 deduped │ │ │ │ │ │ └── es6-symbol@2.0.1 deduped │ │ │ │ │ └─┬ es6-symbol@2.0.1 │ │ │ │ │ ├── d@0.1.1 deduped │ │ │ │ │ └── es5-ext@0.10.50 deduped │ │ │ │ ├── mixto@1.0.0 │ │ │ │ ├─┬ property-accessors@1.1.3 │ │ │ │ │ ├── es6-weak-map@0.1.4 deduped │ │ │ │ │ └── mixto@1.0.0 deduped │ │ │ │ └── underscore-plus@1.7.0 deduped │ │ │ ├── event-kit@2.5.3 │ │ │ ├─┬ fs-plus@2.10.1 │ │ │ │ ├── async@1.5.2 deduped │ │ │ │ ├── mkdirp@0.5.1 deduped │ │ │ │ ├── rimraf@2.6.3 deduped │ │ │ │ └── underscore-plus@1.7.0 deduped │ │ │ ├─┬ grim@2.0.2 │ │ │ │ └── event-kit@2.5.3 deduped │ │ │ ├─┬ oniguruma@6.2.1 │ │ │ │ └── nan@2.14.0 │ │ │ ├─┬ season@5.4.1 │ │ │ │ ├─┬ cson-parser@1.0.9 │ │ │ │ │ └── coffee-script@1.9.0 │ │ │ │ ├── fs-plus@2.10.1 deduped │ │ │ │ └─┬ optimist@0.4.0 │ │ │ │ └── wordwrap@0.0.3 │ │ │ └── underscore-plus@1.7.0 deduped │ │ ├─┬ first-mate-select-grammar@1.0.2 │ │ │ └── lodash@4.17.20 deduped │ │ ├─┬ fs-plus@3.1.1 │ │ │ ├── async@1.5.2 │ │ │ ├── mkdirp@0.5.1 deduped │ │ │ ├── rimraf@2.6.3 deduped │ │ │ └── underscore-plus@1.7.0 deduped │ │ ├─┬ once@1.4.0 │ │ │ └── wrappy@1.0.2 │ │ ├─┬ season@6.0.2 │ │ │ ├─┬ cson-parser@1.3.5 │ │ │ │ └── coffee-script@1.12.7 │ │ │ ├─┬ fs-plus@3.1.1 │ │ │ │ ├── async@1.5.2 deduped │ │ │ │ ├── mkdirp@0.5.1 deduped │ │ │ │ ├── rimraf@2.6.3 deduped │ │ │ │ └── underscore-plus@1.7.0 deduped │ │ │ └─┬ yargs@3.32.0 │ │ │ ├── camelcase@2.1.1 │ │ │ ├── cliui@3.2.0 deduped │ │ │ ├── decamelize@1.2.0 deduped │ │ │ ├── os-locale@1.4.0 deduped │ │ │ ├── string-width@1.0.2 deduped │ │ │ ├── window-size@0.1.4 │ │ │ └── y18n@3.2.1 │ │ ├─┬ underscore-plus@1.7.0 │ │ │ └── underscore@1.9.1 deduped │ │ └─┬ yargs@4.8.1 │ │ ├─┬ cliui@3.2.0 │ │ │ ├── string-width@1.0.2 deduped │ │ │ ├─┬ strip-ansi@3.0.1 │ │ │ │ └── ansi-regex@2.1.1 deduped │ │ │ └─┬ wrap-ansi@2.1.0 │ │ │ ├── string-width@1.0.2 deduped │ │ │ └─┬ strip-ansi@3.0.1 │ │ │ └── ansi-regex@2.1.1 deduped │ │ ├── decamelize@1.2.0 deduped │ │ ├── get-caller-file@1.0.3 │ │ ├── lodash.assign@4.2.0 deduped │ │ ├─┬ os-locale@1.4.0 │ │ │ └─┬ lcid@1.0.0 │ │ │ └── invert-kv@1.0.0 │ │ ├─┬ read-pkg-up@1.0.1 │ │ │ ├─┬ find-up@1.1.2 │ │ │ │ ├─┬ path-exists@2.1.0 │ │ │ │ │ └── pinkie-promise@2.0.1 deduped │ │ │ │ └── pinkie-promise@2.0.1 deduped │ │ │ └─┬ read-pkg@1.1.0 │ │ │ ├─┬ load-json-file@1.1.0 │ │ │ │ ├── graceful-fs@4.1.15 │ │ │ │ ├─┬ parse-json@2.2.0 │ │ │ │ │ └── error-ex@1.3.2 deduped │ │ │ │ ├── pify@2.3.0 deduped │ │ │ │ ├── pinkie-promise@2.0.1 deduped │ │ │ │ └─┬ strip-bom@2.0.0 │ │ │ │ └── is-utf8@0.2.1 │ │ │ ├── normalize-package-data@2.5.0 deduped │ │ │ └─┬ path-type@1.1.0 │ │ │ ├── graceful-fs@4.1.15 deduped │ │ │ ├── pify@2.3.0 deduped │ │ │ └── pinkie-promise@2.0.1 deduped │ │ ├── require-directory@2.1.1 deduped │ │ ├── require-main-filename@1.0.1 │ │ ├── set-blocking@2.0.0 deduped │ │ ├─┬ string-width@1.0.2 │ │ │ ├── code-point-at@1.1.0 │ │ │ ├─┬ is-fullwidth-code-point@1.0.0 │ │ │ │ └── number-is-nan@1.0.1 deduped │ │ │ └─┬ strip-ansi@3.0.1 │ │ │ └── ansi-regex@2.1.1 deduped │ │ ├── which-module@1.0.0 │ │ ├── window-size@0.2.0 │ │ ├── y18n@3.2.1 │ │ └─┬ yargs-parser@2.4.1 │ │ ├── camelcase@3.0.0 │ │ └── lodash.assign@4.2.0 deduped │ ├── highlights-tokens@1.0.1 │ ├─┬ innertext@1.0.3 │ │ └── html-entities@1.2.1 │ ├── is-plain-obj@1.1.0 │ ├── language-dart@0.1.1 │ ├── language-erlang@2.0.0 │ ├── language-glsl@2.0.4 │ ├── language-haxe@0.2.1 │ ├── language-ini@1.20.0 │ ├── language-rust@0.4.12 │ ├── language-stylus@0.5.2 │ ├── lodash.assign@4.2.0 │ ├── lodash.defaults@4.2.0 │ ├── lodash.pickby@4.6.0 │ ├─┬ markdown-it@8.4.2 │ │ ├─┬ argparse@1.0.10 │ │ │ └── sprintf-js@1.0.3 │ │ ├── entities@1.1.2 │ │ ├─┬ linkify-it@2.1.0 │ │ │ └── uc.micro@1.0.6 deduped │ │ ├── mdurl@1.0.1 │ │ └── uc.micro@1.0.6 │ ├── markdown-it-emoji@1.4.0 │ ├─┬ markdown-it-expand-tabs@1.0.13 │ │ └── lodash.repeat@4.1.0 │ ├── markdown-it-lazy-headers@0.1.3 │ ├── markdown-it-task-lists@2.1.1 │ ├── property-ttl@1.0.0 │ ├─┬ sanitize-html@1.20.1 │ │ ├─┬ chalk@2.4.2 │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ └─┬ supports-color@5.5.0 │ │ │ └── has-flag@3.0.0 deduped │ │ ├─┬ htmlparser2@3.10.1 │ │ │ ├── domelementtype@1.3.1 │ │ │ ├─┬ domhandler@2.4.2 │ │ │ │ └── domelementtype@1.3.1 deduped │ │ │ ├─┬ domutils@1.7.0 │ │ │ │ ├─┬ dom-serializer@0.1.1 │ │ │ │ │ ├── domelementtype@1.3.1 deduped │ │ │ │ │ └── entities@1.1.2 deduped │ │ │ │ └── domelementtype@1.3.1 deduped │ │ │ ├── entities@1.1.2 deduped │ │ │ ├── inherits@2.0.4 deduped │ │ │ └─┬ readable-stream@3.3.0 │ │ │ ├── inherits@2.0.4 deduped │ │ │ ├── string_decoder@1.2.0 deduped │ │ │ └── util-deprecate@1.0.2 deduped │ │ ├── lodash.clonedeep@4.5.0 │ │ ├── lodash.escaperegexp@4.1.2 │ │ ├── lodash.isplainobject@4.0.6 │ │ ├── lodash.isstring@4.0.1 │ │ ├── lodash.mergewith@4.6.2 │ │ ├─┬ postcss@7.0.32 │ │ │ ├── chalk@2.4.2 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └─┬ supports-color@6.1.0 │ │ │ └── has-flag@3.0.0 deduped │ │ ├─┬ srcset@1.0.0 │ │ │ ├── array-uniq@1.0.3 │ │ │ └── number-is-nan@1.0.1 │ │ └── xtend@4.0.1 │ └─┬ similarity@1.1.1 │ └── leven@2.1.0 ├── UNMET PEER DEPENDENCY bs-platform@8.3.2 ├── bs-react-intl@2.0.0 ├── bs-react-intl-extractor-bin@0.9.0 ├─┬ bs-webapi@0.19.1 │ └── bs-fetch@0.6.2 deduped ├── UNMET PEER DEPENDENCY bsdoc@^6.0.4-alpha ├─┬ craco-workbox@0.1.0 │ └─┬ dot-json@1.1.0 │ ├── docopt@0.6.2 │ └─┬ underscore-keypath@0.0.22 │ └── underscore@1.9.1 ├─┬ cypress@5.5.0 │ ├─┬ @cypress/listr-verbose-renderer@0.4.1 │ │ ├─┬ chalk@1.1.3 │ │ │ ├── ansi-styles@2.2.1 │ │ │ ├── escape-string-regexp@1.0.5 │ │ │ ├─┬ has-ansi@2.0.0 │ │ │ │ └── ansi-regex@2.1.1 deduped │ │ │ ├─┬ strip-ansi@3.0.1 │ │ │ │ └── ansi-regex@2.1.1 deduped │ │ │ └── supports-color@2.0.0 │ │ ├─┬ cli-cursor@1.0.2 │ │ │ └─┬ restore-cursor@1.0.1 │ │ │ ├── exit-hook@1.1.1 │ │ │ └── onetime@1.1.0 │ │ ├── date-fns@1.30.1 │ │ └─┬ figures@1.7.0 │ │ ├── escape-string-regexp@1.0.5 deduped │ │ └── object-assign@4.1.1 deduped │ ├─┬ @cypress/request@2.88.5 │ │ ├── aws-sign2@0.7.0 │ │ ├── aws4@1.8.0 │ │ ├── caseless@0.12.0 │ │ ├─┬ combined-stream@1.0.7 │ │ │ └── delayed-stream@1.0.0 │ │ ├── extend@3.0.2 │ │ ├── forever-agent@0.6.1 │ │ ├─┬ form-data@2.3.3 │ │ │ ├── asynckit@0.4.0 │ │ │ ├── combined-stream@1.0.7 deduped │ │ │ └── mime-types@2.1.24 deduped │ │ ├─┬ har-validator@5.1.3 │ │ │ ├─┬ ajv@6.10.0 │ │ │ │ ├── fast-deep-equal@2.0.1 deduped │ │ │ │ ├── fast-json-stable-stringify@2.0.0 deduped │ │ │ │ ├── json-schema-traverse@0.4.1 deduped │ │ │ │ └── uri-js@4.2.2 deduped │ │ │ └── har-schema@2.0.0 │ │ ├─┬ http-signature@1.2.0 │ │ │ ├── assert-plus@1.0.0 │ │ │ ├─┬ jsprim@1.4.1 │ │ │ │ ├── assert-plus@1.0.0 deduped │ │ │ │ ├── extsprintf@1.3.0 │ │ │ │ ├── json-schema@0.2.3 │ │ │ │ └─┬ verror@1.10.0 │ │ │ │ ├── assert-plus@1.0.0 deduped │ │ │ │ ├── core-util-is@1.0.2 deduped │ │ │ │ └── extsprintf@1.4.0 │ │ │ └─┬ sshpk@1.16.1 │ │ │ ├─┬ asn1@0.2.4 │ │ │ │ └── safer-buffer@2.1.2 deduped │ │ │ ├── assert-plus@1.0.0 deduped │ │ │ ├─┬ bcrypt-pbkdf@1.0.2 │ │ │ │ └── tweetnacl@0.14.5 deduped │ │ │ ├─┬ dashdash@1.14.1 │ │ │ │ └── assert-plus@1.0.0 deduped │ │ │ ├─┬ ecc-jsbn@0.1.2 │ │ │ │ ├── jsbn@0.1.1 deduped │ │ │ │ └── safer-buffer@2.1.2 deduped │ │ │ ├─┬ getpass@0.1.7 │ │ │ │ └── assert-plus@1.0.0 deduped │ │ │ ├── jsbn@0.1.1 │ │ │ ├── safer-buffer@2.1.2 │ │ │ └── tweetnacl@0.14.5 │ │ ├── is-typedarray@1.0.0 │ │ ├── isstream@0.1.2 │ │ ├── json-stringify-safe@5.0.1 │ │ ├─┬ mime-types@2.1.24 │ │ │ └── mime-db@1.40.0 │ │ ├── oauth-sign@0.9.0 │ │ ├── performance-now@2.1.0 │ │ ├── qs@6.5.2 │ │ ├── safe-buffer@5.1.2 │ │ ├─┬ tough-cookie@2.5.0 │ │ │ ├── psl@1.1.31 │ │ │ └── punycode@2.1.1 │ │ ├─┬ tunnel-agent@0.6.0 │ │ │ └── safe-buffer@5.1.2 deduped │ │ └── uuid@3.3.2 │ ├─┬ @cypress/xvfb@1.2.4 │ │ ├─┬ debug@3.2.6 │ │ │ └── ms@2.1.1 deduped │ │ └── lodash.once@4.1.1 │ ├── @types/sinonjs__fake-timers@6.0.1 │ ├── @types/sizzle@2.3.2 │ ├── arch@2.1.2 │ ├── blob-util@2.0.2 │ ├── bluebird@3.7.2 │ ├── cachedir@2.3.0 │ ├─┬ chalk@4.1.0 │ │ ├─┬ ansi-styles@4.2.1 │ │ │ ├── @types/color-name@1.1.1 │ │ │ └─┬ color-convert@2.0.1 │ │ │ └── color-name@1.1.4 deduped │ │ └─┬ supports-color@7.2.0 │ │ └── has-flag@4.0.0 │ ├── check-more-types@2.24.0 │ ├─┬ cli-table3@0.6.0 │ │ ├── colors@1.4.0 │ │ ├── object-assign@4.1.1 deduped │ │ └─┬ string-width@4.2.0 │ │ ├── emoji-regex@8.0.0 │ │ ├── is-fullwidth-code-point@3.0.0 │ │ └── strip-ansi@6.0.0 deduped │ ├── commander@4.1.1 │ ├── common-tags@1.8.0 │ ├─┬ debug@4.1.1 │ │ └── ms@2.1.1 │ ├── eventemitter2@6.4.3 │ ├─┬ execa@4.0.3 │ │ ├── cross-spawn@7.0.1 deduped │ │ ├─┬ get-stream@5.1.0 │ │ │ └─┬ pump@3.0.0 │ │ │ ├─┬ end-of-stream@1.4.1 │ │ │ │ └── once@1.4.0 deduped │ │ │ └── once@1.4.0 deduped │ │ ├── human-signals@1.1.1 │ │ ├── is-stream@2.0.0 │ │ ├── merge-stream@2.0.0 │ │ ├─┬ npm-run-path@4.0.1 │ │ │ └── path-key@3.1.1 │ │ ├─┬ onetime@5.1.0 │ │ │ └── mimic-fn@2.1.0 │ │ ├── signal-exit@3.0.2 │ │ └── strip-final-newline@2.0.0 │ ├─┬ executable@4.1.1 │ │ └── pify@2.3.0 │ ├─┬ extract-zip@1.7.0 │ │ ├─┬ concat-stream@1.6.2 │ │ │ ├── buffer-from@1.1.1 │ │ │ ├── inherits@2.0.4 │ │ │ ├─┬ readable-stream@2.3.6 │ │ │ │ ├── core-util-is@1.0.2 │ │ │ │ ├── inherits@2.0.4 deduped │ │ │ │ ├── isarray@1.0.0 deduped │ │ │ │ ├── process-nextick-args@2.0.0 │ │ │ │ ├── safe-buffer@5.1.2 deduped │ │ │ │ ├─┬ string_decoder@1.1.1 │ │ │ │ │ └── safe-buffer@5.1.2 deduped │ │ │ │ └── util-deprecate@1.0.2 │ │ │ └── typedarray@0.0.6 │ │ ├─┬ debug@2.6.9 │ │ │ └── ms@2.0.0 │ │ ├─┬ mkdirp@0.5.4 │ │ │ └── minimist@1.2.5 deduped │ │ └── yauzl@2.10.0 deduped │ ├─┬ fs-extra@9.0.1 │ │ ├── at-least-node@1.0.0 │ │ ├── graceful-fs@4.2.2 │ │ ├─┬ jsonfile@6.0.1 │ │ │ ├── graceful-fs@4.1.15 │ │ │ └── universalify@1.0.0 deduped │ │ └── universalify@1.0.0 │ ├─┬ getos@3.2.1 │ │ └── async@3.2.0 │ ├─┬ is-ci@2.0.0 │ │ └── ci-info@2.0.0 │ ├─┬ is-installed-globally@0.3.2 │ │ ├─┬ global-dirs@2.0.1 │ │ │ └── ini@1.3.5 │ │ └── is-path-inside@3.0.2 │ ├── lazy-ass@1.6.0 │ ├─┬ listr@0.14.3 │ │ ├─┬ @samverschueren/stream-to-observable@0.3.0 │ │ │ └── any-observable@0.3.0 │ │ ├─┬ is-observable@1.1.0 │ │ │ └── symbol-observable@1.2.0 │ │ ├── is-promise@2.1.0 │ │ ├── is-stream@1.1.0 │ │ ├── listr-silent-renderer@1.1.1 │ │ ├─┬ listr-update-renderer@0.5.0 │ │ │ ├─┬ chalk@1.1.3 │ │ │ │ ├── ansi-styles@2.2.1 │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ ├── has-ansi@2.0.0 deduped │ │ │ │ ├── strip-ansi@3.0.1 deduped │ │ │ │ └── supports-color@2.0.0 │ │ │ ├─┬ cli-truncate@0.2.1 │ │ │ │ ├── slice-ansi@0.0.4 │ │ │ │ └── string-width@1.0.2 deduped │ │ │ ├── elegant-spinner@1.0.1 │ │ │ ├── figures@1.7.0 deduped │ │ │ ├── indent-string@3.2.0 │ │ │ ├─┬ log-symbols@1.0.2 │ │ │ │ └── chalk@1.1.3 deduped │ │ │ ├─┬ log-update@2.3.0 │ │ │ │ ├── ansi-escapes@3.2.0 │ │ │ │ ├── cli-cursor@2.1.0 deduped │ │ │ │ └─┬ wrap-ansi@3.0.1 │ │ │ │ ├─┬ string-width@2.1.1 │ │ │ │ │ ├── is-fullwidth-code-point@2.0.0 deduped │ │ │ │ │ └── strip-ansi@4.0.0 deduped │ │ │ │ └─┬ strip-ansi@4.0.0 │ │ │ │ └── ansi-regex@3.0.0 │ │ │ └─┬ strip-ansi@3.0.1 │ │ │ └── ansi-regex@2.1.1 deduped │ │ ├─┬ listr-verbose-renderer@0.5.0 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├─┬ cli-cursor@2.1.0 │ │ │ │ └─┬ restore-cursor@2.0.0 │ │ │ │ ├─┬ onetime@2.0.1 │ │ │ │ │ └── mimic-fn@1.2.0 │ │ │ │ └── signal-exit@3.0.2 deduped │ │ │ ├── date-fns@1.30.1 │ │ │ └─┬ figures@2.0.0 │ │ │ └── escape-string-regexp@1.0.5 deduped │ │ ├── p-map@2.1.0 │ │ └─┬ rxjs@6.5.4 │ │ └── tslib@1.10.0 │ ├── lodash@4.17.20 deduped │ ├─┬ log-symbols@4.0.0 │ │ └── chalk@4.1.0 deduped │ ├── minimist@1.2.5 │ ├── moment@2.27.0 │ ├── ospath@1.2.2 │ ├── pretty-bytes@5.4.1 │ ├── ramda@0.26.1 │ ├─┬ request-progress@3.0.0 │ │ └── throttleit@1.0.0 │ ├─┬ supports-color@7.2.0 │ │ └── has-flag@4.0.0 │ ├─┬ tmp@0.2.1 │ │ └─┬ rimraf@3.0.2 │ │ └── glob@7.1.4 deduped │ ├── untildify@4.0.0 │ ├─┬ url@0.11.0 │ │ ├── punycode@1.3.2 │ │ └── querystring@0.2.0 │ └─┬ yauzl@2.10.0 │ ├── buffer-crc32@0.2.13 │ └─┬ fd-slicer@1.1.0 │ └── pend@1.2.0 ├── date-fns@2.16.1 ├── date-fns-tz@1.0.12 ├── node-pre-gyp@0.12.0 extraneous ├─┬ postcss@8.1.4 │ ├── colorette@1.2.1 deduped │ ├─┬ line-column@1.0.2 │ │ ├── isarray@1.0.0 │ │ └─┬ isobject@2.1.0 │ │ └── isarray@1.0.0 deduped │ ├── nanoid@3.1.15 │ └── source-map@0.6.1 ├─┬ postcss-import@13.0.0 │ ├── postcss-value-parser@4.1.0 │ ├─┬ read-cache@1.0.0 │ │ └── pify@2.3.0 deduped │ └─┬ resolve@1.18.1 │ ├─┬ is-core-module@2.0.0 │ │ └── has@1.0.3 deduped │ └── path-parse@1.0.6 ├─┬ postcss-loader@4.0.4 │ ├─┬ cosmiconfig@7.0.0 │ │ ├── @types/parse-json@4.0.0 │ │ ├─┬ import-fresh@3.2.1 │ │ │ ├─┬ parent-module@1.0.1 │ │ │ │ └── callsites@3.1.0 │ │ │ └── resolve-from@4.0.0 │ │ ├─┬ parse-json@5.0.0 │ │ │ ├── @babel/code-frame@7.0.0 deduped │ │ │ ├─┬ error-ex@1.3.2 │ │ │ │ └── is-arrayish@0.2.1 │ │ │ ├── json-parse-better-errors@1.0.2 deduped │ │ │ └── lines-and-columns@1.1.6 │ │ ├── path-type@4.0.0 │ │ └── yaml@1.10.0 │ ├── klona@2.0.4 │ ├─┬ loader-utils@2.0.0 │ │ ├── big.js@5.2.2 │ │ ├── emojis-list@3.0.0 │ │ └─┬ json5@2.1.3 │ │ └── minimist@1.2.5 deduped │ ├─┬ schema-utils@3.0.0 │ │ ├── @types/json-schema@7.0.6 │ │ ├─┬ ajv@6.12.6 │ │ │ ├── fast-deep-equal@3.1.1 │ │ │ ├── fast-json-stable-stringify@2.0.0 deduped │ │ │ ├── json-schema-traverse@0.4.1 │ │ │ └─┬ uri-js@4.2.2 │ │ │ └── punycode@2.1.1 deduped │ │ └── ajv-keywords@3.5.2 │ └── semver@7.3.2 ├─┬ postcss-preset-env@6.7.0 │ ├─┬ autoprefixer@9.8.6 │ │ ├── browserslist@4.14.5 deduped │ │ ├── caniuse-lite@1.0.30001137 deduped │ │ ├── colorette@1.2.1 deduped │ │ ├── normalize-range@0.1.2 deduped │ │ ├── num2fraction@1.2.2 deduped │ │ ├── postcss@7.0.32 deduped │ │ └── postcss-value-parser@4.1.0 │ ├── browserslist@4.14.5 deduped │ ├── caniuse-lite@1.0.30001137 deduped │ ├─┬ css-blank-pseudo@0.1.4 │ │ └─┬ postcss@7.0.32 │ │ ├─┬ chalk@2.4.2 │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ └─┬ supports-color@5.5.0 │ │ │ └── has-flag@3.0.0 deduped │ │ ├── source-map@0.6.1 deduped │ │ └── supports-color@6.1.0 deduped │ ├─┬ css-has-pseudo@0.10.0 │ │ ├─┬ postcss@7.0.32 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └── supports-color@6.1.0 deduped │ │ └─┬ postcss-selector-parser@5.0.0 │ │ ├── cssesc@2.0.0 │ │ ├── indexes-of@1.0.1 deduped │ │ └── uniq@1.0.1 deduped │ ├─┬ css-prefers-color-scheme@3.1.1 │ │ └─┬ postcss@7.0.32 │ │ ├─┬ chalk@2.4.2 │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ └─┬ supports-color@5.5.0 │ │ │ └── has-flag@3.0.0 deduped │ │ ├── source-map@0.6.1 deduped │ │ └── supports-color@6.1.0 deduped │ ├── cssdb@4.4.0 │ ├─┬ postcss@7.0.32 │ │ ├─┬ chalk@2.4.2 │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ └─┬ supports-color@5.5.0 │ │ │ └── has-flag@3.0.0 deduped │ │ ├── source-map@0.6.1 deduped │ │ └─┬ supports-color@6.1.0 │ │ └── has-flag@3.0.0 │ ├─┬ postcss-attribute-case-insensitive@4.0.1 │ │ ├─┬ postcss@7.0.32 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └── supports-color@6.1.0 deduped │ │ └── postcss-selector-parser@5.0.0 deduped │ ├─┬ postcss-color-functional-notation@2.0.1 │ │ ├─┬ postcss@7.0.32 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └── supports-color@6.1.0 deduped │ │ └─┬ postcss-values-parser@2.0.1 │ │ ├── flatten@1.0.2 │ │ ├── indexes-of@1.0.1 deduped │ │ └── uniq@1.0.1 deduped │ ├─┬ postcss-color-gray@5.0.0 │ │ ├── @csstools/convert-colors@1.4.0 │ │ ├─┬ postcss@7.0.32 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └── supports-color@6.1.0 deduped │ │ └── postcss-values-parser@2.0.1 deduped │ ├─┬ postcss-color-hex-alpha@5.0.3 │ │ ├─┬ postcss@7.0.32 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └── supports-color@6.1.0 deduped │ │ └── postcss-values-parser@2.0.1 deduped │ ├─┬ postcss-color-mod-function@3.0.3 │ │ ├── @csstools/convert-colors@1.4.0 deduped │ │ ├─┬ postcss@7.0.32 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └── supports-color@6.1.0 deduped │ │ └── postcss-values-parser@2.0.1 deduped │ ├─┬ postcss-color-rebeccapurple@4.0.1 │ │ ├─┬ postcss@7.0.32 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └── supports-color@6.1.0 deduped │ │ └── postcss-values-parser@2.0.1 deduped │ ├─┬ postcss-custom-media@7.0.8 │ │ └─┬ postcss@7.0.32 │ │ ├─┬ chalk@2.4.2 │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ └─┬ supports-color@5.5.0 │ │ │ └── has-flag@3.0.0 deduped │ │ ├── source-map@0.6.1 deduped │ │ └── supports-color@6.1.0 deduped │ ├─┬ postcss-custom-properties@8.0.11 │ │ ├─┬ postcss@7.0.32 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └── supports-color@6.1.0 deduped │ │ └── postcss-values-parser@2.0.1 deduped │ ├─┬ postcss-custom-selectors@5.1.2 │ │ ├─┬ postcss@7.0.32 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └── supports-color@6.1.0 deduped │ │ └── postcss-selector-parser@5.0.0 deduped │ ├─┬ postcss-dir-pseudo-class@5.0.0 │ │ ├─┬ postcss@7.0.32 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └── supports-color@6.1.0 deduped │ │ └── postcss-selector-parser@5.0.0 deduped │ ├─┬ postcss-double-position-gradients@1.0.0 │ │ ├─┬ postcss@7.0.32 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └── supports-color@6.1.0 deduped │ │ └── postcss-values-parser@2.0.1 deduped │ ├─┬ postcss-env-function@2.0.2 │ │ ├─┬ postcss@7.0.32 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └── supports-color@6.1.0 deduped │ │ └── postcss-values-parser@2.0.1 deduped │ ├─┬ postcss-focus-visible@4.0.0 │ │ └─┬ postcss@7.0.32 │ │ ├─┬ chalk@2.4.2 │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ └─┬ supports-color@5.5.0 │ │ │ └── has-flag@3.0.0 deduped │ │ ├── source-map@0.6.1 deduped │ │ └── supports-color@6.1.0 deduped │ ├─┬ postcss-focus-within@3.0.0 │ │ └─┬ postcss@7.0.32 │ │ ├─┬ chalk@2.4.2 │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ └─┬ supports-color@5.5.0 │ │ │ └── has-flag@3.0.0 deduped │ │ ├── source-map@0.6.1 deduped │ │ └── supports-color@6.1.0 deduped │ ├─┬ postcss-font-variant@4.0.0 │ │ └─┬ postcss@7.0.32 │ │ ├─┬ chalk@2.4.2 │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ └─┬ supports-color@5.5.0 │ │ │ └── has-flag@3.0.0 deduped │ │ ├── source-map@0.6.1 deduped │ │ └── supports-color@6.1.0 deduped │ ├─┬ postcss-gap-properties@2.0.0 │ │ └─┬ postcss@7.0.32 │ │ ├─┬ chalk@2.4.2 │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ └─┬ supports-color@5.5.0 │ │ │ └── has-flag@3.0.0 deduped │ │ ├── source-map@0.6.1 deduped │ │ └── supports-color@6.1.0 deduped │ ├─┬ postcss-image-set-function@3.0.1 │ │ ├─┬ postcss@7.0.32 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └── supports-color@6.1.0 deduped │ │ └── postcss-values-parser@2.0.1 deduped │ ├─┬ postcss-initial@3.0.0 │ │ ├─┬ lodash.template@4.5.0 │ │ │ ├── lodash._reinterpolate@3.0.0 │ │ │ └─┬ lodash.templatesettings@4.2.0 │ │ │ └── lodash._reinterpolate@3.0.0 deduped │ │ └─┬ postcss@7.0.32 │ │ ├─┬ chalk@2.4.2 │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ └─┬ supports-color@5.5.0 │ │ │ └── has-flag@3.0.0 deduped │ │ ├── source-map@0.6.1 deduped │ │ └── supports-color@6.1.0 deduped │ ├─┬ postcss-lab-function@2.0.1 │ │ ├── @csstools/convert-colors@1.4.0 deduped │ │ ├─┬ postcss@7.0.32 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └── supports-color@6.1.0 deduped │ │ └── postcss-values-parser@2.0.1 deduped │ ├─┬ postcss-logical@3.0.0 │ │ └─┬ postcss@7.0.32 │ │ ├─┬ chalk@2.4.2 │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ └─┬ supports-color@5.5.0 │ │ │ └── has-flag@3.0.0 deduped │ │ ├── source-map@0.6.1 deduped │ │ └── supports-color@6.1.0 deduped │ ├─┬ postcss-media-minmax@4.0.0 │ │ └─┬ postcss@7.0.32 │ │ ├─┬ chalk@2.4.2 │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ └─┬ supports-color@5.5.0 │ │ │ └── has-flag@3.0.0 deduped │ │ ├── source-map@0.6.1 deduped │ │ └── supports-color@6.1.0 deduped │ ├─┬ postcss-nesting@7.0.0 │ │ └─┬ postcss@7.0.32 │ │ ├─┬ chalk@2.4.2 │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ └─┬ supports-color@5.5.0 │ │ │ └── has-flag@3.0.0 deduped │ │ ├── source-map@0.6.1 deduped │ │ └── supports-color@6.1.0 deduped │ ├─┬ postcss-overflow-shorthand@2.0.0 │ │ └─┬ postcss@7.0.32 │ │ ├─┬ chalk@2.4.2 │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ └─┬ supports-color@5.5.0 │ │ │ └── has-flag@3.0.0 deduped │ │ ├── source-map@0.6.1 deduped │ │ └── supports-color@6.1.0 deduped │ ├─┬ postcss-page-break@2.0.0 │ │ └─┬ postcss@7.0.32 │ │ ├─┬ chalk@2.4.2 │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ └─┬ supports-color@5.5.0 │ │ │ └── has-flag@3.0.0 deduped │ │ ├── source-map@0.6.1 deduped │ │ └── supports-color@6.1.0 deduped │ ├─┬ postcss-place@4.0.1 │ │ ├─┬ postcss@7.0.32 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └── supports-color@6.1.0 deduped │ │ └── postcss-values-parser@2.0.1 deduped │ ├─┬ postcss-pseudo-class-any-link@6.0.0 │ │ ├─┬ postcss@7.0.32 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └── supports-color@6.1.0 deduped │ │ └── postcss-selector-parser@5.0.0 deduped │ ├─┬ postcss-replace-overflow-wrap@3.0.0 │ │ └─┬ postcss@7.0.32 │ │ ├─┬ chalk@2.4.2 │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ └─┬ supports-color@5.5.0 │ │ │ └── has-flag@3.0.0 deduped │ │ ├── source-map@0.6.1 deduped │ │ └── supports-color@6.1.0 deduped │ ├─┬ postcss-selector-matches@4.0.0 │ │ ├── balanced-match@1.0.0 │ │ └─┬ postcss@7.0.32 │ │ ├─┬ chalk@2.4.2 │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ └─┬ supports-color@5.5.0 │ │ │ └── has-flag@3.0.0 deduped │ │ ├── source-map@0.6.1 deduped │ │ └── supports-color@6.1.0 deduped │ └─┬ postcss-selector-not@4.0.0 │ ├── balanced-match@1.0.0 deduped │ └─┬ postcss@7.0.32 │ ├─┬ chalk@2.4.2 │ │ ├─┬ ansi-styles@3.2.1 │ │ │ └── color-convert@1.9.3 deduped │ │ ├── escape-string-regexp@1.0.5 deduped │ │ └─┬ supports-color@5.5.0 │ │ └── has-flag@3.0.0 deduped │ ├── source-map@0.6.1 deduped │ └── supports-color@6.1.0 deduped ├── prettier@2.1.2 ├─┬ query-string@6.13.6 │ ├── decode-uri-component@0.2.0 │ ├── split-on-first@1.1.0 │ └── strict-uri-encode@2.0.0 ├─┬ react@16.14.0 │ ├─┬ loose-envify@1.4.0 │ │ └── js-tokens@4.0.0 │ ├── object-assign@4.1.1 │ └─┬ prop-types@15.7.2 │ ├── loose-envify@1.4.0 deduped │ ├── object-assign@4.1.1 deduped │ └── react-is@16.8.6 ├─┬ react-datepicker@3.3.0 │ ├── classnames@2.2.6 │ ├── date-fns@2.16.1 deduped │ ├── prop-types@15.7.2 deduped │ ├── react-onclickoutside@6.9.0 │ └─┬ react-popper@1.3.4 │ ├── @babel/runtime@7.10.2 deduped │ ├─┬ create-react-context@0.3.0 │ │ ├── gud@1.0.0 │ │ └── warning@4.0.3 deduped │ ├── popper.js@1.15.0 │ ├── prop-types@15.7.2 deduped │ ├── typed-styles@0.0.7 │ └─┬ warning@4.0.3 │ └── loose-envify@1.4.0 deduped ├─┬ react-dom@16.14.0 │ ├── loose-envify@1.4.0 deduped │ ├── object-assign@4.1.1 deduped │ ├── prop-types@15.7.2 deduped │ └─┬ scheduler@0.19.1 │ ├── loose-envify@1.4.0 deduped │ └── object-assign@4.1.1 deduped ├─┬ react-helmet@6.1.0 │ ├── object-assign@4.1.1 deduped │ ├── prop-types@15.7.2 deduped │ ├── react-fast-compare@3.2.0 │ └── react-side-effect@2.1.0 ├─┬ react-intl@5.8.8 │ ├─┬ @formatjs/ecma402-abstract@1.2.6 │ │ └── tslib@2.0.3 deduped │ ├─┬ @formatjs/intl@1.3.8 │ │ ├── @formatjs/ecma402-abstract@1.2.6 deduped │ │ ├── @formatjs/intl-displaynames@3.4.1 deduped │ │ ├── @formatjs/intl-listformat@4.3.1 deduped │ │ ├── @formatjs/intl-relativetimeformat@7.3.1 deduped │ │ ├── fast-memoize@2.5.2 deduped │ │ ├── intl-messageformat@9.3.12 deduped │ │ ├── intl-messageformat-parser@6.0.11 deduped │ │ └── tslib@2.0.3 deduped │ ├─┬ @formatjs/intl-displaynames@3.4.1 │ │ ├── @formatjs/ecma402-abstract@1.2.6 deduped │ │ └── tslib@2.0.3 deduped │ ├─┬ @formatjs/intl-listformat@4.3.1 │ │ ├── @formatjs/ecma402-abstract@1.2.6 deduped │ │ └── tslib@2.0.3 deduped │ ├─┬ @formatjs/intl-relativetimeformat@7.3.1 │ │ ├── @formatjs/ecma402-abstract@1.2.6 deduped │ │ └── tslib@2.0.3 deduped │ ├─┬ @types/hoist-non-react-statics@3.3.1 │ │ ├─┬ @types/react@16.9.5 │ │ │ ├── @types/prop-types@15.7.1 │ │ │ └── csstype@2.6.6 │ │ └── hoist-non-react-statics@3.3.2 deduped │ ├── fast-memoize@2.5.2 │ ├─┬ hoist-non-react-statics@3.3.2 │ │ └── react-is@16.8.6 deduped │ ├─┬ intl-messageformat@9.3.12 │ │ ├── fast-memoize@2.5.2 deduped │ │ ├── intl-messageformat-parser@6.0.11 deduped │ │ └── tslib@2.0.3 deduped │ ├─┬ intl-messageformat-parser@6.0.11 │ │ ├── @formatjs/ecma402-abstract@1.2.6 deduped │ │ └── tslib@2.0.3 deduped │ ├── shallow-equal@1.2.1 │ └── tslib@2.0.3 deduped ├─┬ react-map-gl@5.2.9 │ ├─┬ @babel/runtime@7.10.2 │ │ └── regenerator-runtime@0.13.5 │ ├─┬ mapbox-gl@1.2.0 │ │ ├─┬ @mapbox/geojson-rewind@0.4.0 │ │ │ ├─┬ @mapbox/geojson-area@0.2.2 │ │ │ │ └── wgs84@0.0.0 │ │ │ ├── concat-stream@1.6.2 deduped │ │ │ ├── minimist@1.2.0 │ │ │ └─┬ sharkdown@0.1.1 │ │ │ ├─┬ cardinal@0.4.4 │ │ │ │ ├── ansicolors@0.2.1 │ │ │ │ └─┬ redeyed@0.4.4 │ │ │ │ └── esprima@1.0.4 │ │ │ ├── minimist@0.0.5 │ │ │ └─┬ split@0.2.10 │ │ │ └── through@2.3.8 deduped │ │ ├── @mapbox/geojson-types@1.0.2 │ │ ├── @mapbox/jsonlint-lines-primitives@2.0.2 │ │ ├── @mapbox/mapbox-gl-supported@1.4.1 │ │ ├── @mapbox/point-geometry@0.1.0 │ │ ├── @mapbox/tiny-sdf@1.1.1 │ │ ├── @mapbox/unitbezier@0.0.0 │ │ ├─┬ @mapbox/vector-tile@1.3.1 │ │ │ └── @mapbox/point-geometry@0.1.0 deduped │ │ ├── @mapbox/whoots-js@3.1.0 │ │ ├── csscolorparser@1.0.3 │ │ ├── earcut@2.1.5 │ │ ├── esm@3.0.84 │ │ ├── geojson-vt@3.2.1 │ │ ├── gl-matrix@3.0.0 │ │ ├── grid-index@1.1.0 │ │ ├── minimist@0.0.8 │ │ ├── murmurhash-js@1.0.0 │ │ ├─┬ pbf@3.2.0 │ │ │ ├── ieee754@1.1.13 │ │ │ └─┬ resolve-protobuf-schema@2.1.0 │ │ │ └── protocol-buffers-schema@3.3.2 │ │ ├── potpack@1.0.1 │ │ ├── quickselect@2.0.0 │ │ ├── rw@1.3.3 │ │ ├─┬ supercluster@6.0.2 │ │ │ └── kdbush@3.0.0 │ │ ├── tinyqueue@2.0.3 │ │ └─┬ vt-pbf@3.1.1 │ │ ├── @mapbox/point-geometry@0.1.0 deduped │ │ ├── @mapbox/vector-tile@1.3.1 deduped │ │ └── pbf@3.2.0 deduped │ ├─┬ mjolnir.js@2.4.0 │ │ ├── @babel/runtime@7.10.2 deduped │ │ └── hammerjs@2.0.8 │ ├── prop-types@15.7.2 deduped │ ├── react-virtualized-auto-sizer@1.0.2 │ └── viewport-mercator-project@7.0.1 deduped ├── react-mde@11.0.0 ├─┬ react-scripts@4.0.0 │ ├─┬ @babel/core@7.12.3 │ │ ├─┬ @babel/code-frame@7.10.4 │ │ │ └─┬ @babel/highlight@7.10.4 │ │ │ ├── @babel/helper-validator-identifier@7.10.4 deduped │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ └── js-tokens@4.0.0 deduped │ │ ├─┬ @babel/generator@7.12.1 │ │ │ ├── @babel/types@7.12.1 deduped │ │ │ ├── jsesc@2.5.2 │ │ │ └── source-map@0.5.7 │ │ ├─┬ @babel/helper-module-transforms@7.12.1 │ │ │ ├─┬ @babel/helper-module-imports@7.12.1 │ │ │ │ └── @babel/types@7.12.1 deduped │ │ │ ├─┬ @babel/helper-replace-supers@7.12.1 │ │ │ │ ├─┬ @babel/helper-member-expression-to-functions@7.12.1 │ │ │ │ │ └── @babel/types@7.12.1 deduped │ │ │ │ ├─┬ @babel/helper-optimise-call-expression@7.10.4 │ │ │ │ │ └── @babel/types@7.12.1 deduped │ │ │ │ ├── @babel/traverse@7.12.1 deduped │ │ │ │ └── @babel/types@7.12.1 deduped │ │ │ ├─┬ @babel/helper-simple-access@7.12.1 │ │ │ │ └── @babel/types@7.12.1 deduped │ │ │ ├─┬ @babel/helper-split-export-declaration@7.11.0 │ │ │ │ └── @babel/types@7.12.1 deduped │ │ │ ├── @babel/helper-validator-identifier@7.10.4 │ │ │ ├── @babel/template@7.10.4 deduped │ │ │ ├── @babel/traverse@7.12.1 deduped │ │ │ ├── @babel/types@7.12.1 deduped │ │ │ └── lodash@4.17.20 deduped │ │ ├─┬ @babel/helpers@7.12.1 │ │ │ ├── @babel/template@7.10.4 deduped │ │ │ ├── @babel/traverse@7.12.1 deduped │ │ │ └── @babel/types@7.12.1 deduped │ │ ├── @babel/parser@7.12.3 │ │ ├─┬ @babel/template@7.10.4 │ │ │ ├─┬ @babel/code-frame@7.10.4 │ │ │ │ └─┬ @babel/highlight@7.10.4 │ │ │ │ ├── @babel/helper-validator-identifier@7.10.4 deduped │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ └── js-tokens@4.0.0 deduped │ │ │ ├── @babel/parser@7.12.3 │ │ │ └── @babel/types@7.12.1 deduped │ │ ├─┬ @babel/traverse@7.12.1 │ │ │ ├─┬ @babel/code-frame@7.10.4 │ │ │ │ └─┬ @babel/highlight@7.10.4 │ │ │ │ ├── @babel/helper-validator-identifier@7.10.4 deduped │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ └── js-tokens@4.0.0 deduped │ │ │ ├── @babel/generator@7.12.1 deduped │ │ │ ├─┬ @babel/helper-function-name@7.10.4 │ │ │ │ ├─┬ @babel/helper-get-function-arity@7.10.4 │ │ │ │ │ └── @babel/types@7.12.1 deduped │ │ │ │ ├── @babel/template@7.10.4 deduped │ │ │ │ └── @babel/types@7.12.1 deduped │ │ │ ├── @babel/helper-split-export-declaration@7.11.0 deduped │ │ │ ├── @babel/parser@7.12.3 │ │ │ ├── @babel/types@7.12.1 deduped │ │ │ ├── debug@4.1.1 deduped │ │ │ ├── globals@11.12.0 │ │ │ └── lodash@4.17.20 deduped │ │ ├─┬ @babel/types@7.12.1 │ │ │ ├── @babel/helper-validator-identifier@7.10.4 deduped │ │ │ ├── lodash@4.17.20 deduped │ │ │ └── to-fast-properties@2.0.0 │ │ ├─┬ convert-source-map@1.7.0 │ │ │ └── safe-buffer@5.1.2 deduped │ │ ├── debug@4.1.1 deduped │ │ ├── gensync@1.0.0-beta.1 │ │ ├─┬ json5@2.1.3 │ │ │ └── minimist@1.2.5 deduped │ │ ├── lodash@4.17.20 deduped │ │ ├── resolve@1.18.1 deduped │ │ ├── semver@5.7.1 │ │ └── source-map@0.5.7 │ ├─┬ @pmmmwh/react-refresh-webpack-plugin@0.4.2 │ │ ├── ansi-html@0.0.7 │ │ ├─┬ error-stack-parser@2.0.6 │ │ │ └── stackframe@1.2.0 │ │ ├── html-entities@1.3.1 │ │ ├─┬ native-url@0.2.6 │ │ │ └── querystring@0.2.0 deduped │ │ ├─┬ schema-utils@2.7.0 │ │ │ ├── @types/json-schema@7.0.4 │ │ │ ├─┬ ajv@6.12.2 │ │ │ │ ├── fast-deep-equal@3.1.1 │ │ │ │ ├── fast-json-stable-stringify@2.0.0 deduped │ │ │ │ ├── json-schema-traverse@0.4.1 deduped │ │ │ │ └── uri-js@4.2.2 deduped │ │ │ └── ajv-keywords@3.4.1 deduped │ │ └── source-map@0.7.3 │ ├─┬ @svgr/webpack@5.4.0 │ │ ├── @babel/core@7.12.3 deduped │ │ ├─┬ @babel/plugin-transform-react-constant-elements@7.12.1 │ │ │ └── @babel/helper-plugin-utils@7.10.4 │ │ ├─┬ @babel/preset-env@7.12.1 │ │ │ ├── @babel/compat-data@7.12.1 │ │ │ ├─┬ @babel/helper-compilation-targets@7.12.1 │ │ │ │ ├── @babel/compat-data@7.12.1 deduped │ │ │ │ ├── @babel/helper-validator-option@7.12.1 deduped │ │ │ │ ├── browserslist@4.14.5 deduped │ │ │ │ └── semver@5.7.1 deduped │ │ │ ├── @babel/helper-module-imports@7.12.1 deduped │ │ │ ├── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├── @babel/helper-validator-option@7.12.1 │ │ │ ├─┬ @babel/plugin-proposal-async-generator-functions@7.12.1 │ │ │ │ ├── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ │ ├─┬ @babel/helper-remap-async-to-generator@7.12.1 │ │ │ │ │ ├── @babel/helper-annotate-as-pure@7.10.4 deduped │ │ │ │ │ ├─┬ @babel/helper-wrap-function@7.12.3 │ │ │ │ │ │ ├── @babel/helper-function-name@7.10.4 deduped │ │ │ │ │ │ ├── @babel/template@7.10.4 deduped │ │ │ │ │ │ ├── @babel/traverse@7.12.1 deduped │ │ │ │ │ │ └── @babel/types@7.12.1 deduped │ │ │ │ │ └── @babel/types@7.12.1 deduped │ │ │ │ └── @babel/plugin-syntax-async-generators@7.8.4 deduped │ │ │ ├── @babel/plugin-proposal-class-properties@7.12.1 deduped │ │ │ ├─┬ @babel/plugin-proposal-dynamic-import@7.12.1 │ │ │ │ ├── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ │ └── @babel/plugin-syntax-dynamic-import@7.8.3 deduped │ │ │ ├─┬ @babel/plugin-proposal-export-namespace-from@7.12.1 │ │ │ │ ├── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ │ └── @babel/plugin-syntax-export-namespace-from@7.8.3 deduped │ │ │ ├─┬ @babel/plugin-proposal-json-strings@7.12.1 │ │ │ │ ├── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ │ └── @babel/plugin-syntax-json-strings@7.8.3 deduped │ │ │ ├─┬ @babel/plugin-proposal-logical-assignment-operators@7.12.1 │ │ │ │ ├── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ │ └── @babel/plugin-syntax-logical-assignment-operators@7.10.4 deduped │ │ │ ├── @babel/plugin-proposal-nullish-coalescing-operator@7.12.1 deduped │ │ │ ├── @babel/plugin-proposal-numeric-separator@7.12.1 deduped │ │ │ ├─┬ @babel/plugin-proposal-object-rest-spread@7.12.1 │ │ │ │ ├── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ │ ├── @babel/plugin-syntax-object-rest-spread@7.8.3 deduped │ │ │ │ └── @babel/plugin-transform-parameters@7.12.1 deduped │ │ │ ├─┬ @babel/plugin-proposal-optional-catch-binding@7.12.1 │ │ │ │ ├── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ │ └── @babel/plugin-syntax-optional-catch-binding@7.8.3 deduped │ │ │ ├── @babel/plugin-proposal-optional-chaining@7.12.1 deduped │ │ │ ├─┬ @babel/plugin-proposal-private-methods@7.12.1 │ │ │ │ ├── @babel/helper-create-class-features-plugin@7.12.1 deduped │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/plugin-proposal-unicode-property-regex@7.12.1 │ │ │ │ ├─┬ @babel/helper-create-regexp-features-plugin@7.12.1 │ │ │ │ │ ├── @babel/helper-annotate-as-pure@7.10.4 deduped │ │ │ │ │ ├── @babel/helper-regex@7.10.5 deduped │ │ │ │ │ └─┬ regexpu-core@4.7.1 │ │ │ │ │ ├── regenerate@1.4.0 │ │ │ │ │ ├─┬ regenerate-unicode-properties@8.2.0 │ │ │ │ │ │ └── regenerate@1.4.0 deduped │ │ │ │ │ ├── regjsgen@0.5.2 │ │ │ │ │ ├─┬ regjsparser@0.6.4 │ │ │ │ │ │ └── jsesc@0.5.0 │ │ │ │ │ ├─┬ unicode-match-property-ecmascript@1.0.4 │ │ │ │ │ │ ├── unicode-canonical-property-names-ecmascript@1.0.4 │ │ │ │ │ │ └── unicode-property-aliases-ecmascript@1.0.5 │ │ │ │ │ └── unicode-match-property-value-ecmascript@1.2.0 │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/plugin-syntax-async-generators@7.8.4 │ │ │ │ └── @babel/helper-plugin-utils@7.8.3 │ │ │ ├─┬ @babel/plugin-syntax-class-properties@7.12.1 │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/plugin-syntax-dynamic-import@7.8.3 │ │ │ │ └── @babel/helper-plugin-utils@7.8.3 │ │ │ ├─┬ @babel/plugin-syntax-export-namespace-from@7.8.3 │ │ │ │ └── @babel/helper-plugin-utils@7.8.3 │ │ │ ├─┬ @babel/plugin-syntax-json-strings@7.8.3 │ │ │ │ └── @babel/helper-plugin-utils@7.8.3 │ │ │ ├─┬ @babel/plugin-syntax-logical-assignment-operators@7.10.4 │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/plugin-syntax-nullish-coalescing-operator@7.8.3 │ │ │ │ └── @babel/helper-plugin-utils@7.8.3 │ │ │ ├─┬ @babel/plugin-syntax-numeric-separator@7.10.4 │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/plugin-syntax-object-rest-spread@7.8.3 │ │ │ │ └── @babel/helper-plugin-utils@7.8.3 │ │ │ ├─┬ @babel/plugin-syntax-optional-catch-binding@7.8.3 │ │ │ │ └── @babel/helper-plugin-utils@7.8.3 │ │ │ ├─┬ @babel/plugin-syntax-optional-chaining@7.8.3 │ │ │ │ └── @babel/helper-plugin-utils@7.8.3 │ │ │ ├─┬ @babel/plugin-syntax-top-level-await@7.12.1 │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/plugin-transform-arrow-functions@7.12.1 │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/plugin-transform-async-to-generator@7.12.1 │ │ │ │ ├── @babel/helper-module-imports@7.12.1 deduped │ │ │ │ ├── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ │ └── @babel/helper-remap-async-to-generator@7.12.1 deduped │ │ │ ├─┬ @babel/plugin-transform-block-scoped-functions@7.12.1 │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/plugin-transform-block-scoping@7.12.1 │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/plugin-transform-classes@7.12.1 │ │ │ │ ├─┬ @babel/helper-annotate-as-pure@7.10.4 │ │ │ │ │ └── @babel/types@7.12.1 deduped │ │ │ │ ├─┬ @babel/helper-define-map@7.10.5 │ │ │ │ │ ├── @babel/helper-function-name@7.10.4 deduped │ │ │ │ │ ├── @babel/types@7.12.1 deduped │ │ │ │ │ └── lodash@4.17.20 deduped │ │ │ │ ├── @babel/helper-function-name@7.10.4 deduped │ │ │ │ ├── @babel/helper-optimise-call-expression@7.10.4 deduped │ │ │ │ ├── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ │ ├── @babel/helper-replace-supers@7.12.1 deduped │ │ │ │ ├── @babel/helper-split-export-declaration@7.11.0 deduped │ │ │ │ └── globals@11.12.0 deduped │ │ │ ├─┬ @babel/plugin-transform-computed-properties@7.12.1 │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/plugin-transform-destructuring@7.12.1 │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/plugin-transform-dotall-regex@7.12.1 │ │ │ │ ├── @babel/helper-create-regexp-features-plugin@7.12.1 deduped │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/plugin-transform-duplicate-keys@7.12.1 │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/plugin-transform-exponentiation-operator@7.12.1 │ │ │ │ ├─┬ @babel/helper-builder-binary-assignment-operator-visitor@7.10.4 │ │ │ │ │ ├─┬ @babel/helper-explode-assignable-expression@7.12.1 │ │ │ │ │ │ └── @babel/types@7.12.1 deduped │ │ │ │ │ └── @babel/types@7.12.1 deduped │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/plugin-transform-for-of@7.12.1 │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/plugin-transform-function-name@7.12.1 │ │ │ │ ├── @babel/helper-function-name@7.10.4 deduped │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/plugin-transform-literals@7.12.1 │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/plugin-transform-member-expression-literals@7.12.1 │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/plugin-transform-modules-amd@7.12.1 │ │ │ │ ├── @babel/helper-module-transforms@7.12.1 deduped │ │ │ │ ├── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ │ └─┬ babel-plugin-dynamic-import-node@2.3.3 │ │ │ │ └── object.assign@4.1.0 deduped │ │ │ ├─┬ @babel/plugin-transform-modules-commonjs@7.12.1 │ │ │ │ ├── @babel/helper-module-transforms@7.12.1 deduped │ │ │ │ ├── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ │ ├── @babel/helper-simple-access@7.12.1 deduped │ │ │ │ └── babel-plugin-dynamic-import-node@2.3.3 deduped │ │ │ ├─┬ @babel/plugin-transform-modules-systemjs@7.12.1 │ │ │ │ ├─┬ @babel/helper-hoist-variables@7.10.4 │ │ │ │ │ └── @babel/types@7.12.1 deduped │ │ │ │ ├── @babel/helper-module-transforms@7.12.1 deduped │ │ │ │ ├── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ │ ├── @babel/helper-validator-identifier@7.10.4 deduped │ │ │ │ └── babel-plugin-dynamic-import-node@2.3.3 deduped │ │ │ ├─┬ @babel/plugin-transform-modules-umd@7.12.1 │ │ │ │ ├── @babel/helper-module-transforms@7.12.1 deduped │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/plugin-transform-named-capturing-groups-regex@7.12.1 │ │ │ │ └── @babel/helper-create-regexp-features-plugin@7.12.1 deduped │ │ │ ├─┬ @babel/plugin-transform-new-target@7.12.1 │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/plugin-transform-object-super@7.12.1 │ │ │ │ ├── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ │ └── @babel/helper-replace-supers@7.12.1 deduped │ │ │ ├─┬ @babel/plugin-transform-parameters@7.12.1 │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/plugin-transform-property-literals@7.12.1 │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/plugin-transform-regenerator@7.12.1 │ │ │ │ └─┬ regenerator-transform@0.14.4 │ │ │ │ ├── @babel/runtime@7.10.2 deduped │ │ │ │ └── private@0.1.8 │ │ │ ├─┬ @babel/plugin-transform-reserved-words@7.12.1 │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/plugin-transform-shorthand-properties@7.12.1 │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/plugin-transform-spread@7.12.1 │ │ │ │ ├── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ │ └── @babel/helper-skip-transparent-expression-wrappers@7.12.1 deduped │ │ │ ├─┬ @babel/plugin-transform-sticky-regex@7.12.1 │ │ │ │ ├── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ │ └─┬ @babel/helper-regex@7.10.5 │ │ │ │ └── lodash@4.17.20 deduped │ │ │ ├─┬ @babel/plugin-transform-template-literals@7.12.1 │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/plugin-transform-typeof-symbol@7.12.1 │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/plugin-transform-unicode-escapes@7.12.1 │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/plugin-transform-unicode-regex@7.12.1 │ │ │ │ ├── @babel/helper-create-regexp-features-plugin@7.12.1 deduped │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/preset-modules@0.1.3 │ │ │ │ ├── @babel/helper-plugin-utils@7.0.0 │ │ │ │ ├─┬ @babel/plugin-proposal-unicode-property-regex@7.4.4 │ │ │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ │ │ ├─┬ @babel/helper-regex@7.4.4 │ │ │ │ │ │ └── lodash@4.17.20 deduped │ │ │ │ │ └─┬ regexpu-core@4.5.4 │ │ │ │ │ ├── regenerate@1.4.0 deduped │ │ │ │ │ ├─┬ regenerate-unicode-properties@8.0.2 │ │ │ │ │ │ └── regenerate@1.4.0 deduped │ │ │ │ │ ├── regjsgen@0.5.0 │ │ │ │ │ ├─┬ regjsparser@0.6.0 │ │ │ │ │ │ └── jsesc@0.5.0 │ │ │ │ │ ├── unicode-match-property-ecmascript@1.0.4 deduped │ │ │ │ │ └── unicode-match-property-value-ecmascript@1.1.0 │ │ │ │ ├─┬ @babel/plugin-transform-dotall-regex@7.4.4 │ │ │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ │ │ ├── @babel/helper-regex@7.4.4 deduped │ │ │ │ │ └── regexpu-core@4.5.4 deduped │ │ │ │ ├─┬ @babel/types@7.4.4 │ │ │ │ │ ├── esutils@2.0.2 deduped │ │ │ │ │ ├── lodash@4.17.20 deduped │ │ │ │ │ └── to-fast-properties@2.0.0 deduped │ │ │ │ └── esutils@2.0.2 deduped │ │ │ ├── @babel/types@7.12.1 deduped │ │ │ ├─┬ core-js-compat@3.6.4 │ │ │ │ ├── browserslist@4.14.5 deduped │ │ │ │ └── semver@7.0.0 │ │ │ └── semver@5.7.1 deduped │ │ ├─┬ @babel/preset-react@7.12.1 │ │ │ ├── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├── @babel/plugin-transform-react-display-name@7.12.1 deduped │ │ │ ├─┬ @babel/plugin-transform-react-jsx@7.12.1 │ │ │ │ ├─┬ @babel/helper-builder-react-jsx@7.10.4 │ │ │ │ │ ├── @babel/helper-annotate-as-pure@7.10.4 deduped │ │ │ │ │ └── @babel/types@7.12.1 deduped │ │ │ │ ├─┬ @babel/helper-builder-react-jsx-experimental@7.12.4 │ │ │ │ │ ├── @babel/helper-annotate-as-pure@7.10.4 deduped │ │ │ │ │ ├── @babel/helper-module-imports@7.12.1 deduped │ │ │ │ │ └── @babel/types@7.12.1 deduped │ │ │ │ ├── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ │ └─┬ @babel/plugin-syntax-jsx@7.12.1 │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/plugin-transform-react-jsx-development@7.12.1 │ │ │ │ ├── @babel/helper-builder-react-jsx-experimental@7.12.4 deduped │ │ │ │ ├── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ │ └── @babel/plugin-syntax-jsx@7.12.1 deduped │ │ │ ├─┬ @babel/plugin-transform-react-jsx-self@7.12.1 │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/plugin-transform-react-jsx-source@7.12.1 │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ └─┬ @babel/plugin-transform-react-pure-annotations@7.12.1 │ │ │ ├── @babel/helper-annotate-as-pure@7.10.4 deduped │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ ├─┬ @svgr/core@5.4.0 │ │ │ ├── @svgr/plugin-jsx@5.4.0 deduped │ │ │ ├── camelcase@6.1.0 │ │ │ └─┬ cosmiconfig@6.0.0 │ │ │ ├── @types/parse-json@4.0.0 deduped │ │ │ ├── import-fresh@3.2.1 deduped │ │ │ ├── parse-json@5.0.0 deduped │ │ │ ├── path-type@4.0.0 deduped │ │ │ └─┬ yaml@1.7.2 │ │ │ └── @babel/runtime@7.10.2 deduped │ │ ├─┬ @svgr/plugin-jsx@5.4.0 │ │ │ ├── @babel/core@7.12.3 deduped │ │ │ ├─┬ @svgr/babel-preset@5.4.0 │ │ │ │ ├── @svgr/babel-plugin-add-jsx-attribute@5.4.0 │ │ │ │ ├── @svgr/babel-plugin-remove-jsx-attribute@5.4.0 │ │ │ │ ├── @svgr/babel-plugin-remove-jsx-empty-expression@5.0.1 │ │ │ │ ├── @svgr/babel-plugin-replace-jsx-attribute-value@5.0.1 │ │ │ │ ├── @svgr/babel-plugin-svg-dynamic-title@5.4.0 │ │ │ │ ├── @svgr/babel-plugin-svg-em-dimensions@5.4.0 │ │ │ │ ├── @svgr/babel-plugin-transform-react-native-svg@5.4.0 │ │ │ │ └── @svgr/babel-plugin-transform-svg-component@5.4.0 │ │ │ ├─┬ @svgr/hast-util-to-babel-ast@5.4.0 │ │ │ │ └── @babel/types@7.12.1 deduped │ │ │ └── svg-parser@2.0.4 │ │ ├─┬ @svgr/plugin-svgo@5.4.0 │ │ │ ├── cosmiconfig@6.0.0 deduped │ │ │ ├─┬ merge-deep@3.0.2 │ │ │ │ ├── arr-union@3.1.0 │ │ │ │ ├─┬ clone-deep@0.2.4 │ │ │ │ │ ├─┬ for-own@0.1.5 │ │ │ │ │ │ └── for-in@1.0.2 │ │ │ │ │ ├── is-plain-object@2.0.4 deduped │ │ │ │ │ ├── kind-of@3.2.2 deduped │ │ │ │ │ ├── lazy-cache@1.0.4 │ │ │ │ │ └─┬ shallow-clone@0.1.2 │ │ │ │ │ ├── is-extendable@0.1.1 deduped │ │ │ │ │ ├─┬ kind-of@2.0.1 │ │ │ │ │ │ └── is-buffer@1.1.6 deduped │ │ │ │ │ ├── lazy-cache@0.2.7 │ │ │ │ │ └─┬ mixin-object@2.0.1 │ │ │ │ │ ├── for-in@0.1.8 │ │ │ │ │ └── is-extendable@0.1.1 deduped │ │ │ │ └─┬ kind-of@3.2.2 │ │ │ │ └── is-buffer@1.1.6 │ │ │ └─┬ svgo@1.3.0 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├─┬ coa@2.0.2 │ │ │ │ ├── @types/q@1.5.2 │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ └── q@1.5.1 │ │ │ ├─┬ css-select@2.0.2 │ │ │ │ ├── boolbase@1.0.0 │ │ │ │ ├── css-what@2.1.3 │ │ │ │ ├── domutils@1.7.0 deduped │ │ │ │ └─┬ nth-check@1.0.2 │ │ │ │ └── boolbase@1.0.0 deduped │ │ │ ├── css-select-base-adapter@0.1.1 │ │ │ ├─┬ css-tree@1.0.0-alpha.33 │ │ │ │ ├── mdn-data@2.0.4 │ │ │ │ └── source-map@0.5.7 │ │ │ ├─┬ csso@3.5.1 │ │ │ │ └─┬ css-tree@1.0.0-alpha.29 │ │ │ │ ├── mdn-data@1.1.4 │ │ │ │ └── source-map@0.5.7 │ │ │ ├── js-yaml@3.13.1 deduped │ │ │ ├── mkdirp@0.5.1 deduped │ │ │ ├─┬ object.values@1.1.0 │ │ │ │ ├── define-properties@1.1.3 deduped │ │ │ │ ├─┬ es-abstract@1.13.0 │ │ │ │ │ ├─┬ es-to-primitive@1.2.0 │ │ │ │ │ │ ├── is-callable@1.1.4 deduped │ │ │ │ │ │ ├── is-date-object@1.0.1 deduped │ │ │ │ │ │ └── is-symbol@1.0.2 deduped │ │ │ │ │ ├── function-bind@1.1.1 deduped │ │ │ │ │ ├── has@1.0.3 deduped │ │ │ │ │ ├── is-callable@1.1.4 deduped │ │ │ │ │ ├─┬ is-regex@1.0.4 │ │ │ │ │ │ └── has@1.0.3 deduped │ │ │ │ │ └── object-keys@1.1.1 deduped │ │ │ │ ├── function-bind@1.1.1 deduped │ │ │ │ └── has@1.0.3 deduped │ │ │ ├── sax@1.2.4 │ │ │ ├── stable@0.1.8 │ │ │ ├── unquote@1.1.1 │ │ │ └── util.promisify@1.0.0 deduped │ │ └── loader-utils@2.0.0 deduped │ ├─┬ @typescript-eslint/eslint-plugin@4.5.0 │ │ ├─┬ @typescript-eslint/experimental-utils@4.5.0 │ │ │ ├── @types/json-schema@7.0.3 │ │ │ ├── @typescript-eslint/scope-manager@4.5.0 deduped │ │ │ ├── @typescript-eslint/types@4.5.0 deduped │ │ │ ├── @typescript-eslint/typescript-estree@4.5.0 deduped │ │ │ ├─┬ eslint-scope@5.0.0 │ │ │ │ ├── esrecurse@4.2.1 deduped │ │ │ │ └── estraverse@4.2.0 deduped │ │ │ └── eslint-utils@2.1.0 deduped │ │ ├─┬ @typescript-eslint/scope-manager@4.5.0 │ │ │ ├── @typescript-eslint/types@4.5.0 deduped │ │ │ └─┬ @typescript-eslint/visitor-keys@4.5.0 │ │ │ ├── @typescript-eslint/types@4.5.0 deduped │ │ │ └── eslint-visitor-keys@2.0.0 │ │ ├── debug@4.1.1 deduped │ │ ├── functional-red-black-tree@1.0.1 │ │ ├── regexpp@3.0.0 │ │ ├── semver@7.3.2 │ │ ├─┬ tsutils@3.17.1 │ │ │ └── tslib@1.10.0 │ │ └── UNMET PEER DEPENDENCY typescript@>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta │ ├─┬ @typescript-eslint/parser@4.5.0 │ │ ├── @typescript-eslint/scope-manager@4.5.0 deduped │ │ ├── @typescript-eslint/types@4.5.0 │ │ ├─┬ @typescript-eslint/typescript-estree@4.5.0 │ │ │ ├── @typescript-eslint/types@4.5.0 deduped │ │ │ ├── @typescript-eslint/visitor-keys@4.5.0 deduped │ │ │ ├── debug@4.1.1 deduped │ │ │ ├── globby@11.0.1 deduped │ │ │ ├── is-glob@4.0.1 deduped │ │ │ ├── lodash@4.17.20 deduped │ │ │ ├── semver@7.3.2 │ │ │ ├── tsutils@3.17.1 deduped │ │ │ └── UNMET PEER DEPENDENCY typescript@>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta │ │ └── debug@4.1.1 deduped │ ├─┬ babel-eslint@10.1.0 │ │ ├─┬ @babel/code-frame@7.0.0 │ │ │ └─┬ @babel/highlight@7.0.0 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├── esutils@2.0.2 deduped │ │ │ └── js-tokens@4.0.0 deduped │ │ ├── @babel/parser@7.10.2 │ │ ├─┬ @babel/traverse@7.10.1 │ │ │ ├─┬ @babel/code-frame@7.10.1 │ │ │ │ └─┬ @babel/highlight@7.10.1 │ │ │ │ ├── @babel/helper-validator-identifier@7.10.1 deduped │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ └── js-tokens@4.0.0 deduped │ │ │ ├─┬ @babel/generator@7.10.2 │ │ │ │ ├── @babel/types@7.10.2 deduped │ │ │ │ ├── jsesc@2.5.2 deduped │ │ │ │ ├── lodash@4.17.20 deduped │ │ │ │ └── source-map@0.5.7 │ │ │ ├─┬ @babel/helper-function-name@7.10.1 │ │ │ │ ├─┬ @babel/helper-get-function-arity@7.10.1 │ │ │ │ │ └── @babel/types@7.10.2 deduped │ │ │ │ ├─┬ @babel/template@7.10.1 │ │ │ │ │ ├─┬ @babel/code-frame@7.10.1 │ │ │ │ │ │ └── @babel/highlight@7.10.1 deduped │ │ │ │ │ ├── @babel/parser@7.10.2 deduped │ │ │ │ │ └── @babel/types@7.10.2 deduped │ │ │ │ └── @babel/types@7.10.2 deduped │ │ │ ├─┬ @babel/helper-split-export-declaration@7.10.1 │ │ │ │ └── @babel/types@7.10.2 deduped │ │ │ ├── @babel/parser@7.10.2 deduped │ │ │ ├── @babel/types@7.10.2 deduped │ │ │ ├── debug@4.1.1 deduped │ │ │ ├── globals@11.12.0 deduped │ │ │ └── lodash@4.17.20 deduped │ │ ├─┬ @babel/types@7.10.2 │ │ │ ├── @babel/helper-validator-identifier@7.10.1 │ │ │ ├── lodash@4.17.20 deduped │ │ │ └── to-fast-properties@2.0.0 deduped │ │ ├── eslint-visitor-keys@1.1.0 │ │ └── resolve@1.18.1 deduped │ ├─┬ babel-jest@26.6.1 │ │ ├─┬ @jest/transform@26.6.1 │ │ │ ├── @babel/core@7.12.3 deduped │ │ │ ├── @jest/types@26.6.1 deduped │ │ │ ├── babel-plugin-istanbul@6.0.0 deduped │ │ │ ├── chalk@4.1.0 deduped │ │ │ ├─┬ convert-source-map@1.6.0 │ │ │ │ └── safe-buffer@5.1.2 deduped │ │ │ ├── fast-json-stable-stringify@2.0.0 deduped │ │ │ ├── graceful-fs@4.2.4 deduped │ │ │ ├── jest-haste-map@26.6.1 deduped │ │ │ ├── jest-regex-util@26.0.0 deduped │ │ │ ├── jest-util@26.6.1 deduped │ │ │ ├── micromatch@4.0.2 deduped │ │ │ ├─┬ pirates@4.0.1 │ │ │ │ └── node-modules-regexp@1.0.0 │ │ │ ├── slash@3.0.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └─┬ write-file-atomic@3.0.3 │ │ │ ├── imurmurhash@0.1.4 deduped │ │ │ ├── is-typedarray@1.0.0 deduped │ │ │ ├── signal-exit@3.0.2 deduped │ │ │ └─┬ typedarray-to-buffer@3.1.5 │ │ │ └── is-typedarray@1.0.0 deduped │ │ ├─┬ @jest/types@26.6.1 │ │ │ ├── @types/istanbul-lib-coverage@2.0.1 │ │ │ ├─┬ @types/istanbul-reports@3.0.0 │ │ │ │ └─┬ @types/istanbul-lib-report@1.1.1 │ │ │ │ └── @types/istanbul-lib-coverage@2.0.1 deduped │ │ │ ├── @types/node@12.12.14 deduped │ │ │ ├─┬ @types/yargs@15.0.4 │ │ │ │ └── @types/yargs-parser@13.1.0 │ │ │ └── chalk@4.1.0 deduped │ │ ├─┬ @types/babel__core@7.1.10 │ │ │ ├── @babel/parser@7.4.4 │ │ │ ├─┬ @babel/types@7.4.4 │ │ │ │ ├── esutils@2.0.2 deduped │ │ │ │ ├── lodash@4.17.20 deduped │ │ │ │ └── to-fast-properties@2.0.0 deduped │ │ │ ├─┬ @types/babel__generator@7.0.2 │ │ │ │ └─┬ @babel/types@7.4.4 │ │ │ │ ├── esutils@2.0.2 deduped │ │ │ │ ├── lodash@4.17.20 deduped │ │ │ │ └── to-fast-properties@2.0.0 deduped │ │ │ ├─┬ @types/babel__template@7.0.2 │ │ │ │ ├── @babel/parser@7.4.4 deduped │ │ │ │ └─┬ @babel/types@7.4.4 │ │ │ │ ├── esutils@2.0.2 deduped │ │ │ │ ├── lodash@4.17.20 deduped │ │ │ │ └── to-fast-properties@2.0.0 deduped │ │ │ └─┬ @types/babel__traverse@7.0.6 │ │ │ └── @babel/types@7.4.4 deduped │ │ ├─┬ babel-plugin-istanbul@6.0.0 │ │ │ ├── @babel/helper-plugin-utils@7.0.0 │ │ │ ├─┬ @istanbuljs/load-nyc-config@1.0.0 │ │ │ │ ├── camelcase@5.3.1 deduped │ │ │ │ ├── find-up@4.1.0 deduped │ │ │ │ ├── js-yaml@3.13.1 deduped │ │ │ │ └── resolve-from@5.0.0 │ │ │ ├── @istanbuljs/schema@0.1.2 │ │ │ ├─┬ istanbul-lib-instrument@4.0.1 │ │ │ │ ├── @babel/core@7.12.3 deduped │ │ │ │ ├── @babel/parser@7.8.7 │ │ │ │ ├─┬ @babel/template@7.8.6 │ │ │ │ │ ├─┬ @babel/code-frame@7.8.3 │ │ │ │ │ │ └─┬ @babel/highlight@7.8.3 │ │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ │ ├── esutils@2.0.2 deduped │ │ │ │ │ │ └── js-tokens@4.0.0 deduped │ │ │ │ │ ├── @babel/parser@7.8.7 deduped │ │ │ │ │ └─┬ @babel/types@7.8.7 │ │ │ │ │ ├── esutils@2.0.2 deduped │ │ │ │ │ ├── lodash@4.17.20 deduped │ │ │ │ │ └── to-fast-properties@2.0.0 deduped │ │ │ │ ├─┬ @babel/traverse@7.8.6 │ │ │ │ │ ├── @babel/code-frame@7.8.3 deduped │ │ │ │ │ ├─┬ @babel/generator@7.8.7 │ │ │ │ │ │ ├── @babel/types@7.8.7 deduped │ │ │ │ │ │ ├── jsesc@2.5.2 deduped │ │ │ │ │ │ ├── lodash@4.17.20 deduped │ │ │ │ │ │ └── source-map@0.5.7 │ │ │ │ │ ├─┬ @babel/helper-function-name@7.8.3 │ │ │ │ │ │ ├─┬ @babel/helper-get-function-arity@7.8.3 │ │ │ │ │ │ │ └─┬ @babel/types@7.8.3 │ │ │ │ │ │ │ ├── esutils@2.0.2 deduped │ │ │ │ │ │ │ ├── lodash@4.17.20 deduped │ │ │ │ │ │ │ └── to-fast-properties@2.0.0 deduped │ │ │ │ │ │ ├─┬ @babel/template@7.8.3 │ │ │ │ │ │ │ ├── @babel/code-frame@7.8.3 deduped │ │ │ │ │ │ │ ├── @babel/parser@7.8.4 │ │ │ │ │ │ │ └── @babel/types@7.8.3 deduped │ │ │ │ │ │ └─┬ @babel/types@7.8.3 │ │ │ │ │ │ ├── esutils@2.0.2 deduped │ │ │ │ │ │ ├── lodash@4.17.20 deduped │ │ │ │ │ │ └── to-fast-properties@2.0.0 deduped │ │ │ │ │ ├─┬ @babel/helper-split-export-declaration@7.8.3 │ │ │ │ │ │ └─┬ @babel/types@7.8.3 │ │ │ │ │ │ ├── esutils@2.0.2 deduped │ │ │ │ │ │ ├── lodash@4.17.20 deduped │ │ │ │ │ │ └── to-fast-properties@2.0.0 deduped │ │ │ │ │ ├── @babel/parser@7.8.7 deduped │ │ │ │ │ ├── @babel/types@7.8.7 deduped │ │ │ │ │ ├── debug@4.1.1 deduped │ │ │ │ │ ├── globals@11.12.0 deduped │ │ │ │ │ └── lodash@4.17.20 deduped │ │ │ │ ├── @istanbuljs/schema@0.1.2 deduped │ │ │ │ ├── istanbul-lib-coverage@3.0.0 deduped │ │ │ │ └── semver@6.3.0 │ │ │ └─┬ test-exclude@6.0.0 │ │ │ ├── @istanbuljs/schema@0.1.2 deduped │ │ │ ├── glob@7.1.4 deduped │ │ │ └── minimatch@3.0.4 deduped │ │ ├─┬ babel-preset-jest@26.5.0 │ │ │ ├─┬ babel-plugin-jest-hoist@26.5.0 │ │ │ │ ├── @babel/template@7.10.4 deduped │ │ │ │ ├── @babel/types@7.12.1 deduped │ │ │ │ ├── @types/babel__core@7.1.10 deduped │ │ │ │ └─┬ @types/babel__traverse@7.0.6 │ │ │ │ └─┬ @babel/types@7.4.4 │ │ │ │ ├── esutils@2.0.2 deduped │ │ │ │ ├── lodash@4.17.20 deduped │ │ │ │ └── to-fast-properties@2.0.0 deduped │ │ │ └─┬ babel-preset-current-node-syntax@0.1.4 │ │ │ ├── @babel/plugin-syntax-async-generators@7.8.4 deduped │ │ │ ├─┬ @babel/plugin-syntax-bigint@7.8.3 │ │ │ │ └── @babel/helper-plugin-utils@7.8.3 │ │ │ ├── @babel/plugin-syntax-class-properties@7.12.1 deduped │ │ │ ├─┬ @babel/plugin-syntax-import-meta@7.10.4 │ │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├── @babel/plugin-syntax-json-strings@7.8.3 deduped │ │ │ ├── @babel/plugin-syntax-logical-assignment-operators@7.10.4 deduped │ │ │ ├── @babel/plugin-syntax-nullish-coalescing-operator@7.8.3 deduped │ │ │ ├─┬ @babel/plugin-syntax-numeric-separator@7.8.3 │ │ │ │ └── @babel/helper-plugin-utils@7.8.3 │ │ │ ├── @babel/plugin-syntax-object-rest-spread@7.8.3 deduped │ │ │ ├── @babel/plugin-syntax-optional-catch-binding@7.8.3 deduped │ │ │ └── @babel/plugin-syntax-optional-chaining@7.8.3 deduped │ │ ├── chalk@4.1.0 deduped │ │ ├── graceful-fs@4.2.4 │ │ └── slash@3.0.0 │ ├─┬ babel-loader@8.1.0 │ │ ├─┬ find-cache-dir@2.1.0 │ │ │ ├── commondir@1.0.1 │ │ │ ├─┬ make-dir@2.1.0 │ │ │ │ ├── pify@4.0.1 │ │ │ │ └── semver@5.7.1 deduped │ │ │ └─┬ pkg-dir@3.0.0 │ │ │ └─┬ find-up@3.0.0 │ │ │ └─┬ locate-path@3.0.0 │ │ │ ├─┬ p-locate@3.0.0 │ │ │ │ └── p-limit@2.2.1 deduped │ │ │ └── path-exists@3.0.0 deduped │ │ ├─┬ loader-utils@1.4.0 │ │ │ ├── big.js@5.2.2 deduped │ │ │ ├── emojis-list@3.0.0 deduped │ │ │ └─┬ json5@1.0.1 │ │ │ └── minimist@1.2.5 deduped │ │ ├─┬ mkdirp@0.5.5 │ │ │ └── minimist@1.2.5 deduped │ │ ├── pify@4.0.1 │ │ └─┬ schema-utils@2.7.0 │ │ ├── @types/json-schema@7.0.4 │ │ ├─┬ ajv@6.12.2 │ │ │ ├── fast-deep-equal@3.1.1 │ │ │ ├── fast-json-stable-stringify@2.0.0 deduped │ │ │ ├── json-schema-traverse@0.4.1 deduped │ │ │ └── uri-js@4.2.2 deduped │ │ └── ajv-keywords@3.4.1 deduped │ ├── babel-plugin-named-asset-import@0.3.7 │ ├─┬ babel-preset-react-app@10.0.0 │ │ ├── @babel/core@7.12.3 deduped │ │ ├─┬ @babel/plugin-proposal-class-properties@7.12.1 │ │ │ ├─┬ @babel/helper-create-class-features-plugin@7.12.1 │ │ │ │ ├── @babel/helper-function-name@7.10.4 deduped │ │ │ │ ├── @babel/helper-member-expression-to-functions@7.12.1 deduped │ │ │ │ ├── @babel/helper-optimise-call-expression@7.10.4 deduped │ │ │ │ ├── @babel/helper-replace-supers@7.12.1 deduped │ │ │ │ └── @babel/helper-split-export-declaration@7.11.0 deduped │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ ├─┬ @babel/plugin-proposal-decorators@7.12.1 │ │ │ ├── @babel/helper-create-class-features-plugin@7.12.1 deduped │ │ │ ├── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ └─┬ @babel/plugin-syntax-decorators@7.12.1 │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ ├─┬ @babel/plugin-proposal-nullish-coalescing-operator@7.12.1 │ │ │ ├── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ └── @babel/plugin-syntax-nullish-coalescing-operator@7.8.3 deduped │ │ ├─┬ @babel/plugin-proposal-numeric-separator@7.12.1 │ │ │ ├── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ └── @babel/plugin-syntax-numeric-separator@7.10.4 deduped │ │ ├─┬ @babel/plugin-proposal-optional-chaining@7.12.1 │ │ │ ├── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├─┬ @babel/helper-skip-transparent-expression-wrappers@7.12.1 │ │ │ │ └── @babel/types@7.12.1 deduped │ │ │ └── @babel/plugin-syntax-optional-chaining@7.8.3 deduped │ │ ├─┬ @babel/plugin-transform-flow-strip-types@7.12.1 │ │ │ ├── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ └─┬ @babel/plugin-syntax-flow@7.12.1 │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ ├─┬ @babel/plugin-transform-react-display-name@7.12.1 │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ ├─┬ @babel/plugin-transform-runtime@7.12.1 │ │ │ ├── @babel/helper-module-imports@7.12.1 deduped │ │ │ ├── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ ├── resolve@1.18.1 deduped │ │ │ └── semver@5.7.1 deduped │ │ ├── @babel/preset-env@7.12.1 deduped │ │ ├── @babel/preset-react@7.12.1 deduped │ │ ├─┬ @babel/preset-typescript@7.12.1 │ │ │ ├── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ └─┬ @babel/plugin-transform-typescript@7.12.1 │ │ │ ├── @babel/helper-create-class-features-plugin@7.12.1 deduped │ │ │ ├── @babel/helper-plugin-utils@7.10.4 deduped │ │ │ └─┬ @babel/plugin-syntax-typescript@7.12.1 │ │ │ └── @babel/helper-plugin-utils@7.10.4 deduped │ │ ├─┬ @babel/runtime@7.12.1 │ │ │ └── regenerator-runtime@0.13.5 deduped │ │ ├─┬ babel-plugin-macros@2.8.0 │ │ │ ├── @babel/runtime@7.10.2 deduped │ │ │ ├── cosmiconfig@6.0.0 deduped │ │ │ └── resolve@1.18.1 deduped │ │ └── babel-plugin-transform-react-remove-prop-types@0.4.24 │ ├─┬ bfj@7.0.2 │ │ ├── bluebird@3.7.2 deduped │ │ ├── check-types@11.1.2 │ │ ├── hoopy@0.1.4 │ │ └── tryer@1.0.1 │ ├── camelcase@6.1.0 │ ├── case-sensitive-paths-webpack-plugin@2.3.0 │ ├─┬ css-loader@4.3.0 │ │ ├── camelcase@6.1.0 │ │ ├── cssesc@3.0.0 │ │ ├─┬ icss-utils@4.1.1 │ │ │ └─┬ postcss@7.0.32 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └── supports-color@6.1.0 deduped │ │ ├── loader-utils@2.0.0 deduped │ │ ├─┬ postcss@7.0.32 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └── supports-color@6.1.0 deduped │ │ ├─┬ postcss-modules-extract-imports@2.0.0 │ │ │ └─┬ postcss@7.0.32 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └── supports-color@6.1.0 deduped │ │ ├─┬ postcss-modules-local-by-default@3.0.3 │ │ │ ├── icss-utils@4.1.1 deduped │ │ │ ├─┬ postcss@7.0.32 │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ ├─┬ postcss-selector-parser@6.0.2 │ │ │ │ ├── cssesc@3.0.0 deduped │ │ │ │ ├── indexes-of@1.0.1 deduped │ │ │ │ └── uniq@1.0.1 deduped │ │ │ └── postcss-value-parser@4.1.0 │ │ ├─┬ postcss-modules-scope@2.2.0 │ │ │ ├─┬ postcss@7.0.32 │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ └─┬ postcss-selector-parser@6.0.2 │ │ │ ├── cssesc@3.0.0 deduped │ │ │ ├── indexes-of@1.0.1 deduped │ │ │ └── uniq@1.0.1 deduped │ │ ├─┬ postcss-modules-values@3.0.0 │ │ │ ├── icss-utils@4.1.1 deduped │ │ │ └─┬ postcss@7.0.32 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └── supports-color@6.1.0 deduped │ │ ├── postcss-value-parser@4.1.0 │ │ ├─┬ schema-utils@2.7.1 │ │ │ ├── @types/json-schema@7.0.6 deduped │ │ │ ├─┬ ajv@6.12.6 │ │ │ │ ├── fast-deep-equal@3.1.1 │ │ │ │ ├── fast-json-stable-stringify@2.0.0 deduped │ │ │ │ ├── json-schema-traverse@0.4.1 deduped │ │ │ │ └── uri-js@4.2.2 deduped │ │ │ └── ajv-keywords@3.5.2 │ │ └── semver@7.3.2 │ ├── dotenv@8.2.0 │ ├── dotenv-expand@5.1.0 │ ├─┬ eslint@7.12.0 │ │ ├── @babel/code-frame@7.0.0 deduped │ │ ├─┬ @eslint/eslintrc@0.2.0 │ │ │ ├─┬ ajv@6.12.6 │ │ │ │ ├── fast-deep-equal@3.1.1 │ │ │ │ ├── fast-json-stable-stringify@2.0.0 deduped │ │ │ │ ├── json-schema-traverse@0.4.1 deduped │ │ │ │ └── uri-js@4.2.2 deduped │ │ │ ├── debug@4.1.1 deduped │ │ │ ├── espree@7.3.0 deduped │ │ │ ├─┬ globals@12.3.0 │ │ │ │ └── type-fest@0.8.1 deduped │ │ │ ├── ignore@4.0.6 deduped │ │ │ ├── import-fresh@3.2.1 deduped │ │ │ ├── js-yaml@3.13.1 deduped │ │ │ ├── lodash@4.17.20 deduped │ │ │ ├── minimatch@3.0.4 deduped │ │ │ └── strip-json-comments@3.1.1 deduped │ │ ├─┬ ajv@6.10.2 │ │ │ ├── fast-deep-equal@2.0.1 │ │ │ ├── fast-json-stable-stringify@2.0.0 deduped │ │ │ ├── json-schema-traverse@0.4.1 deduped │ │ │ └── uri-js@4.2.2 deduped │ │ ├── chalk@4.1.0 deduped │ │ ├─┬ cross-spawn@7.0.3 │ │ │ ├── path-key@3.1.0 │ │ │ ├── shebang-command@2.0.0 deduped │ │ │ └─┬ which@2.0.1 │ │ │ └── isexe@2.0.0 deduped │ │ ├── debug@4.1.1 deduped │ │ ├─┬ doctrine@3.0.0 │ │ │ └── esutils@2.0.2 deduped │ │ ├─┬ enquirer@2.3.6 │ │ │ └── ansi-colors@4.1.1 │ │ ├─┬ eslint-scope@5.1.1 │ │ │ ├─┬ esrecurse@4.3.0 │ │ │ │ └── estraverse@5.2.0 │ │ │ └── estraverse@4.2.0 │ │ ├─┬ eslint-utils@2.1.0 │ │ │ └── eslint-visitor-keys@1.1.0 deduped │ │ ├── eslint-visitor-keys@2.0.0 │ │ ├─┬ espree@7.3.0 │ │ │ ├── acorn@7.4.1 │ │ │ ├── acorn-jsx@5.3.1 │ │ │ └── eslint-visitor-keys@1.3.0 │ │ ├─┬ esquery@1.3.1 │ │ │ └── estraverse@5.2.0 │ │ ├── esutils@2.0.2 │ │ ├─┬ file-entry-cache@5.0.1 │ │ │ └─┬ flat-cache@2.0.1 │ │ │ ├── flatted@2.0.0 │ │ │ ├── rimraf@2.6.3 deduped │ │ │ └─┬ write@1.0.3 │ │ │ └── mkdirp@0.5.1 deduped │ │ ├── functional-red-black-tree@1.0.1 deduped │ │ ├─┬ glob-parent@5.0.0 │ │ │ └── is-glob@4.0.1 deduped │ │ ├─┬ globals@12.3.0 │ │ │ └── type-fest@0.8.1 │ │ ├── ignore@4.0.6 │ │ ├─┬ import-fresh@3.0.0 │ │ │ ├── parent-module@1.0.1 deduped │ │ │ └── resolve-from@4.0.0 │ │ ├── imurmurhash@0.1.4 │ │ ├─┬ is-glob@4.0.1 │ │ │ └── is-extglob@2.1.1 │ │ ├─┬ js-yaml@3.13.1 │ │ │ ├── argparse@1.0.10 deduped │ │ │ └── esprima@4.0.1 │ │ ├── json-stable-stringify-without-jsonify@1.0.1 │ │ ├─┬ levn@0.4.1 │ │ │ ├── prelude-ls@1.2.1 │ │ │ └─┬ type-check@0.4.0 │ │ │ └── prelude-ls@1.2.1 deduped │ │ ├── lodash@4.17.20 deduped │ │ ├─┬ minimatch@3.0.4 │ │ │ └─┬ brace-expansion@1.1.11 │ │ │ ├── balanced-match@1.0.0 deduped │ │ │ └── concat-map@0.0.1 │ │ ├── natural-compare@1.4.0 │ │ ├─┬ optionator@0.9.1 │ │ │ ├── deep-is@0.1.3 │ │ │ ├── fast-levenshtein@2.0.6 │ │ │ ├── levn@0.4.1 deduped │ │ │ ├── prelude-ls@1.2.1 │ │ │ ├─┬ type-check@0.4.0 │ │ │ │ └── prelude-ls@1.2.1 deduped │ │ │ └── word-wrap@1.2.3 │ │ ├── progress@2.0.3 │ │ ├── regexpp@3.1.0 │ │ ├── semver@7.3.2 │ │ ├─┬ strip-ansi@6.0.0 │ │ │ └── ansi-regex@5.0.0 │ │ ├── strip-json-comments@3.1.1 │ │ ├─┬ table@5.2.3 │ │ │ ├── ajv@6.10.0 deduped │ │ │ ├── lodash@4.17.20 deduped │ │ │ ├─┬ slice-ansi@2.1.0 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── astral-regex@1.0.0 │ │ │ │ └── is-fullwidth-code-point@2.0.0 │ │ │ └─┬ string-width@3.1.0 │ │ │ ├── emoji-regex@7.0.3 │ │ │ ├── is-fullwidth-code-point@2.0.0 deduped │ │ │ └─┬ strip-ansi@5.2.0 │ │ │ └── ansi-regex@4.1.0 │ │ ├── text-table@0.2.0 │ │ └── v8-compile-cache@2.1.0 │ ├─┬ eslint-config-react-app@6.0.0 │ │ └── confusing-browser-globals@1.0.10 │ ├─┬ eslint-plugin-flowtype@5.2.0 │ │ ├── lodash@4.17.20 deduped │ │ └── string-natural-compare@3.0.1 │ ├─┬ eslint-plugin-import@2.22.1 │ │ ├─┬ array-includes@3.1.1 │ │ │ ├─┬ define-properties@1.1.3 │ │ │ │ └── object-keys@1.1.1 │ │ │ ├─┬ es-abstract@1.17.4 │ │ │ │ ├─┬ es-to-primitive@1.2.1 │ │ │ │ │ ├── is-callable@1.1.4 deduped │ │ │ │ │ ├── is-date-object@1.0.1 │ │ │ │ │ └─┬ is-symbol@1.0.2 │ │ │ │ │ └── has-symbols@1.0.0 │ │ │ │ ├── function-bind@1.1.1 deduped │ │ │ │ ├── has@1.0.3 deduped │ │ │ │ ├── has-symbols@1.0.1 deduped │ │ │ │ ├── is-callable@1.1.5 │ │ │ │ ├─┬ is-regex@1.0.5 │ │ │ │ │ └── has@1.0.3 deduped │ │ │ │ ├── object-inspect@1.7.0 │ │ │ │ ├── object-keys@1.1.1 deduped │ │ │ │ ├── object.assign@4.1.0 deduped │ │ │ │ ├─┬ string.prototype.trimleft@2.1.1 │ │ │ │ │ ├── define-properties@1.1.3 deduped │ │ │ │ │ └── function-bind@1.1.1 deduped │ │ │ │ └─┬ string.prototype.trimright@2.1.1 │ │ │ │ ├── define-properties@1.1.3 deduped │ │ │ │ └── function-bind@1.1.1 deduped │ │ │ └── is-string@1.0.5 │ │ ├─┬ array.prototype.flat@1.2.3 │ │ │ ├── define-properties@1.1.3 deduped │ │ │ └── es-abstract@1.17.4 deduped │ │ ├── contains-path@0.1.0 │ │ ├─┬ debug@2.6.9 │ │ │ └── ms@2.0.0 │ │ ├─┬ doctrine@1.5.0 │ │ │ ├── esutils@2.0.2 deduped │ │ │ └── isarray@1.0.0 deduped │ │ ├─┬ eslint-import-resolver-node@0.3.4 │ │ │ ├─┬ debug@2.6.9 │ │ │ │ └── ms@2.0.0 │ │ │ └── resolve@1.18.1 deduped │ │ ├─┬ eslint-module-utils@2.6.0 │ │ │ ├─┬ debug@2.6.9 │ │ │ │ └── ms@2.0.0 │ │ │ └─┬ pkg-dir@2.0.0 │ │ │ └─┬ find-up@2.1.0 │ │ │ └─┬ locate-path@2.0.0 │ │ │ ├─┬ p-locate@2.0.0 │ │ │ │ └─┬ p-limit@1.3.0 │ │ │ │ └── p-try@1.0.0 │ │ │ └── path-exists@3.0.0 deduped │ │ ├─┬ has@1.0.3 │ │ │ └── function-bind@1.1.1 deduped │ │ ├── minimatch@3.0.4 deduped │ │ ├─┬ object.values@1.1.1 │ │ │ ├── define-properties@1.1.3 deduped │ │ │ ├── es-abstract@1.17.4 deduped │ │ │ ├── function-bind@1.1.1 │ │ │ └── has@1.0.3 deduped │ │ ├─┬ read-pkg-up@2.0.0 │ │ │ ├─┬ find-up@2.1.0 │ │ │ │ └─┬ locate-path@2.0.0 │ │ │ │ ├─┬ p-locate@2.0.0 │ │ │ │ │ └─┬ p-limit@1.3.0 │ │ │ │ │ └── p-try@1.0.0 │ │ │ │ └── path-exists@3.0.0 │ │ │ └─┬ read-pkg@2.0.0 │ │ │ ├─┬ load-json-file@2.0.0 │ │ │ │ ├── graceful-fs@4.1.15 │ │ │ │ ├─┬ parse-json@2.2.0 │ │ │ │ │ └── error-ex@1.3.2 deduped │ │ │ │ ├── pify@2.3.0 deduped │ │ │ │ └── strip-bom@3.0.0 deduped │ │ │ ├─┬ normalize-package-data@2.5.0 │ │ │ │ ├── hosted-git-info@2.8.4 │ │ │ │ ├── resolve@1.18.1 deduped │ │ │ │ ├── semver@5.7.1 deduped │ │ │ │ └─┬ validate-npm-package-license@3.0.4 │ │ │ │ ├─┬ spdx-correct@3.1.0 │ │ │ │ │ ├── spdx-expression-parse@3.0.0 deduped │ │ │ │ │ └── spdx-license-ids@3.0.5 │ │ │ │ └─┬ spdx-expression-parse@3.0.0 │ │ │ │ ├── spdx-exceptions@2.2.0 │ │ │ │ └── spdx-license-ids@3.0.5 deduped │ │ │ └─┬ path-type@2.0.0 │ │ │ └── pify@2.3.0 deduped │ │ ├── resolve@1.18.1 deduped │ │ └─┬ tsconfig-paths@3.9.0 │ │ ├── @types/json5@0.0.29 │ │ ├── json5@1.0.1 deduped │ │ ├── minimist@1.2.5 deduped │ │ └── strip-bom@3.0.0 │ ├─┬ eslint-plugin-jest@24.1.0 │ │ └── @typescript-eslint/experimental-utils@4.5.0 deduped │ ├─┬ eslint-plugin-jsx-a11y@6.3.1 │ │ ├─┬ @babel/runtime@7.12.1 │ │ │ └── regenerator-runtime@0.13.5 deduped │ │ ├─┬ aria-query@4.2.2 │ │ │ ├─┬ @babel/runtime@7.12.1 │ │ │ │ └── regenerator-runtime@0.13.5 deduped │ │ │ └─┬ @babel/runtime-corejs3@7.12.1 │ │ │ ├── core-js-pure@3.6.5 │ │ │ └── regenerator-runtime@0.13.5 deduped │ │ ├── array-includes@3.1.1 deduped │ │ ├── ast-types-flow@0.0.7 │ │ ├── axe-core@3.5.5 │ │ ├── axobject-query@2.2.0 │ │ ├── damerau-levenshtein@1.0.6 │ │ ├── emoji-regex@9.2.0 │ │ ├── has@1.0.3 deduped │ │ ├─┬ jsx-ast-utils@2.4.1 │ │ │ ├── array-includes@3.1.1 deduped │ │ │ └─┬ object.assign@4.1.0 │ │ │ ├── define-properties@1.1.3 deduped │ │ │ ├── function-bind@1.1.1 deduped │ │ │ ├── has-symbols@1.0.0 │ │ │ └── object-keys@1.1.1 deduped │ │ └─┬ language-tags@1.0.5 │ │ └── language-subtag-registry@0.3.20 │ ├─┬ eslint-plugin-react@7.21.5 │ │ ├── array-includes@3.1.1 deduped │ │ ├─┬ array.prototype.flatmap@1.2.3 │ │ │ ├── define-properties@1.1.3 deduped │ │ │ ├── es-abstract@1.17.4 deduped │ │ │ └── function-bind@1.1.1 deduped │ │ ├─┬ doctrine@2.1.0 │ │ │ └── esutils@2.0.2 deduped │ │ ├── has@1.0.3 deduped │ │ ├─┬ jsx-ast-utils@3.1.0 │ │ │ ├── array-includes@3.1.1 deduped │ │ │ └─┬ object.assign@4.1.1 │ │ │ ├── define-properties@1.1.3 deduped │ │ │ ├─┬ es-abstract@1.18.0-next.1 │ │ │ │ ├── es-to-primitive@1.2.1 deduped │ │ │ │ ├── function-bind@1.1.1 deduped │ │ │ │ ├── has@1.0.3 deduped │ │ │ │ ├── has-symbols@1.0.1 deduped │ │ │ │ ├── is-callable@1.2.2 deduped │ │ │ │ ├── is-negative-zero@2.0.0 │ │ │ │ ├── is-regex@1.1.1 deduped │ │ │ │ ├── object-inspect@1.8.0 deduped │ │ │ │ ├── object-keys@1.1.1 deduped │ │ │ │ ├── object.assign@4.1.1 deduped │ │ │ │ ├── string.prototype.trimend@1.0.2 deduped │ │ │ │ └── string.prototype.trimstart@1.0.2 deduped │ │ │ ├── has-symbols@1.0.1 deduped │ │ │ └── object-keys@1.1.1 deduped │ │ ├─┬ object.entries@1.1.2 │ │ │ ├── define-properties@1.1.3 deduped │ │ │ ├─┬ es-abstract@1.17.7 │ │ │ │ ├── es-to-primitive@1.2.1 deduped │ │ │ │ ├── function-bind@1.1.1 deduped │ │ │ │ ├── has@1.0.3 deduped │ │ │ │ ├── has-symbols@1.0.1 deduped │ │ │ │ ├── is-callable@1.2.2 │ │ │ │ ├─┬ is-regex@1.1.1 │ │ │ │ │ └── has-symbols@1.0.1 deduped │ │ │ │ ├── object-inspect@1.8.0 │ │ │ │ ├── object-keys@1.1.1 deduped │ │ │ │ ├── object.assign@4.1.1 deduped │ │ │ │ ├─┬ string.prototype.trimend@1.0.2 │ │ │ │ │ ├── define-properties@1.1.3 deduped │ │ │ │ │ └─┬ es-abstract@1.18.0-next.1 │ │ │ │ │ ├── es-to-primitive@1.2.1 deduped │ │ │ │ │ ├── function-bind@1.1.1 deduped │ │ │ │ │ ├── has@1.0.3 deduped │ │ │ │ │ ├── has-symbols@1.0.1 deduped │ │ │ │ │ ├── is-callable@1.2.2 │ │ │ │ │ ├── is-negative-zero@2.0.0 deduped │ │ │ │ │ ├── is-regex@1.1.1 deduped │ │ │ │ │ ├── object-inspect@1.8.0 │ │ │ │ │ ├── object-keys@1.1.1 deduped │ │ │ │ │ ├─┬ object.assign@4.1.1 │ │ │ │ │ │ ├── define-properties@1.1.3 deduped │ │ │ │ │ │ ├── es-abstract@1.18.0-next.1 deduped │ │ │ │ │ │ ├── has-symbols@1.0.1 deduped │ │ │ │ │ │ └── object-keys@1.1.1 deduped │ │ │ │ │ ├── string.prototype.trimend@1.0.2 deduped │ │ │ │ │ └── string.prototype.trimstart@1.0.2 deduped │ │ │ │ └─┬ string.prototype.trimstart@1.0.2 │ │ │ │ ├── define-properties@1.1.3 deduped │ │ │ │ └─┬ es-abstract@1.18.0-next.1 │ │ │ │ ├── es-to-primitive@1.2.1 deduped │ │ │ │ ├── function-bind@1.1.1 deduped │ │ │ │ ├── has@1.0.3 deduped │ │ │ │ ├── has-symbols@1.0.1 deduped │ │ │ │ ├── is-callable@1.2.2 │ │ │ │ ├── is-negative-zero@2.0.0 deduped │ │ │ │ ├── is-regex@1.1.1 deduped │ │ │ │ ├── object-inspect@1.8.0 │ │ │ │ ├── object-keys@1.1.1 deduped │ │ │ │ ├─┬ object.assign@4.1.1 │ │ │ │ │ ├── define-properties@1.1.3 deduped │ │ │ │ │ ├── es-abstract@1.18.0-next.1 deduped │ │ │ │ │ ├── has-symbols@1.0.1 deduped │ │ │ │ │ └── object-keys@1.1.1 deduped │ │ │ │ ├── string.prototype.trimend@1.0.2 deduped │ │ │ │ └── string.prototype.trimstart@1.0.2 deduped │ │ │ └── has@1.0.3 deduped │ │ ├─┬ object.fromentries@2.0.2 │ │ │ ├── define-properties@1.1.3 deduped │ │ │ ├── es-abstract@1.17.4 deduped │ │ │ ├── function-bind@1.1.1 deduped │ │ │ └── has@1.0.3 deduped │ │ ├─┬ object.values@1.1.1 │ │ │ ├── define-properties@1.1.3 deduped │ │ │ ├── es-abstract@1.17.4 deduped │ │ │ ├── function-bind@1.1.1 deduped │ │ │ └── has@1.0.3 deduped │ │ ├── prop-types@15.7.2 deduped │ │ ├── resolve@1.18.1 deduped │ │ └─┬ string.prototype.matchall@4.0.2 │ │ ├── define-properties@1.1.3 deduped │ │ ├── es-abstract@1.17.4 deduped │ │ ├── has-symbols@1.0.1 │ │ ├─┬ internal-slot@1.0.2 │ │ │ ├── es-abstract@1.17.4 deduped │ │ │ ├── has@1.0.3 deduped │ │ │ └── side-channel@1.0.2 deduped │ │ ├─┬ regexp.prototype.flags@1.3.0 │ │ │ ├── define-properties@1.1.3 deduped │ │ │ └── es-abstract@1.17.4 deduped │ │ └─┬ side-channel@1.0.2 │ │ ├── es-abstract@1.17.4 deduped │ │ └── object-inspect@1.7.0 deduped │ ├── eslint-plugin-react-hooks@4.2.0 │ ├─┬ eslint-plugin-testing-library@3.9.2 │ │ └─┬ @typescript-eslint/experimental-utils@3.10.1 │ │ ├── @types/json-schema@7.0.3 │ │ ├── @typescript-eslint/types@3.10.1 │ │ ├─┬ @typescript-eslint/typescript-estree@3.10.1 │ │ │ ├── @typescript-eslint/types@3.10.1 deduped │ │ │ ├─┬ @typescript-eslint/visitor-keys@3.10.1 │ │ │ │ └── eslint-visitor-keys@1.1.0 deduped │ │ │ ├── debug@4.1.1 deduped │ │ │ ├─┬ glob@7.1.6 │ │ │ │ ├── fs.realpath@1.0.0 deduped │ │ │ │ ├── inflight@1.0.6 deduped │ │ │ │ ├── inherits@2.0.4 deduped │ │ │ │ ├── minimatch@3.0.4 deduped │ │ │ │ ├── once@1.4.0 deduped │ │ │ │ └── path-is-absolute@1.0.1 deduped │ │ │ ├── is-glob@4.0.1 deduped │ │ │ ├── lodash@4.17.20 deduped │ │ │ ├── semver@7.3.2 │ │ │ ├── tsutils@3.17.1 deduped │ │ │ └── UNMET PEER DEPENDENCY typescript@>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta │ │ ├── eslint-scope@5.0.0 deduped │ │ └── eslint-utils@2.1.0 deduped │ ├─┬ eslint-webpack-plugin@2.1.0 │ │ ├─┬ @types/eslint@7.2.4 │ │ │ ├── @types/estree@0.0.45 │ │ │ └── @types/json-schema@7.0.6 deduped │ │ ├── arrify@2.0.1 │ │ ├── fs-extra@9.0.1 deduped │ │ ├─┬ micromatch@4.0.2 │ │ │ ├─┬ braces@3.0.2 │ │ │ │ └─┬ fill-range@7.0.1 │ │ │ │ └─┬ to-regex-range@5.0.1 │ │ │ │ └── is-number@7.0.0 │ │ │ └── picomatch@2.2.1 │ │ └─┬ schema-utils@2.7.1 │ │ ├── @types/json-schema@7.0.6 deduped │ │ ├─┬ ajv@6.12.6 │ │ │ ├── fast-deep-equal@3.1.1 │ │ │ ├── fast-json-stable-stringify@2.0.0 deduped │ │ │ ├── json-schema-traverse@0.4.1 deduped │ │ │ └── uri-js@4.2.2 deduped │ │ └── ajv-keywords@3.5.2 │ ├─┬ file-loader@6.1.1 │ │ ├── loader-utils@2.0.0 deduped │ │ └─┬ schema-utils@3.0.0 │ │ ├── @types/json-schema@7.0.6 deduped │ │ ├─┬ ajv@6.12.6 │ │ │ ├── fast-deep-equal@3.1.1 │ │ │ ├── fast-json-stable-stringify@2.0.0 deduped │ │ │ ├── json-schema-traverse@0.4.1 deduped │ │ │ └── uri-js@4.2.2 deduped │ │ └── ajv-keywords@3.5.2 │ ├── fs-extra@9.0.1 deduped │ ├── fsevents@2.1.3 │ ├─┬ html-webpack-plugin@4.5.0 │ │ ├── @types/html-minifier-terser@5.1.1 │ │ ├── @types/tapable@1.0.6 │ │ ├─┬ @types/webpack@4.41.23 │ │ │ ├── @types/anymatch@1.3.1 │ │ │ ├── @types/node@12.12.14 deduped │ │ │ ├── @types/tapable@1.0.6 deduped │ │ │ ├─┬ @types/uglify-js@3.11.0 │ │ │ │ └── source-map@0.6.1 deduped │ │ │ ├─┬ @types/webpack-sources@2.0.0 │ │ │ │ ├── @types/node@12.12.14 deduped │ │ │ │ ├── @types/source-list-map@0.1.2 │ │ │ │ └── source-map@0.7.3 │ │ │ └── source-map@0.6.1 deduped │ │ ├─┬ html-minifier-terser@5.0.2 │ │ │ ├─┬ camel-case@3.0.0 │ │ │ │ ├─┬ no-case@2.3.2 │ │ │ │ │ └── lower-case@1.1.4 │ │ │ │ └── upper-case@1.1.3 │ │ │ ├─┬ clean-css@4.2.3 │ │ │ │ └── source-map@0.6.1 deduped │ │ │ ├── commander@4.1.1 │ │ │ ├── he@1.2.0 │ │ │ ├─┬ param-case@2.1.1 │ │ │ │ └── no-case@2.3.2 deduped │ │ │ ├── relateurl@0.2.7 │ │ │ └─┬ terser@4.4.2 │ │ │ ├── commander@2.20.3 │ │ │ ├── source-map@0.6.1 deduped │ │ │ └─┬ source-map-support@0.5.13 │ │ │ ├── buffer-from@1.1.1 deduped │ │ │ └── source-map@0.6.1 deduped │ │ ├─┬ loader-utils@1.2.3 │ │ │ ├── big.js@5.2.2 deduped │ │ │ ├── emojis-list@2.1.0 │ │ │ └── json5@1.0.1 deduped │ │ ├── lodash@4.17.20 deduped │ │ ├─┬ pretty-error@2.1.1 │ │ │ ├─┬ renderkid@2.0.3 │ │ │ │ ├─┬ css-select@1.2.0 │ │ │ │ │ ├── boolbase@1.0.0 deduped │ │ │ │ │ ├── css-what@2.1.3 deduped │ │ │ │ │ ├─┬ domutils@1.5.1 │ │ │ │ │ │ ├── dom-serializer@0.1.1 deduped │ │ │ │ │ │ └── domelementtype@1.3.1 deduped │ │ │ │ │ └── nth-check@1.0.2 deduped │ │ │ │ ├─┬ dom-converter@0.2.0 │ │ │ │ │ └── utila@0.4.0 deduped │ │ │ │ ├── htmlparser2@3.10.1 deduped │ │ │ │ ├─┬ strip-ansi@3.0.1 │ │ │ │ │ └── ansi-regex@2.1.1 deduped │ │ │ │ └── utila@0.4.0 deduped │ │ │ └── utila@0.4.0 │ │ ├── tapable@1.1.3 │ │ └─┬ util.promisify@1.0.0 │ │ ├── define-properties@1.1.3 deduped │ │ └─┬ object.getownpropertydescriptors@2.0.3 │ │ ├── define-properties@1.1.3 deduped │ │ └─┬ es-abstract@1.13.0 │ │ ├─┬ es-to-primitive@1.2.0 │ │ │ ├── is-callable@1.1.4 deduped │ │ │ ├── is-date-object@1.0.1 deduped │ │ │ └── is-symbol@1.0.2 deduped │ │ ├── function-bind@1.1.1 deduped │ │ ├── has@1.0.3 deduped │ │ ├── is-callable@1.1.4 deduped │ │ ├─┬ is-regex@1.0.4 │ │ │ └── has@1.0.3 deduped │ │ └── object-keys@1.1.1 deduped │ ├─┬ identity-obj-proxy@3.0.0 │ │ └── harmony-reflect@1.6.1 │ ├─┬ jest@26.6.0 │ │ ├── @jest/core@26.6.1 deduped │ │ ├── import-local@3.0.2 deduped │ │ └── jest-cli@26.6.1 deduped │ ├─┬ jest-circus@26.6.0 │ │ ├─┬ @babel/traverse@7.4.4 │ │ │ ├── @babel/code-frame@7.0.0 deduped │ │ │ ├─┬ @babel/generator@7.4.4 │ │ │ │ ├── @babel/types@7.4.4 deduped │ │ │ │ ├── jsesc@2.5.2 deduped │ │ │ │ ├── lodash@4.17.20 deduped │ │ │ │ ├── source-map@0.5.7 │ │ │ │ └── trim-right@1.0.1 │ │ │ ├─┬ @babel/helper-function-name@7.1.0 │ │ │ │ ├─┬ @babel/helper-get-function-arity@7.0.0 │ │ │ │ │ └── @babel/types@7.4.4 deduped │ │ │ │ ├─┬ @babel/template@7.4.4 │ │ │ │ │ ├── @babel/code-frame@7.0.0 deduped │ │ │ │ │ ├── @babel/parser@7.4.4 deduped │ │ │ │ │ └── @babel/types@7.4.4 deduped │ │ │ │ └── @babel/types@7.4.4 deduped │ │ │ ├─┬ @babel/helper-split-export-declaration@7.4.4 │ │ │ │ └── @babel/types@7.4.4 deduped │ │ │ ├── @babel/parser@7.4.4 deduped │ │ │ ├─┬ @babel/types@7.4.4 │ │ │ │ ├── esutils@2.0.2 deduped │ │ │ │ ├── lodash@4.17.20 deduped │ │ │ │ └── to-fast-properties@2.0.0 deduped │ │ │ ├── debug@4.1.1 deduped │ │ │ ├── globals@11.12.0 deduped │ │ │ └── lodash@4.17.20 deduped │ │ ├─┬ @jest/environment@26.6.1 │ │ │ ├─┬ @jest/fake-timers@26.6.1 │ │ │ │ ├── @jest/types@26.6.1 deduped │ │ │ │ ├─┬ @sinonjs/fake-timers@6.0.1 │ │ │ │ │ └─┬ @sinonjs/commons@1.7.1 │ │ │ │ │ └── type-detect@4.0.8 │ │ │ │ ├── @types/node@12.12.14 deduped │ │ │ │ ├── jest-message-util@26.6.1 deduped │ │ │ │ ├── jest-mock@26.6.1 deduped │ │ │ │ └── jest-util@26.6.1 deduped │ │ │ ├── @jest/types@26.6.1 deduped │ │ │ ├── @types/node@12.12.14 deduped │ │ │ └─┬ jest-mock@26.6.1 │ │ │ ├── @jest/types@26.6.1 deduped │ │ │ └── @types/node@12.12.14 deduped │ │ ├─┬ @jest/test-result@26.6.1 │ │ │ ├── @jest/console@26.6.1 deduped │ │ │ ├── @jest/types@26.6.1 deduped │ │ │ ├── @types/istanbul-lib-coverage@2.0.1 deduped │ │ │ └── collect-v8-coverage@1.0.0 │ │ ├── @jest/types@26.6.1 deduped │ │ ├─┬ @types/babel__traverse@7.0.15 │ │ │ └─┬ @babel/types@7.4.4 │ │ │ ├── esutils@2.0.2 deduped │ │ │ ├── lodash@4.17.20 deduped │ │ │ └── to-fast-properties@2.0.0 deduped │ │ ├── @types/node@12.12.14 │ │ ├── chalk@4.1.0 deduped │ │ ├── co@4.6.0 │ │ ├── dedent@0.7.0 │ │ ├─┬ expect@26.6.1 │ │ │ ├── @jest/types@26.6.1 deduped │ │ │ ├── ansi-styles@4.2.1 deduped │ │ │ ├── jest-get-type@26.3.0 │ │ │ ├── jest-matcher-utils@26.6.1 deduped │ │ │ ├── jest-message-util@26.6.1 deduped │ │ │ └── jest-regex-util@26.0.0 deduped │ │ ├── is-generator-fn@2.1.0 │ │ ├─┬ jest-each@26.6.1 │ │ │ ├── @jest/types@26.6.1 deduped │ │ │ ├── chalk@4.1.0 deduped │ │ │ ├── jest-get-type@26.3.0 deduped │ │ │ ├── jest-util@26.6.1 deduped │ │ │ └── pretty-format@26.6.1 deduped │ │ ├─┬ jest-matcher-utils@26.6.1 │ │ │ ├── chalk@4.1.0 deduped │ │ │ ├─┬ jest-diff@26.6.1 │ │ │ │ ├── chalk@4.1.0 deduped │ │ │ │ ├── diff-sequences@26.5.0 │ │ │ │ ├── jest-get-type@26.3.0 deduped │ │ │ │ └── pretty-format@26.6.1 deduped │ │ │ ├── jest-get-type@26.3.0 deduped │ │ │ └── pretty-format@26.6.1 deduped │ │ ├─┬ jest-message-util@26.6.1 │ │ │ ├── @babel/code-frame@7.0.0 deduped │ │ │ ├── @jest/types@26.6.1 deduped │ │ │ ├── @types/stack-utils@2.0.0 │ │ │ ├── chalk@4.1.0 deduped │ │ │ ├── graceful-fs@4.2.4 deduped │ │ │ ├── micromatch@4.0.2 deduped │ │ │ ├── slash@3.0.0 deduped │ │ │ └── stack-utils@2.0.2 deduped │ │ ├─┬ jest-runner@26.6.1 │ │ │ ├── @jest/console@26.6.1 deduped │ │ │ ├── @jest/environment@26.6.1 deduped │ │ │ ├── @jest/test-result@26.6.1 deduped │ │ │ ├── @jest/types@26.6.1 deduped │ │ │ ├── @types/node@12.12.14 deduped │ │ │ ├── chalk@4.1.0 deduped │ │ │ ├── emittery@0.7.2 │ │ │ ├── exit@0.1.2 deduped │ │ │ ├── graceful-fs@4.2.4 deduped │ │ │ ├── jest-config@26.6.1 deduped │ │ │ ├─┬ jest-docblock@26.0.0 │ │ │ │ └── detect-newline@3.1.0 │ │ │ ├── jest-haste-map@26.6.1 deduped │ │ │ ├─┬ jest-leak-detector@26.6.1 │ │ │ │ ├── jest-get-type@26.3.0 deduped │ │ │ │ └── pretty-format@26.6.1 deduped │ │ │ ├── jest-message-util@26.6.1 deduped │ │ │ ├── jest-resolve@26.6.1 deduped │ │ │ ├── jest-runtime@26.6.1 deduped │ │ │ ├── jest-util@26.6.1 deduped │ │ │ ├── jest-worker@26.6.1 deduped │ │ │ ├─┬ source-map-support@0.5.12 │ │ │ │ ├── buffer-from@1.1.1 deduped │ │ │ │ └── source-map@0.6.1 deduped │ │ │ └── throat@5.0.0 deduped │ │ ├─┬ jest-runtime@26.6.1 │ │ │ ├── @jest/console@26.6.1 deduped │ │ │ ├── @jest/environment@26.6.1 deduped │ │ │ ├── @jest/fake-timers@26.6.1 deduped │ │ │ ├─┬ @jest/globals@26.6.1 │ │ │ │ ├── @jest/environment@26.6.1 deduped │ │ │ │ ├── @jest/types@26.6.1 deduped │ │ │ │ └── expect@26.6.1 deduped │ │ │ ├─┬ @jest/source-map@26.5.0 │ │ │ │ ├── callsites@3.1.0 deduped │ │ │ │ ├── graceful-fs@4.2.4 deduped │ │ │ │ └── source-map@0.6.1 deduped │ │ │ ├── @jest/test-result@26.6.1 deduped │ │ │ ├── @jest/transform@26.6.1 deduped │ │ │ ├── @jest/types@26.6.1 deduped │ │ │ ├── @types/yargs@15.0.4 deduped │ │ │ ├── chalk@4.1.0 deduped │ │ │ ├── cjs-module-lexer@0.4.3 │ │ │ ├── collect-v8-coverage@1.0.0 deduped │ │ │ ├── exit@0.1.2 deduped │ │ │ ├── glob@7.1.4 deduped │ │ │ ├── graceful-fs@4.2.4 deduped │ │ │ ├── jest-config@26.6.1 deduped │ │ │ ├── jest-haste-map@26.6.1 deduped │ │ │ ├── jest-message-util@26.6.1 deduped │ │ │ ├── jest-mock@26.6.1 deduped │ │ │ ├── jest-regex-util@26.0.0 deduped │ │ │ ├── jest-resolve@26.6.1 deduped │ │ │ ├── jest-snapshot@26.6.1 deduped │ │ │ ├── jest-util@26.6.1 deduped │ │ │ ├── jest-validate@26.6.1 deduped │ │ │ ├── slash@3.0.0 deduped │ │ │ ├── strip-bom@4.0.0 │ │ │ └── yargs@15.4.1 deduped │ │ ├─┬ jest-snapshot@26.6.1 │ │ │ ├─┬ @babel/types@7.4.4 │ │ │ │ ├── esutils@2.0.2 deduped │ │ │ │ ├── lodash@4.17.20 deduped │ │ │ │ └── to-fast-properties@2.0.0 deduped │ │ │ ├── @jest/types@26.6.1 deduped │ │ │ ├── @types/babel__traverse@7.0.15 deduped │ │ │ ├── @types/prettier@2.1.5 │ │ │ ├── chalk@4.1.0 deduped │ │ │ ├── expect@26.6.1 deduped │ │ │ ├── graceful-fs@4.2.4 deduped │ │ │ ├── jest-diff@26.6.1 deduped │ │ │ ├── jest-get-type@26.3.0 deduped │ │ │ ├── jest-haste-map@26.6.1 deduped │ │ │ ├── jest-matcher-utils@26.6.1 deduped │ │ │ ├── jest-message-util@26.6.1 deduped │ │ │ ├── jest-resolve@26.6.1 deduped │ │ │ ├── natural-compare@1.4.0 deduped │ │ │ ├── pretty-format@26.6.1 deduped │ │ │ └── semver@7.3.2 │ │ ├─┬ jest-util@26.6.1 │ │ │ ├── @jest/types@26.6.1 deduped │ │ │ ├── @types/node@12.12.14 deduped │ │ │ ├── chalk@4.1.0 deduped │ │ │ ├── graceful-fs@4.2.4 deduped │ │ │ ├── is-ci@2.0.0 deduped │ │ │ └── micromatch@4.0.2 deduped │ │ ├─┬ pretty-format@26.6.1 │ │ │ ├── @jest/types@26.6.1 deduped │ │ │ ├── ansi-regex@5.0.0 │ │ │ ├── ansi-styles@4.2.1 deduped │ │ │ └── react-is@17.0.1 │ │ ├─┬ stack-utils@2.0.2 │ │ │ └── escape-string-regexp@2.0.0 │ │ └── throat@5.0.0 │ ├─┬ jest-resolve@26.6.0 │ │ ├── @jest/types@26.6.1 deduped │ │ ├── chalk@4.1.0 deduped │ │ ├── graceful-fs@4.2.4 deduped │ │ ├─┬ jest-pnp-resolver@1.2.2 │ │ │ └── jest-resolve@26.6.0 extraneous │ │ ├── jest-util@26.6.1 deduped │ │ ├─┬ read-pkg-up@7.0.1 │ │ │ ├── find-up@4.1.0 deduped │ │ │ ├─┬ read-pkg@5.2.0 │ │ │ │ ├── @types/normalize-package-data@2.4.0 │ │ │ │ ├── normalize-package-data@2.5.0 deduped │ │ │ │ ├── parse-json@5.0.0 deduped │ │ │ │ └── type-fest@0.6.0 │ │ │ └── type-fest@0.8.1 deduped │ │ ├── resolve@1.18.1 deduped │ │ └── slash@3.0.0 deduped │ ├─┬ jest-watch-typeahead@0.6.1 │ │ ├─┬ ansi-escapes@4.3.1 │ │ │ └── type-fest@0.11.0 │ │ ├── chalk@4.1.0 deduped │ │ ├── jest-regex-util@26.0.0 │ │ ├─┬ jest-watcher@26.6.1 │ │ │ ├── @jest/test-result@26.6.1 deduped │ │ │ ├── @jest/types@26.6.1 deduped │ │ │ ├── @types/node@12.12.14 deduped │ │ │ ├── ansi-escapes@4.2.1 deduped │ │ │ ├── chalk@4.1.0 deduped │ │ │ ├── jest-util@26.6.1 deduped │ │ │ └── string-length@4.0.1 deduped │ │ ├── slash@3.0.0 deduped │ │ ├─┬ string-length@4.0.1 │ │ │ ├── char-regex@1.0.2 │ │ │ └── strip-ansi@6.0.0 deduped │ │ └── strip-ansi@6.0.0 deduped │ ├─┬ mini-css-extract-plugin@0.11.3 │ │ ├─┬ loader-utils@1.2.3 │ │ │ ├── big.js@5.2.2 deduped │ │ │ ├── emojis-list@2.1.0 │ │ │ └── json5@1.0.1 deduped │ │ ├─┬ normalize-url@1.9.1 │ │ │ ├── object-assign@4.1.1 deduped │ │ │ ├── prepend-http@1.0.4 │ │ │ ├─┬ query-string@4.3.4 │ │ │ │ ├── object-assign@4.1.1 deduped │ │ │ │ └── strict-uri-encode@1.1.0 │ │ │ └─┬ sort-keys@1.1.2 │ │ │ └── is-plain-obj@1.1.0 deduped │ │ ├─┬ schema-utils@1.0.0 │ │ │ ├── ajv@6.10.0 deduped │ │ │ ├── ajv-errors@1.0.1 │ │ │ └── ajv-keywords@3.4.0 │ │ └─┬ webpack-sources@1.3.0 │ │ ├── source-list-map@2.0.1 │ │ └── source-map@0.6.1 deduped │ ├─┬ optimize-css-assets-webpack-plugin@5.0.4 │ │ ├─┬ cssnano@4.1.10 │ │ │ ├─┬ cosmiconfig@5.2.0 │ │ │ │ ├─┬ import-fresh@2.0.0 │ │ │ │ │ ├─┬ caller-path@2.0.0 │ │ │ │ │ │ └─┬ caller-callsite@2.0.0 │ │ │ │ │ │ └── callsites@2.0.0 │ │ │ │ │ └── resolve-from@3.0.0 deduped │ │ │ │ ├── is-directory@0.3.1 │ │ │ │ ├── js-yaml@3.13.1 deduped │ │ │ │ └─┬ parse-json@4.0.0 │ │ │ │ ├── error-ex@1.3.2 deduped │ │ │ │ └── json-parse-better-errors@1.0.2 deduped │ │ │ ├─┬ cssnano-preset-default@4.0.7 │ │ │ │ ├─┬ css-declaration-sorter@4.0.1 │ │ │ │ │ ├─┬ postcss@7.0.32 │ │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ │ └── timsort@0.3.0 │ │ │ │ ├─┬ cssnano-util-raw-cache@4.0.1 │ │ │ │ │ └─┬ postcss@7.0.32 │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ ├─┬ postcss@7.0.32 │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ ├─┬ postcss-calc@7.0.1 │ │ │ │ │ ├── css-unit-converter@1.1.1 deduped │ │ │ │ │ ├─┬ postcss@7.0.32 │ │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ │ ├── postcss-selector-parser@5.0.0 deduped │ │ │ │ │ └── postcss-value-parser@3.3.1 deduped │ │ │ │ ├─┬ postcss-colormin@4.0.3 │ │ │ │ │ ├── browserslist@4.14.5 deduped │ │ │ │ │ ├── color@3.1.2 deduped │ │ │ │ │ ├── has@1.0.3 deduped │ │ │ │ │ ├─┬ postcss@7.0.32 │ │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ │ └── postcss-value-parser@3.3.1 deduped │ │ │ │ ├─┬ postcss-convert-values@4.0.1 │ │ │ │ │ ├─┬ postcss@7.0.32 │ │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ │ └── postcss-value-parser@3.3.1 deduped │ │ │ │ ├─┬ postcss-discard-comments@4.0.2 │ │ │ │ │ └─┬ postcss@7.0.32 │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ ├─┬ postcss-discard-duplicates@4.0.2 │ │ │ │ │ └─┬ postcss@7.0.32 │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ ├─┬ postcss-discard-empty@4.0.1 │ │ │ │ │ └─┬ postcss@7.0.32 │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ ├─┬ postcss-discard-overridden@4.0.1 │ │ │ │ │ └─┬ postcss@7.0.32 │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ ├─┬ postcss-merge-longhand@4.0.11 │ │ │ │ │ ├── css-color-names@0.0.4 │ │ │ │ │ ├─┬ postcss@7.0.32 │ │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ │ ├── postcss-value-parser@3.3.1 deduped │ │ │ │ │ └─┬ stylehacks@4.0.3 │ │ │ │ │ ├── browserslist@4.14.5 deduped │ │ │ │ │ ├─┬ postcss@7.0.32 │ │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ │ └─┬ postcss-selector-parser@3.1.1 │ │ │ │ │ ├── dot-prop@4.2.1 deduped │ │ │ │ │ ├── indexes-of@1.0.1 deduped │ │ │ │ │ └── uniq@1.0.1 deduped │ │ │ │ ├─┬ postcss-merge-rules@4.0.3 │ │ │ │ │ ├── browserslist@4.14.5 deduped │ │ │ │ │ ├─┬ caniuse-api@3.0.0 │ │ │ │ │ │ ├── browserslist@4.14.5 deduped │ │ │ │ │ │ ├── caniuse-lite@1.0.30001137 deduped │ │ │ │ │ │ ├── lodash.memoize@4.1.2 │ │ │ │ │ │ └── lodash.uniq@4.5.0 │ │ │ │ │ ├── cssnano-util-same-parent@4.0.1 │ │ │ │ │ ├─┬ postcss@7.0.32 │ │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ │ ├─┬ postcss-selector-parser@3.1.1 │ │ │ │ │ │ ├─┬ dot-prop@4.2.1 │ │ │ │ │ │ │ └── is-obj@1.0.1 deduped │ │ │ │ │ │ ├── indexes-of@1.0.1 deduped │ │ │ │ │ │ └── uniq@1.0.1 deduped │ │ │ │ │ └── vendors@1.0.2 │ │ │ │ ├─┬ postcss-minify-font-values@4.0.2 │ │ │ │ │ ├─┬ postcss@7.0.32 │ │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ │ └── postcss-value-parser@3.3.1 deduped │ │ │ │ ├─┬ postcss-minify-gradients@4.0.2 │ │ │ │ │ ├── cssnano-util-get-arguments@4.0.0 │ │ │ │ │ ├─┬ is-color-stop@1.1.0 │ │ │ │ │ │ ├── css-color-names@0.0.4 deduped │ │ │ │ │ │ ├── hex-color-regex@1.1.0 │ │ │ │ │ │ ├── hsl-regex@1.0.0 │ │ │ │ │ │ ├── hsla-regex@1.0.0 │ │ │ │ │ │ ├── rgb-regex@1.0.1 │ │ │ │ │ │ └── rgba-regex@1.0.0 │ │ │ │ │ ├─┬ postcss@7.0.32 │ │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ │ └── postcss-value-parser@3.3.1 deduped │ │ │ │ ├─┬ postcss-minify-params@4.0.2 │ │ │ │ │ ├── alphanum-sort@1.0.2 │ │ │ │ │ ├── browserslist@4.14.5 deduped │ │ │ │ │ ├── cssnano-util-get-arguments@4.0.0 deduped │ │ │ │ │ ├─┬ postcss@7.0.32 │ │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ │ ├── postcss-value-parser@3.3.1 deduped │ │ │ │ │ └── uniqs@2.0.0 │ │ │ │ ├─┬ postcss-minify-selectors@4.0.2 │ │ │ │ │ ├── alphanum-sort@1.0.2 deduped │ │ │ │ │ ├── has@1.0.3 deduped │ │ │ │ │ ├─┬ postcss@7.0.32 │ │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ │ └─┬ postcss-selector-parser@3.1.1 │ │ │ │ │ ├── dot-prop@4.2.1 deduped │ │ │ │ │ ├── indexes-of@1.0.1 deduped │ │ │ │ │ └── uniq@1.0.1 deduped │ │ │ │ ├─┬ postcss-normalize-charset@4.0.1 │ │ │ │ │ └─┬ postcss@7.0.32 │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ ├─┬ postcss-normalize-display-values@4.0.2 │ │ │ │ │ ├── cssnano-util-get-match@4.0.0 │ │ │ │ │ ├─┬ postcss@7.0.32 │ │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ │ └── postcss-value-parser@3.3.1 deduped │ │ │ │ ├─┬ postcss-normalize-positions@4.0.2 │ │ │ │ │ ├── cssnano-util-get-arguments@4.0.0 deduped │ │ │ │ │ ├── has@1.0.3 deduped │ │ │ │ │ ├─┬ postcss@7.0.32 │ │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ │ └── postcss-value-parser@3.3.1 deduped │ │ │ │ ├─┬ postcss-normalize-repeat-style@4.0.2 │ │ │ │ │ ├── cssnano-util-get-arguments@4.0.0 deduped │ │ │ │ │ ├── cssnano-util-get-match@4.0.0 deduped │ │ │ │ │ ├─┬ postcss@7.0.32 │ │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ │ └── postcss-value-parser@3.3.1 deduped │ │ │ │ ├─┬ postcss-normalize-string@4.0.2 │ │ │ │ │ ├── has@1.0.3 deduped │ │ │ │ │ ├─┬ postcss@7.0.32 │ │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ │ └── postcss-value-parser@3.3.1 deduped │ │ │ │ ├─┬ postcss-normalize-timing-functions@4.0.2 │ │ │ │ │ ├── cssnano-util-get-match@4.0.0 deduped │ │ │ │ │ ├─┬ postcss@7.0.32 │ │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ │ └── postcss-value-parser@3.3.1 deduped │ │ │ │ ├─┬ postcss-normalize-unicode@4.0.1 │ │ │ │ │ ├── browserslist@4.14.5 deduped │ │ │ │ │ ├─┬ postcss@7.0.32 │ │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ │ └── postcss-value-parser@3.3.1 deduped │ │ │ │ ├─┬ postcss-normalize-url@4.0.1 │ │ │ │ │ ├── is-absolute-url@2.1.0 │ │ │ │ │ ├── normalize-url@3.3.0 │ │ │ │ │ ├─┬ postcss@7.0.32 │ │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ │ └── postcss-value-parser@3.3.1 deduped │ │ │ │ ├─┬ postcss-normalize-whitespace@4.0.2 │ │ │ │ │ ├─┬ postcss@7.0.32 │ │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ │ └── postcss-value-parser@3.3.1 deduped │ │ │ │ ├─┬ postcss-ordered-values@4.1.2 │ │ │ │ │ ├── cssnano-util-get-arguments@4.0.0 deduped │ │ │ │ │ ├─┬ postcss@7.0.32 │ │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ │ └── postcss-value-parser@3.3.1 deduped │ │ │ │ ├─┬ postcss-reduce-initial@4.0.3 │ │ │ │ │ ├── browserslist@4.14.5 deduped │ │ │ │ │ ├── caniuse-api@3.0.0 deduped │ │ │ │ │ ├── has@1.0.3 deduped │ │ │ │ │ └─┬ postcss@7.0.32 │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ ├─┬ postcss-reduce-transforms@4.0.2 │ │ │ │ │ ├── cssnano-util-get-match@4.0.0 deduped │ │ │ │ │ ├── has@1.0.3 deduped │ │ │ │ │ ├─┬ postcss@7.0.32 │ │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ │ └── postcss-value-parser@3.3.1 deduped │ │ │ │ ├─┬ postcss-svgo@4.0.2 │ │ │ │ │ ├─┬ is-svg@3.0.0 │ │ │ │ │ │ └── html-comment-regex@1.1.2 │ │ │ │ │ ├─┬ postcss@7.0.32 │ │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ │ ├── postcss-value-parser@3.3.1 deduped │ │ │ │ │ └─┬ svgo@1.2.2 │ │ │ │ │ ├── chalk@2.4.2 deduped │ │ │ │ │ ├── coa@2.0.2 deduped │ │ │ │ │ ├── css-select@2.0.2 deduped │ │ │ │ │ ├── css-select-base-adapter@0.1.1 deduped │ │ │ │ │ ├─┬ css-tree@1.0.0-alpha.28 │ │ │ │ │ │ ├── mdn-data@1.1.4 deduped │ │ │ │ │ │ └── source-map@0.5.7 │ │ │ │ │ ├── css-url-regex@1.1.0 │ │ │ │ │ ├── csso@3.5.1 deduped │ │ │ │ │ ├── js-yaml@3.13.1 deduped │ │ │ │ │ ├── mkdirp@0.5.1 deduped │ │ │ │ │ ├── object.values@1.1.0 deduped │ │ │ │ │ ├── sax@1.2.4 deduped │ │ │ │ │ ├── stable@0.1.8 deduped │ │ │ │ │ ├── unquote@1.1.1 deduped │ │ │ │ │ └── util.promisify@1.0.0 deduped │ │ │ │ └─┬ postcss-unique-selectors@4.0.1 │ │ │ │ ├── alphanum-sort@1.0.2 deduped │ │ │ │ ├─┬ postcss@7.0.32 │ │ │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ │ └── supports-color@6.1.0 deduped │ │ │ │ └── uniqs@2.0.0 deduped │ │ │ ├── is-resolvable@1.1.0 │ │ │ └─┬ postcss@7.0.32 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └── supports-color@6.1.0 deduped │ │ └─┬ last-call-webpack-plugin@3.0.0 │ │ ├── lodash@4.17.20 deduped │ │ └─┬ webpack-sources@1.3.0 │ │ ├── source-list-map@2.0.1 deduped │ │ └── source-map@0.6.1 deduped │ ├─┬ pnp-webpack-plugin@1.6.4 │ │ └── ts-pnp@1.2.0 deduped │ ├─┬ postcss-flexbugs-fixes@4.2.1 │ │ └─┬ postcss@7.0.35 │ │ ├─┬ chalk@2.4.2 │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ └─┬ supports-color@5.5.0 │ │ │ └── has-flag@3.0.0 deduped │ │ ├── source-map@0.6.1 deduped │ │ └── supports-color@6.1.0 deduped │ ├─┬ postcss-loader@3.0.0 │ │ ├─┬ loader-utils@1.2.3 │ │ │ ├── big.js@5.2.2 deduped │ │ │ ├── emojis-list@2.1.0 │ │ │ └── json5@1.0.1 deduped │ │ ├─┬ postcss@7.0.32 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └── supports-color@6.1.0 deduped │ │ ├─┬ postcss-load-config@2.0.0 │ │ │ ├─┬ cosmiconfig@4.0.0 │ │ │ │ ├── is-directory@0.3.1 deduped │ │ │ │ ├── js-yaml@3.13.1 deduped │ │ │ │ ├─┬ parse-json@4.0.0 │ │ │ │ │ ├── error-ex@1.3.2 deduped │ │ │ │ │ └── json-parse-better-errors@1.0.2 deduped │ │ │ │ └── require-from-string@2.0.2 │ │ │ └─┬ import-cwd@2.1.0 │ │ │ └─┬ import-from@2.1.0 │ │ │ └── resolve-from@3.0.0 deduped │ │ └── schema-utils@1.0.0 deduped │ ├─┬ postcss-normalize@8.0.1 │ │ ├── @csstools/normalize.css@10.1.0 │ │ ├── browserslist@4.14.5 deduped │ │ ├─┬ postcss@7.0.32 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └── supports-color@6.1.0 deduped │ │ ├─┬ postcss-browser-comments@3.0.0 │ │ │ └─┬ postcss@7.0.32 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └── supports-color@6.1.0 deduped │ │ └── sanitize.css@10.0.0 │ ├── postcss-preset-env@6.7.0 deduped │ ├─┬ postcss-safe-parser@5.0.2 │ │ └── postcss@8.1.4 deduped │ ├─┬ react-app-polyfill@2.0.0 │ │ ├── core-js@3.6.5 │ │ ├── object-assign@4.1.1 deduped │ │ ├─┬ promise@8.1.0 │ │ │ └── asap@2.0.6 │ │ ├─┬ raf@3.4.1 │ │ │ └── performance-now@2.1.0 deduped │ │ ├── regenerator-runtime@0.13.7 │ │ └── whatwg-fetch@3.4.1 deduped │ ├─┬ react-dev-utils@11.0.0 │ │ ├─┬ @babel/code-frame@7.10.4 │ │ │ └─┬ @babel/highlight@7.10.4 │ │ │ ├── @babel/helper-validator-identifier@7.10.4 deduped │ │ │ ├── chalk@2.4.2 deduped │ │ │ └── js-tokens@4.0.0 deduped │ │ ├── address@1.1.2 │ │ ├─┬ browserslist@4.14.2 │ │ │ ├── caniuse-lite@1.0.30001151 │ │ │ ├── electron-to-chromium@1.3.583 │ │ │ ├── escalade@3.1.1 │ │ │ └── node-releases@1.1.61 deduped │ │ ├─┬ chalk@2.4.2 │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ ├── escape-string-regexp@1.0.5 │ │ │ └─┬ supports-color@5.5.0 │ │ │ └── has-flag@3.0.0 deduped │ │ ├─┬ cross-spawn@7.0.3 │ │ │ ├── path-key@3.1.0 │ │ │ ├── shebang-command@2.0.0 deduped │ │ │ └─┬ which@2.0.1 │ │ │ └── isexe@2.0.0 deduped │ │ ├─┬ detect-port-alt@1.1.6 │ │ │ ├── address@1.1.0 │ │ │ └─┬ debug@2.6.9 │ │ │ └── ms@2.0.0 │ │ ├── escape-string-regexp@2.0.0 │ │ ├── filesize@6.1.0 │ │ ├─┬ find-up@4.1.0 │ │ │ ├─┬ locate-path@5.0.0 │ │ │ │ └─┬ p-locate@4.1.0 │ │ │ │ └─┬ p-limit@2.2.1 │ │ │ │ └── p-try@2.2.0 deduped │ │ │ └── path-exists@4.0.0 │ │ ├─┬ fork-ts-checker-webpack-plugin@4.1.6 │ │ │ ├─┬ @babel/code-frame@7.5.5 │ │ │ │ └── @babel/highlight@7.0.0 deduped │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├─┬ micromatch@3.1.10 │ │ │ │ ├── arr-diff@4.0.0 deduped │ │ │ │ ├── array-unique@0.3.2 deduped │ │ │ │ ├── braces@2.3.2 deduped │ │ │ │ ├─┬ define-property@2.0.2 │ │ │ │ │ ├── is-descriptor@1.0.2 deduped │ │ │ │ │ └── isobject@3.0.1 deduped │ │ │ │ ├─┬ extend-shallow@3.0.2 │ │ │ │ │ ├── assign-symbols@1.0.0 deduped │ │ │ │ │ └─┬ is-extendable@1.0.1 │ │ │ │ │ └── is-plain-object@2.0.4 deduped │ │ │ │ ├── extglob@2.0.4 deduped │ │ │ │ ├── fragment-cache@0.2.1 deduped │ │ │ │ ├── kind-of@6.0.2 │ │ │ │ ├── nanomatch@1.2.13 deduped │ │ │ │ ├── object.pick@1.3.0 deduped │ │ │ │ ├── regex-not@1.0.2 deduped │ │ │ │ ├── snapdragon@0.8.2 deduped │ │ │ │ └── to-regex@3.0.2 deduped │ │ │ ├── minimatch@3.0.4 deduped │ │ │ ├── semver@5.7.1 deduped │ │ │ ├── tapable@1.1.3 deduped │ │ │ └─┬ worker-rpc@0.1.0 │ │ │ └── microevent.ts@0.1.0 │ │ ├─┬ global-modules@2.0.0 │ │ │ └─┬ global-prefix@3.0.0 │ │ │ ├── ini@1.3.5 deduped │ │ │ ├── kind-of@6.0.2 │ │ │ └─┬ which@1.3.1 │ │ │ └── isexe@2.0.0 deduped │ │ ├─┬ globby@11.0.1 │ │ │ ├── array-union@2.1.0 │ │ │ ├─┬ dir-glob@3.0.1 │ │ │ │ └── path-type@4.0.0 deduped │ │ │ ├─┬ fast-glob@3.2.4 │ │ │ │ ├── @nodelib/fs.stat@2.0.3 │ │ │ │ ├─┬ @nodelib/fs.walk@1.2.4 │ │ │ │ │ ├─┬ @nodelib/fs.scandir@2.1.3 │ │ │ │ │ │ ├── @nodelib/fs.stat@2.0.3 deduped │ │ │ │ │ │ └── run-parallel@1.1.9 │ │ │ │ │ └─┬ fastq@1.8.0 │ │ │ │ │ └── reusify@1.0.4 │ │ │ │ ├─┬ glob-parent@5.1.1 │ │ │ │ │ └── is-glob@4.0.1 deduped │ │ │ │ ├── merge2@1.4.1 deduped │ │ │ │ ├── micromatch@4.0.2 deduped │ │ │ │ └── picomatch@2.2.2 │ │ │ ├── ignore@5.1.8 │ │ │ ├── merge2@1.4.1 │ │ │ └── slash@3.0.0 deduped │ │ ├─┬ gzip-size@5.1.1 │ │ │ ├── duplexer@0.1.1 │ │ │ └── pify@4.0.1 │ │ ├── immer@7.0.9 │ │ ├─┬ inquirer@7.3.3 │ │ │ ├── ansi-escapes@4.2.1 deduped │ │ │ ├── chalk@4.1.0 deduped │ │ │ ├─┬ cli-cursor@3.1.0 │ │ │ │ └─┬ restore-cursor@3.1.0 │ │ │ │ ├── onetime@5.1.0 deduped │ │ │ │ └── signal-exit@3.0.2 deduped │ │ │ ├── cli-width@3.0.0 │ │ │ ├─┬ external-editor@3.0.3 │ │ │ │ ├── chardet@0.7.0 │ │ │ │ ├─┬ iconv-lite@0.4.24 │ │ │ │ │ └── safer-buffer@2.1.2 deduped │ │ │ │ └─┬ tmp@0.0.33 │ │ │ │ └── os-tmpdir@1.0.2 │ │ │ ├─┬ figures@3.0.0 │ │ │ │ └── escape-string-regexp@1.0.5 deduped │ │ │ ├── lodash@4.17.20 deduped │ │ │ ├── mute-stream@0.0.8 │ │ │ ├── run-async@2.4.1 │ │ │ ├─┬ rxjs@6.6.3 │ │ │ │ └── tslib@1.10.0 │ │ │ ├─┬ string-width@4.1.0 │ │ │ │ ├── emoji-regex@8.0.0 deduped │ │ │ │ ├── is-fullwidth-code-point@3.0.0 │ │ │ │ └─┬ strip-ansi@5.2.0 │ │ │ │ └── ansi-regex@4.1.0 │ │ │ ├── strip-ansi@6.0.0 deduped │ │ │ └── through@2.3.8 │ │ ├── is-root@2.1.0 │ │ ├── loader-utils@2.0.0 deduped │ │ ├─┬ open@7.0.2 │ │ │ ├── is-docker@2.0.0 │ │ │ └── is-wsl@2.1.1 │ │ ├─┬ pkg-up@3.1.0 │ │ │ └─┬ find-up@3.0.0 │ │ │ └─┬ locate-path@3.0.0 │ │ │ ├─┬ p-locate@3.0.0 │ │ │ │ └── p-limit@2.2.1 deduped │ │ │ └── path-exists@3.0.0 deduped │ │ ├── react-error-overlay@6.0.8 │ │ ├─┬ recursive-readdir@2.2.2 │ │ │ └── minimatch@3.0.4 deduped │ │ ├── shell-quote@1.7.2 │ │ ├── strip-ansi@6.0.0 deduped │ │ └── text-table@0.2.0 deduped │ ├── react-refresh@0.8.3 │ ├── resolve@1.18.1 deduped │ ├─┬ resolve-url-loader@3.1.2 │ │ ├─┬ adjust-sourcemap-loader@3.0.0 │ │ │ ├── loader-utils@2.0.0 deduped │ │ │ └── regex-parser@2.2.11 │ │ ├── camelcase@5.3.1 │ │ ├─┬ compose-function@3.0.3 │ │ │ └── arity-n@1.0.4 │ │ ├── convert-source-map@1.7.0 deduped │ │ ├─┬ es6-iterator@2.0.3 │ │ │ ├─┬ d@1.0.0 │ │ │ │ └── es5-ext@0.10.50 deduped │ │ │ ├─┬ es5-ext@0.10.50 │ │ │ │ ├── es6-iterator@2.0.3 deduped │ │ │ │ ├─┬ es6-symbol@3.1.1 │ │ │ │ │ ├─┬ d@1.0.0 │ │ │ │ │ │ └── es5-ext@0.10.50 deduped │ │ │ │ │ └── es5-ext@0.10.50 deduped │ │ │ │ └── next-tick@1.0.0 │ │ │ └─┬ es6-symbol@3.1.1 │ │ │ ├── d@1.0.0 deduped │ │ │ └── es5-ext@0.10.50 deduped │ │ ├─┬ loader-utils@1.2.3 │ │ │ ├── big.js@5.2.2 deduped │ │ │ ├── emojis-list@2.1.0 │ │ │ └── json5@1.0.1 deduped │ │ ├─┬ postcss@7.0.21 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └── supports-color@6.1.0 deduped │ │ ├─┬ rework@1.0.1 │ │ │ ├── convert-source-map@0.3.5 │ │ │ └─┬ css@2.2.4 │ │ │ ├── inherits@2.0.4 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ ├─┬ source-map-resolve@0.5.2 │ │ │ │ ├── atob@2.1.2 │ │ │ │ ├── decode-uri-component@0.2.0 deduped │ │ │ │ ├── resolve-url@0.2.1 │ │ │ │ ├── source-map-url@0.4.0 deduped │ │ │ │ └── urix@0.1.0 deduped │ │ │ └── urix@0.1.0 │ │ ├── rework-visit@1.0.0 │ │ └── source-map@0.6.1 deduped │ ├─┬ sass-loader@8.0.2 │ │ ├─┬ clone-deep@4.0.1 │ │ │ ├─┬ is-plain-object@2.0.4 │ │ │ │ └── isobject@3.0.1 │ │ │ ├── kind-of@6.0.2 │ │ │ └─┬ shallow-clone@3.0.1 │ │ │ └── kind-of@6.0.2 │ │ ├─┬ loader-utils@1.2.3 │ │ │ ├── big.js@5.2.2 deduped │ │ │ ├── emojis-list@2.1.0 │ │ │ └── json5@1.0.1 deduped │ │ ├── neo-async@2.6.1 │ │ ├─┬ schema-utils@2.6.4 │ │ │ ├─┬ ajv@6.10.2 │ │ │ │ ├── fast-deep-equal@2.0.1 deduped │ │ │ │ ├── fast-json-stable-stringify@2.0.0 deduped │ │ │ │ ├── json-schema-traverse@0.4.1 deduped │ │ │ │ └── uri-js@4.2.2 deduped │ │ │ └── ajv-keywords@3.4.1 deduped │ │ └── semver@6.3.0 │ ├── semver@7.3.2 │ ├─┬ style-loader@1.3.0 │ │ ├── loader-utils@2.0.0 deduped │ │ └─┬ schema-utils@2.7.1 │ │ ├── @types/json-schema@7.0.6 deduped │ │ ├─┬ ajv@6.12.6 │ │ │ ├── fast-deep-equal@3.1.1 │ │ │ ├── fast-json-stable-stringify@2.0.0 deduped │ │ │ ├── json-schema-traverse@0.4.1 deduped │ │ │ └── uri-js@4.2.2 deduped │ │ └── ajv-keywords@3.5.2 │ ├─┬ terser-webpack-plugin@4.2.3 │ │ ├─┬ cacache@15.0.5 │ │ │ ├─┬ @npmcli/move-file@1.0.1 │ │ │ │ └── mkdirp@1.0.4 │ │ │ ├── chownr@2.0.0 │ │ │ ├─┬ fs-minipass@2.0.0 │ │ │ │ └── minipass@3.1.1 deduped │ │ │ ├── glob@7.1.4 deduped │ │ │ ├── infer-owner@1.0.4 │ │ │ ├─┬ lru-cache@6.0.0 │ │ │ │ └── yallist@4.0.0 deduped │ │ │ ├─┬ minipass@3.1.1 │ │ │ │ └── yallist@4.0.0 deduped │ │ │ ├─┬ minipass-collect@1.0.2 │ │ │ │ └── minipass@3.1.1 deduped │ │ │ ├─┬ minipass-flush@1.0.5 │ │ │ │ └── minipass@3.1.1 deduped │ │ │ ├─┬ minipass-pipeline@1.2.2 │ │ │ │ └── minipass@3.1.1 deduped │ │ │ ├── mkdirp@1.0.4 │ │ │ ├─┬ p-map@4.0.0 │ │ │ │ └─┬ aggregate-error@3.0.1 │ │ │ │ ├── clean-stack@2.2.0 │ │ │ │ └── indent-string@4.0.0 │ │ │ ├── promise-inflight@1.0.1 │ │ │ ├─┬ rimraf@3.0.2 │ │ │ │ └── glob@7.1.4 deduped │ │ │ ├─┬ ssri@8.0.0 │ │ │ │ └── minipass@3.1.1 deduped │ │ │ ├─┬ tar@6.0.5 │ │ │ │ ├── chownr@2.0.0 deduped │ │ │ │ ├── fs-minipass@2.0.0 deduped │ │ │ │ ├── minipass@3.1.1 deduped │ │ │ │ ├─┬ minizlib@2.1.2 │ │ │ │ │ ├── minipass@3.1.1 deduped │ │ │ │ │ └── yallist@4.0.0 deduped │ │ │ │ ├── mkdirp@1.0.4 deduped │ │ │ │ └── yallist@4.0.0 │ │ │ └─┬ unique-filename@1.1.1 │ │ │ └─┬ unique-slug@2.0.1 │ │ │ └── imurmurhash@0.1.4 deduped │ │ ├─┬ find-cache-dir@3.3.1 │ │ │ ├── commondir@1.0.1 deduped │ │ │ ├─┬ make-dir@3.1.0 │ │ │ │ └── semver@6.3.0 │ │ │ └─┬ pkg-dir@4.2.0 │ │ │ └── find-up@4.1.0 deduped │ │ ├─┬ jest-worker@26.6.1 │ │ │ ├── @types/node@12.12.14 deduped │ │ │ ├── merge-stream@2.0.0 deduped │ │ │ └─┬ supports-color@7.2.0 │ │ │ └── has-flag@4.0.0 │ │ ├─┬ p-limit@3.0.2 │ │ │ └── p-try@2.2.0 │ │ ├─┬ schema-utils@3.0.0 │ │ │ ├── @types/json-schema@7.0.6 deduped │ │ │ ├─┬ ajv@6.12.6 │ │ │ │ ├── fast-deep-equal@3.1.1 │ │ │ │ ├── fast-json-stable-stringify@2.0.0 deduped │ │ │ │ ├── json-schema-traverse@0.4.1 deduped │ │ │ │ └── uri-js@4.2.2 deduped │ │ │ └── ajv-keywords@3.5.2 │ │ ├─┬ serialize-javascript@5.0.1 │ │ │ └─┬ randombytes@2.1.0 │ │ │ └── safe-buffer@5.1.2 deduped │ │ ├── source-map@0.6.1 deduped │ │ ├─┬ terser@5.3.8 │ │ │ ├── commander@2.20.3 │ │ │ ├── source-map@0.7.3 │ │ │ └─┬ source-map-support@0.5.19 │ │ │ ├── buffer-from@1.1.1 deduped │ │ │ └── source-map@0.6.1 │ │ └─┬ webpack-sources@1.4.3 │ │ ├── source-list-map@2.0.1 deduped │ │ └── source-map@0.6.1 deduped │ ├── ts-pnp@1.2.0 │ ├─┬ url-loader@4.1.1 │ │ ├── loader-utils@2.0.0 deduped │ │ ├─┬ mime-types@2.1.27 │ │ │ └── mime-db@1.44.0 │ │ └─┬ schema-utils@3.0.0 │ │ ├── @types/json-schema@7.0.6 deduped │ │ ├─┬ ajv@6.12.6 │ │ │ ├── fast-deep-equal@3.1.1 │ │ │ ├── fast-json-stable-stringify@2.0.0 deduped │ │ │ ├── json-schema-traverse@0.4.1 deduped │ │ │ └── uri-js@4.2.2 deduped │ │ └── ajv-keywords@3.5.2 │ ├─┬ webpack@4.44.2 │ │ ├─┬ @webassemblyjs/ast@1.9.0 │ │ │ ├── @webassemblyjs/helper-module-context@1.9.0 deduped │ │ │ ├── @webassemblyjs/helper-wasm-bytecode@1.9.0 │ │ │ └─┬ @webassemblyjs/wast-parser@1.9.0 │ │ │ ├── @webassemblyjs/ast@1.9.0 deduped │ │ │ ├── @webassemblyjs/floating-point-hex-parser@1.9.0 │ │ │ ├── @webassemblyjs/helper-api-error@1.9.0 deduped │ │ │ ├─┬ @webassemblyjs/helper-code-frame@1.9.0 │ │ │ │ └── @webassemblyjs/wast-printer@1.9.0 deduped │ │ │ ├── @webassemblyjs/helper-fsm@1.9.0 │ │ │ └── @xtuc/long@4.2.2 │ │ ├─┬ @webassemblyjs/helper-module-context@1.9.0 │ │ │ └── @webassemblyjs/ast@1.9.0 deduped │ │ ├─┬ @webassemblyjs/wasm-edit@1.9.0 │ │ │ ├── @webassemblyjs/ast@1.9.0 deduped │ │ │ ├── @webassemblyjs/helper-buffer@1.9.0 │ │ │ ├── @webassemblyjs/helper-wasm-bytecode@1.9.0 deduped │ │ │ ├─┬ @webassemblyjs/helper-wasm-section@1.9.0 │ │ │ │ ├── @webassemblyjs/ast@1.9.0 deduped │ │ │ │ ├── @webassemblyjs/helper-buffer@1.9.0 deduped │ │ │ │ ├── @webassemblyjs/helper-wasm-bytecode@1.9.0 deduped │ │ │ │ └── @webassemblyjs/wasm-gen@1.9.0 deduped │ │ │ ├─┬ @webassemblyjs/wasm-gen@1.9.0 │ │ │ │ ├── @webassemblyjs/ast@1.9.0 deduped │ │ │ │ ├── @webassemblyjs/helper-wasm-bytecode@1.9.0 deduped │ │ │ │ ├── @webassemblyjs/ieee754@1.9.0 deduped │ │ │ │ ├── @webassemblyjs/leb128@1.9.0 deduped │ │ │ │ └── @webassemblyjs/utf8@1.9.0 deduped │ │ │ ├─┬ @webassemblyjs/wasm-opt@1.9.0 │ │ │ │ ├── @webassemblyjs/ast@1.9.0 deduped │ │ │ │ ├── @webassemblyjs/helper-buffer@1.9.0 deduped │ │ │ │ ├── @webassemblyjs/wasm-gen@1.9.0 deduped │ │ │ │ └── @webassemblyjs/wasm-parser@1.9.0 deduped │ │ │ ├── @webassemblyjs/wasm-parser@1.9.0 deduped │ │ │ └─┬ @webassemblyjs/wast-printer@1.9.0 │ │ │ ├── @webassemblyjs/ast@1.9.0 deduped │ │ │ ├── @webassemblyjs/wast-parser@1.9.0 deduped │ │ │ └── @xtuc/long@4.2.2 deduped │ │ ├─┬ @webassemblyjs/wasm-parser@1.9.0 │ │ │ ├── @webassemblyjs/ast@1.9.0 deduped │ │ │ ├── @webassemblyjs/helper-api-error@1.9.0 │ │ │ ├── @webassemblyjs/helper-wasm-bytecode@1.9.0 deduped │ │ │ ├─┬ @webassemblyjs/ieee754@1.9.0 │ │ │ │ └── @xtuc/ieee754@1.2.0 │ │ │ ├─┬ @webassemblyjs/leb128@1.9.0 │ │ │ │ └── @xtuc/long@4.2.2 deduped │ │ │ └── @webassemblyjs/utf8@1.9.0 │ │ ├── acorn@6.4.2 │ │ ├─┬ ajv@6.10.2 │ │ │ ├── fast-deep-equal@2.0.1 deduped │ │ │ ├── fast-json-stable-stringify@2.0.0 deduped │ │ │ ├── json-schema-traverse@0.4.1 deduped │ │ │ └── uri-js@4.2.2 deduped │ │ ├─┬ ajv-keywords@3.4.1 │ │ │ └── ajv@6.10.2 extraneous │ │ ├─┬ chrome-trace-event@1.0.2 │ │ │ └── tslib@1.10.0 │ │ ├─┬ enhanced-resolve@4.3.0 │ │ │ ├── graceful-fs@4.1.15 │ │ │ ├─┬ memory-fs@0.5.0 │ │ │ │ ├── errno@0.1.7 deduped │ │ │ │ └── readable-stream@2.3.6 deduped │ │ │ └── tapable@1.1.3 deduped │ │ ├─┬ eslint-scope@4.0.3 │ │ │ ├─┬ esrecurse@4.2.1 │ │ │ │ └── estraverse@4.2.0 deduped │ │ │ └── estraverse@4.2.0 deduped │ │ ├── json-parse-better-errors@1.0.2 │ │ ├── loader-runner@2.4.0 │ │ ├─┬ loader-utils@1.2.3 │ │ │ ├── big.js@5.2.2 deduped │ │ │ ├── emojis-list@2.1.0 │ │ │ └── json5@1.0.1 deduped │ │ ├─┬ memory-fs@0.4.1 │ │ │ ├─┬ errno@0.1.7 │ │ │ │ └── prr@1.0.1 │ │ │ └── readable-stream@2.3.6 deduped │ │ ├─┬ micromatch@3.1.10 │ │ │ ├── arr-diff@4.0.0 │ │ │ ├── array-unique@0.3.2 │ │ │ ├─┬ braces@2.3.2 │ │ │ │ ├── arr-flatten@1.1.0 │ │ │ │ ├── array-unique@0.3.2 deduped │ │ │ │ ├─┬ extend-shallow@2.0.1 │ │ │ │ │ └── is-extendable@0.1.1 │ │ │ │ ├─┬ fill-range@4.0.0 │ │ │ │ │ ├── extend-shallow@2.0.1 deduped │ │ │ │ │ ├─┬ is-number@3.0.0 │ │ │ │ │ │ └── kind-of@3.2.2 deduped │ │ │ │ │ ├── repeat-string@1.6.1 │ │ │ │ │ └─┬ to-regex-range@2.1.1 │ │ │ │ │ ├── is-number@3.0.0 deduped │ │ │ │ │ └── repeat-string@1.6.1 deduped │ │ │ │ ├── isobject@3.0.1 deduped │ │ │ │ ├── repeat-element@1.1.3 │ │ │ │ ├── snapdragon@0.8.2 deduped │ │ │ │ ├─┬ snapdragon-node@2.1.1 │ │ │ │ │ ├─┬ define-property@1.0.0 │ │ │ │ │ │ └── is-descriptor@1.0.2 deduped │ │ │ │ │ ├── isobject@3.0.1 deduped │ │ │ │ │ └─┬ snapdragon-util@3.0.1 │ │ │ │ │ └── kind-of@3.2.2 deduped │ │ │ │ ├─┬ split-string@3.1.0 │ │ │ │ │ └─┬ extend-shallow@3.0.2 │ │ │ │ │ ├── assign-symbols@1.0.0 deduped │ │ │ │ │ └─┬ is-extendable@1.0.1 │ │ │ │ │ └── is-plain-object@2.0.4 deduped │ │ │ │ └── to-regex@3.0.2 deduped │ │ │ ├─┬ define-property@2.0.2 │ │ │ │ ├─┬ is-descriptor@1.0.2 │ │ │ │ │ ├─┬ is-accessor-descriptor@1.0.0 │ │ │ │ │ │ └── kind-of@6.0.2 │ │ │ │ │ ├─┬ is-data-descriptor@1.0.0 │ │ │ │ │ │ └── kind-of@6.0.2 │ │ │ │ │ └── kind-of@6.0.2 │ │ │ │ └── isobject@3.0.1 deduped │ │ │ ├─┬ extend-shallow@3.0.2 │ │ │ │ ├── assign-symbols@1.0.0 │ │ │ │ └─┬ is-extendable@1.0.1 │ │ │ │ └── is-plain-object@2.0.4 deduped │ │ │ ├─┬ extglob@2.0.4 │ │ │ │ ├── array-unique@0.3.2 deduped │ │ │ │ ├─┬ define-property@1.0.0 │ │ │ │ │ └── is-descriptor@1.0.2 deduped │ │ │ │ ├─┬ expand-brackets@2.1.4 │ │ │ │ │ ├─┬ debug@2.6.9 │ │ │ │ │ │ └── ms@2.0.0 │ │ │ │ │ ├── define-property@0.2.5 deduped │ │ │ │ │ ├── extend-shallow@2.0.1 deduped │ │ │ │ │ ├── posix-character-classes@0.1.1 │ │ │ │ │ ├── regex-not@1.0.2 deduped │ │ │ │ │ ├── snapdragon@0.8.2 deduped │ │ │ │ │ └── to-regex@3.0.2 deduped │ │ │ │ ├── extend-shallow@2.0.1 deduped │ │ │ │ ├── fragment-cache@0.2.1 deduped │ │ │ │ ├── regex-not@1.0.2 deduped │ │ │ │ ├── snapdragon@0.8.2 deduped │ │ │ │ └── to-regex@3.0.2 deduped │ │ │ ├─┬ fragment-cache@0.2.1 │ │ │ │ └── map-cache@0.2.2 │ │ │ ├── kind-of@6.0.2 │ │ │ ├─┬ nanomatch@1.2.13 │ │ │ │ ├── arr-diff@4.0.0 deduped │ │ │ │ ├── array-unique@0.3.2 deduped │ │ │ │ ├─┬ define-property@2.0.2 │ │ │ │ │ ├── is-descriptor@1.0.2 deduped │ │ │ │ │ └── isobject@3.0.1 deduped │ │ │ │ ├─┬ extend-shallow@3.0.2 │ │ │ │ │ ├── assign-symbols@1.0.0 deduped │ │ │ │ │ └─┬ is-extendable@1.0.1 │ │ │ │ │ └── is-plain-object@2.0.4 deduped │ │ │ │ ├── fragment-cache@0.2.1 deduped │ │ │ │ ├── is-windows@1.0.2 │ │ │ │ ├── kind-of@6.0.2 │ │ │ │ ├── object.pick@1.3.0 deduped │ │ │ │ ├── regex-not@1.0.2 deduped │ │ │ │ ├── snapdragon@0.8.2 deduped │ │ │ │ └── to-regex@3.0.2 deduped │ │ │ ├─┬ object.pick@1.3.0 │ │ │ │ └── isobject@3.0.1 deduped │ │ │ ├─┬ regex-not@1.0.2 │ │ │ │ ├─┬ extend-shallow@3.0.2 │ │ │ │ │ ├── assign-symbols@1.0.0 deduped │ │ │ │ │ └─┬ is-extendable@1.0.1 │ │ │ │ │ └── is-plain-object@2.0.4 deduped │ │ │ │ └─┬ safe-regex@1.1.0 │ │ │ │ └── ret@0.1.15 │ │ │ ├─┬ snapdragon@0.8.2 │ │ │ │ ├─┬ base@0.11.2 │ │ │ │ │ ├─┬ cache-base@1.0.1 │ │ │ │ │ │ ├─┬ collection-visit@1.0.0 │ │ │ │ │ │ │ ├─┬ map-visit@1.0.0 │ │ │ │ │ │ │ │ └── object-visit@1.0.1 deduped │ │ │ │ │ │ │ └─┬ object-visit@1.0.1 │ │ │ │ │ │ │ └── isobject@3.0.1 deduped │ │ │ │ │ │ ├── component-emitter@1.3.0 deduped │ │ │ │ │ │ ├── get-value@2.0.6 │ │ │ │ │ │ ├─┬ has-value@1.0.0 │ │ │ │ │ │ │ ├── get-value@2.0.6 deduped │ │ │ │ │ │ │ ├─┬ has-values@1.0.0 │ │ │ │ │ │ │ │ ├── is-number@3.0.0 deduped │ │ │ │ │ │ │ │ └─┬ kind-of@4.0.0 │ │ │ │ │ │ │ │ └── is-buffer@1.1.6 deduped │ │ │ │ │ │ │ └── isobject@3.0.1 deduped │ │ │ │ │ │ ├── isobject@3.0.1 deduped │ │ │ │ │ │ ├─┬ set-value@2.0.0 │ │ │ │ │ │ │ ├── extend-shallow@2.0.1 deduped │ │ │ │ │ │ │ ├── is-extendable@0.1.1 deduped │ │ │ │ │ │ │ ├── is-plain-object@2.0.4 deduped │ │ │ │ │ │ │ └── split-string@3.1.0 deduped │ │ │ │ │ │ ├─┬ to-object-path@0.3.0 │ │ │ │ │ │ │ └── kind-of@3.2.2 deduped │ │ │ │ │ │ ├─┬ union-value@1.0.0 │ │ │ │ │ │ │ ├── arr-union@3.1.0 deduped │ │ │ │ │ │ │ ├── get-value@2.0.6 deduped │ │ │ │ │ │ │ ├── is-extendable@0.1.1 deduped │ │ │ │ │ │ │ └─┬ set-value@0.4.3 │ │ │ │ │ │ │ ├── extend-shallow@2.0.1 deduped │ │ │ │ │ │ │ ├── is-extendable@0.1.1 deduped │ │ │ │ │ │ │ ├── is-plain-object@2.0.4 deduped │ │ │ │ │ │ │ └── to-object-path@0.3.0 deduped │ │ │ │ │ │ └─┬ unset-value@1.0.0 │ │ │ │ │ │ ├─┬ has-value@0.3.1 │ │ │ │ │ │ │ ├── get-value@2.0.6 deduped │ │ │ │ │ │ │ ├── has-values@0.1.4 │ │ │ │ │ │ │ └─┬ isobject@2.1.0 │ │ │ │ │ │ │ └── isarray@1.0.0 deduped │ │ │ │ │ │ └── isobject@3.0.1 deduped │ │ │ │ │ ├─┬ class-utils@0.3.6 │ │ │ │ │ │ ├── arr-union@3.1.0 deduped │ │ │ │ │ │ ├── define-property@0.2.5 deduped │ │ │ │ │ │ ├── isobject@3.0.1 deduped │ │ │ │ │ │ └─┬ static-extend@0.1.2 │ │ │ │ │ │ ├── define-property@0.2.5 deduped │ │ │ │ │ │ └─┬ object-copy@0.1.0 │ │ │ │ │ │ ├── copy-descriptor@0.1.1 │ │ │ │ │ │ ├── define-property@0.2.5 deduped │ │ │ │ │ │ └── kind-of@3.2.2 deduped │ │ │ │ │ ├── component-emitter@1.3.0 │ │ │ │ │ ├─┬ define-property@1.0.0 │ │ │ │ │ │ └── is-descriptor@1.0.2 deduped │ │ │ │ │ ├── isobject@3.0.1 deduped │ │ │ │ │ ├─┬ mixin-deep@1.3.2 │ │ │ │ │ │ ├── for-in@1.0.2 deduped │ │ │ │ │ │ └─┬ is-extendable@1.0.1 │ │ │ │ │ │ └── is-plain-object@2.0.4 deduped │ │ │ │ │ └── pascalcase@0.1.1 │ │ │ │ ├─┬ debug@2.6.9 │ │ │ │ │ └── ms@2.0.0 │ │ │ │ ├─┬ define-property@0.2.5 │ │ │ │ │ └─┬ is-descriptor@0.1.6 │ │ │ │ │ ├─┬ is-accessor-descriptor@0.1.6 │ │ │ │ │ │ └─┬ kind-of@3.2.2 │ │ │ │ │ │ └── is-buffer@1.1.6 deduped │ │ │ │ │ ├─┬ is-data-descriptor@0.1.4 │ │ │ │ │ │ └─┬ kind-of@3.2.2 │ │ │ │ │ │ └── is-buffer@1.1.6 deduped │ │ │ │ │ └── kind-of@5.1.0 │ │ │ │ ├── extend-shallow@2.0.1 deduped │ │ │ │ ├── map-cache@0.2.2 deduped │ │ │ │ ├── source-map@0.5.7 │ │ │ │ ├── source-map-resolve@0.5.2 deduped │ │ │ │ └── use@3.1.1 │ │ │ └─┬ to-regex@3.0.2 │ │ │ ├─┬ define-property@2.0.2 │ │ │ │ ├── is-descriptor@1.0.2 deduped │ │ │ │ └── isobject@3.0.1 deduped │ │ │ ├─┬ extend-shallow@3.0.2 │ │ │ │ ├── assign-symbols@1.0.0 deduped │ │ │ │ └─┬ is-extendable@1.0.1 │ │ │ │ └── is-plain-object@2.0.4 deduped │ │ │ ├── regex-not@1.0.2 deduped │ │ │ └── safe-regex@1.1.0 deduped │ │ ├─┬ mkdirp@0.5.5 │ │ │ └── minimist@1.2.5 deduped │ │ ├── neo-async@2.6.1 deduped │ │ ├─┬ node-libs-browser@2.2.1 │ │ │ ├─┬ assert@1.5.0 │ │ │ │ ├── object-assign@4.1.1 deduped │ │ │ │ └─┬ util@0.10.3 │ │ │ │ └── inherits@2.0.1 │ │ │ ├─┬ browserify-zlib@0.2.0 │ │ │ │ └── pako@1.0.10 │ │ │ ├─┬ buffer@4.9.1 │ │ │ │ ├── base64-js@1.3.0 │ │ │ │ ├── ieee754@1.1.13 deduped │ │ │ │ └── isarray@1.0.0 deduped │ │ │ ├─┬ console-browserify@1.1.0 │ │ │ │ └── date-now@0.1.4 │ │ │ ├── constants-browserify@1.0.0 │ │ │ ├─┬ crypto-browserify@3.12.0 │ │ │ │ ├─┬ browserify-cipher@1.0.1 │ │ │ │ │ ├─┬ browserify-aes@1.2.0 │ │ │ │ │ │ ├── buffer-xor@1.0.3 │ │ │ │ │ │ ├── cipher-base@1.0.4 deduped │ │ │ │ │ │ ├── create-hash@1.2.0 deduped │ │ │ │ │ │ ├── evp_bytestokey@1.0.3 deduped │ │ │ │ │ │ ├── inherits@2.0.4 deduped │ │ │ │ │ │ └── safe-buffer@5.1.2 deduped │ │ │ │ │ ├─┬ browserify-des@1.0.2 │ │ │ │ │ │ ├── cipher-base@1.0.4 deduped │ │ │ │ │ │ ├─┬ des.js@1.0.0 │ │ │ │ │ │ │ ├── inherits@2.0.4 deduped │ │ │ │ │ │ │ └── minimalistic-assert@1.0.1 deduped │ │ │ │ │ │ ├── inherits@2.0.4 deduped │ │ │ │ │ │ └── safe-buffer@5.1.2 deduped │ │ │ │ │ └─┬ evp_bytestokey@1.0.3 │ │ │ │ │ ├── md5.js@1.3.5 deduped │ │ │ │ │ └── safe-buffer@5.1.2 deduped │ │ │ │ ├─┬ browserify-sign@4.0.4 │ │ │ │ │ ├── bn.js@4.11.9 │ │ │ │ │ ├─┬ browserify-rsa@4.0.1 │ │ │ │ │ │ ├── bn.js@4.11.9 deduped │ │ │ │ │ │ └── randombytes@2.1.0 deduped │ │ │ │ │ ├── create-hash@1.2.0 deduped │ │ │ │ │ ├── create-hmac@1.1.7 deduped │ │ │ │ │ ├─┬ elliptic@6.5.3 │ │ │ │ │ │ ├── bn.js@4.11.9 deduped │ │ │ │ │ │ ├── brorand@1.1.0 │ │ │ │ │ │ ├─┬ hash.js@1.1.7 │ │ │ │ │ │ │ ├── inherits@2.0.4 deduped │ │ │ │ │ │ │ └── minimalistic-assert@1.0.1 deduped │ │ │ │ │ │ ├─┬ hmac-drbg@1.0.1 │ │ │ │ │ │ │ ├── hash.js@1.1.7 deduped │ │ │ │ │ │ │ ├── minimalistic-assert@1.0.1 deduped │ │ │ │ │ │ │ └── minimalistic-crypto-utils@1.0.1 deduped │ │ │ │ │ │ ├── inherits@2.0.4 deduped │ │ │ │ │ │ ├── minimalistic-assert@1.0.1 deduped │ │ │ │ │ │ └── minimalistic-crypto-utils@1.0.1 │ │ │ │ │ ├── inherits@2.0.4 deduped │ │ │ │ │ └─┬ parse-asn1@5.1.4 │ │ │ │ │ ├─┬ asn1.js@4.10.1 │ │ │ │ │ │ ├── bn.js@4.11.9 deduped │ │ │ │ │ │ ├── inherits@2.0.4 deduped │ │ │ │ │ │ └── minimalistic-assert@1.0.1 deduped │ │ │ │ │ ├── browserify-aes@1.2.0 deduped │ │ │ │ │ ├── create-hash@1.2.0 deduped │ │ │ │ │ ├── evp_bytestokey@1.0.3 deduped │ │ │ │ │ ├── pbkdf2@3.0.17 deduped │ │ │ │ │ └── safe-buffer@5.1.2 deduped │ │ │ │ ├─┬ create-ecdh@4.0.3 │ │ │ │ │ ├── bn.js@4.11.9 deduped │ │ │ │ │ └── elliptic@6.5.3 deduped │ │ │ │ ├─┬ create-hash@1.2.0 │ │ │ │ │ ├─┬ cipher-base@1.0.4 │ │ │ │ │ │ ├── inherits@2.0.4 deduped │ │ │ │ │ │ └── safe-buffer@5.1.2 deduped │ │ │ │ │ ├── inherits@2.0.4 deduped │ │ │ │ │ ├─┬ md5.js@1.3.5 │ │ │ │ │ │ ├─┬ hash-base@3.0.4 │ │ │ │ │ │ │ ├── inherits@2.0.4 deduped │ │ │ │ │ │ │ └── safe-buffer@5.1.2 deduped │ │ │ │ │ │ ├── inherits@2.0.4 deduped │ │ │ │ │ │ └── safe-buffer@5.1.2 deduped │ │ │ │ │ ├─┬ ripemd160@2.0.2 │ │ │ │ │ │ ├── hash-base@3.0.4 deduped │ │ │ │ │ │ └── inherits@2.0.4 deduped │ │ │ │ │ └─┬ sha.js@2.4.11 │ │ │ │ │ ├── inherits@2.0.4 deduped │ │ │ │ │ └── safe-buffer@5.1.2 deduped │ │ │ │ ├─┬ create-hmac@1.1.7 │ │ │ │ │ ├── cipher-base@1.0.4 deduped │ │ │ │ │ ├── create-hash@1.2.0 deduped │ │ │ │ │ ├── inherits@2.0.4 deduped │ │ │ │ │ ├── ripemd160@2.0.2 deduped │ │ │ │ │ ├── safe-buffer@5.1.2 deduped │ │ │ │ │ └── sha.js@2.4.11 deduped │ │ │ │ ├─┬ diffie-hellman@5.0.3 │ │ │ │ │ ├── bn.js@4.11.9 deduped │ │ │ │ │ ├─┬ miller-rabin@4.0.1 │ │ │ │ │ │ ├── bn.js@4.11.9 deduped │ │ │ │ │ │ └── brorand@1.1.0 deduped │ │ │ │ │ └── randombytes@2.1.0 deduped │ │ │ │ ├── inherits@2.0.4 deduped │ │ │ │ ├─┬ pbkdf2@3.0.17 │ │ │ │ │ ├── create-hash@1.2.0 deduped │ │ │ │ │ ├── create-hmac@1.1.7 deduped │ │ │ │ │ ├── ripemd160@2.0.2 deduped │ │ │ │ │ ├── safe-buffer@5.1.2 deduped │ │ │ │ │ └── sha.js@2.4.11 deduped │ │ │ │ ├─┬ public-encrypt@4.0.3 │ │ │ │ │ ├── bn.js@4.11.9 deduped │ │ │ │ │ ├── browserify-rsa@4.0.1 deduped │ │ │ │ │ ├── create-hash@1.2.0 deduped │ │ │ │ │ ├── parse-asn1@5.1.4 deduped │ │ │ │ │ ├── randombytes@2.1.0 deduped │ │ │ │ │ └── safe-buffer@5.1.2 deduped │ │ │ │ ├── randombytes@2.1.0 deduped │ │ │ │ └─┬ randomfill@1.0.4 │ │ │ │ ├── randombytes@2.1.0 deduped │ │ │ │ └── safe-buffer@5.1.2 deduped │ │ │ ├── domain-browser@1.2.0 │ │ │ ├── events@3.0.0 │ │ │ ├── https-browserify@1.0.0 │ │ │ ├── os-browserify@0.3.0 │ │ │ ├── path-browserify@0.0.1 │ │ │ ├── process@0.11.10 │ │ │ ├── punycode@1.4.1 │ │ │ ├── querystring-es3@0.2.1 │ │ │ ├── readable-stream@2.3.6 deduped │ │ │ ├─┬ stream-browserify@2.0.2 │ │ │ │ ├── inherits@2.0.4 deduped │ │ │ │ └── readable-stream@2.3.6 deduped │ │ │ ├─┬ stream-http@2.8.3 │ │ │ │ ├── builtin-status-codes@3.0.0 │ │ │ │ ├── inherits@2.0.4 deduped │ │ │ │ ├── readable-stream@2.3.6 deduped │ │ │ │ ├── to-arraybuffer@1.0.1 │ │ │ │ └── xtend@4.0.1 deduped │ │ │ ├─┬ string_decoder@1.2.0 │ │ │ │ └── safe-buffer@5.1.2 deduped │ │ │ ├─┬ timers-browserify@2.0.10 │ │ │ │ └── setimmediate@1.0.5 │ │ │ ├── tty-browserify@0.0.0 │ │ │ ├── url@0.11.0 deduped │ │ │ ├─┬ util@0.11.1 │ │ │ │ └── inherits@2.0.3 │ │ │ └── vm-browserify@1.1.0 │ │ ├── schema-utils@1.0.0 deduped │ │ ├── tapable@1.1.3 deduped │ │ ├─┬ terser-webpack-plugin@1.4.3 │ │ │ ├─┬ cacache@12.0.2 │ │ │ │ ├── bluebird@3.7.2 deduped │ │ │ │ ├── chownr@1.1.1 │ │ │ │ ├── figgy-pudding@3.5.1 │ │ │ │ ├── glob@7.1.4 deduped │ │ │ │ ├── graceful-fs@4.1.15 │ │ │ │ ├── infer-owner@1.0.4 deduped │ │ │ │ ├─┬ lru-cache@5.1.1 │ │ │ │ │ └── yallist@3.0.3 │ │ │ │ ├─┬ mississippi@3.0.0 │ │ │ │ │ ├── concat-stream@1.6.2 deduped │ │ │ │ │ ├─┬ duplexify@3.7.1 │ │ │ │ │ │ ├── end-of-stream@1.4.1 deduped │ │ │ │ │ │ ├── inherits@2.0.4 deduped │ │ │ │ │ │ ├── readable-stream@2.3.6 deduped │ │ │ │ │ │ └── stream-shift@1.0.0 │ │ │ │ │ ├── end-of-stream@1.4.1 deduped │ │ │ │ │ ├─┬ flush-write-stream@1.1.1 │ │ │ │ │ │ ├── inherits@2.0.4 deduped │ │ │ │ │ │ └── readable-stream@2.3.6 deduped │ │ │ │ │ ├─┬ from2@2.3.0 │ │ │ │ │ │ ├── inherits@2.0.4 deduped │ │ │ │ │ │ └── readable-stream@2.3.6 deduped │ │ │ │ │ ├─┬ parallel-transform@1.1.0 │ │ │ │ │ │ ├── cyclist@0.2.2 │ │ │ │ │ │ ├── inherits@2.0.4 deduped │ │ │ │ │ │ └── readable-stream@2.3.6 deduped │ │ │ │ │ ├── pump@3.0.0 deduped │ │ │ │ │ ├─┬ pumpify@1.5.1 │ │ │ │ │ │ ├── duplexify@3.7.1 deduped │ │ │ │ │ │ ├── inherits@2.0.4 deduped │ │ │ │ │ │ └─┬ pump@2.0.1 │ │ │ │ │ │ ├── end-of-stream@1.4.1 deduped │ │ │ │ │ │ └── once@1.4.0 deduped │ │ │ │ │ ├─┬ stream-each@1.2.3 │ │ │ │ │ │ ├── end-of-stream@1.4.1 deduped │ │ │ │ │ │ └── stream-shift@1.0.0 deduped │ │ │ │ │ └─┬ through2@2.0.5 │ │ │ │ │ ├── readable-stream@2.3.6 deduped │ │ │ │ │ └── xtend@4.0.1 deduped │ │ │ │ ├─┬ mkdirp@0.5.1 │ │ │ │ │ └── minimist@0.0.8 │ │ │ │ ├─┬ move-concurrently@1.0.1 │ │ │ │ │ ├── aproba@1.2.0 │ │ │ │ │ ├─┬ copy-concurrently@1.0.5 │ │ │ │ │ │ ├── aproba@1.2.0 deduped │ │ │ │ │ │ ├── fs-write-stream-atomic@1.0.10 deduped │ │ │ │ │ │ ├── iferr@0.1.5 │ │ │ │ │ │ ├── mkdirp@0.5.1 deduped │ │ │ │ │ │ ├── rimraf@2.6.3 deduped │ │ │ │ │ │ └── run-queue@1.0.3 deduped │ │ │ │ │ ├─┬ fs-write-stream-atomic@1.0.10 │ │ │ │ │ │ ├── graceful-fs@4.1.15 │ │ │ │ │ │ ├── iferr@0.1.5 deduped │ │ │ │ │ │ ├── imurmurhash@0.1.4 deduped │ │ │ │ │ │ └── readable-stream@2.3.6 deduped │ │ │ │ │ ├── mkdirp@0.5.1 deduped │ │ │ │ │ ├── rimraf@2.6.3 deduped │ │ │ │ │ └─┬ run-queue@1.0.3 │ │ │ │ │ └── aproba@1.2.0 deduped │ │ │ │ ├── promise-inflight@1.0.1 deduped │ │ │ │ ├── rimraf@2.6.3 deduped │ │ │ │ ├─┬ ssri@6.0.1 │ │ │ │ │ └── figgy-pudding@3.5.1 deduped │ │ │ │ ├── unique-filename@1.1.1 deduped │ │ │ │ └── y18n@4.0.0 deduped │ │ │ ├── find-cache-dir@2.1.0 deduped │ │ │ ├── is-wsl@1.1.0 │ │ │ ├── schema-utils@1.0.0 deduped │ │ │ ├── serialize-javascript@2.1.2 │ │ │ ├── source-map@0.6.1 deduped │ │ │ ├─┬ terser@4.1.4 │ │ │ │ ├── commander@2.20.3 deduped │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ └── source-map-support@0.5.13 deduped │ │ │ ├── webpack-sources@1.4.3 deduped │ │ │ └─┬ worker-farm@1.7.0 │ │ │ └── errno@0.1.7 deduped │ │ ├─┬ watchpack@1.7.4 │ │ │ ├─┬ chokidar@3.4.3 │ │ │ │ ├─┬ anymatch@3.1.1 │ │ │ │ │ ├── normalize-path@3.0.0 deduped │ │ │ │ │ └── picomatch@2.2.1 │ │ │ │ ├─┬ braces@3.0.2 │ │ │ │ │ └─┬ fill-range@7.0.1 │ │ │ │ │ └─┬ to-regex-range@5.0.1 │ │ │ │ │ └── is-number@7.0.0 │ │ │ │ ├── fsevents@2.1.2 deduped │ │ │ │ ├─┬ glob-parent@5.1.0 │ │ │ │ │ └── is-glob@4.0.1 deduped │ │ │ │ ├─┬ is-binary-path@2.1.0 │ │ │ │ │ └── binary-extensions@2.0.0 │ │ │ │ ├── is-glob@4.0.1 deduped │ │ │ │ ├── normalize-path@3.0.0 deduped │ │ │ │ └─┬ readdirp@3.5.0 │ │ │ │ └── picomatch@2.2.2 │ │ │ ├── graceful-fs@4.1.15 │ │ │ ├── neo-async@2.6.1 deduped │ │ │ └─┬ watchpack-chokidar2@2.0.0 │ │ │ └── chokidar@2.1.8 deduped │ │ └── webpack-sources@1.4.3 deduped │ ├─┬ webpack-dev-server@3.11.0 │ │ ├── ansi-html@0.0.7 deduped │ │ ├─┬ bonjour@3.5.0 │ │ │ ├── array-flatten@2.1.2 │ │ │ ├── deep-equal@1.0.1 │ │ │ ├── dns-equal@1.0.0 │ │ │ ├─┬ dns-txt@2.0.2 │ │ │ │ └── buffer-indexof@1.1.1 │ │ │ ├─┬ multicast-dns@6.2.3 │ │ │ │ ├─┬ dns-packet@1.3.1 │ │ │ │ │ ├── ip@1.1.5 deduped │ │ │ │ │ └── safe-buffer@5.1.2 deduped │ │ │ │ └── thunky@1.0.3 │ │ │ └── multicast-dns-service-types@1.1.0 │ │ ├─┬ chokidar@2.1.8 │ │ │ ├─┬ anymatch@2.0.0 │ │ │ │ ├─┬ micromatch@3.1.10 │ │ │ │ │ ├── arr-diff@4.0.0 deduped │ │ │ │ │ ├── array-unique@0.3.2 deduped │ │ │ │ │ ├── braces@2.3.2 deduped │ │ │ │ │ ├─┬ define-property@2.0.2 │ │ │ │ │ │ ├── is-descriptor@1.0.2 deduped │ │ │ │ │ │ └── isobject@3.0.1 deduped │ │ │ │ │ ├─┬ extend-shallow@3.0.2 │ │ │ │ │ │ ├── assign-symbols@1.0.0 deduped │ │ │ │ │ │ └─┬ is-extendable@1.0.1 │ │ │ │ │ │ └── is-plain-object@2.0.4 deduped │ │ │ │ │ ├── extglob@2.0.4 deduped │ │ │ │ │ ├── fragment-cache@0.2.1 deduped │ │ │ │ │ ├── kind-of@6.0.2 │ │ │ │ │ ├── nanomatch@1.2.13 deduped │ │ │ │ │ ├── object.pick@1.3.0 deduped │ │ │ │ │ ├── regex-not@1.0.2 deduped │ │ │ │ │ ├── snapdragon@0.8.2 deduped │ │ │ │ │ └── to-regex@3.0.2 deduped │ │ │ │ └─┬ normalize-path@2.1.1 │ │ │ │ └── remove-trailing-separator@1.1.0 │ │ │ ├── async-each@1.0.3 │ │ │ ├── braces@2.3.2 deduped │ │ │ ├─┬ fsevents@1.2.9 │ │ │ │ ├── nan@2.13.2 │ │ │ │ └─┬ node-pre-gyp@0.12.0 │ │ │ │ ├── detect-libc@1.0.3 │ │ │ │ ├─┬ mkdirp@0.5.1 │ │ │ │ │ └── minimist@0.0.8 │ │ │ │ ├─┬ needle@2.3.0 │ │ │ │ │ ├─┬ debug@4.1.1 │ │ │ │ │ │ └── ms@2.1.1 │ │ │ │ │ ├─┬ iconv-lite@0.4.24 │ │ │ │ │ │ └── safer-buffer@2.1.2 │ │ │ │ │ └── sax@1.2.4 │ │ │ │ ├─┬ nopt@4.0.1 │ │ │ │ │ ├── abbrev@1.1.1 │ │ │ │ │ └─┬ osenv@0.1.5 │ │ │ │ │ ├── os-homedir@1.0.2 │ │ │ │ │ └── os-tmpdir@1.0.2 │ │ │ │ ├─┬ npm-packlist@1.4.1 │ │ │ │ │ ├─┬ ignore-walk@3.0.1 │ │ │ │ │ │ └─┬ minimatch@3.0.4 │ │ │ │ │ │ └─┬ brace-expansion@1.1.11 │ │ │ │ │ │ ├── balanced-match@1.0.0 │ │ │ │ │ │ └── concat-map@0.0.1 │ │ │ │ │ └── npm-bundled@1.0.6 │ │ │ │ ├─┬ npmlog@4.1.2 │ │ │ │ │ ├─┬ are-we-there-yet@1.1.5 │ │ │ │ │ │ ├── delegates@1.0.0 │ │ │ │ │ │ └─┬ readable-stream@2.3.6 │ │ │ │ │ │ ├── core-util-is@1.0.2 │ │ │ │ │ │ ├── inherits@2.0.3 deduped │ │ │ │ │ │ ├── isarray@1.0.0 │ │ │ │ │ │ ├── process-nextick-args@2.0.0 │ │ │ │ │ │ ├── safe-buffer@5.1.2 deduped │ │ │ │ │ │ ├─┬ string_decoder@1.1.1 │ │ │ │ │ │ │ └── safe-buffer@5.1.2 deduped │ │ │ │ │ │ └── util-deprecate@1.0.2 │ │ │ │ │ ├── console-control-strings@1.1.0 │ │ │ │ │ ├─┬ gauge@2.7.4 │ │ │ │ │ │ ├── aproba@1.2.0 │ │ │ │ │ │ ├── console-control-strings@1.1.0 deduped │ │ │ │ │ │ ├── has-unicode@2.0.1 │ │ │ │ │ │ ├── object-assign@4.1.1 │ │ │ │ │ │ ├── signal-exit@3.0.2 │ │ │ │ │ │ ├─┬ string-width@1.0.2 │ │ │ │ │ │ │ ├── code-point-at@1.1.0 │ │ │ │ │ │ │ ├─┬ is-fullwidth-code-point@1.0.0 │ │ │ │ │ │ │ │ └── number-is-nan@1.0.1 │ │ │ │ │ │ │ └── strip-ansi@3.0.1 deduped │ │ │ │ │ │ ├─┬ strip-ansi@3.0.1 │ │ │ │ │ │ │ └── ansi-regex@2.1.1 │ │ │ │ │ │ └─┬ wide-align@1.1.3 │ │ │ │ │ │ └── string-width@1.0.2 deduped │ │ │ │ │ └── set-blocking@2.0.0 │ │ │ │ ├─┬ rc@1.2.8 │ │ │ │ │ ├── deep-extend@0.6.0 │ │ │ │ │ ├── ini@1.3.5 │ │ │ │ │ ├── minimist@1.2.0 │ │ │ │ │ └── strip-json-comments@2.0.1 │ │ │ │ ├─┬ rimraf@2.6.3 │ │ │ │ │ └─┬ glob@7.1.3 │ │ │ │ │ ├── fs.realpath@1.0.0 │ │ │ │ │ ├─┬ inflight@1.0.6 │ │ │ │ │ │ ├── once@1.4.0 deduped │ │ │ │ │ │ └── wrappy@1.0.2 │ │ │ │ │ ├── inherits@2.0.3 │ │ │ │ │ ├── minimatch@3.0.4 deduped │ │ │ │ │ ├─┬ once@1.4.0 │ │ │ │ │ │ └── wrappy@1.0.2 deduped │ │ │ │ │ └── path-is-absolute@1.0.1 │ │ │ │ ├── semver@5.7.0 │ │ │ │ └─┬ tar@4.4.8 │ │ │ │ ├── chownr@1.1.1 │ │ │ │ ├─┬ fs-minipass@1.2.5 │ │ │ │ │ └── minipass@2.3.5 deduped │ │ │ │ ├─┬ minipass@2.3.5 │ │ │ │ │ ├── safe-buffer@5.1.2 deduped │ │ │ │ │ └── yallist@3.0.3 deduped │ │ │ │ ├─┬ minizlib@1.2.1 │ │ │ │ │ └── minipass@2.3.5 deduped │ │ │ │ ├── mkdirp@0.5.1 deduped │ │ │ │ ├── safe-buffer@5.1.2 │ │ │ │ └── yallist@3.0.3 │ │ │ ├─┬ glob-parent@3.1.0 │ │ │ │ ├─┬ is-glob@3.1.0 │ │ │ │ │ └── is-extglob@2.1.1 deduped │ │ │ │ └── path-dirname@1.0.2 │ │ │ ├── inherits@2.0.4 deduped │ │ │ ├─┬ is-binary-path@1.0.1 │ │ │ │ └── binary-extensions@1.13.1 │ │ │ ├── is-glob@4.0.1 deduped │ │ │ ├── normalize-path@3.0.0 │ │ │ ├── path-is-absolute@1.0.1 │ │ │ ├─┬ readdirp@2.2.1 │ │ │ │ ├── graceful-fs@4.1.15 │ │ │ │ ├─┬ micromatch@3.1.10 │ │ │ │ │ ├── arr-diff@4.0.0 deduped │ │ │ │ │ ├── array-unique@0.3.2 deduped │ │ │ │ │ ├── braces@2.3.2 deduped │ │ │ │ │ ├─┬ define-property@2.0.2 │ │ │ │ │ │ ├── is-descriptor@1.0.2 deduped │ │ │ │ │ │ └── isobject@3.0.1 deduped │ │ │ │ │ ├─┬ extend-shallow@3.0.2 │ │ │ │ │ │ ├── assign-symbols@1.0.0 deduped │ │ │ │ │ │ └─┬ is-extendable@1.0.1 │ │ │ │ │ │ └── is-plain-object@2.0.4 deduped │ │ │ │ │ ├── extglob@2.0.4 deduped │ │ │ │ │ ├── fragment-cache@0.2.1 deduped │ │ │ │ │ ├── kind-of@6.0.2 │ │ │ │ │ ├── nanomatch@1.2.13 deduped │ │ │ │ │ ├── object.pick@1.3.0 deduped │ │ │ │ │ ├── regex-not@1.0.2 deduped │ │ │ │ │ ├── snapdragon@0.8.2 deduped │ │ │ │ │ └── to-regex@3.0.2 deduped │ │ │ │ └── readable-stream@2.3.6 deduped │ │ │ └── upath@1.1.2 │ │ ├─┬ compression@1.7.4 │ │ │ ├─┬ accepts@1.3.7 │ │ │ │ ├── mime-types@2.1.24 deduped │ │ │ │ └── negotiator@0.6.2 │ │ │ ├── bytes@3.0.0 │ │ │ ├─┬ compressible@2.0.17 │ │ │ │ └── mime-db@1.40.0 deduped │ │ │ ├─┬ debug@2.6.9 │ │ │ │ └── ms@2.0.0 │ │ │ ├── on-headers@1.0.2 │ │ │ ├── safe-buffer@5.1.2 deduped │ │ │ └── vary@1.1.2 │ │ ├── connect-history-api-fallback@1.6.0 │ │ ├── debug@4.1.1 deduped │ │ ├─┬ del@4.1.1 │ │ │ ├─┬ @types/glob@7.1.1 │ │ │ │ ├── @types/events@3.0.0 │ │ │ │ ├── @types/minimatch@3.0.3 │ │ │ │ └── @types/node@12.12.14 deduped │ │ │ ├─┬ globby@6.1.0 │ │ │ │ ├─┬ array-union@1.0.2 │ │ │ │ │ └── array-uniq@1.0.3 deduped │ │ │ │ ├── glob@7.1.4 deduped │ │ │ │ ├── object-assign@4.1.1 deduped │ │ │ │ ├── pify@2.3.0 │ │ │ │ └─┬ pinkie-promise@2.0.1 │ │ │ │ └── pinkie@2.0.4 │ │ │ ├── is-path-cwd@2.2.0 │ │ │ ├─┬ is-path-in-cwd@2.1.0 │ │ │ │ └─┬ is-path-inside@2.1.0 │ │ │ │ └── path-is-inside@1.0.2 │ │ │ ├── p-map@2.1.0 deduped │ │ │ ├── pify@4.0.1 │ │ │ └─┬ rimraf@2.6.3 │ │ │ └── glob@7.1.4 deduped │ │ ├─┬ express@4.17.1 │ │ │ ├── accepts@1.3.7 deduped │ │ │ ├── array-flatten@1.1.1 │ │ │ ├─┬ body-parser@1.19.0 │ │ │ │ ├── bytes@3.1.0 deduped │ │ │ │ ├── content-type@1.0.4 deduped │ │ │ │ ├─┬ debug@2.6.9 │ │ │ │ │ └── ms@2.0.0 │ │ │ │ ├── depd@1.1.2 deduped │ │ │ │ ├─┬ http-errors@1.7.2 │ │ │ │ │ ├── depd@1.1.2 deduped │ │ │ │ │ ├── inherits@2.0.3 │ │ │ │ │ ├── setprototypeof@1.1.1 deduped │ │ │ │ │ ├── statuses@1.5.0 deduped │ │ │ │ │ └── toidentifier@1.0.0 │ │ │ │ ├── iconv-lite@0.4.24 deduped │ │ │ │ ├── on-finished@2.3.0 deduped │ │ │ │ ├── qs@6.7.0 │ │ │ │ ├─┬ raw-body@2.4.0 │ │ │ │ │ ├── bytes@3.1.0 deduped │ │ │ │ │ ├── http-errors@1.7.2 deduped │ │ │ │ │ ├── iconv-lite@0.4.24 deduped │ │ │ │ │ └── unpipe@1.0.0 deduped │ │ │ │ └── type-is@1.6.18 deduped │ │ │ ├─┬ content-disposition@0.5.3 │ │ │ │ └── safe-buffer@5.1.2 deduped │ │ │ ├── content-type@1.0.4 │ │ │ ├── cookie@0.4.0 │ │ │ ├── cookie-signature@1.0.6 │ │ │ ├─┬ debug@2.6.9 │ │ │ │ └── ms@2.0.0 │ │ │ ├── depd@1.1.2 │ │ │ ├── encodeurl@1.0.2 │ │ │ ├── escape-html@1.0.3 │ │ │ ├── etag@1.8.1 │ │ │ ├─┬ finalhandler@1.1.2 │ │ │ │ ├─┬ debug@2.6.9 │ │ │ │ │ └── ms@2.0.0 │ │ │ │ ├── encodeurl@1.0.2 deduped │ │ │ │ ├── escape-html@1.0.3 deduped │ │ │ │ ├── on-finished@2.3.0 deduped │ │ │ │ ├── parseurl@1.3.3 deduped │ │ │ │ ├── statuses@1.5.0 deduped │ │ │ │ └── unpipe@1.0.0 │ │ │ ├── fresh@0.5.2 │ │ │ ├── merge-descriptors@1.0.1 │ │ │ ├── methods@1.1.2 │ │ │ ├─┬ on-finished@2.3.0 │ │ │ │ └── ee-first@1.1.1 │ │ │ ├── parseurl@1.3.3 │ │ │ ├── path-to-regexp@0.1.7 │ │ │ ├─┬ proxy-addr@2.0.5 │ │ │ │ ├── forwarded@0.1.2 │ │ │ │ └── ipaddr.js@1.9.0 deduped │ │ │ ├── qs@6.7.0 │ │ │ ├── range-parser@1.2.1 │ │ │ ├── safe-buffer@5.1.2 deduped │ │ │ ├─┬ send@0.17.1 │ │ │ │ ├─┬ debug@2.6.9 │ │ │ │ │ └── ms@2.0.0 │ │ │ │ ├── depd@1.1.2 deduped │ │ │ │ ├── destroy@1.0.4 │ │ │ │ ├── encodeurl@1.0.2 deduped │ │ │ │ ├── escape-html@1.0.3 deduped │ │ │ │ ├── etag@1.8.1 deduped │ │ │ │ ├── fresh@0.5.2 deduped │ │ │ │ ├─┬ http-errors@1.7.3 │ │ │ │ │ ├── depd@1.1.2 deduped │ │ │ │ │ ├── inherits@2.0.4 deduped │ │ │ │ │ ├── setprototypeof@1.1.1 deduped │ │ │ │ │ ├── statuses@1.5.0 deduped │ │ │ │ │ └── toidentifier@1.0.0 deduped │ │ │ │ ├── mime@1.6.0 │ │ │ │ ├── ms@2.1.1 deduped │ │ │ │ ├── on-finished@2.3.0 deduped │ │ │ │ ├── range-parser@1.2.1 deduped │ │ │ │ └── statuses@1.5.0 deduped │ │ │ ├─┬ serve-static@1.14.1 │ │ │ │ ├── encodeurl@1.0.2 deduped │ │ │ │ ├── escape-html@1.0.3 deduped │ │ │ │ ├── parseurl@1.3.3 deduped │ │ │ │ └── send@0.17.1 deduped │ │ │ ├── setprototypeof@1.1.1 │ │ │ ├── statuses@1.5.0 │ │ │ ├─┬ type-is@1.6.18 │ │ │ │ ├── media-typer@0.3.0 │ │ │ │ └── mime-types@2.1.24 deduped │ │ │ ├── utils-merge@1.0.1 │ │ │ └── vary@1.1.2 deduped │ │ ├── html-entities@1.3.1 deduped │ │ ├─┬ http-proxy-middleware@0.19.1 │ │ │ ├─┬ http-proxy@1.18.1 │ │ │ │ ├── eventemitter3@4.0.7 │ │ │ │ ├── follow-redirects@1.13.0 │ │ │ │ └── requires-port@1.0.0 │ │ │ ├── is-glob@4.0.1 deduped │ │ │ ├── lodash@4.17.20 deduped │ │ │ └─┬ micromatch@3.1.10 │ │ │ ├── arr-diff@4.0.0 deduped │ │ │ ├── array-unique@0.3.2 deduped │ │ │ ├── braces@2.3.2 deduped │ │ │ ├─┬ define-property@2.0.2 │ │ │ │ ├── is-descriptor@1.0.2 deduped │ │ │ │ └── isobject@3.0.1 deduped │ │ │ ├─┬ extend-shallow@3.0.2 │ │ │ │ ├── assign-symbols@1.0.0 deduped │ │ │ │ └─┬ is-extendable@1.0.1 │ │ │ │ └── is-plain-object@2.0.4 deduped │ │ │ ├── extglob@2.0.4 deduped │ │ │ ├── fragment-cache@0.2.1 deduped │ │ │ ├── kind-of@6.0.2 │ │ │ ├── nanomatch@1.2.13 deduped │ │ │ ├── object.pick@1.3.0 deduped │ │ │ ├── regex-not@1.0.2 deduped │ │ │ ├── snapdragon@0.8.2 deduped │ │ │ └── to-regex@3.0.2 deduped │ │ ├─┬ import-local@2.0.0 │ │ │ ├── pkg-dir@3.0.0 deduped │ │ │ └─┬ resolve-cwd@2.0.0 │ │ │ └── resolve-from@3.0.0 │ │ ├─┬ internal-ip@4.3.0 │ │ │ ├─┬ default-gateway@4.2.0 │ │ │ │ ├─┬ execa@1.0.0 │ │ │ │ │ ├─┬ cross-spawn@6.0.5 │ │ │ │ │ │ ├── nice-try@1.0.5 │ │ │ │ │ │ ├── path-key@2.0.1 │ │ │ │ │ │ ├── semver@5.7.1 deduped │ │ │ │ │ │ ├─┬ shebang-command@1.2.0 │ │ │ │ │ │ │ └── shebang-regex@1.0.0 │ │ │ │ │ │ └── which@1.3.1 deduped │ │ │ │ │ ├─┬ get-stream@4.1.0 │ │ │ │ │ │ └── pump@3.0.0 deduped │ │ │ │ │ ├── is-stream@1.1.0 deduped │ │ │ │ │ ├─┬ npm-run-path@2.0.2 │ │ │ │ │ │ └── path-key@2.0.1 deduped │ │ │ │ │ ├── p-finally@1.0.0 │ │ │ │ │ ├── signal-exit@3.0.2 deduped │ │ │ │ │ └── strip-eof@1.0.0 │ │ │ │ └── ip-regex@2.1.0 │ │ │ └── ipaddr.js@1.9.0 │ │ ├── ip@1.1.5 │ │ ├── is-absolute-url@3.0.3 │ │ ├── killable@1.0.1 │ │ ├── loglevel@1.6.8 │ │ ├─┬ opn@5.5.0 │ │ │ └── is-wsl@1.1.0 deduped │ │ ├─┬ p-retry@3.0.1 │ │ │ └── retry@0.12.0 │ │ ├─┬ portfinder@1.0.28 │ │ │ ├─┬ async@2.6.3 │ │ │ │ └── lodash@4.17.20 deduped │ │ │ ├─┬ debug@3.2.6 │ │ │ │ └── ms@2.1.1 deduped │ │ │ └─┬ mkdirp@0.5.5 │ │ │ └── minimist@1.2.5 deduped │ │ ├── schema-utils@1.0.0 deduped │ │ ├─┬ selfsigned@1.10.7 │ │ │ └── node-forge@0.9.0 │ │ ├── semver@6.3.0 │ │ ├─┬ serve-index@1.9.1 │ │ │ ├── accepts@1.3.7 deduped │ │ │ ├── batch@0.6.1 │ │ │ ├─┬ debug@2.6.9 │ │ │ │ └── ms@2.0.0 │ │ │ ├── escape-html@1.0.3 deduped │ │ │ ├─┬ http-errors@1.6.3 │ │ │ │ ├── depd@1.1.2 deduped │ │ │ │ ├── inherits@2.0.3 │ │ │ │ ├── setprototypeof@1.1.0 │ │ │ │ └── statuses@1.5.0 deduped │ │ │ ├── mime-types@2.1.24 deduped │ │ │ └── parseurl@1.3.3 deduped │ │ ├─┬ sockjs@0.3.20 │ │ │ ├─┬ faye-websocket@0.10.0 │ │ │ │ └─┬ websocket-driver@0.7.0 │ │ │ │ ├── http-parser-js@0.5.0 │ │ │ │ └── websocket-extensions@0.1.4 deduped │ │ │ ├── uuid@3.4.0 │ │ │ └─┬ websocket-driver@0.6.5 │ │ │ └── websocket-extensions@0.1.4 │ │ ├─┬ sockjs-client@1.4.0 │ │ │ ├─┬ debug@3.2.6 │ │ │ │ └── ms@2.1.1 deduped │ │ │ ├─┬ eventsource@1.0.7 │ │ │ │ └─┬ original@1.0.2 │ │ │ │ └── url-parse@1.4.7 deduped │ │ │ ├─┬ faye-websocket@0.11.1 │ │ │ │ └── websocket-driver@0.7.0 deduped │ │ │ ├── inherits@2.0.4 deduped │ │ │ ├── json3@3.3.2 │ │ │ └─┬ url-parse@1.4.7 │ │ │ ├── querystringify@2.1.1 │ │ │ └── requires-port@1.0.0 deduped │ │ ├─┬ spdy@4.0.2 │ │ │ ├── debug@4.1.1 deduped │ │ │ ├── handle-thing@2.0.0 │ │ │ ├── http-deceiver@1.2.7 │ │ │ ├── select-hose@2.0.0 │ │ │ └─┬ spdy-transport@3.0.0 │ │ │ ├── debug@4.1.1 deduped │ │ │ ├── detect-node@2.0.4 │ │ │ ├─┬ hpack.js@2.1.6 │ │ │ │ ├── inherits@2.0.4 deduped │ │ │ │ ├── obuf@1.1.2 deduped │ │ │ │ ├── readable-stream@2.3.6 deduped │ │ │ │ └── wbuf@1.7.3 deduped │ │ │ ├── obuf@1.1.2 │ │ │ ├─┬ readable-stream@3.3.0 │ │ │ │ ├── inherits@2.0.4 deduped │ │ │ │ ├── string_decoder@1.2.0 deduped │ │ │ │ └── util-deprecate@1.0.2 deduped │ │ │ └─┬ wbuf@1.7.3 │ │ │ └── minimalistic-assert@1.0.1 │ │ ├─┬ strip-ansi@3.0.1 │ │ │ └── ansi-regex@2.1.1 │ │ ├── supports-color@6.1.0 deduped │ │ ├── url@0.11.0 deduped │ │ ├─┬ webpack-dev-middleware@3.7.2 │ │ │ ├── memory-fs@0.4.1 deduped │ │ │ ├── mime@2.4.4 │ │ │ ├─┬ mkdirp@0.5.1 │ │ │ │ └── minimist@0.0.8 │ │ │ ├── range-parser@1.2.1 deduped │ │ │ └── webpack-log@2.0.0 deduped │ │ ├─┬ webpack-log@2.0.0 │ │ │ ├── ansi-colors@3.2.4 │ │ │ └── uuid@3.3.2 deduped │ │ ├─┬ ws@6.2.1 │ │ │ └── async-limiter@1.0.0 │ │ └─┬ yargs@13.3.2 │ │ ├─┬ cliui@5.0.0 │ │ │ ├── string-width@3.1.0 deduped │ │ │ ├─┬ strip-ansi@5.2.0 │ │ │ │ └── ansi-regex@4.1.0 │ │ │ └─┬ wrap-ansi@5.1.0 │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ ├── string-width@3.1.0 deduped │ │ │ └─┬ strip-ansi@5.2.0 │ │ │ └── ansi-regex@4.1.0 │ │ ├─┬ find-up@3.0.0 │ │ │ └─┬ locate-path@3.0.0 │ │ │ ├─┬ p-locate@3.0.0 │ │ │ │ └── p-limit@2.2.1 deduped │ │ │ └── path-exists@3.0.0 deduped │ │ ├── get-caller-file@2.0.5 │ │ ├── require-directory@2.1.1 │ │ ├── require-main-filename@2.0.0 │ │ ├── set-blocking@2.0.0 │ │ ├─┬ string-width@3.1.0 │ │ │ ├── emoji-regex@7.0.3 │ │ │ ├── is-fullwidth-code-point@2.0.0 deduped │ │ │ └─┬ strip-ansi@5.2.0 │ │ │ └── ansi-regex@4.1.0 │ │ ├── which-module@2.0.0 │ │ ├── y18n@4.0.0 │ │ └─┬ yargs-parser@13.1.2 │ │ ├── camelcase@5.3.1 deduped │ │ └── decamelize@1.2.0 deduped │ ├─┬ webpack-manifest-plugin@2.2.0 │ │ ├─┬ fs-extra@7.0.1 │ │ │ ├── graceful-fs@4.1.15 │ │ │ ├── jsonfile@4.0.0 deduped │ │ │ └── universalify@0.1.2 deduped │ │ ├── lodash@4.17.20 deduped │ │ ├─┬ object.entries@1.1.0 │ │ │ ├── define-properties@1.1.3 deduped │ │ │ ├─┬ es-abstract@1.13.0 │ │ │ │ ├─┬ es-to-primitive@1.2.0 │ │ │ │ │ ├── is-callable@1.1.4 deduped │ │ │ │ │ ├── is-date-object@1.0.1 deduped │ │ │ │ │ └── is-symbol@1.0.2 deduped │ │ │ │ ├── function-bind@1.1.1 deduped │ │ │ │ ├── has@1.0.3 deduped │ │ │ │ ├── is-callable@1.1.4 │ │ │ │ ├─┬ is-regex@1.0.4 │ │ │ │ │ └── has@1.0.3 deduped │ │ │ │ └── object-keys@1.1.1 deduped │ │ │ ├── function-bind@1.1.1 deduped │ │ │ └── has@1.0.3 deduped │ │ └── tapable@1.1.3 deduped │ └─┬ workbox-webpack-plugin@5.1.4 │ ├── @babel/runtime@7.10.2 deduped │ ├── fast-json-stable-stringify@2.0.0 │ ├── source-map-url@0.4.0 │ ├── upath@1.2.0 │ ├── webpack-sources@1.4.3 deduped │ └─┬ workbox-build@5.1.4 │ ├── @babel/core@7.12.3 deduped │ ├── @babel/preset-env@7.12.1 deduped │ ├── @babel/runtime@7.10.2 deduped │ ├─┬ @hapi/joi@15.1.1 │ │ ├── @hapi/address@2.0.0 │ │ ├── @hapi/bourne@1.3.2 │ │ ├── @hapi/hoek@8.5.1 │ │ └─┬ @hapi/topo@3.1.0 │ │ └── @hapi/hoek@6.2.1 │ ├─┬ @rollup/plugin-node-resolve@7.1.3 │ │ ├─┬ @rollup/pluginutils@3.1.0 │ │ │ ├── @types/estree@0.0.39 │ │ │ ├── estree-walker@1.0.1 │ │ │ └── picomatch@2.2.2 deduped │ │ ├─┬ @types/resolve@0.0.8 │ │ │ └── @types/node@12.12.14 deduped │ │ ├── builtin-modules@3.1.0 │ │ ├── is-module@1.0.0 │ │ └── resolve@1.18.1 deduped │ ├─┬ @rollup/plugin-replace@2.3.3 │ │ ├── @rollup/pluginutils@3.1.0 deduped │ │ └─┬ magic-string@0.25.7 │ │ └── sourcemap-codec@1.4.8 │ ├─┬ @surma/rollup-plugin-off-main-thread@1.4.1 │ │ ├── ejs@2.7.4 │ │ └── magic-string@0.25.7 deduped │ ├── common-tags@1.8.0 deduped │ ├── fast-json-stable-stringify@2.1.0 │ ├─┬ fs-extra@8.1.0 │ │ ├── graceful-fs@4.2.2 │ │ ├── jsonfile@4.0.0 deduped │ │ └── universalify@0.1.2 deduped │ ├─┬ glob@7.1.6 │ │ ├── fs.realpath@1.0.0 deduped │ │ ├── inflight@1.0.6 deduped │ │ ├── inherits@2.0.4 deduped │ │ ├── minimatch@3.0.4 deduped │ │ ├── once@1.4.0 deduped │ │ └── path-is-absolute@1.0.1 deduped │ ├── lodash.template@4.5.0 deduped │ ├── pretty-bytes@5.4.1 deduped │ ├─┬ rollup@1.32.1 │ │ ├── @types/estree@0.0.45 deduped │ │ ├── @types/node@12.12.14 deduped │ │ └── acorn@7.4.1 deduped │ ├─┬ rollup-plugin-babel@4.4.0 │ │ ├─┬ @babel/helper-module-imports@7.0.0 │ │ │ └─┬ @babel/types@7.4.4 │ │ │ ├── esutils@2.0.2 deduped │ │ │ ├── lodash@4.17.20 deduped │ │ │ └── to-fast-properties@2.0.0 deduped │ │ └─┬ rollup-pluginutils@2.8.2 │ │ └── estree-walker@0.6.1 │ ├─┬ rollup-plugin-terser@5.3.1 │ │ ├─┬ @babel/code-frame@7.5.5 │ │ │ └── @babel/highlight@7.0.0 deduped │ │ ├─┬ jest-worker@24.9.0 │ │ │ ├── merge-stream@2.0.0 deduped │ │ │ └── supports-color@6.1.0 deduped │ │ ├── rollup-pluginutils@2.8.2 deduped │ │ ├─┬ serialize-javascript@4.0.0 │ │ │ └── randombytes@2.1.0 deduped │ │ └─┬ terser@4.8.0 │ │ ├── commander@2.20.3 deduped │ │ ├── source-map@0.6.1 deduped │ │ └── source-map-support@0.5.13 deduped │ ├── source-map@0.7.3 │ ├── source-map-url@0.4.0 deduped │ ├─┬ stringify-object@3.3.0 │ │ ├── get-own-enumerable-property-symbols@3.0.0 │ │ ├── is-obj@1.0.1 │ │ └── is-regexp@1.0.0 │ ├─┬ strip-comments@1.0.2 │ │ ├─┬ babel-extract-comments@1.0.0 │ │ │ └── babylon@6.18.0 │ │ └─┬ babel-plugin-transform-object-rest-spread@6.26.0 │ │ ├── babel-plugin-syntax-object-rest-spread@6.13.0 │ │ └─┬ babel-runtime@6.26.0 │ │ ├── core-js@2.6.5 │ │ └── regenerator-runtime@0.11.1 │ ├─┬ tempy@0.3.0 │ │ ├── temp-dir@1.0.0 │ │ ├── type-fest@0.3.1 │ │ └─┬ unique-string@1.0.0 │ │ └── crypto-random-string@1.0.0 │ ├── upath@1.2.0 deduped │ ├─┬ workbox-background-sync@5.1.4 │ │ └── workbox-core@5.1.4 deduped │ ├─┬ workbox-broadcast-update@5.1.4 │ │ └── workbox-core@5.1.4 deduped │ ├─┬ workbox-cacheable-response@5.1.4 │ │ └── workbox-core@5.1.4 deduped │ ├── workbox-core@5.1.4 │ ├─┬ workbox-expiration@5.1.4 │ │ └── workbox-core@5.1.4 deduped │ ├─┬ workbox-google-analytics@5.1.4 │ │ ├── workbox-background-sync@5.1.4 deduped │ │ ├── workbox-core@5.1.4 deduped │ │ ├── workbox-routing@5.1.4 deduped │ │ └── workbox-strategies@5.1.4 deduped │ ├─┬ workbox-navigation-preload@5.1.4 │ │ └── workbox-core@5.1.4 deduped │ ├─┬ workbox-precaching@5.1.4 │ │ └── workbox-core@5.1.4 deduped │ ├─┬ workbox-range-requests@5.1.4 │ │ └── workbox-core@5.1.4 deduped │ ├─┬ workbox-routing@5.1.4 │ │ └── workbox-core@5.1.4 deduped │ ├─┬ workbox-strategies@5.1.4 │ │ ├── workbox-core@5.1.4 deduped │ │ └── workbox-routing@5.1.4 deduped │ ├─┬ workbox-streams@5.1.4 │ │ ├── workbox-core@5.1.4 deduped │ │ └── workbox-routing@5.1.4 deduped │ ├── workbox-sw@5.1.4 │ └─┬ workbox-window@5.1.4 │ └── workbox-core@5.1.4 deduped ├─┬ react-select@3.1.0 │ ├── @babel/runtime@7.10.2 deduped │ ├─┬ @emotion/cache@10.0.14 │ │ ├── @emotion/sheet@0.9.3 │ │ ├── @emotion/stylis@0.8.4 │ │ ├── @emotion/utils@0.11.2 │ │ └── @emotion/weak-memoize@0.2.3 │ ├─┬ @emotion/core@10.0.14 │ │ ├── @babel/runtime@7.10.2 deduped │ │ ├── @emotion/cache@10.0.14 deduped │ │ ├── @emotion/css@10.0.14 deduped │ │ ├─┬ @emotion/serialize@0.11.8 │ │ │ ├── @emotion/hash@0.7.2 │ │ │ ├── @emotion/memoize@0.7.2 │ │ │ ├── @emotion/unitless@0.7.4 │ │ │ ├── @emotion/utils@0.11.2 deduped │ │ │ └── csstype@2.6.6 deduped │ │ ├── @emotion/sheet@0.9.3 deduped │ │ └── @emotion/utils@0.11.2 deduped │ ├─┬ @emotion/css@10.0.14 │ │ ├── @emotion/serialize@0.11.8 deduped │ │ ├── @emotion/utils@0.11.2 deduped │ │ └─┬ babel-plugin-emotion@10.0.14 │ │ ├─┬ @babel/helper-module-imports@7.0.0 │ │ │ └─┬ @babel/types@7.4.4 │ │ │ ├── esutils@2.0.2 deduped │ │ │ ├── lodash@4.17.20 deduped │ │ │ └── to-fast-properties@2.0.0 deduped │ │ ├── @emotion/hash@0.7.2 deduped │ │ ├── @emotion/memoize@0.7.2 deduped │ │ ├── @emotion/serialize@0.11.8 deduped │ │ ├─┬ babel-plugin-macros@2.6.1 │ │ │ ├── @babel/runtime@7.10.2 deduped │ │ │ ├─┬ cosmiconfig@5.2.0 │ │ │ │ ├─┬ import-fresh@2.0.0 │ │ │ │ │ ├── caller-path@2.0.0 deduped │ │ │ │ │ └── resolve-from@3.0.0 deduped │ │ │ │ ├── is-directory@0.3.1 deduped │ │ │ │ ├── js-yaml@3.13.1 deduped │ │ │ │ └─┬ parse-json@4.0.0 │ │ │ │ ├── error-ex@1.3.2 deduped │ │ │ │ └── json-parse-better-errors@1.0.2 deduped │ │ │ └── resolve@1.18.1 deduped │ │ ├── babel-plugin-syntax-jsx@6.18.0 │ │ ├─┬ convert-source-map@1.6.0 │ │ │ └── safe-buffer@5.1.2 deduped │ │ ├── escape-string-regexp@1.0.5 deduped │ │ ├── find-root@1.1.0 │ │ └── source-map@0.5.7 │ ├── memoize-one@5.0.5 │ ├── prop-types@15.7.2 deduped │ ├─┬ react-input-autosize@2.2.2 │ │ └── prop-types@15.7.2 deduped │ └─┬ react-transition-group@4.3.0 │ ├── @babel/runtime@7.10.2 deduped │ ├─┬ dom-helpers@5.1.3 │ │ ├── @babel/runtime@7.10.2 deduped │ │ └── csstype@2.6.9 │ ├── loose-envify@1.4.0 deduped │ └── prop-types@15.7.2 deduped ├── reason@3.3.4 ├── reason-future@2.6.0 ├── UNMET PEER DEPENDENCY reason-react@0.9.1 ├── reason-react-update@2.0.0 ├─┬ tailwindcss@1.9.6 │ ├─┬ @fullhuman/postcss-purgecss@2.1.2 │ │ ├─┬ postcss@7.0.27 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └── supports-color@6.1.0 deduped │ │ └─┬ purgecss@2.1.2 │ │ ├── commander@5.1.0 │ │ ├─┬ glob@7.1.6 │ │ │ ├── fs.realpath@1.0.0 deduped │ │ │ ├── inflight@1.0.6 deduped │ │ │ ├── inherits@2.0.4 deduped │ │ │ ├── minimatch@3.0.4 deduped │ │ │ ├── once@1.4.0 deduped │ │ │ └── path-is-absolute@1.0.1 deduped │ │ ├─┬ postcss@7.0.27 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └── supports-color@6.1.0 deduped │ │ └─┬ postcss-selector-parser@6.0.2 │ │ ├── cssesc@3.0.0 deduped │ │ ├── indexes-of@1.0.1 deduped │ │ └── uniq@1.0.1 deduped │ ├─┬ autoprefixer@9.8.6 │ │ ├── browserslist@4.14.5 deduped │ │ ├── caniuse-lite@1.0.30001137 deduped │ │ ├── colorette@1.2.1 deduped │ │ ├── normalize-range@0.1.2 deduped │ │ ├── num2fraction@1.2.2 deduped │ │ ├── postcss@7.0.32 deduped │ │ └── postcss-value-parser@4.1.0 deduped │ ├── browserslist@4.14.5 deduped │ ├── bytes@3.1.0 │ ├── chalk@4.1.0 deduped │ ├─┬ color@3.1.2 │ │ ├─┬ color-convert@1.9.3 │ │ │ └── color-name@1.1.3 │ │ └─┬ color-string@1.5.3 │ │ ├── color-name@1.1.4 │ │ └─┬ simple-swizzle@0.2.2 │ │ └── is-arrayish@0.3.2 │ ├─┬ detective@5.2.0 │ │ ├─┬ acorn-node@1.8.2 │ │ │ ├── acorn@7.4.1 deduped │ │ │ ├── acorn-walk@7.0.0 │ │ │ └── xtend@4.0.2 │ │ ├── defined@1.0.0 │ │ └── minimist@1.2.5 deduped │ ├─┬ fs-extra@8.1.0 │ │ ├── graceful-fs@4.2.2 │ │ ├─┬ jsonfile@4.0.0 │ │ │ └── graceful-fs@4.1.15 │ │ └── universalify@0.1.2 │ ├── html-tags@3.1.0 │ ├── lodash@4.17.20 deduped │ ├─┬ node-emoji@1.10.0 │ │ └── lodash.toarray@4.4.0 │ ├── normalize.css@8.0.1 │ ├── object-hash@2.0.3 │ ├─┬ postcss@7.0.32 │ │ ├─┬ chalk@2.4.2 │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ └─┬ supports-color@5.5.0 │ │ │ └── has-flag@3.0.0 deduped │ │ ├── source-map@0.6.1 deduped │ │ └── supports-color@6.1.0 deduped │ ├─┬ postcss-functions@3.0.0 │ │ ├─┬ glob@7.1.4 │ │ │ ├── fs.realpath@1.0.0 │ │ │ ├─┬ inflight@1.0.6 │ │ │ │ ├── once@1.4.0 deduped │ │ │ │ └── wrappy@1.0.2 deduped │ │ │ ├── inherits@2.0.4 deduped │ │ │ ├── minimatch@3.0.4 deduped │ │ │ ├── once@1.4.0 deduped │ │ │ └── path-is-absolute@1.0.1 deduped │ │ ├── object-assign@4.1.1 deduped │ │ ├─┬ postcss@6.0.23 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └── supports-color@5.5.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └─┬ supports-color@5.5.0 │ │ │ └── has-flag@3.0.0 deduped │ │ └── postcss-value-parser@3.3.1 │ ├─┬ postcss-js@2.0.1 │ │ ├── camelcase-css@2.0.1 │ │ └─┬ postcss@7.0.32 │ │ ├─┬ chalk@2.4.2 │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ └─┬ supports-color@5.5.0 │ │ │ └── has-flag@3.0.0 deduped │ │ ├── source-map@0.6.1 deduped │ │ └── supports-color@6.1.0 deduped │ ├─┬ postcss-nested@4.1.2 │ │ ├─┬ postcss@7.0.32 │ │ │ ├─┬ chalk@2.4.2 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ │ └─┬ supports-color@5.5.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ └── supports-color@6.1.0 deduped │ │ └── postcss-selector-parser@5.0.0 deduped │ ├─┬ postcss-selector-parser@6.0.2 │ │ ├── cssesc@3.0.0 deduped │ │ ├── indexes-of@1.0.1 │ │ └── uniq@1.0.1 │ ├── postcss-value-parser@4.1.0 │ ├── pretty-hrtime@1.0.3 │ ├─┬ reduce-css-calc@2.1.6 │ │ ├── css-unit-converter@1.1.1 │ │ └── postcss-value-parser@3.3.1 deduped │ └── resolve@1.18.1 deduped ├─┬ tailwindcss-typography@3.1.0 │ └── lodash@4.17.20 deduped ├── UNMET PEER DEPENDENCY typescript@3.8 || 4 ├── use-debounce@5.0.1 ├─┬ use-onclickoutside@0.3.1 │ ├── are-passive-events-supported@1.1.1 │ └── use-latest@1.0.0 ├─┬ viewport-mercator-project@7.0.1 │ └─┬ @math.gl/web-mercator@3.1.3 │ ├── @babel/runtime@7.10.2 deduped │ └── gl-matrix@3.0.0 deduped └── whatwg-fetch@3.4.1 ```
RyanZim commented 3 years ago

Found it! The error message indicates it's coming from ./node_modules/react-scripts/node_modules/postcss-loader, which means your build process isn't using the version of postcss-loader you have in your package.json, it's using the postcss-loader that react-scripts pulls in, which happens to be postcss-loader@3.0.0: https://github.com/facebook/create-react-app/blob/aec42e2cc05fe0799a3b73830b874757e9e3f561/packages/react-scripts/package.json#L69

To use postcss v8 plugins, you'll either have to stop using react-scripts, or wait for react-scripts to upgrade their version of postcss-loader to be compatible with postcss v8. Of course, you can also downgrade to postcss-import v12, which uses postcss v8.

dfalling commented 3 years ago

Oh wow, great catch. Thanks!

AlexVipond commented 3 years ago

In case anyone else hits this error, I was getting it because I forgot to update my global postcss-cli installation to 8.x

Updating postcss-cli cleared everything up 👍