storybookjs / storybook

Storybook is the industry standard workshop for building, documenting, and testing UI components in isolation
https://storybook.js.org
MIT License
84.08k stars 9.25k forks source link

Error after migrate to Storybook 5.0.0 using material-ui #5871

Closed aralroca closed 5 years ago

aralroca commented 5 years ago

I followed all the steps of the MIGRATION.md guide from 4.1 to 5.0.0. However running the storybook I'm getting this error:

Error: Can't resolve 'core-js/modules/es7.symbol.async-iterator' in '/my-project/node_modules/@storybook/ui/dist/core

I guess that is related with babel. I'm using Next.js 8.0.3 (that already have Babel 7)... And my .babelrc file is:

{
  "env":{
    "development": {
      "presets": ["next/babel"]
    },
    "production": {
      "presets": ["next/babel"]
    },
    "test": {
      "plugins": [
        ["transform-es2015-modules-commonjs"]
      ],
      "presets": [["next/babel", { "preset-env": { "modules": "commonjs" } }]]
    }
  }
}

Maybe will be great to add to the MIGRATION.md how to migrate from Next.js... 😕

shilman commented 5 years ago

Can you remove node_modules & yarn.lock and retry?

tmeasday commented 5 years ago

@aralroca -- I wonder what version of core-js you have in node_modules? I am running an next@8 app w/ SB5 and I have core-js@2.6.3

aralroca commented 5 years ago

Can you remove node_modules & yarn.lock and retry?

Sure, I did it.

@aralroca -- I wonder what version of core-js you have in node_modules? I am running an next@8 app w/ SB5 and I have core-js@2.6.3

My version in node_modules is core-js@1.2.7 😕

Dependencies tree ``` ├─┬ @material-ui/core@3.9.2 │ ├─┬ @babel/runtime@7.3.4 │ │ └── regenerator-runtime@0.12.1 deduped │ ├─┬ @material-ui/system@3.0.0-alpha.2 │ │ ├── @babel/runtime@7.3.4 deduped │ │ ├── deepmerge@3.2.0 deduped │ │ ├── prop-types@15.7.2 deduped │ │ └── warning@4.0.3 deduped │ ├─┬ @material-ui/utils@3.0.0-alpha.3 │ │ ├── @babel/runtime@7.3.4 deduped │ │ ├── prop-types@15.7.2 deduped │ │ └── react-is@16.8.3 deduped │ ├─┬ @types/jss@9.5.8 │ │ ├── csstype@2.6.2 deduped │ │ └─┬ indefinite-observable@1.0.2 │ │ └── symbol-observable@1.2.0 deduped │ ├─┬ @types/react-transition-group@2.0.16 │ │ └─┬ @types/react@16.8.6 │ │ ├── @types/prop-types@15.7.0 │ │ └── csstype@2.6.2 deduped │ ├── brcast@3.0.1 │ ├── classnames@2.2.6 │ ├── csstype@2.6.2 │ ├── debounce@1.2.0 │ ├── deepmerge@3.2.0 │ ├─┬ dom-helpers@3.4.0 │ │ └── @babel/runtime@7.3.4 deduped │ ├─┬ hoist-non-react-statics@3.3.0 │ │ └── react-is@16.8.3 deduped │ ├─┬ is-plain-object@2.0.4 │ │ └── isobject@3.0.1 │ ├─┬ jss@9.8.7 │ │ ├── is-in-browser@1.1.3 │ │ ├── symbol-observable@1.2.0 │ │ └─┬ warning@3.0.0 │ │ └── loose-envify@1.4.0 deduped │ ├─┬ jss-camel-case@6.1.0 │ │ └── hyphenate-style-name@1.0.3 │ ├── jss-default-unit@8.0.2 │ ├── jss-global@3.0.0 │ ├─┬ jss-nested@6.0.1 │ │ └─┬ warning@3.0.0 │ │ └── loose-envify@1.4.0 deduped │ ├── jss-props-sort@6.0.0 │ ├─┬ jss-vendor-prefixer@7.0.0 │ │ └─┬ css-vendor@0.3.8 │ │ └── is-in-browser@1.1.3 deduped │ ├── normalize-scroll-left@0.1.2 │ ├── popper.js@1.14.7 │ ├── prop-types@15.7.2 deduped │ ├─┬ react-event-listener@0.6.6 │ │ ├── @babel/runtime@7.3.4 deduped │ │ ├── prop-types@15.7.2 deduped │ │ └── warning@4.0.3 deduped │ ├─┬ react-transition-group@2.6.0 │ │ ├── dom-helpers@3.4.0 deduped │ │ ├── loose-envify@1.4.0 deduped │ │ ├── prop-types@15.7.2 deduped │ │ └── react-lifecycles-compat@3.0.4 deduped │ ├─┬ recompose@0.30.0 │ │ ├── @babel/runtime@7.3.4 deduped │ │ ├── change-emitter@0.1.6 │ │ ├─┬ fbjs@0.8.17 │ │ │ ├── core-js@1.2.7 │ │ │ ├─┬ isomorphic-fetch@2.2.1 │ │ │ │ ├─┬ node-fetch@1.7.3 │ │ │ │ │ ├─┬ encoding@0.1.12 │ │ │ │ │ │ └── iconv-lite@0.4.24 deduped │ │ │ │ │ └── is-stream@1.1.0 deduped │ │ │ │ └── whatwg-fetch@3.0.0 │ │ │ ├── loose-envify@1.4.0 deduped │ │ │ ├── object-assign@4.1.1 deduped │ │ │ ├── promise@7.3.1 deduped │ │ │ ├── setimmediate@1.0.5 │ │ │ └── ua-parser-js@0.7.19 │ │ ├── hoist-non-react-statics@2.5.5 │ │ ├── react-lifecycles-compat@3.0.4 deduped │ │ └── symbol-observable@1.2.0 deduped │ └─┬ warning@4.0.3 │ └── loose-envify@1.4.0 deduped ├─┬ @material-ui/styles@3.0.0-alpha.10 │ ├── @babel/runtime@7.3.4 deduped │ ├── @emotion/hash@0.7.1 │ ├── @material-ui/utils@3.0.0-alpha.3 deduped │ ├── classnames@2.2.6 deduped │ ├── deepmerge@3.2.0 deduped │ ├── hoist-non-react-statics@3.3.0 deduped │ ├─┬ UNMET PEER DEPENDENCY jss@10.0.0-alpha.12 │ │ ├── @babel/runtime@7.3.4 deduped │ │ ├── is-in-browser@1.1.3 deduped │ │ └── tiny-warning@1.0.2 │ ├─┬ jss-plugin-camel-case@10.0.0-alpha.7 │ │ ├── @babel/runtime@7.3.4 deduped │ │ └── hyphenate-style-name@1.0.3 deduped │ ├─┬ jss-plugin-default-unit@10.0.0-alpha.7 │ │ └── @babel/runtime@7.3.4 deduped │ ├─┬ jss-plugin-global@10.0.0-alpha.7 │ │ └── @babel/runtime@7.3.4 deduped │ ├─┬ jss-plugin-nested@10.0.0-alpha.7 │ │ ├── @babel/runtime@7.3.4 deduped │ │ └── tiny-warning@1.0.2 deduped │ ├─┬ jss-plugin-props-sort@10.0.0-alpha.7 │ │ └── @babel/runtime@7.3.4 deduped │ ├─┬ jss-plugin-rule-value-function@10.0.0-alpha.7 │ │ └── @babel/runtime@7.3.4 deduped │ ├─┬ jss-plugin-vendor-prefixer@10.0.0-alpha.7 │ │ ├── @babel/runtime@7.3.4 deduped │ │ └─┬ css-vendor@1.2.1 │ │ ├── @babel/runtime@7.3.4 deduped │ │ └── is-in-browser@1.1.3 deduped │ ├── prop-types@15.7.2 deduped │ └── warning@4.0.3 deduped ├─┬ @storybook/addon-info@5.0.0 │ ├── @storybook/addons@5.0.0 deduped │ ├── @storybook/client-logger@5.0.0 │ ├─┬ @storybook/components@5.0.0 │ │ ├── @storybook/addons@5.0.0 deduped │ │ ├── @storybook/client-logger@5.0.0 deduped │ │ ├── @storybook/core-events@5.0.0 deduped │ │ ├─┬ @storybook/router@5.0.0 │ │ │ ├─┬ @reach/router@1.2.1 │ │ │ │ ├─┬ create-react-context@0.2.3 │ │ │ │ │ ├── fbjs@0.8.17 deduped │ │ │ │ │ └── gud@1.0.0 │ │ │ │ ├── invariant@2.2.4 deduped │ │ │ │ ├── prop-types@15.7.2 deduped │ │ │ │ ├── react-lifecycles-compat@3.0.4 deduped │ │ │ │ └─┬ warning@3.0.0 │ │ │ │ └── loose-envify@1.4.0 deduped │ │ │ ├── @storybook/theming@5.0.0 deduped │ │ │ ├── global@4.3.2 deduped │ │ │ ├── memoizerific@1.11.3 deduped │ │ │ └── qs@6.5.2 deduped │ │ ├── @storybook/theming@5.0.0 deduped │ │ ├── global@4.3.2 deduped │ │ ├── immer@1.12.1 │ │ ├── js-beautify@1.9.0 deduped │ │ ├── lodash.pick@4.4.0 │ │ ├── lodash.throttle@4.1.1 │ │ ├─┬ memoizerific@1.11.3 │ │ │ └── map-or-similar@1.5.0 │ │ ├─┬ polished@2.3.3 │ │ │ └── @babel/runtime@7.3.4 deduped │ │ ├── prop-types@15.7.2 deduped │ │ ├── react@16.8.3 deduped │ │ ├── react-dom@16.8.3 deduped │ │ ├─┬ react-focus-lock@1.17.7 │ │ │ ├── @babel/runtime@7.3.4 deduped │ │ │ ├── focus-lock@0.5.4 │ │ │ ├── prop-types@15.7.2 deduped │ │ │ └─┬ react-clientside-effect@1.2.0 │ │ │ ├── @babel/runtime@7.3.4 deduped │ │ │ └── shallowequal@1.1.0 deduped │ │ ├─┬ react-helmet-async@0.2.0 │ │ │ ├── invariant@2.2.4 deduped │ │ │ ├── prop-types@15.7.2 deduped │ │ │ ├── react-fast-compare@2.0.4 │ │ │ └── shallowequal@1.1.0 │ │ ├─┬ react-inspector@2.3.1 │ │ │ ├── babel-runtime@6.26.0 deduped │ │ │ ├── is-dom@1.0.9 │ │ │ └── prop-types@15.7.2 deduped │ │ ├─┬ react-popper-tooltip@2.8.1 │ │ │ ├── @babel/runtime@7.3.4 deduped │ │ │ └─┬ react-popper@1.3.3 │ │ │ ├── @babel/runtime@7.3.4 deduped │ │ │ ├─┬ create-react-context@0.2.2 │ │ │ │ ├── fbjs@0.8.17 deduped │ │ │ │ └── gud@1.0.0 deduped │ │ │ ├── popper.js@1.14.7 deduped │ │ │ ├── prop-types@15.7.2 deduped │ │ │ ├── typed-styles@0.0.7 │ │ │ └── warning@4.0.3 deduped │ │ ├─┬ react-syntax-highlighter@8.1.0 │ │ │ ├── babel-runtime@6.26.0 deduped │ │ │ ├── highlight.js@9.12.0 │ │ │ ├─┬ lowlight@1.9.2 │ │ │ │ ├─┬ fault@1.0.2 │ │ │ │ │ └── format@0.2.2 │ │ │ │ └── highlight.js@9.12.0 deduped │ │ │ ├─┬ prismjs@1.15.0 │ │ │ │ └─┬ clipboard@2.0.4 │ │ │ │ ├─┬ good-listener@1.2.2 │ │ │ │ │ └── delegate@3.2.0 │ │ │ │ ├── select@1.1.2 │ │ │ │ └── tiny-emitter@2.1.0 │ │ │ └─┬ refractor@2.6.2 │ │ │ ├─┬ hastscript@5.0.0 │ │ │ │ ├─┬ comma-separated-tokens@1.0.5 │ │ │ │ │ └── trim@0.0.1 │ │ │ │ ├── hast-util-parse-selector@2.2.1 │ │ │ │ ├─┬ property-information@5.0.1 │ │ │ │ │ └── xtend@4.0.1 deduped │ │ │ │ └─┬ space-separated-tokens@1.1.2 │ │ │ │ └── trim@0.0.1 deduped │ │ │ ├─┬ parse-entities@1.2.1 │ │ │ │ ├── character-entities@1.2.2 │ │ │ │ ├── character-entities-legacy@1.1.2 │ │ │ │ ├── character-reference-invalid@1.1.2 │ │ │ │ ├─┬ is-alphanumerical@1.0.2 │ │ │ │ │ ├── is-alphabetical@1.0.2 │ │ │ │ │ └── is-decimal@1.0.2 deduped │ │ │ │ ├── is-decimal@1.0.2 │ │ │ │ └── is-hexadecimal@1.0.2 │ │ │ └── prismjs@1.15.0 deduped │ │ ├─┬ react-textarea-autosize@7.1.0 │ │ │ ├── @babel/runtime@7.3.4 deduped │ │ │ └── prop-types@15.7.2 deduped │ │ ├── reactjs-popup@1.3.2 │ │ ├── recompose@0.30.0 deduped │ │ └── render-fragment@0.1.1 │ ├─┬ @storybook/theming@5.0.0 │ │ ├─┬ @emotion/core@10.0.7 │ │ │ ├─┬ @emotion/cache@10.0.7 │ │ │ │ ├── @emotion/sheet@0.9.2 deduped │ │ │ │ ├── @emotion/stylis@0.8.3 │ │ │ │ ├── @emotion/utils@0.11.1 deduped │ │ │ │ └── @emotion/weak-memoize@0.2.2 deduped │ │ │ ├─┬ @emotion/css@10.0.7 │ │ │ │ ├── @emotion/serialize@0.11.4 deduped │ │ │ │ ├── @emotion/utils@0.11.1 deduped │ │ │ │ └── babel-plugin-emotion@10.0.7 deduped │ │ │ ├─┬ @emotion/serialize@0.11.4 │ │ │ │ ├── @emotion/hash@0.7.1 deduped │ │ │ │ ├── @emotion/memoize@0.7.1 deduped │ │ │ │ ├── @emotion/unitless@0.7.3 │ │ │ │ ├── @emotion/utils@0.11.1 deduped │ │ │ │ └── csstype@2.6.2 deduped │ │ │ ├── @emotion/sheet@0.9.2 │ │ │ └── @emotion/utils@0.11.1 │ │ ├─┬ @emotion/styled@10.0.7 │ │ │ ├─┬ @emotion/styled-base@10.0.7 │ │ │ │ ├─┬ @emotion/is-prop-valid@0.7.3 │ │ │ │ │ └── @emotion/memoize@0.7.1 deduped │ │ │ │ ├── @emotion/serialize@0.11.4 deduped │ │ │ │ ├── @emotion/utils@0.11.1 deduped │ │ │ │ └── object-assign@4.1.1 deduped │ │ │ └── babel-plugin-emotion@10.0.7 deduped │ │ ├── @storybook/client-logger@5.0.0 deduped │ │ ├── common-tags@1.8.0 deduped │ │ ├── deep-object-diff@1.1.0 │ │ ├─┬ emotion-theming@10.0.7 │ │ │ ├── @emotion/weak-memoize@0.2.2 │ │ │ ├── hoist-non-react-statics@2.5.5 │ │ │ └── object-assign@4.1.1 deduped │ │ ├── global@4.3.2 deduped │ │ ├── lodash.isequal@4.5.0 │ │ ├── lodash.mergewith@4.6.1 deduped │ │ ├── memoizerific@1.11.3 deduped │ │ ├── polished@2.3.3 deduped │ │ ├── prop-types@15.7.2 deduped │ │ └── react-inspector@2.3.1 deduped │ ├── core-js@2.6.5 │ ├─┬ global@4.3.2 │ │ ├─┬ min-document@2.19.0 │ │ │ └── dom-walk@0.1.1 │ │ └── process@0.5.2 │ ├─┬ marksy@6.1.0 │ │ ├── babel-standalone@6.26.0 │ │ ├── he@1.2.0 │ │ └── marked@0.3.19 │ ├── nested-object-assign@1.0.3 │ ├── prop-types@15.7.2 deduped │ ├── react@16.8.3 deduped │ ├─┬ react-addons-create-fragment@15.6.2 │ │ ├── fbjs@0.8.17 deduped │ │ ├── loose-envify@1.4.0 deduped │ │ └── object-assign@4.1.1 deduped │ ├─┬ react-element-to-jsx-string@14.0.2 │ │ ├── is-plain-object@2.0.4 deduped │ │ └─┬ stringify-object@3.2.2 │ │ ├── get-own-enumerable-property-symbols@2.0.1 │ │ ├── is-obj@1.0.1 │ │ └── is-regexp@1.0.0 │ ├── react-is@16.8.3 │ ├── react-lifecycles-compat@3.0.4 │ └── util-deprecate@1.0.2 ├─┬ @storybook/addon-knobs@5.0.0 │ ├── @storybook/addons@5.0.0 deduped │ ├── @storybook/components@5.0.0 deduped │ ├── @storybook/core-events@5.0.0 │ ├── @storybook/theming@5.0.0 deduped │ ├─┬ copy-to-clipboard@3.0.8 │ │ └── toggle-selection@1.0.6 │ ├── core-js@2.6.5 │ ├── escape-html@1.0.3 │ ├── fast-deep-equal@2.0.1 │ ├── global@4.3.2 deduped │ ├── prop-types@15.7.2 deduped │ ├── qs@6.5.2 │ ├─┬ react-color@2.17.0 │ │ ├── @icons/material@0.2.4 │ │ ├── lodash@4.17.11 deduped │ │ ├── material-colors@1.2.6 │ │ ├── prop-types@15.7.2 deduped │ │ ├─┬ reactcss@1.2.3 │ │ │ └── lodash@4.17.11 deduped │ │ └── tinycolor2@1.4.1 │ ├── react-lifecycles-compat@3.0.4 deduped │ ├─┬ react-select@2.4.1 │ │ ├── classnames@2.2.6 deduped │ │ ├─┬ emotion@9.2.12 │ │ │ ├─┬ babel-plugin-emotion@9.2.11 │ │ │ │ ├── @babel/helper-module-imports@7.0.0 deduped │ │ │ │ ├─┬ @emotion/babel-utils@0.6.10 │ │ │ │ │ ├── @emotion/hash@0.6.6 │ │ │ │ │ ├── @emotion/memoize@0.6.6 │ │ │ │ │ ├─┬ @emotion/serialize@0.9.1 │ │ │ │ │ │ ├── @emotion/hash@0.6.6 deduped │ │ │ │ │ │ ├── @emotion/memoize@0.6.6 deduped │ │ │ │ │ │ ├── @emotion/unitless@0.6.7 │ │ │ │ │ │ └── @emotion/utils@0.8.2 │ │ │ │ │ ├── convert-source-map@1.6.0 deduped │ │ │ │ │ ├── find-root@1.1.0 deduped │ │ │ │ │ └── source-map@0.7.3 │ │ │ │ ├── @emotion/hash@0.6.6 │ │ │ │ ├── @emotion/memoize@0.6.6 │ │ │ │ ├── @emotion/stylis@0.7.1 │ │ │ │ ├── babel-plugin-macros@2.5.0 deduped │ │ │ │ ├── babel-plugin-syntax-jsx@6.18.0 deduped │ │ │ │ ├── convert-source-map@1.6.0 deduped │ │ │ │ ├── find-root@1.1.0 deduped │ │ │ │ ├── mkdirp@0.5.1 deduped │ │ │ │ ├── source-map@0.5.7 │ │ │ │ └─┬ touch@2.0.2 │ │ │ │ └─┬ nopt@1.0.10 │ │ │ │ └── abbrev@1.1.1 deduped │ │ │ └─┬ create-emotion@9.2.12 │ │ │ ├── @emotion/hash@0.6.6 │ │ │ ├── @emotion/memoize@0.6.6 │ │ │ ├── @emotion/stylis@0.7.1 │ │ │ ├── @emotion/unitless@0.6.7 │ │ │ ├── csstype@2.6.2 deduped │ │ │ ├── stylis@3.5.4 deduped │ │ │ └── stylis-rule-sheet@0.0.10 deduped │ │ ├── memoize-one@5.0.0 │ │ ├── prop-types@15.7.2 deduped │ │ ├─┬ raf@3.4.1 │ │ │ └── performance-now@2.1.0 deduped │ │ ├─┬ react-input-autosize@2.2.1 │ │ │ └── prop-types@15.7.2 deduped │ │ └── react-transition-group@2.6.0 deduped │ └── util-deprecate@1.0.2 deduped ├─┬ @storybook/addons@5.0.0 │ ├── @storybook/channels@5.0.0 │ ├── @storybook/client-logger@5.0.0 deduped │ ├── global@4.3.2 deduped │ └── util-deprecate@1.0.2 deduped ├─┬ @storybook/react@5.0.0 │ ├─┬ @babel/plugin-transform-react-constant-elements@7.2.0 │ │ ├─┬ @babel/helper-annotate-as-pure@7.0.0 │ │ │ └── @babel/types@7.3.4 deduped │ │ └── @babel/helper-plugin-utils@7.0.0 │ ├─┬ @babel/preset-flow@7.0.0 │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ └─┬ @babel/plugin-transform-flow-strip-types@7.3.4 │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ └─┬ @babel/plugin-syntax-flow@7.2.0 │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ ├─┬ @babel/preset-react@7.0.0 │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├─┬ @babel/plugin-transform-react-display-name@7.2.0 │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├─┬ @babel/plugin-transform-react-jsx@7.3.0 │ │ │ ├─┬ @babel/helper-builder-react-jsx@7.3.0 │ │ │ │ ├── @babel/types@7.3.4 deduped │ │ │ │ └── esutils@2.0.2 deduped │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ └─┬ @babel/plugin-syntax-jsx@7.2.0 │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├─┬ @babel/plugin-transform-react-jsx-self@7.2.0 │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ └── @babel/plugin-syntax-jsx@7.2.0 deduped │ │ └─┬ @babel/plugin-transform-react-jsx-source@7.2.0 │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ └── @babel/plugin-syntax-jsx@7.2.0 deduped │ ├─┬ @storybook/core@5.0.0 │ │ ├─┬ @babel/plugin-proposal-class-properties@7.3.4 │ │ │ ├─┬ @babel/helper-create-class-features-plugin@7.3.4 │ │ │ │ ├── @babel/helper-function-name@7.1.0 deduped │ │ │ │ ├── @babel/helper-member-expression-to-functions@7.0.0 deduped │ │ │ │ ├── @babel/helper-optimise-call-expression@7.0.0 deduped │ │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ │ ├── @babel/helper-replace-supers@7.3.4 deduped │ │ │ │ └── @babel/helper-split-export-declaration@7.0.0 deduped │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├─┬ @babel/plugin-proposal-object-rest-spread@7.3.4 │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ └── @babel/plugin-syntax-object-rest-spread@7.2.0 deduped │ │ ├─┬ @babel/plugin-syntax-dynamic-import@7.2.0 │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├── @babel/plugin-transform-react-constant-elements@7.2.0 deduped │ │ ├─┬ @babel/preset-env@7.3.4 │ │ │ ├── @babel/helper-module-imports@7.0.0 deduped │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ ├── @babel/plugin-proposal-async-generator-functions@7.2.0 deduped │ │ │ ├── @babel/plugin-proposal-json-strings@7.2.0 deduped │ │ │ ├── @babel/plugin-proposal-object-rest-spread@7.3.4 deduped │ │ │ ├── @babel/plugin-proposal-optional-catch-binding@7.2.0 deduped │ │ │ ├── @babel/plugin-proposal-unicode-property-regex@7.2.0 deduped │ │ │ ├── @babel/plugin-syntax-async-generators@7.2.0 deduped │ │ │ ├─┬ @babel/plugin-syntax-json-strings@7.2.0 │ │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ ├── @babel/plugin-syntax-object-rest-spread@7.2.0 deduped │ │ │ ├── @babel/plugin-syntax-optional-catch-binding@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-arrow-functions@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-async-to-generator@7.3.4 deduped │ │ │ ├── @babel/plugin-transform-block-scoped-functions@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-block-scoping@7.3.4 deduped │ │ │ ├── @babel/plugin-transform-classes@7.3.4 deduped │ │ │ ├── @babel/plugin-transform-computed-properties@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-destructuring@7.3.2 deduped │ │ │ ├── @babel/plugin-transform-dotall-regex@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-duplicate-keys@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-exponentiation-operator@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-for-of@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-function-name@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-literals@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-modules-amd@7.2.0 deduped │ │ │ ├─┬ @babel/plugin-transform-modules-commonjs@7.2.0 │ │ │ │ ├── @babel/helper-module-transforms@7.2.2 deduped │ │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ │ └── @babel/helper-simple-access@7.1.0 deduped │ │ │ ├── @babel/plugin-transform-modules-systemjs@7.3.4 deduped │ │ │ ├── @babel/plugin-transform-modules-umd@7.2.0 deduped │ │ │ ├─┬ @babel/plugin-transform-named-capturing-groups-regex@7.3.0 │ │ │ │ └── regexp-tree@0.1.5 │ │ │ ├── @babel/plugin-transform-new-target@7.0.0 deduped │ │ │ ├── @babel/plugin-transform-object-super@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-parameters@7.3.3 deduped │ │ │ ├── @babel/plugin-transform-regenerator@7.3.4 deduped │ │ │ ├── @babel/plugin-transform-shorthand-properties@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-spread@7.2.2 deduped │ │ │ ├── @babel/plugin-transform-sticky-regex@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-template-literals@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-typeof-symbol@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-unicode-regex@7.2.0 deduped │ │ │ ├── browserslist@4.4.2 deduped │ │ │ ├── invariant@2.2.4 deduped │ │ │ ├── js-levenshtein@1.1.6 deduped │ │ │ └── semver@5.6.0 deduped │ │ ├── @storybook/addons@5.0.0 deduped │ │ ├─┬ @storybook/channel-postmessage@5.0.0 │ │ │ ├── @storybook/channels@5.0.0 deduped │ │ │ ├── @storybook/client-logger@5.0.0 deduped │ │ │ ├── global@4.3.2 deduped │ │ │ └─┬ telejson@2.1.1 │ │ │ ├── global@4.3.2 deduped │ │ │ ├── is-function@1.0.1 │ │ │ ├── is-regex@1.0.4 deduped │ │ │ ├─┬ is-symbol@1.0.2 │ │ │ │ └── has-symbols@1.0.0 deduped │ │ │ ├── isobject@3.0.1 deduped │ │ │ ├── lodash.get@4.4.2 deduped │ │ │ ├── memoizerific@1.11.3 deduped │ │ │ └── safe-eval@0.4.1 │ │ ├─┬ @storybook/client-api@5.0.0 │ │ │ ├── @storybook/addons@5.0.0 deduped │ │ │ ├── @storybook/client-logger@5.0.0 deduped │ │ │ ├── @storybook/core-events@5.0.0 deduped │ │ │ ├── @storybook/router@5.0.0 deduped │ │ │ ├── common-tags@1.8.0 deduped │ │ │ ├── eventemitter3@3.1.0 │ │ │ ├── global@4.3.2 deduped │ │ │ ├── is-plain-object@2.0.4 deduped │ │ │ ├── lodash.debounce@4.0.8 │ │ │ ├── lodash.isequal@4.5.0 deduped │ │ │ ├── lodash.mergewith@4.6.1 deduped │ │ │ ├── memoizerific@1.11.3 deduped │ │ │ └── qs@6.5.2 deduped │ │ ├── @storybook/client-logger@5.0.0 deduped │ │ ├── @storybook/core-events@5.0.0 deduped │ │ ├── @storybook/node-logger@5.0.0 deduped │ │ ├── @storybook/router@5.0.0 deduped │ │ ├── @storybook/theming@5.0.0 deduped │ │ ├─┬ @storybook/ui@5.0.0 │ │ │ ├── @storybook/addons@5.0.0 deduped │ │ │ ├── @storybook/client-logger@5.0.0 deduped │ │ │ ├── @storybook/components@5.0.0 deduped │ │ │ ├── @storybook/core-events@5.0.0 deduped │ │ │ ├── @storybook/router@5.0.0 deduped │ │ │ ├── @storybook/theming@5.0.0 deduped │ │ │ ├── fast-deep-equal@2.0.1 deduped │ │ │ ├── fuzzy-search@3.0.1 │ │ │ ├── global@4.3.2 deduped │ │ │ ├─┬ history@4.7.2 │ │ │ │ ├── invariant@2.2.4 deduped │ │ │ │ ├── loose-envify@1.4.0 deduped │ │ │ │ ├── resolve-pathname@2.2.0 │ │ │ │ ├── value-equal@0.4.0 │ │ │ │ └─┬ warning@3.0.0 │ │ │ │ └── loose-envify@1.4.0 deduped │ │ │ ├── keycode@2.2.0 │ │ │ ├── lodash.debounce@4.0.8 deduped │ │ │ ├── lodash.isequal@4.5.0 deduped │ │ │ ├── lodash.mergewith@4.6.1 deduped │ │ │ ├── lodash.pick@4.4.0 deduped │ │ │ ├── lodash.sortby@4.7.0 │ │ │ ├── lodash.throttle@4.1.1 deduped │ │ │ ├─┬ markdown-to-jsx@6.9.1 │ │ │ │ ├── prop-types@15.7.2 deduped │ │ │ │ └── unquote@1.1.1 │ │ │ ├── memoizerific@1.11.3 deduped │ │ │ ├── polished@2.3.3 deduped │ │ │ ├── prop-types@15.7.2 deduped │ │ │ ├── qs@6.5.2 deduped │ │ │ ├── react@16.8.3 deduped │ │ │ ├── react-dom@16.8.3 deduped │ │ │ ├─┬ react-draggable@3.2.1 │ │ │ │ ├── classnames@2.2.6 deduped │ │ │ │ └── prop-types@15.7.2 deduped │ │ │ ├── react-helmet-async@0.2.0 deduped │ │ │ ├─┬ react-hotkeys@2.0.0-pre4 │ │ │ │ └── prop-types@15.7.2 deduped │ │ │ ├── react-lifecycles-compat@3.0.4 deduped │ │ │ ├─┬ react-modal@3.8.1 │ │ │ │ ├── exenv@1.2.2 │ │ │ │ ├── prop-types@15.7.2 deduped │ │ │ │ ├── react-lifecycles-compat@3.0.4 deduped │ │ │ │ └─┬ warning@3.0.0 │ │ │ │ └── loose-envify@1.4.0 deduped │ │ │ ├─┬ react-resize-detector@3.4.0 │ │ │ │ ├── lodash@4.17.11 deduped │ │ │ │ ├── lodash-es@4.17.11 │ │ │ │ ├── prop-types@15.7.2 deduped │ │ │ │ └── resize-observer-polyfill@1.5.1 │ │ │ ├── recompose@0.30.0 deduped │ │ │ ├── semver@5.6.0 deduped │ │ │ ├── telejson@2.1.1 deduped │ │ │ └── util-deprecate@1.0.2 deduped │ │ ├─┬ airbnb-js-shims@2.1.1 │ │ │ ├── array-includes@3.0.3 deduped │ │ │ ├─┬ array.prototype.flat@1.2.1 │ │ │ │ ├── define-properties@1.1.3 deduped │ │ │ │ ├── es-abstract@1.13.0 deduped │ │ │ │ └── function-bind@1.1.1 deduped │ │ │ ├─┬ array.prototype.flatmap@1.2.1 │ │ │ │ ├── define-properties@1.1.3 deduped │ │ │ │ ├── es-abstract@1.13.0 deduped │ │ │ │ └── function-bind@1.1.1 deduped │ │ │ ├── es5-shim@4.5.12 │ │ │ ├── es6-shim@0.35.4 │ │ │ ├─┬ function.prototype.name@1.1.0 │ │ │ │ ├── define-properties@1.1.3 deduped │ │ │ │ ├── function-bind@1.1.1 deduped │ │ │ │ └── is-callable@1.1.4 deduped │ │ │ ├── object.entries@1.1.0 deduped │ │ │ ├─┬ object.fromentries@1.0.0 │ │ │ │ ├── define-properties@1.1.3 deduped │ │ │ │ ├── es-abstract@1.13.0 deduped │ │ │ │ ├── function-bind@1.1.1 deduped │ │ │ │ └── has@1.0.3 deduped │ │ │ ├─┬ object.getownpropertydescriptors@2.0.3 │ │ │ │ ├── define-properties@1.1.3 deduped │ │ │ │ └── es-abstract@1.13.0 deduped │ │ │ ├─┬ object.values@1.1.0 │ │ │ │ ├── define-properties@1.1.3 deduped │ │ │ │ ├── es-abstract@1.13.0 deduped │ │ │ │ ├── function-bind@1.1.1 deduped │ │ │ │ └── has@1.0.3 deduped │ │ │ ├─┬ promise.prototype.finally@3.1.0 │ │ │ │ ├── define-properties@1.1.3 deduped │ │ │ │ ├── es-abstract@1.13.0 deduped │ │ │ │ └── function-bind@1.1.1 deduped │ │ │ ├─┬ string.prototype.matchall@3.0.1 │ │ │ │ ├── define-properties@1.1.3 deduped │ │ │ │ ├── es-abstract@1.13.0 deduped │ │ │ │ ├── function-bind@1.1.1 deduped │ │ │ │ ├── has-symbols@1.0.0 deduped │ │ │ │ └─┬ regexp.prototype.flags@1.2.0 │ │ │ │ └── define-properties@1.1.3 deduped │ │ │ ├─┬ string.prototype.padend@3.0.0 │ │ │ │ ├── define-properties@1.1.3 deduped │ │ │ │ ├── es-abstract@1.13.0 deduped │ │ │ │ └── function-bind@1.1.1 deduped │ │ │ ├─┬ string.prototype.padstart@3.0.0 │ │ │ │ ├── define-properties@1.1.3 deduped │ │ │ │ ├── es-abstract@1.13.0 deduped │ │ │ │ └── function-bind@1.1.1 deduped │ │ │ └─┬ symbol.prototype.description@1.0.0 │ │ │ └── has-symbols@1.0.0 deduped │ │ ├─┬ autoprefixer@9.4.10 │ │ │ ├── browserslist@4.4.2 deduped │ │ │ ├── caniuse-lite@1.0.30000941 │ │ │ ├── normalize-range@0.1.2 │ │ │ ├── num2fraction@1.2.2 │ │ │ ├─┬ postcss@7.0.14 │ │ │ │ ├─┬ 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 deduped │ │ │ └── postcss-value-parser@3.3.1 deduped │ │ ├── babel-plugin-add-react-displayname@0.0.5 │ │ ├─┬ babel-plugin-emotion@10.0.7 │ │ │ ├── @babel/helper-module-imports@7.0.0 deduped │ │ │ ├── @emotion/hash@0.7.1 deduped │ │ │ ├── @emotion/memoize@0.7.1 │ │ │ ├── @emotion/serialize@0.11.4 deduped │ │ │ ├── babel-plugin-macros@2.5.0 deduped │ │ │ ├── babel-plugin-syntax-jsx@6.18.0 deduped │ │ │ ├── convert-source-map@1.6.0 deduped │ │ │ ├── escape-string-regexp@1.0.5 deduped │ │ │ ├── find-root@1.1.0 │ │ │ └── source-map@0.5.7 │ │ ├─┬ babel-plugin-macros@2.5.0 │ │ │ ├─┬ cosmiconfig@5.1.0 │ │ │ │ ├── import-fresh@2.0.0 deduped │ │ │ │ ├── is-directory@0.3.1 deduped │ │ │ │ ├── js-yaml@3.12.2 deduped │ │ │ │ ├── lodash.get@4.4.2 deduped │ │ │ │ └── parse-json@4.0.0 deduped │ │ │ └─┬ resolve@1.10.0 │ │ │ └── path-parse@1.0.6 deduped │ │ ├─┬ babel-preset-minify@0.5.0 │ │ │ ├── babel-plugin-minify-builtins@0.5.0 │ │ │ ├─┬ babel-plugin-minify-constant-folding@0.5.0 │ │ │ │ └── babel-helper-evaluate-path@0.5.0 │ │ │ ├─┬ babel-plugin-minify-dead-code-elimination@0.5.0 │ │ │ │ ├── babel-helper-evaluate-path@0.5.0 deduped │ │ │ │ ├── babel-helper-mark-eval-scopes@0.4.3 │ │ │ │ ├── babel-helper-remove-or-void@0.4.3 │ │ │ │ └── lodash.some@4.6.0 │ │ │ ├─┬ babel-plugin-minify-flip-comparisons@0.4.3 │ │ │ │ └── babel-helper-is-void-0@0.4.3 │ │ │ ├─┬ babel-plugin-minify-guarded-expressions@0.4.3 │ │ │ │ └── babel-helper-flip-expressions@0.4.3 │ │ │ ├── babel-plugin-minify-infinity@0.4.3 │ │ │ ├─┬ babel-plugin-minify-mangle-names@0.5.0 │ │ │ │ └── babel-helper-mark-eval-scopes@0.4.3 deduped │ │ │ ├── babel-plugin-minify-numeric-literals@0.4.3 │ │ │ ├── babel-plugin-minify-replace@0.5.0 │ │ │ ├─┬ babel-plugin-minify-simplify@0.5.0 │ │ │ │ ├── babel-helper-flip-expressions@0.4.3 deduped │ │ │ │ ├── babel-helper-is-nodes-equiv@0.0.1 │ │ │ │ └── babel-helper-to-multiple-sequence-expressions@0.5.0 │ │ │ ├─┬ babel-plugin-minify-type-constructors@0.4.3 │ │ │ │ └── babel-helper-is-void-0@0.4.3 deduped │ │ │ ├── babel-plugin-transform-inline-consecutive-adds@0.4.3 │ │ │ ├── babel-plugin-transform-member-expression-literals@6.9.4 │ │ │ ├── babel-plugin-transform-merge-sibling-variables@6.9.4 │ │ │ ├── babel-plugin-transform-minify-booleans@6.9.4 │ │ │ ├─┬ babel-plugin-transform-property-literals@6.9.4 │ │ │ │ └── esutils@2.0.2 deduped │ │ │ ├── babel-plugin-transform-regexp-constructors@0.4.3 │ │ │ ├── babel-plugin-transform-remove-console@6.9.4 │ │ │ ├── babel-plugin-transform-remove-debugger@6.9.4 │ │ │ ├─┬ babel-plugin-transform-remove-undefined@0.5.0 │ │ │ │ └── babel-helper-evaluate-path@0.5.0 deduped │ │ │ ├── babel-plugin-transform-simplify-comparison-operators@6.9.4 │ │ │ ├── babel-plugin-transform-undefined-to-void@6.9.4 │ │ │ └── lodash.isplainobject@4.0.6 │ │ ├─┬ boxen@2.1.0 │ │ │ ├─┬ ansi-align@3.0.0 │ │ │ │ └─┬ string-width@3.0.0 │ │ │ │ ├── emoji-regex@7.0.3 deduped │ │ │ │ ├── is-fullwidth-code-point@2.0.0 │ │ │ │ └─┬ strip-ansi@5.0.0 │ │ │ │ └── ansi-regex@4.0.0 │ │ │ ├── camelcase@5.2.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-boxes@1.0.0 │ │ │ ├─┬ string-width@3.0.0 │ │ │ │ ├── emoji-regex@7.0.3 deduped │ │ │ │ ├── is-fullwidth-code-point@2.0.0 │ │ │ │ └─┬ strip-ansi@5.0.0 │ │ │ │ └── ansi-regex@4.0.0 │ │ │ ├─┬ term-size@1.2.0 │ │ │ │ └── execa@0.7.0 deduped │ │ │ └─┬ widest-line@2.0.1 │ │ │ └─┬ string-width@2.1.1 │ │ │ ├── is-fullwidth-code-point@2.0.0 │ │ │ └─┬ strip-ansi@4.0.0 │ │ │ └── ansi-regex@3.0.0 │ │ ├── case-sensitive-paths-webpack-plugin@2.2.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 │ │ ├─┬ child-process-promise@2.2.1 │ │ │ ├─┬ cross-spawn@4.0.2 │ │ │ │ ├── lru-cache@4.1.5 deduped │ │ │ │ └── which@1.3.1 deduped │ │ │ ├── node-version@1.2.0 │ │ │ └── promise-polyfill@6.1.0 │ │ ├─┬ cli-table3@0.5.1 │ │ │ ├── colors@1.3.3 │ │ │ ├── object-assign@4.1.1 deduped │ │ │ └─┬ string-width@2.1.1 │ │ │ ├── is-fullwidth-code-point@2.0.0 │ │ │ └─┬ strip-ansi@4.0.0 │ │ │ └── ansi-regex@3.0.0 │ │ ├── commander@2.19.0 │ │ ├── common-tags@1.8.0 deduped │ │ ├── core-js@2.6.5 │ │ ├─┬ css-loader@2.1.0 │ │ │ ├─┬ icss-utils@4.1.0 │ │ │ │ └── postcss@7.0.14 deduped │ │ │ ├── loader-utils@1.2.3 deduped │ │ │ ├── lodash@4.17.11 deduped │ │ │ ├─┬ postcss@7.0.14 │ │ │ │ ├── chalk@2.4.2 deduped │ │ │ │ ├── source-map@0.6.1 deduped │ │ │ │ └─┬ supports-color@6.1.0 │ │ │ │ └── has-flag@3.0.0 deduped │ │ │ ├─┬ postcss-modules-extract-imports@2.0.0 │ │ │ │ └── postcss@7.0.14 deduped │ │ │ ├─┬ postcss-modules-local-by-default@2.0.6 │ │ │ │ ├── postcss@7.0.14 deduped │ │ │ │ ├─┬ postcss-selector-parser@6.0.0 │ │ │ │ │ ├── cssesc@3.0.0 │ │ │ │ │ ├── indexes-of@1.0.1 deduped │ │ │ │ │ └── uniq@1.0.1 deduped │ │ │ │ └── postcss-value-parser@3.3.1 deduped │ │ │ ├─┬ postcss-modules-scope@2.0.1 │ │ │ │ ├── css-selector-tokenizer@0.7.1 deduped │ │ │ │ └── postcss@7.0.14 deduped │ │ │ ├─┬ postcss-modules-values@2.0.0 │ │ │ │ ├── icss-replace-symbols@1.1.0 │ │ │ │ └── postcss@7.0.14 deduped │ │ │ ├── postcss-value-parser@3.3.1 │ │ │ └── schema-utils@1.0.0 deduped │ │ ├─┬ detect-port@1.3.0 │ │ │ ├── address@1.0.3 deduped │ │ │ └── debug@2.6.9 deduped │ │ ├─┬ dotenv-webpack@1.7.0 │ │ │ └─┬ dotenv-defaults@1.0.2 │ │ │ └── dotenv@6.2.0 deduped │ │ ├── ejs@2.6.1 │ │ ├── express@4.16.4 deduped │ │ ├─┬ file-loader@3.0.1 │ │ │ ├── loader-utils@1.2.3 deduped │ │ │ └── schema-utils@1.0.0 deduped │ │ ├─┬ file-system-cache@1.0.5 │ │ │ ├── bluebird@3.5.3 deduped │ │ │ ├─┬ fs-extra@0.30.0 │ │ │ │ ├── graceful-fs@4.1.15 deduped │ │ │ │ ├─┬ jsonfile@2.4.0 │ │ │ │ │ └── graceful-fs@4.1.15 deduped │ │ │ │ ├─┬ klaw@1.3.1 │ │ │ │ │ └── graceful-fs@4.1.15 deduped │ │ │ │ ├── path-is-absolute@1.0.1 deduped │ │ │ │ └── rimraf@2.6.3 deduped │ │ │ └── ramda@0.21.0 │ │ ├── find-cache-dir@2.0.0 deduped │ │ ├─┬ fs-extra@7.0.1 │ │ │ ├── graceful-fs@4.1.15 deduped │ │ │ ├─┬ jsonfile@4.0.0 │ │ │ │ └── graceful-fs@4.1.15 deduped │ │ │ └── universalify@0.1.2 │ │ ├── global@4.3.2 deduped │ │ ├─┬ html-webpack-plugin@4.0.0-beta.5 │ │ │ ├─┬ html-minifier@3.5.21 │ │ │ │ ├─┬ camel-case@3.0.0 │ │ │ │ │ ├─┬ no-case@2.3.2 │ │ │ │ │ │ └── lower-case@1.1.4 │ │ │ │ │ └── upper-case@1.1.3 │ │ │ │ ├─┬ clean-css@4.2.1 │ │ │ │ │ └── source-map@0.6.1 deduped │ │ │ │ ├── commander@2.17.1 deduped │ │ │ │ ├── he@1.2.0 deduped │ │ │ │ ├─┬ param-case@2.1.1 │ │ │ │ │ └── no-case@2.3.2 deduped │ │ │ │ ├── relateurl@0.2.7 │ │ │ │ └─┬ uglify-js@3.4.9 │ │ │ │ ├── commander@2.17.1 deduped │ │ │ │ └── source-map@0.6.1 deduped │ │ │ ├── loader-utils@1.2.3 deduped │ │ │ ├── lodash@4.17.11 deduped │ │ │ ├── pretty-error@2.1.1 deduped │ │ │ ├── tapable@1.1.1 deduped │ │ │ └── util.promisify@1.0.0 deduped │ │ ├── inquirer@6.2.2 deduped │ │ ├── interpret@1.2.0 │ │ ├── ip@1.1.5 │ │ ├─┬ json5@2.1.0 │ │ │ └── minimist@1.2.0 deduped │ │ ├─┬ lazy-universal-dotenv@2.0.0 │ │ │ ├── @babel/runtime@7.3.4 deduped │ │ │ ├── app-root-dir@1.0.2 │ │ │ ├── core-js@2.6.5 │ │ │ ├── dotenv@6.2.0 │ │ │ └── dotenv-expand@4.2.0 │ │ ├── node-fetch@2.3.0 │ │ ├─┬ object.omit@3.0.0 │ │ │ └─┬ is-extendable@1.0.1 │ │ │ └── is-plain-object@2.0.4 deduped │ │ ├─┬ opn@5.4.0 │ │ │ └── is-wsl@1.1.0 │ │ ├─┬ postcss-flexbugs-fixes@4.1.0 │ │ │ └─┬ postcss@7.0.14 │ │ │ ├─┬ 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 deduped │ │ ├─┬ postcss-loader@3.0.0 │ │ │ ├── loader-utils@1.2.3 deduped │ │ │ ├─┬ postcss@7.0.14 │ │ │ │ ├─┬ 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 deduped │ │ │ ├─┬ postcss-load-config@2.0.0 │ │ │ │ ├─┬ cosmiconfig@4.0.0 │ │ │ │ │ ├── is-directory@0.3.1 deduped │ │ │ │ │ ├── js-yaml@3.12.2 deduped │ │ │ │ │ ├── parse-json@4.0.0 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 │ │ ├── pretty-hrtime@1.0.3 │ │ ├── prop-types@15.7.2 deduped │ │ ├─┬ raw-loader@1.0.0 │ │ │ ├── loader-utils@1.2.3 deduped │ │ │ └── schema-utils@1.0.0 deduped │ │ ├── react-dev-utils@7.0.3 deduped │ │ ├── regenerator-runtime@0.12.1 deduped │ │ ├─┬ resolve@1.10.0 │ │ │ └── path-parse@1.0.6 deduped │ │ ├── resolve-from@4.0.0 │ │ ├── semver@5.6.0 deduped │ │ ├─┬ serve-favicon@2.5.0 │ │ │ ├── etag@1.8.1 deduped │ │ │ ├── fresh@0.5.2 deduped │ │ │ ├── ms@2.1.1 │ │ │ ├── parseurl@1.3.2 deduped │ │ │ └── safe-buffer@5.1.1 │ │ ├── shelljs@0.8.3 deduped │ │ ├─┬ spawn-promise@0.1.8 │ │ │ └── co@4.6.0 │ │ ├─┬ style-loader@0.23.1 │ │ │ ├── loader-utils@1.2.3 deduped │ │ │ └── schema-utils@1.0.0 deduped │ │ ├─┬ svg-url-loader@2.3.2 │ │ │ ├─┬ file-loader@1.1.11 │ │ │ │ ├── loader-utils@1.1.0 deduped │ │ │ │ └─┬ schema-utils@0.4.7 │ │ │ │ ├── ajv@6.10.0 deduped │ │ │ │ └── ajv-keywords@3.4.0 deduped │ │ │ └─┬ loader-utils@1.1.0 │ │ │ ├── big.js@3.2.0 │ │ │ ├── emojis-list@2.1.0 deduped │ │ │ └── json5@0.5.1 │ │ ├─┬ terser-webpack-plugin@1.2.3 │ │ │ ├── cacache@11.3.2 deduped │ │ │ ├── find-cache-dir@2.0.0 deduped │ │ │ ├── schema-utils@1.0.0 deduped │ │ │ ├── serialize-javascript@1.4.0 deduped │ │ │ ├── source-map@0.6.1 deduped │ │ │ ├── terser@3.16.1 deduped │ │ │ ├── webpack-sources@1.3.0 deduped │ │ │ └── worker-farm@1.5.2 deduped │ │ ├─┬ url-loader@1.1.2 │ │ │ ├── loader-utils@1.2.3 deduped │ │ │ ├── mime@2.4.0 │ │ │ └── schema-utils@1.0.0 deduped │ │ ├── util-deprecate@1.0.2 deduped │ │ ├── webpack@4.29.0 deduped │ │ ├─┬ webpack-dev-middleware@3.6.0 │ │ │ ├── memory-fs@0.4.1 deduped │ │ │ ├── mime@2.4.0 │ │ │ ├── range-parser@1.2.0 deduped │ │ │ └── webpack-log@2.0.0 deduped │ │ └── webpack-hot-middleware@2.24.3 deduped │ ├─┬ @storybook/node-logger@5.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 │ │ ├── core-js@2.6.5 │ │ ├── npmlog@4.1.2 deduped │ │ ├── pretty-hrtime@1.0.3 deduped │ │ └── regenerator-runtime@0.12.1 deduped │ ├── @storybook/theming@5.0.0 deduped │ ├─┬ @svgr/webpack@4.1.0 │ │ ├─┬ @babel/core@7.3.4 │ │ │ ├── @babel/code-frame@7.0.0 deduped │ │ │ ├── @babel/generator@7.3.4 deduped │ │ │ ├── @babel/helpers@7.3.1 deduped │ │ │ ├── @babel/parser@7.3.4 deduped │ │ │ ├─┬ @babel/template@7.2.2 │ │ │ │ ├── @babel/code-frame@7.0.0 deduped │ │ │ │ ├── @babel/parser@7.3.4 deduped │ │ │ │ └── @babel/types@7.3.4 deduped │ │ │ ├── @babel/traverse@7.3.4 deduped │ │ │ ├── @babel/types@7.3.4 deduped │ │ │ ├── convert-source-map@1.6.0 deduped │ │ │ ├─┬ debug@4.1.1 │ │ │ │ └── ms@2.1.1 │ │ │ ├─┬ json5@2.1.0 │ │ │ │ └── minimist@1.2.0 deduped │ │ │ ├── lodash@4.17.11 deduped │ │ │ ├── resolve@1.5.0 deduped │ │ │ ├── semver@5.6.0 deduped │ │ │ └── source-map@0.5.7 │ │ ├── @babel/plugin-transform-react-constant-elements@7.2.0 deduped │ │ ├─┬ @babel/preset-env@7.3.4 │ │ │ ├── @babel/helper-module-imports@7.0.0 deduped │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ ├── @babel/plugin-proposal-async-generator-functions@7.2.0 deduped │ │ │ ├── @babel/plugin-proposal-json-strings@7.2.0 deduped │ │ │ ├─┬ @babel/plugin-proposal-object-rest-spread@7.3.4 │ │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ │ └── @babel/plugin-syntax-object-rest-spread@7.2.0 deduped │ │ │ ├── @babel/plugin-proposal-optional-catch-binding@7.2.0 deduped │ │ │ ├── @babel/plugin-proposal-unicode-property-regex@7.2.0 deduped │ │ │ ├── @babel/plugin-syntax-async-generators@7.2.0 deduped │ │ │ ├── @babel/plugin-syntax-json-strings@7.2.0 deduped │ │ │ ├── @babel/plugin-syntax-object-rest-spread@7.2.0 deduped │ │ │ ├── @babel/plugin-syntax-optional-catch-binding@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-arrow-functions@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-async-to-generator@7.3.4 deduped │ │ │ ├── @babel/plugin-transform-block-scoped-functions@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-block-scoping@7.3.4 deduped │ │ │ ├── @babel/plugin-transform-classes@7.3.4 deduped │ │ │ ├── @babel/plugin-transform-computed-properties@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-destructuring@7.3.2 deduped │ │ │ ├── @babel/plugin-transform-dotall-regex@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-duplicate-keys@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-exponentiation-operator@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-for-of@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-function-name@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-literals@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-modules-amd@7.2.0 deduped │ │ │ ├─┬ @babel/plugin-transform-modules-commonjs@7.2.0 │ │ │ │ ├── @babel/helper-module-transforms@7.2.2 deduped │ │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ │ └── @babel/helper-simple-access@7.1.0 deduped │ │ │ ├── @babel/plugin-transform-modules-systemjs@7.3.4 deduped │ │ │ ├── @babel/plugin-transform-modules-umd@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-named-capturing-groups-regex@7.3.0 deduped │ │ │ ├── @babel/plugin-transform-new-target@7.0.0 deduped │ │ │ ├── @babel/plugin-transform-object-super@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-parameters@7.3.3 deduped │ │ │ ├── @babel/plugin-transform-regenerator@7.3.4 deduped │ │ │ ├── @babel/plugin-transform-shorthand-properties@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-spread@7.2.2 deduped │ │ │ ├── @babel/plugin-transform-sticky-regex@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-template-literals@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-typeof-symbol@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-unicode-regex@7.2.0 deduped │ │ │ ├── browserslist@4.4.2 deduped │ │ │ ├── invariant@2.2.4 deduped │ │ │ ├── js-levenshtein@1.1.6 deduped │ │ │ └── semver@5.6.0 deduped │ │ ├── @babel/preset-react@7.0.0 deduped │ │ ├─┬ @svgr/core@4.1.0 │ │ │ ├── @svgr/plugin-jsx@4.1.0 deduped │ │ │ ├── camelcase@5.2.0 deduped │ │ │ └─┬ cosmiconfig@5.1.0 │ │ │ ├── import-fresh@2.0.0 deduped │ │ │ ├── is-directory@0.3.1 deduped │ │ │ ├── js-yaml@3.12.2 deduped │ │ │ ├── lodash.get@4.4.2 deduped │ │ │ └── parse-json@4.0.0 deduped │ │ ├─┬ @svgr/plugin-jsx@4.1.0 │ │ │ ├─┬ @babel/core@7.3.4 │ │ │ │ ├── @babel/code-frame@7.0.0 deduped │ │ │ │ ├── @babel/generator@7.3.4 deduped │ │ │ │ ├── @babel/helpers@7.3.1 deduped │ │ │ │ ├── @babel/parser@7.3.4 deduped │ │ │ │ ├─┬ @babel/template@7.2.2 │ │ │ │ │ ├── @babel/code-frame@7.0.0 deduped │ │ │ │ │ ├── @babel/parser@7.3.4 deduped │ │ │ │ │ └── @babel/types@7.3.4 deduped │ │ │ │ ├── @babel/traverse@7.3.4 deduped │ │ │ │ ├── @babel/types@7.3.4 deduped │ │ │ │ ├── convert-source-map@1.6.0 deduped │ │ │ │ ├─┬ debug@4.1.1 │ │ │ │ │ └── ms@2.1.1 │ │ │ │ ├─┬ json5@2.1.0 │ │ │ │ │ └── minimist@1.2.0 deduped │ │ │ │ ├── lodash@4.17.11 deduped │ │ │ │ ├── resolve@1.5.0 deduped │ │ │ │ ├── semver@5.6.0 deduped │ │ │ │ └── source-map@0.5.7 │ │ │ ├─┬ @svgr/babel-preset@4.1.0 │ │ │ │ ├── @svgr/babel-plugin-add-jsx-attribute@4.0.0 │ │ │ │ ├── @svgr/babel-plugin-remove-jsx-attribute@4.0.3 │ │ │ │ ├── @svgr/babel-plugin-remove-jsx-empty-expression@4.0.0 │ │ │ │ ├── @svgr/babel-plugin-replace-jsx-attribute-value@4.0.0 │ │ │ │ ├── @svgr/babel-plugin-svg-dynamic-title@4.0.0 │ │ │ │ ├── @svgr/babel-plugin-svg-em-dimensions@4.0.0 │ │ │ │ ├── @svgr/babel-plugin-transform-react-native-svg@4.0.0 │ │ │ │ └── @svgr/babel-plugin-transform-svg-component@4.1.0 │ │ │ ├─┬ @svgr/hast-util-to-babel-ast@4.1.0 │ │ │ │ └── @babel/types@7.3.4 deduped │ │ │ ├─┬ rehype-parse@6.0.0 │ │ │ │ ├─┬ hast-util-from-parse5@5.0.0 │ │ │ │ │ ├── ccount@1.0.3 │ │ │ │ │ ├── hastscript@5.0.0 deduped │ │ │ │ │ ├── property-information@5.0.1 deduped │ │ │ │ │ ├── web-namespaces@1.1.2 │ │ │ │ │ └── xtend@4.0.1 deduped │ │ │ │ ├── parse5@5.1.0 │ │ │ │ └── xtend@4.0.1 deduped │ │ │ ├─┬ unified@7.1.0 │ │ │ │ ├── @types/unist@2.0.3 │ │ │ │ ├─┬ @types/vfile@3.0.2 │ │ │ │ │ ├── @types/node@10.12.29 deduped │ │ │ │ │ ├── @types/unist@2.0.3 deduped │ │ │ │ │ └─┬ @types/vfile-message@1.0.1 │ │ │ │ │ ├── @types/node@10.12.29 deduped │ │ │ │ │ └── @types/unist@2.0.3 deduped │ │ │ │ ├── bail@1.0.3 │ │ │ │ ├── extend@3.0.2 deduped │ │ │ │ ├── is-plain-obj@1.1.0 │ │ │ │ ├── trough@1.0.3 │ │ │ │ ├── vfile@3.0.1 deduped │ │ │ │ └── x-is-string@0.1.0 │ │ │ └─┬ vfile@3.0.1 │ │ │ ├── is-buffer@2.0.3 │ │ │ ├── replace-ext@1.0.0 │ │ │ ├── unist-util-stringify-position@1.1.2 │ │ │ └─┬ vfile-message@1.1.1 │ │ │ └── unist-util-stringify-position@1.1.2 deduped │ │ ├─┬ @svgr/plugin-svgo@4.0.3 │ │ │ ├─┬ cosmiconfig@5.1.0 │ │ │ │ ├── import-fresh@2.0.0 deduped │ │ │ │ ├── is-directory@0.3.1 deduped │ │ │ │ ├── js-yaml@3.12.2 deduped │ │ │ │ ├── lodash.get@4.4.2 deduped │ │ │ │ └── parse-json@4.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 deduped │ │ │ │ │ ├── is-plain-object@2.0.4 deduped │ │ │ │ │ ├── kind-of@3.2.2 deduped │ │ │ │ │ ├── lazy-cache@1.0.4 │ │ │ │ │ └── shallow-clone@0.1.2 deduped │ │ │ │ └── kind-of@3.2.2 deduped │ │ │ └─┬ svgo@1.2.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.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 │ │ │ │ └── q@1.5.1 │ │ │ ├─┬ css-select@2.0.2 │ │ │ │ ├── boolbase@1.0.0 deduped │ │ │ │ ├── css-what@2.1.3 deduped │ │ │ │ ├─┬ domutils@1.7.0 │ │ │ │ │ ├── dom-serializer@0.1.1 deduped │ │ │ │ │ └── domelementtype@1.3.1 deduped │ │ │ │ └── nth-check@1.0.2 deduped │ │ │ ├── css-select-base-adapter@0.1.1 │ │ │ ├─┬ css-tree@1.0.0-alpha.28 │ │ │ │ ├── mdn-data@1.1.4 │ │ │ │ └── source-map@0.5.7 │ │ │ ├── css-url-regex@1.1.0 │ │ │ ├─┬ csso@3.5.1 │ │ │ │ └─┬ css-tree@1.0.0-alpha.29 │ │ │ │ ├── mdn-data@1.1.4 deduped │ │ │ │ └── source-map@0.5.7 │ │ │ ├── js-yaml@3.12.2 deduped │ │ │ ├── mkdirp@0.5.1 deduped │ │ │ ├── object.values@1.1.0 deduped │ │ │ ├── sax@1.2.4 │ │ │ ├── stable@0.1.8 │ │ │ ├── unquote@1.1.1 deduped │ │ │ └── util.promisify@1.0.0 deduped │ │ └── loader-utils@1.2.3 deduped │ ├── babel-plugin-named-asset-import@0.3.1 │ ├─┬ babel-plugin-react-docgen@2.0.2 │ │ ├── lodash@4.17.11 deduped │ │ ├─┬ react-docgen@3.0.0 │ │ │ ├── @babel/parser@7.3.4 deduped │ │ │ ├── @babel/runtime@7.3.4 deduped │ │ │ ├── async@2.6.2 deduped │ │ │ ├── commander@2.19.0 │ │ │ ├── doctrine@2.1.0 deduped │ │ │ ├─┬ node-dir@0.1.17 │ │ │ │ └── minimatch@3.0.4 deduped │ │ │ └─┬ recast@0.16.2 │ │ │ ├── ast-types@0.11.7 │ │ │ ├── esprima@4.0.1 deduped │ │ │ ├── private@0.1.8 deduped │ │ │ └── source-map@0.6.1 deduped │ │ └─┬ recast@0.14.7 │ │ ├── ast-types@0.11.3 │ │ ├── esprima@4.0.1 deduped │ │ ├── private@0.1.8 │ │ └── source-map@0.6.1 deduped │ ├─┬ babel-preset-react-app@7.0.1 │ │ ├─┬ @babel/core@7.2.2 │ │ │ ├── @babel/code-frame@7.0.0 deduped │ │ │ ├── @babel/generator@7.3.4 deduped │ │ │ ├── @babel/helpers@7.3.1 deduped │ │ │ ├── @babel/parser@7.3.4 deduped │ │ │ ├─┬ @babel/template@7.2.2 │ │ │ │ ├── @babel/code-frame@7.0.0 deduped │ │ │ │ ├── @babel/parser@7.3.4 deduped │ │ │ │ └── @babel/types@7.3.4 deduped │ │ │ ├── @babel/traverse@7.3.4 deduped │ │ │ ├── @babel/types@7.3.4 deduped │ │ │ ├── convert-source-map@1.6.0 deduped │ │ │ ├─┬ debug@4.1.1 │ │ │ │ └── ms@2.1.1 │ │ │ ├─┬ json5@2.1.0 │ │ │ │ └── minimist@1.2.0 deduped │ │ │ ├── lodash@4.17.11 deduped │ │ │ ├── resolve@1.5.0 deduped │ │ │ ├── semver@5.6.0 deduped │ │ │ └── source-map@0.5.7 │ │ ├─┬ @babel/plugin-proposal-class-properties@7.3.0 │ │ │ ├── @babel/helper-create-class-features-plugin@7.3.4 deduped │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├─┬ @babel/plugin-proposal-decorators@7.3.0 │ │ │ ├── @babel/helper-create-class-features-plugin@7.3.4 deduped │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ └─┬ @babel/plugin-syntax-decorators@7.2.0 │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├─┬ @babel/plugin-proposal-object-rest-spread@7.3.2 │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ └── @babel/plugin-syntax-object-rest-spread@7.2.0 deduped │ │ ├─┬ @babel/plugin-syntax-dynamic-import@7.2.0 │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├─┬ @babel/plugin-transform-classes@7.2.2 │ │ │ ├── @babel/helper-annotate-as-pure@7.0.0 deduped │ │ │ ├─┬ @babel/helper-define-map@7.1.0 │ │ │ │ ├── @babel/helper-function-name@7.1.0 deduped │ │ │ │ ├── @babel/types@7.3.4 deduped │ │ │ │ └── lodash@4.17.11 deduped │ │ │ ├── @babel/helper-function-name@7.1.0 deduped │ │ │ ├── @babel/helper-optimise-call-expression@7.0.0 deduped │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ ├── @babel/helper-replace-supers@7.3.4 deduped │ │ │ ├── @babel/helper-split-export-declaration@7.0.0 deduped │ │ │ └── globals@11.11.0 deduped │ │ ├─┬ @babel/plugin-transform-destructuring@7.3.2 │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├─┬ @babel/plugin-transform-flow-strip-types@7.2.3 │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ └── @babel/plugin-syntax-flow@7.2.0 deduped │ │ ├── @babel/plugin-transform-react-constant-elements@7.2.0 deduped │ │ ├── @babel/plugin-transform-react-display-name@7.2.0 deduped │ │ ├─┬ @babel/plugin-transform-runtime@7.2.0 │ │ │ ├── @babel/helper-module-imports@7.0.0 deduped │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ ├─┬ resolve@1.10.0 │ │ │ │ └── path-parse@1.0.6 deduped │ │ │ └── semver@5.6.0 deduped │ │ ├─┬ @babel/preset-env@7.3.1 │ │ │ ├── @babel/helper-module-imports@7.0.0 deduped │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ ├── @babel/plugin-proposal-async-generator-functions@7.2.0 deduped │ │ │ ├── @babel/plugin-proposal-json-strings@7.2.0 deduped │ │ │ ├── @babel/plugin-proposal-object-rest-spread@7.3.2 deduped │ │ │ ├── @babel/plugin-proposal-optional-catch-binding@7.2.0 deduped │ │ │ ├── @babel/plugin-proposal-unicode-property-regex@7.2.0 deduped │ │ │ ├── @babel/plugin-syntax-async-generators@7.2.0 deduped │ │ │ ├── @babel/plugin-syntax-json-strings@7.2.0 deduped │ │ │ ├── @babel/plugin-syntax-object-rest-spread@7.2.0 deduped │ │ │ ├── @babel/plugin-syntax-optional-catch-binding@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-arrow-functions@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-async-to-generator@7.3.4 deduped │ │ │ ├── @babel/plugin-transform-block-scoped-functions@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-block-scoping@7.3.4 deduped │ │ │ ├── @babel/plugin-transform-classes@7.2.2 deduped │ │ │ ├── @babel/plugin-transform-computed-properties@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-destructuring@7.3.2 deduped │ │ │ ├── @babel/plugin-transform-dotall-regex@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-duplicate-keys@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-exponentiation-operator@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-for-of@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-function-name@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-literals@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-modules-amd@7.2.0 deduped │ │ │ ├─┬ @babel/plugin-transform-modules-commonjs@7.2.0 │ │ │ │ ├── @babel/helper-module-transforms@7.2.2 deduped │ │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ │ └── @babel/helper-simple-access@7.1.0 deduped │ │ │ ├── @babel/plugin-transform-modules-systemjs@7.3.4 deduped │ │ │ ├── @babel/plugin-transform-modules-umd@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-named-capturing-groups-regex@7.3.0 deduped │ │ │ ├── @babel/plugin-transform-new-target@7.0.0 deduped │ │ │ ├── @babel/plugin-transform-object-super@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-parameters@7.3.3 deduped │ │ │ ├── @babel/plugin-transform-regenerator@7.3.4 deduped │ │ │ ├── @babel/plugin-transform-shorthand-properties@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-spread@7.2.2 deduped │ │ │ ├── @babel/plugin-transform-sticky-regex@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-template-literals@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-typeof-symbol@7.2.0 deduped │ │ │ ├── @babel/plugin-transform-unicode-regex@7.2.0 deduped │ │ │ ├── browserslist@4.4.2 deduped │ │ │ ├── invariant@2.2.4 deduped │ │ │ ├── js-levenshtein@1.1.6 deduped │ │ │ └── semver@5.6.0 deduped │ │ ├── @babel/preset-react@7.0.0 deduped │ │ ├─┬ @babel/preset-typescript@7.1.0 │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ └─┬ @babel/plugin-transform-typescript@7.3.2 │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ └─┬ @babel/plugin-syntax-typescript@7.3.3 │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├─┬ @babel/runtime@7.3.1 │ │ │ └── regenerator-runtime@0.12.1 deduped │ │ ├─┬ babel-loader@8.0.5 │ │ │ ├── find-cache-dir@2.0.0 deduped │ │ │ ├── loader-utils@1.2.3 deduped │ │ │ ├── mkdirp@0.5.1 deduped │ │ │ └── util.promisify@1.0.0 deduped │ │ ├─┬ babel-plugin-dynamic-import-node@2.2.0 │ │ │ └── object.assign@4.1.0 deduped │ │ ├── babel-plugin-macros@2.5.0 deduped │ │ └── babel-plugin-transform-react-remove-prop-types@0.4.24 │ ├── common-tags@1.8.0 │ ├── core-js@2.6.5 │ ├── global@4.3.2 deduped │ ├── lodash@4.17.11 deduped │ ├─┬ mini-css-extract-plugin@0.5.0 │ │ ├─┬ loader-utils@1.2.3 │ │ │ ├── big.js@5.2.2 │ │ │ ├── emojis-list@2.1.0 deduped │ │ │ └─┬ json5@1.0.1 │ │ │ └── minimist@1.2.0 deduped │ │ ├── schema-utils@1.0.0 deduped │ │ └── webpack-sources@1.3.0 deduped │ ├── prop-types@15.7.2 deduped │ ├─┬ react-dev-utils@7.0.3 │ │ ├── @babel/code-frame@7.0.0 deduped │ │ ├── address@1.0.3 │ │ ├─┬ browserslist@4.4.1 │ │ │ ├── caniuse-lite@1.0.30000941 deduped │ │ │ ├── electron-to-chromium@1.3.113 │ │ │ └─┬ node-releases@1.1.9 │ │ │ └── semver@5.6.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 │ │ ├─┬ cross-spawn@6.0.5 │ │ │ ├── nice-try@1.0.5 deduped │ │ │ ├── path-key@2.0.1 deduped │ │ │ ├── semver@5.6.0 deduped │ │ │ ├── shebang-command@1.2.0 deduped │ │ │ └── which@1.3.1 deduped │ │ ├─┬ detect-port-alt@1.1.6 │ │ │ ├── address@1.0.3 deduped │ │ │ └── debug@2.6.9 deduped │ │ ├── escape-string-regexp@1.0.5 │ │ ├── filesize@3.6.1 │ │ ├─┬ find-up@3.0.0 │ │ │ └─┬ locate-path@3.0.0 │ │ │ ├─┬ p-locate@3.0.0 │ │ │ │ └─┬ p-limit@2.2.0 │ │ │ │ └── p-try@2.0.0 │ │ │ └── path-exists@3.0.0 deduped │ │ ├─┬ global-modules@2.0.0 │ │ │ └─┬ global-prefix@3.0.0 │ │ │ ├── ini@1.3.5 deduped │ │ │ ├── kind-of@6.0.2 │ │ │ └── which@1.3.1 deduped │ │ ├─┬ globby@8.0.2 │ │ │ ├─┬ array-union@1.0.2 │ │ │ │ └── array-uniq@1.0.3 │ │ │ ├─┬ dir-glob@2.0.0 │ │ │ │ ├── arrify@1.0.1 deduped │ │ │ │ └─┬ path-type@3.0.0 │ │ │ │ └── pify@3.0.0 deduped │ │ │ ├─┬ fast-glob@2.2.6 │ │ │ │ ├─┬ @mrmlnc/readdir-enhanced@2.2.1 │ │ │ │ │ ├── call-me-maybe@1.0.1 │ │ │ │ │ └── glob-to-regexp@0.3.0 │ │ │ │ ├── @nodelib/fs.stat@1.1.3 │ │ │ │ ├─┬ glob-parent@3.1.0 │ │ │ │ │ ├─┬ is-glob@3.1.0 │ │ │ │ │ │ └── is-extglob@2.1.1 deduped │ │ │ │ │ └── path-dirname@1.0.2 │ │ │ │ ├─┬ is-glob@4.0.0 │ │ │ │ │ └── is-extglob@2.1.1 │ │ │ │ ├── merge2@1.2.3 │ │ │ │ └── micromatch@3.1.10 deduped │ │ │ ├── glob@7.1.2 deduped │ │ │ ├── ignore@3.3.10 │ │ │ ├── pify@3.0.0 deduped │ │ │ └── slash@1.0.0 deduped │ │ ├─┬ gzip-size@5.0.0 │ │ │ ├── duplexer@0.1.1 │ │ │ └── pify@3.0.0 deduped │ │ ├── immer@1.10.0 │ │ ├─┬ inquirer@6.2.1 │ │ │ ├── ansi-escapes@3.2.0 deduped │ │ │ ├── chalk@2.4.2 deduped │ │ │ ├── cli-cursor@2.1.0 deduped │ │ │ ├── cli-width@2.2.0 deduped │ │ │ ├── external-editor@3.0.3 deduped │ │ │ ├── figures@2.0.0 deduped │ │ │ ├── lodash@4.17.11 deduped │ │ │ ├── mute-stream@0.0.7 deduped │ │ │ ├── run-async@2.3.0 deduped │ │ │ ├── rxjs@6.4.0 deduped │ │ │ ├─┬ string-width@2.1.1 │ │ │ │ ├── is-fullwidth-code-point@2.0.0 │ │ │ │ └─┬ strip-ansi@4.0.0 │ │ │ │ └── ansi-regex@3.0.0 │ │ │ ├── strip-ansi@5.0.0 deduped │ │ │ └── through@2.3.8 deduped │ │ ├── is-root@2.0.0 │ │ ├── loader-utils@1.2.3 deduped │ │ ├── opn@5.4.0 deduped │ │ ├─┬ pkg-up@2.0.0 │ │ │ └── find-up@2.1.0 deduped │ │ ├── react-error-overlay@5.1.3 │ │ ├─┬ recursive-readdir@2.2.2 │ │ │ └── minimatch@3.0.4 deduped │ │ ├─┬ shell-quote@1.6.1 │ │ │ ├── array-filter@0.0.1 │ │ │ ├── array-map@0.0.0 │ │ │ ├── array-reduce@0.0.0 │ │ │ └── jsonify@0.0.0 │ │ ├─┬ sockjs-client@1.3.0 │ │ │ ├─┬ debug@3.2.6 │ │ │ │ └── ms@2.1.1 │ │ │ ├─┬ eventsource@1.0.7 │ │ │ │ └─┬ original@1.0.2 │ │ │ │ └── url-parse@1.4.4 deduped │ │ │ ├─┬ faye-websocket@0.11.1 │ │ │ │ └─┬ websocket-driver@0.7.0 │ │ │ │ ├── http-parser-js@0.5.0 │ │ │ │ └── websocket-extensions@0.1.3 │ │ │ ├── inherits@2.0.3 deduped │ │ │ ├── json3@3.3.2 │ │ │ └─┬ url-parse@1.4.4 │ │ │ ├── querystringify@2.1.0 │ │ │ └── requires-port@1.0.0 │ │ ├─┬ strip-ansi@5.0.0 │ │ │ └── ansi-regex@4.0.0 │ │ └── text-table@0.2.0 deduped │ ├── regenerator-runtime@0.12.1 │ ├── semver@5.6.0 │ └─┬ webpack@4.29.0 │ ├─┬ @webassemblyjs/ast@1.7.11 │ │ ├── @webassemblyjs/helper-module-context@1.7.11 deduped │ │ ├── @webassemblyjs/helper-wasm-bytecode@1.7.11 │ │ └─┬ @webassemblyjs/wast-parser@1.7.11 │ │ ├── @webassemblyjs/ast@1.7.11 deduped │ │ ├── @webassemblyjs/floating-point-hex-parser@1.7.11 │ │ ├── @webassemblyjs/helper-api-error@1.7.11 deduped │ │ ├─┬ @webassemblyjs/helper-code-frame@1.7.11 │ │ │ └── @webassemblyjs/wast-printer@1.7.11 deduped │ │ ├── @webassemblyjs/helper-fsm@1.7.11 │ │ └── @xtuc/long@4.2.1 │ ├── @webassemblyjs/helper-module-context@1.7.11 │ ├─┬ @webassemblyjs/wasm-edit@1.7.11 │ │ ├── @webassemblyjs/ast@1.7.11 deduped │ │ ├── @webassemblyjs/helper-buffer@1.7.11 │ │ ├── @webassemblyjs/helper-wasm-bytecode@1.7.11 deduped │ │ ├─┬ @webassemblyjs/helper-wasm-section@1.7.11 │ │ │ ├── @webassemblyjs/ast@1.7.11 deduped │ │ │ ├── @webassemblyjs/helper-buffer@1.7.11 deduped │ │ │ ├── @webassemblyjs/helper-wasm-bytecode@1.7.11 deduped │ │ │ └── @webassemblyjs/wasm-gen@1.7.11 deduped │ │ ├─┬ @webassemblyjs/wasm-gen@1.7.11 │ │ │ ├── @webassemblyjs/ast@1.7.11 deduped │ │ │ ├── @webassemblyjs/helper-wasm-bytecode@1.7.11 deduped │ │ │ ├── @webassemblyjs/ieee754@1.7.11 deduped │ │ │ ├── @webassemblyjs/leb128@1.7.11 deduped │ │ │ └── @webassemblyjs/utf8@1.7.11 deduped │ │ ├─┬ @webassemblyjs/wasm-opt@1.7.11 │ │ │ ├── @webassemblyjs/ast@1.7.11 deduped │ │ │ ├── @webassemblyjs/helper-buffer@1.7.11 deduped │ │ │ ├── @webassemblyjs/wasm-gen@1.7.11 deduped │ │ │ └── @webassemblyjs/wasm-parser@1.7.11 deduped │ │ ├── @webassemblyjs/wasm-parser@1.7.11 deduped │ │ └─┬ @webassemblyjs/wast-printer@1.7.11 │ │ ├── @webassemblyjs/ast@1.7.11 deduped │ │ ├── @webassemblyjs/wast-parser@1.7.11 deduped │ │ └── @xtuc/long@4.2.1 deduped │ ├─┬ @webassemblyjs/wasm-parser@1.7.11 │ │ ├── @webassemblyjs/ast@1.7.11 deduped │ │ ├── @webassemblyjs/helper-api-error@1.7.11 │ │ ├── @webassemblyjs/helper-wasm-bytecode@1.7.11 deduped │ │ ├─┬ @webassemblyjs/ieee754@1.7.11 │ │ │ └── @xtuc/ieee754@1.2.0 │ │ ├─┬ @webassemblyjs/leb128@1.7.11 │ │ │ └── @xtuc/long@4.2.1 deduped │ │ └── @webassemblyjs/utf8@1.7.11 │ ├── acorn@6.1.1 │ ├── acorn-dynamic-import@4.0.0 │ ├── ajv@6.10.0 deduped │ ├── ajv-keywords@3.4.0 │ ├─┬ chrome-trace-event@1.0.0 │ │ └── tslib@1.9.3 │ ├─┬ enhanced-resolve@4.1.0 │ │ ├── graceful-fs@4.1.15 deduped │ │ ├── memory-fs@0.4.1 deduped │ │ └── tapable@1.1.1 deduped │ ├── eslint-scope@4.0.2 deduped │ ├── json-parse-better-errors@1.0.2 │ ├── loader-runner@2.4.0 │ ├── loader-utils@1.2.3 deduped │ ├─┬ memory-fs@0.4.1 │ │ ├── errno@0.1.7 deduped │ │ └── 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 deduped │ │ │ ├─┬ fill-range@4.0.0 │ │ │ │ ├─┬ extend-shallow@2.0.1 │ │ │ │ │ └── is-extendable@0.1.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 │ │ │ │ │ ├─┬ is-accessor-descriptor@1.0.0 │ │ │ │ │ │ └── kind-of@6.0.2 deduped │ │ │ │ │ ├─┬ is-data-descriptor@1.0.0 │ │ │ │ │ │ └── kind-of@6.0.2 deduped │ │ │ │ │ └── kind-of@6.0.2 │ │ │ │ ├── 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 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 deduped │ │ │ │ ├─┬ is-data-descriptor@1.0.0 │ │ │ │ │ └── kind-of@6.0.2 deduped │ │ │ │ └── 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 │ │ │ │ ├─┬ is-accessor-descriptor@1.0.0 │ │ │ │ │ └── kind-of@6.0.2 deduped │ │ │ │ ├─┬ is-data-descriptor@1.0.0 │ │ │ │ │ └── kind-of@6.0.2 deduped │ │ │ │ └── kind-of@6.0.2 │ │ │ ├─┬ expand-brackets@2.1.4 │ │ │ │ ├── debug@2.6.9 deduped │ │ │ │ ├─┬ define-property@0.2.5 │ │ │ │ │ └── is-descriptor@0.1.6 deduped │ │ │ │ ├─┬ extend-shallow@2.0.1 │ │ │ │ │ └── is-extendable@0.1.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 │ │ │ │ └── is-extendable@0.1.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 deduped │ │ │ ├── extend-shallow@3.0.2 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 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.2.1 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 │ │ │ │ │ │ │ └── is-extendable@0.1.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 │ │ │ │ │ │ │ └── is-extendable@0.1.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 │ │ │ │ │ │ └── is-descriptor@0.1.6 deduped │ │ │ │ │ ├── isobject@3.0.1 deduped │ │ │ │ │ └─┬ static-extend@0.1.2 │ │ │ │ │ ├─┬ define-property@0.2.5 │ │ │ │ │ │ └── is-descriptor@0.1.6 deduped │ │ │ │ │ └─┬ object-copy@0.1.0 │ │ │ │ │ ├── copy-descriptor@0.1.1 │ │ │ │ │ ├─┬ define-property@0.2.5 │ │ │ │ │ │ └── is-descriptor@0.1.6 deduped │ │ │ │ │ └── kind-of@3.2.2 deduped │ │ │ │ ├── component-emitter@1.2.1 │ │ │ │ ├─┬ define-property@1.0.0 │ │ │ │ │ └─┬ is-descriptor@1.0.2 │ │ │ │ │ ├─┬ is-accessor-descriptor@1.0.0 │ │ │ │ │ │ └── kind-of@6.0.2 deduped │ │ │ │ │ ├─┬ is-data-descriptor@1.0.0 │ │ │ │ │ │ └── kind-of@6.0.2 deduped │ │ │ │ │ └── kind-of@6.0.2 │ │ │ │ ├── isobject@3.0.1 deduped │ │ │ │ ├─┬ mixin-deep@1.3.1 │ │ │ │ │ ├── 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 deduped │ │ │ ├─┬ define-property@0.2.5 │ │ │ │ └─┬ is-descriptor@0.1.6 │ │ │ │ ├─┬ is-accessor-descriptor@0.1.6 │ │ │ │ │ └── kind-of@3.2.2 deduped │ │ │ │ ├─┬ is-data-descriptor@0.1.4 │ │ │ │ │ └── kind-of@3.2.2 deduped │ │ │ │ └── kind-of@5.1.0 │ │ │ ├─┬ extend-shallow@2.0.1 │ │ │ │ └── is-extendable@0.1.1 deduped │ │ │ ├── map-cache@0.2.2 deduped │ │ │ ├── source-map@0.5.7 │ │ │ ├─┬ source-map-resolve@0.5.2 │ │ │ │ ├── atob@2.1.2 │ │ │ │ ├── decode-uri-component@0.2.0 │ │ │ │ ├── resolve-url@0.2.1 │ │ │ │ ├── source-map-url@0.4.0 │ │ │ │ └── urix@0.1.0 │ │ │ └── use@3.1.1 │ │ └─┬ to-regex@3.0.2 │ │ ├── define-property@2.0.2 deduped │ │ ├── extend-shallow@3.0.2 deduped │ │ ├── regex-not@1.0.2 deduped │ │ └── safe-regex@1.1.0 deduped │ ├── mkdirp@0.5.1 deduped │ ├── neo-async@2.6.0 │ ├─┬ node-libs-browser@2.2.0 │ │ ├─┬ assert@1.4.1 │ │ │ └─┬ 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.12 │ │ │ └── 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.3 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.3 deduped │ │ │ │ │ │ └── minimalistic-assert@1.0.1 deduped │ │ │ │ │ ├── inherits@2.0.3 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.8 │ │ │ │ ├─┬ browserify-rsa@4.0.1 │ │ │ │ │ ├── bn.js@4.11.8 deduped │ │ │ │ │ └── randombytes@2.1.0 deduped │ │ │ │ ├── create-hash@1.2.0 deduped │ │ │ │ ├── create-hmac@1.1.7 deduped │ │ │ │ ├─┬ elliptic@6.4.1 │ │ │ │ │ ├── bn.js@4.11.8 deduped │ │ │ │ │ ├── brorand@1.1.0 │ │ │ │ │ ├─┬ hash.js@1.1.7 │ │ │ │ │ │ ├── inherits@2.0.3 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.3 deduped │ │ │ │ │ ├── minimalistic-assert@1.0.1 │ │ │ │ │ └── minimalistic-crypto-utils@1.0.1 │ │ │ │ ├── inherits@2.0.3 deduped │ │ │ │ └─┬ parse-asn1@5.1.4 │ │ │ │ ├─┬ asn1.js@4.10.1 │ │ │ │ │ ├── bn.js@4.11.8 deduped │ │ │ │ │ ├── inherits@2.0.3 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.8 deduped │ │ │ │ └── elliptic@6.4.1 deduped │ │ │ ├─┬ create-hash@1.2.0 │ │ │ │ ├─┬ cipher-base@1.0.4 │ │ │ │ │ ├── inherits@2.0.3 deduped │ │ │ │ │ └── safe-buffer@5.1.2 deduped │ │ │ │ ├── inherits@2.0.3 deduped │ │ │ │ ├─┬ md5.js@1.3.5 │ │ │ │ │ ├─┬ hash-base@3.0.4 │ │ │ │ │ │ ├── inherits@2.0.3 deduped │ │ │ │ │ │ └── safe-buffer@5.1.2 deduped │ │ │ │ │ ├── inherits@2.0.3 deduped │ │ │ │ │ └── safe-buffer@5.1.2 deduped │ │ │ │ ├─┬ ripemd160@2.0.2 │ │ │ │ │ ├── hash-base@3.0.4 deduped │ │ │ │ │ └── inherits@2.0.3 deduped │ │ │ │ └─┬ sha.js@2.4.11 │ │ │ │ ├── inherits@2.0.3 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.3 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.8 deduped │ │ │ │ ├─┬ miller-rabin@4.0.1 │ │ │ │ │ ├── bn.js@4.11.8 deduped │ │ │ │ │ └── brorand@1.1.0 deduped │ │ │ │ └── randombytes@2.1.0 deduped │ │ │ ├── inherits@2.0.3 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.8 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 │ │ │ │ └── safe-buffer@5.1.2 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.0 │ │ ├── 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.3 deduped │ │ │ └── readable-stream@2.3.6 deduped │ │ ├─┬ stream-http@2.8.3 │ │ │ ├── builtin-status-codes@3.0.0 │ │ │ ├── inherits@2.0.3 deduped │ │ │ ├── readable-stream@2.3.6 deduped │ │ │ ├── to-arraybuffer@1.0.1 │ │ │ └── xtend@4.0.1 deduped │ │ ├─┬ string_decoder@1.1.1 │ │ │ └── safe-buffer@5.1.2 deduped │ │ ├─┬ timers-browserify@2.0.10 │ │ │ └── setimmediate@1.0.5 deduped │ │ ├── tty-browserify@0.0.0 │ │ ├── url@0.11.0 deduped │ │ ├─┬ util@0.11.1 │ │ │ └── inherits@2.0.3 deduped │ │ └─┬ vm-browserify@0.0.4 │ │ └── indexof@0.0.1 │ ├─┬ schema-utils@0.4.7 │ │ ├── ajv@6.10.0 deduped │ │ └── ajv-keywords@3.4.0 deduped │ ├── tapable@1.1.1 │ ├── terser-webpack-plugin@1.2.3 deduped │ ├─┬ watchpack@1.6.0 │ │ ├─┬ chokidar@2.1.2 │ │ │ ├─┬ anymatch@2.0.0 │ │ │ │ ├── micromatch@3.1.10 deduped │ │ │ │ └─┬ normalize-path@2.1.1 │ │ │ │ └── remove-trailing-separator@1.1.0 │ │ │ ├── async-each@1.0.1 │ │ │ ├── braces@2.3.2 deduped │ │ │ ├─┬ fsevents@1.2.7 │ │ │ │ ├── nan@2.12.1 deduped │ │ │ │ └─┬ node-pre-gyp@0.10.3 │ │ │ │ ├── detect-libc@1.0.3 │ │ │ │ ├─┬ mkdirp@0.5.1 │ │ │ │ │ └── minimist@0.0.8 │ │ │ │ ├─┬ needle@2.2.4 │ │ │ │ │ ├─┬ debug@2.6.9 │ │ │ │ │ │ └── ms@2.0.0 │ │ │ │ │ ├─┬ 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.2.0 │ │ │ │ │ ├─┬ 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.5 │ │ │ │ ├─┬ 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.6.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 deduped │ │ │ ├── inherits@2.0.3 deduped │ │ │ ├─┬ is-binary-path@1.0.1 │ │ │ │ └── binary-extensions@1.13.0 │ │ │ ├── is-glob@4.0.0 deduped │ │ │ ├── normalize-path@3.0.0 │ │ │ ├── path-is-absolute@1.0.1 deduped │ │ │ ├─┬ readdirp@2.2.1 │ │ │ │ ├── graceful-fs@4.1.15 deduped │ │ │ │ ├── micromatch@3.1.10 deduped │ │ │ │ └── readable-stream@2.3.6 deduped │ │ │ └── upath@1.1.0 │ │ ├── graceful-fs@4.1.15 deduped │ │ └── neo-async@2.6.0 deduped │ └── webpack-sources@1.3.0 deduped ├─┬ @storybook/storybook-deployer@2.8.1 │ ├─┬ git-url-parse@8.3.1 │ │ ├─┬ git-up@2.1.0 │ │ │ ├─┬ is-ssh@1.3.1 │ │ │ │ └── protocols@1.4.7 │ │ │ └─┬ parse-url@3.0.2 │ │ │ ├── is-ssh@1.3.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 │ │ │ ├─┬ parse-path@3.0.4 │ │ │ │ ├── is-ssh@1.3.1 deduped │ │ │ │ └── protocols@1.4.7 deduped │ │ │ └── protocols@1.4.7 deduped │ │ └─┬ parse-domain@2.1.7 │ │ ├─┬ chai@4.2.0 │ │ │ ├── assertion-error@1.1.0 │ │ │ ├── check-error@1.0.2 │ │ │ ├─┬ deep-eql@3.0.1 │ │ │ │ └── type-detect@4.0.8 deduped │ │ │ ├── get-func-name@2.0.0 │ │ │ ├── pathval@1.1.0 │ │ │ └── type-detect@4.0.8 │ │ ├─┬ got@8.3.2 │ │ │ ├── @sindresorhus/is@0.7.0 │ │ │ ├─┬ cacheable-request@2.1.4 │ │ │ │ ├─┬ clone-response@1.0.2 │ │ │ │ │ └── mimic-response@1.0.1 deduped │ │ │ │ ├── get-stream@3.0.0 deduped │ │ │ │ ├── http-cache-semantics@3.8.1 │ │ │ │ ├─┬ keyv@3.0.0 │ │ │ │ │ └── json-buffer@3.0.0 │ │ │ │ ├── lowercase-keys@1.0.0 │ │ │ │ ├─┬ normalize-url@2.0.1 │ │ │ │ │ ├── prepend-http@2.0.0 │ │ │ │ │ ├─┬ query-string@5.1.1 │ │ │ │ │ │ ├── decode-uri-component@0.2.0 deduped │ │ │ │ │ │ ├── object-assign@4.1.1 deduped │ │ │ │ │ │ └── strict-uri-encode@1.1.0 deduped │ │ │ │ │ └─┬ sort-keys@2.0.0 │ │ │ │ │ └── is-plain-obj@1.1.0 deduped │ │ │ │ └─┬ responselike@1.0.2 │ │ │ │ └── lowercase-keys@1.0.1 deduped │ │ │ ├─┬ decompress-response@3.3.0 │ │ │ │ └── mimic-response@1.0.1 deduped │ │ │ ├── duplexer3@0.1.4 │ │ │ ├── get-stream@3.0.0 │ │ │ ├─┬ into-stream@3.1.0 │ │ │ │ ├── from2@2.3.0 deduped │ │ │ │ └── p-is-promise@1.1.0 │ │ │ ├── is-retry-allowed@1.1.0 │ │ │ ├─┬ isurl@1.0.0 │ │ │ │ ├─┬ has-to-string-tag-x@1.4.1 │ │ │ │ │ └── has-symbol-support-x@1.4.2 │ │ │ │ └── is-object@1.0.1 │ │ │ ├── lowercase-keys@1.0.1 │ │ │ ├── mimic-response@1.0.1 │ │ │ ├── p-cancelable@0.4.1 │ │ │ ├─┬ p-timeout@2.0.1 │ │ │ │ └── p-finally@1.0.0 deduped │ │ │ ├── pify@3.0.0 deduped │ │ │ ├── safe-buffer@5.1.2 deduped │ │ │ ├── timed-out@4.0.1 │ │ │ ├─┬ url-parse-lax@3.0.0 │ │ │ │ └── prepend-http@2.0.0 │ │ │ └── url-to-options@1.0.1 │ │ ├── mkdirp@0.5.1 deduped │ │ └─┬ mocha@5.2.0 │ │ ├── browser-stdout@1.3.1 │ │ ├── commander@2.15.1 │ │ ├─┬ debug@3.1.0 │ │ │ └── ms@2.0.0 deduped │ │ ├── diff@3.5.0 │ │ ├── escape-string-regexp@1.0.5 deduped │ │ ├── glob@7.1.2 deduped │ │ ├── growl@1.10.5 │ │ ├── he@1.1.1 │ │ ├── minimatch@3.0.4 deduped │ │ ├── mkdirp@0.5.1 deduped │ │ └─┬ supports-color@5.4.0 │ │ └── has-flag@3.0.0 deduped │ ├─┬ 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 │ ├── parse-repo@1.0.4 │ ├─┬ shelljs@0.8.3 │ │ ├── glob@7.1.2 deduped │ │ ├── interpret@1.2.0 deduped │ │ └─┬ rechoir@0.6.2 │ │ └── resolve@1.5.0 deduped │ └─┬ yargs@11.1.0 │ ├─┬ cliui@4.1.0 │ │ ├─┬ string-width@2.1.1 │ │ │ ├── is-fullwidth-code-point@2.0.0 │ │ │ └── strip-ansi@4.0.0 deduped │ │ ├─┬ strip-ansi@4.0.0 │ │ │ └── ansi-regex@3.0.0 │ │ └─┬ wrap-ansi@2.1.0 │ │ ├── string-width@1.0.2 deduped │ │ └── strip-ansi@3.0.1 deduped │ ├── decamelize@1.2.0 │ ├── find-up@2.1.0 deduped │ ├── get-caller-file@1.0.3 │ ├─┬ os-locale@2.1.0 │ │ ├─┬ execa@0.7.0 │ │ │ ├── cross-spawn@5.1.0 deduped │ │ │ ├── get-stream@3.0.0 deduped │ │ │ ├── is-stream@1.1.0 deduped │ │ │ ├── npm-run-path@2.0.2 deduped │ │ │ ├── p-finally@1.0.0 deduped │ │ │ ├── signal-exit@3.0.2 deduped │ │ │ └── strip-eof@1.0.0 deduped │ │ ├─┬ lcid@1.0.0 │ │ │ └── invert-kv@1.0.0 │ │ └─┬ mem@1.1.0 │ │ └── mimic-fn@1.2.0 │ ├── require-directory@2.1.1 │ ├── require-main-filename@1.0.1 │ ├── set-blocking@2.0.0 │ ├─┬ string-width@2.1.1 │ │ ├── is-fullwidth-code-point@2.0.0 │ │ └─┬ strip-ansi@4.0.0 │ │ └── ansi-regex@3.0.0 │ ├── which-module@2.0.0 │ ├── y18n@3.2.1 │ └─┬ yargs-parser@9.0.2 │ └── camelcase@4.1.0 ├─┬ @zeit/next-sass@1.0.1 │ ├─┬ @zeit/next-css@1.0.1 │ │ ├─┬ css-loader@1.0.0 │ │ │ ├─┬ babel-code-frame@6.26.0 │ │ │ │ ├── chalk@1.1.3 deduped │ │ │ │ ├── esutils@2.0.2 deduped │ │ │ │ └── js-tokens@3.0.2 │ │ │ ├─┬ css-selector-tokenizer@0.7.1 │ │ │ │ ├── cssesc@0.1.0 │ │ │ │ ├── fastparse@1.1.2 │ │ │ │ └─┬ regexpu-core@1.0.0 │ │ │ │ ├── regenerate@1.4.0 deduped │ │ │ │ ├── regjsgen@0.2.0 │ │ │ │ └─┬ regjsparser@0.1.5 │ │ │ │ └── jsesc@0.5.0 deduped │ │ │ ├─┬ icss-utils@2.1.0 │ │ │ │ └── postcss@6.0.23 deduped │ │ │ ├── loader-utils@1.2.3 deduped │ │ │ ├── lodash.camelcase@4.3.0 │ │ │ ├─┬ 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-modules-extract-imports@1.2.1 │ │ │ │ └── postcss@6.0.23 deduped │ │ │ ├─┬ postcss-modules-local-by-default@1.2.0 │ │ │ │ ├── css-selector-tokenizer@0.7.1 deduped │ │ │ │ └── postcss@6.0.23 deduped │ │ │ ├─┬ postcss-modules-scope@1.1.0 │ │ │ │ ├── css-selector-tokenizer@0.7.1 deduped │ │ │ │ └── postcss@6.0.23 deduped │ │ │ ├─┬ postcss-modules-values@1.3.0 │ │ │ │ ├── icss-replace-symbols@1.1.0 deduped │ │ │ │ └── postcss@6.0.23 deduped │ │ │ ├── postcss-value-parser@3.3.1 deduped │ │ │ └── source-list-map@2.0.1 deduped │ │ ├── extracted-loader@1.0.4 │ │ ├── find-up@2.1.0 deduped │ │ ├── ignore-loader@0.1.2 │ │ ├─┬ mini-css-extract-plugin@0.4.3 │ │ │ ├── loader-utils@1.2.3 deduped │ │ │ ├── schema-utils@1.0.0 deduped │ │ │ └── webpack-sources@1.3.0 deduped │ │ └── postcss-loader@3.0.0 deduped │ └─┬ sass-loader@6.0.6 │ ├─┬ async@2.6.2 │ │ └── lodash@4.17.11 deduped │ ├─┬ clone-deep@0.3.0 │ │ ├─┬ for-own@1.0.0 │ │ │ └── for-in@1.0.2 │ │ ├── is-plain-object@2.0.4 deduped │ │ ├─┬ kind-of@3.2.2 │ │ │ └── is-buffer@1.1.6 │ │ └─┬ shallow-clone@0.1.2 │ │ ├── is-extendable@0.1.1 │ │ ├─┬ 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 │ ├── loader-utils@1.2.3 deduped │ ├── lodash.tail@4.1.1 │ └── pify@3.0.0 ├─┬ babel-eslint@10.0.1 │ ├─┬ @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.3.4 │ ├─┬ @babel/traverse@7.3.4 │ │ ├── @babel/code-frame@7.0.0 deduped │ │ ├─┬ @babel/generator@7.3.4 │ │ │ ├── @babel/types@7.3.4 deduped │ │ │ ├── jsesc@2.5.2 │ │ │ ├── lodash@4.17.11 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.3.4 deduped │ │ │ ├── @babel/template@7.1.2 deduped │ │ │ └── @babel/types@7.3.4 deduped │ │ ├─┬ @babel/helper-split-export-declaration@7.0.0 │ │ │ └── @babel/types@7.3.4 deduped │ │ ├── @babel/parser@7.3.4 deduped │ │ ├── @babel/types@7.3.4 deduped │ │ ├─┬ debug@4.1.1 │ │ │ └── ms@2.1.1 │ │ ├── globals@11.11.0 deduped │ │ └── lodash@4.17.11 deduped │ ├─┬ @babel/types@7.3.4 │ │ ├── esutils@2.0.2 deduped │ │ ├── lodash@4.17.11 deduped │ │ └── to-fast-properties@2.0.0 │ ├─┬ eslint-scope@3.7.1 │ │ ├─┬ esrecurse@4.2.1 │ │ │ └── estraverse@4.2.0 deduped │ │ └── estraverse@4.2.0 │ └── eslint-visitor-keys@1.0.0 ├─┬ babel-jest@24.1.0 │ ├─┬ babel-plugin-istanbul@5.1.1 │ │ ├─┬ find-up@3.0.0 │ │ │ └─┬ locate-path@3.0.0 │ │ │ ├─┬ p-locate@3.0.0 │ │ │ │ └─┬ p-limit@2.2.0 │ │ │ │ └── p-try@2.0.0 │ │ │ └── path-exists@3.0.0 deduped │ │ ├─┬ istanbul-lib-instrument@3.1.0 │ │ │ ├── @babel/generator@7.3.4 deduped │ │ │ ├── @babel/parser@7.3.4 deduped │ │ │ ├── @babel/template@7.1.2 deduped │ │ │ ├── @babel/traverse@7.3.4 deduped │ │ │ ├── @babel/types@7.3.4 deduped │ │ │ ├── istanbul-lib-coverage@2.0.3 deduped │ │ │ └── semver@5.6.0 deduped │ │ └─┬ test-exclude@5.1.0 │ │ ├── arrify@1.0.1 │ │ ├── minimatch@3.0.4 deduped │ │ ├─┬ read-pkg-up@4.0.0 │ │ │ ├─┬ find-up@3.0.0 │ │ │ │ └─┬ locate-path@3.0.0 │ │ │ │ ├─┬ p-locate@3.0.0 │ │ │ │ │ └─┬ p-limit@2.2.0 │ │ │ │ │ └── p-try@2.0.0 │ │ │ │ └── path-exists@3.0.0 deduped │ │ │ └─┬ read-pkg@3.0.0 │ │ │ ├─┬ load-json-file@4.0.0 │ │ │ │ ├── graceful-fs@4.1.15 deduped │ │ │ │ ├── parse-json@4.0.0 deduped │ │ │ │ ├── pify@3.0.0 deduped │ │ │ │ └── strip-bom@3.0.0 deduped │ │ │ ├── normalize-package-data@2.5.0 deduped │ │ │ └─┬ path-type@3.0.0 │ │ │ └── pify@3.0.0 deduped │ │ └── require-main-filename@1.0.1 deduped │ ├─┬ babel-preset-jest@24.1.0 │ │ ├─┬ @babel/plugin-syntax-object-rest-spread@7.2.0 │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ │ └── babel-plugin-jest-hoist@24.1.0 │ ├─┬ chalk@2.4.2 │ │ ├─┬ ansi-styles@3.2.1 │ │ │ └─┬ color-convert@1.9.3 │ │ │ └── color-name@1.1.3 │ │ ├── escape-string-regexp@1.0.5 deduped │ │ └─┬ supports-color@5.5.0 │ │ └── has-flag@3.0.0 │ └── slash@2.0.0 ├── UNMET PEER DEPENDENCY babel-plugin-root-import@^5.1.0 ├─┬ babel-plugin-transform-es2015-modules-commonjs@6.26.2 │ ├─┬ babel-plugin-transform-strict-mode@6.24.1 │ │ ├── babel-runtime@6.26.0 deduped │ │ └── babel-types@6.26.0 deduped │ ├─┬ babel-runtime@6.26.0 │ │ ├── core-js@2.6.5 │ │ └── regenerator-runtime@0.11.1 │ ├─┬ babel-template@6.26.0 │ │ ├── babel-runtime@6.26.0 deduped │ │ ├─┬ babel-traverse@6.26.0 │ │ │ ├── babel-code-frame@6.26.0 deduped │ │ │ ├─┬ babel-messages@6.23.0 │ │ │ │ └── babel-runtime@6.26.0 deduped │ │ │ ├── babel-runtime@6.26.0 deduped │ │ │ ├── babel-types@6.26.0 deduped │ │ │ ├── babylon@6.18.0 deduped │ │ │ ├── debug@2.6.9 deduped │ │ │ ├── globals@9.18.0 │ │ │ ├── invariant@2.2.4 deduped │ │ │ └── lodash@4.17.11 deduped │ │ ├── babel-types@6.26.0 deduped │ │ ├── babylon@6.18.0 │ │ └── lodash@4.17.11 deduped │ └─┬ babel-types@6.26.0 │ ├── babel-runtime@6.26.0 deduped │ ├── esutils@2.0.2 deduped │ ├── lodash@4.17.11 deduped │ └── to-fast-properties@1.0.3 ├─┬ compression@1.7.3 │ ├─┬ accepts@1.3.5 │ │ ├─┬ mime-types@2.1.22 │ │ │ └── mime-db@1.38.0 deduped │ │ └── negotiator@0.6.1 │ ├── bytes@3.0.0 │ ├─┬ compressible@2.0.16 │ │ └── mime-db@1.38.0 │ ├─┬ debug@2.6.9 │ │ └── ms@2.0.0 │ ├── on-headers@1.0.2 │ ├── safe-buffer@5.1.2 │ └── vary@1.1.2 ├── css-mediaquery@0.1.2 ├─┬ eslint@5.15.1 │ ├── @babel/code-frame@7.0.0 deduped │ ├─┬ ajv@6.10.0 │ │ ├── fast-deep-equal@2.0.1 deduped │ │ ├── fast-json-stable-stringify@2.0.0 │ │ ├── json-schema-traverse@0.4.1 │ │ └─┬ uri-js@4.2.2 │ │ └── punycode@2.1.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 │ ├─┬ cross-spawn@6.0.5 │ │ ├── nice-try@1.0.5 │ │ ├── path-key@2.0.1 │ │ ├── semver@5.6.0 deduped │ │ ├─┬ shebang-command@1.2.0 │ │ │ └── shebang-regex@1.0.0 │ │ └─┬ which@1.3.1 │ │ └── isexe@2.0.0 │ ├─┬ debug@4.1.1 │ │ └── ms@2.1.1 │ ├─┬ doctrine@3.0.0 │ │ └── esutils@2.0.2 deduped │ ├─┬ eslint-scope@4.0.2 │ │ ├── esrecurse@4.2.1 deduped │ │ └── estraverse@4.2.0 deduped │ ├── eslint-utils@1.3.1 │ ├── eslint-visitor-keys@1.0.0 deduped │ ├─┬ espree@5.0.1 │ │ ├── acorn@6.1.1 deduped │ │ ├── acorn-jsx@5.0.1 │ │ └── eslint-visitor-keys@1.0.0 deduped │ ├─┬ esquery@1.0.1 │ │ └── estraverse@4.2.0 deduped │ ├── 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 │ ├─┬ glob@7.1.2 │ │ ├── fs.realpath@1.0.0 deduped │ │ ├── inflight@1.0.6 deduped │ │ ├── inherits@2.0.3 deduped │ │ ├── minimatch@3.0.4 deduped │ │ ├── once@1.4.0 deduped │ │ └── path-is-absolute@1.0.1 deduped │ ├── globals@11.11.0 │ ├── ignore@4.0.6 │ ├─┬ import-fresh@3.0.0 │ │ ├─┬ parent-module@1.0.0 │ │ │ └── callsites@3.0.0 │ │ └── resolve-from@4.0.0 │ ├── imurmurhash@0.1.4 │ ├─┬ inquirer@6.2.2 │ │ ├── ansi-escapes@3.2.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 deduped │ │ │ └── signal-exit@3.0.2 deduped │ │ ├── cli-width@2.2.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 deduped │ │ ├─┬ figures@2.0.0 │ │ │ └── escape-string-regexp@1.0.5 deduped │ │ ├── lodash@4.17.11 deduped │ │ ├── mute-stream@0.0.7 │ │ ├─┬ run-async@2.3.0 │ │ │ └── is-promise@2.1.0 │ │ ├─┬ rxjs@6.4.0 │ │ │ └── tslib@1.9.3 deduped │ │ ├─┬ string-width@2.1.1 │ │ │ ├── is-fullwidth-code-point@2.0.0 │ │ │ └─┬ strip-ansi@4.0.0 │ │ │ └── ansi-regex@3.0.0 │ │ ├─┬ strip-ansi@5.0.0 │ │ │ └── ansi-regex@4.0.0 │ │ └── through@2.3.8 │ ├─┬ js-yaml@3.12.2 │ │ ├─┬ argparse@1.0.10 │ │ │ └── sprintf-js@1.0.3 │ │ └── esprima@4.0.1 │ ├── json-stable-stringify-without-jsonify@1.0.1 │ ├─┬ levn@0.3.0 │ │ ├── prelude-ls@1.1.2 │ │ └─┬ type-check@0.3.2 │ │ └── prelude-ls@1.1.2 deduped │ ├── lodash@4.17.11 deduped │ ├─┬ minimatch@3.0.4 │ │ └─┬ brace-expansion@1.1.11 │ │ ├── balanced-match@1.0.0 │ │ └── concat-map@0.0.1 │ ├─┬ mkdirp@0.5.1 │ │ └── minimist@0.0.8 │ ├── natural-compare@1.4.0 │ ├─┬ optionator@0.8.2 │ │ ├── deep-is@0.1.3 │ │ ├── fast-levenshtein@2.0.6 │ │ ├── levn@0.3.0 deduped │ │ ├── prelude-ls@1.1.2 deduped │ │ ├── type-check@0.3.2 deduped │ │ └── wordwrap@1.0.0 │ ├── path-is-inside@1.0.2 │ ├── progress@2.0.3 │ ├── regexpp@2.0.1 │ ├── semver@5.6.0 deduped │ ├─┬ strip-ansi@4.0.0 │ │ └── ansi-regex@3.0.0 │ ├── strip-json-comments@2.0.1 │ ├─┬ table@5.2.3 │ │ ├── ajv@6.10.0 deduped │ │ ├── lodash@4.17.11 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.0.0 │ │ ├── emoji-regex@7.0.3 deduped │ │ ├── is-fullwidth-code-point@2.0.0 │ │ └─┬ strip-ansi@5.0.0 │ │ └── ansi-regex@4.0.0 │ └── text-table@0.2.0 ├─┬ eslint-config-airbnb@17.1.0 │ ├─┬ eslint-config-airbnb-base@13.1.0 │ │ ├── eslint-restricted-globals@0.1.1 │ │ ├── object.assign@4.1.0 deduped │ │ └── object.entries@1.1.0 deduped │ ├─┬ object.assign@4.1.0 │ │ ├─┬ define-properties@1.1.3 │ │ │ └── object-keys@1.1.0 deduped │ │ ├── function-bind@1.1.1 │ │ ├── has-symbols@1.0.0 │ │ └── object-keys@1.1.0 │ └─┬ 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 │ │ │ └── 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.0 deduped │ ├── function-bind@1.1.1 deduped │ └── has@1.0.3 deduped ├─┬ eslint-import-resolver-babel-plugin-root-import@1.1.1 │ ├─┬ eslint-import-resolver-node@0.2.3 │ │ ├── debug@2.6.9 deduped │ │ ├── object-assign@4.1.1 deduped │ │ └── resolve@1.5.0 deduped │ └── json5@0.5.1 ├─┬ eslint-plugin-import@2.16.0 │ ├── contains-path@0.1.0 │ ├── debug@2.6.9 deduped │ ├─┬ doctrine@1.5.0 │ │ ├── esutils@2.0.2 deduped │ │ └── isarray@1.0.0 │ ├─┬ eslint-import-resolver-node@0.3.2 │ │ ├── debug@2.6.9 deduped │ │ └── resolve@1.10.0 deduped │ ├─┬ eslint-module-utils@2.3.0 │ │ ├── debug@2.6.9 deduped │ │ └─┬ pkg-dir@2.0.0 │ │ └── find-up@2.1.0 deduped │ ├─┬ has@1.0.3 │ │ └── function-bind@1.1.1 deduped │ ├── lodash@4.17.11 deduped │ ├── minimatch@3.0.4 deduped │ ├─┬ read-pkg-up@2.0.0 │ │ ├── find-up@2.1.0 deduped │ │ └─┬ read-pkg@2.0.0 │ │ ├─┬ load-json-file@2.0.0 │ │ │ ├── graceful-fs@4.1.15 deduped │ │ │ ├─┬ parse-json@2.2.0 │ │ │ │ └── error-ex@1.3.2 deduped │ │ │ ├── pify@2.3.0 │ │ │ └── strip-bom@3.0.0 deduped │ │ ├── normalize-package-data@2.5.0 deduped │ │ └─┬ path-type@2.0.0 │ │ └── pify@2.3.0 │ └─┬ resolve@1.10.0 │ └── path-parse@1.0.6 ├─┬ eslint-plugin-jsx-a11y@6.2.1 │ ├─┬ aria-query@3.0.0 │ │ ├── ast-types-flow@0.0.7 deduped │ │ └── commander@2.17.1 │ ├─┬ array-includes@3.0.3 │ │ ├── define-properties@1.1.3 deduped │ │ └── es-abstract@1.13.0 deduped │ ├── ast-types-flow@0.0.7 │ ├─┬ axobject-query@2.0.2 │ │ └── ast-types-flow@0.0.7 deduped │ ├── damerau-levenshtein@1.0.4 │ ├── emoji-regex@7.0.3 │ ├── has@1.0.3 deduped │ └─┬ jsx-ast-utils@2.0.1 │ └── array-includes@3.0.3 deduped ├─┬ eslint-plugin-react@7.12.4 │ ├── array-includes@3.0.3 deduped │ ├─┬ doctrine@2.1.0 │ │ └── esutils@2.0.2 deduped │ ├── has@1.0.3 deduped │ ├── jsx-ast-utils@2.0.1 deduped │ ├─┬ object.fromentries@2.0.0 │ │ ├── define-properties@1.1.3 deduped │ │ ├── es-abstract@1.13.0 deduped │ │ ├── function-bind@1.1.1 deduped │ │ └── has@1.0.3 deduped │ ├── prop-types@15.7.2 deduped │ └─┬ resolve@1.10.0 │ └── path-parse@1.0.6 deduped ├── eslint-plugin-react-hooks@1.4.0 ├─┬ express@4.16.4 │ ├── accepts@1.3.5 deduped │ ├── array-flatten@1.1.1 │ ├─┬ body-parser@1.18.3 │ │ ├── bytes@3.0.0 deduped │ │ ├── content-type@1.0.4 deduped │ │ ├── debug@2.6.9 deduped │ │ ├── depd@1.1.2 deduped │ │ ├─┬ http-errors@1.6.3 │ │ │ ├── depd@1.1.2 deduped │ │ │ ├── inherits@2.0.3 deduped │ │ │ ├── setprototypeof@1.1.0 deduped │ │ │ └── statuses@1.4.0 deduped │ │ ├─┬ iconv-lite@0.4.23 │ │ │ └── safer-buffer@2.1.2 │ │ ├── on-finished@2.3.0 deduped │ │ ├── qs@6.5.2 deduped │ │ ├─┬ raw-body@2.3.3 │ │ │ ├── bytes@3.0.0 deduped │ │ │ ├── http-errors@1.6.3 deduped │ │ │ ├─┬ iconv-lite@0.4.23 │ │ │ │ └── safer-buffer@2.1.2 deduped │ │ │ └── unpipe@1.0.0 deduped │ │ └── type-is@1.6.16 deduped │ ├── content-disposition@0.5.2 │ ├── content-type@1.0.4 │ ├── cookie@0.3.1 │ ├── cookie-signature@1.0.6 │ ├── debug@2.6.9 deduped │ ├── depd@1.1.2 │ ├── encodeurl@1.0.2 │ ├── escape-html@1.0.3 deduped │ ├── etag@1.8.1 │ ├─┬ finalhandler@1.1.1 │ │ ├── debug@2.6.9 deduped │ │ ├── encodeurl@1.0.2 deduped │ │ ├── escape-html@1.0.3 deduped │ │ ├── on-finished@2.3.0 deduped │ │ ├── parseurl@1.3.2 deduped │ │ ├── statuses@1.4.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.2 │ ├── path-to-regexp@0.1.7 │ ├─┬ proxy-addr@2.0.4 │ │ ├── forwarded@0.1.2 │ │ └── ipaddr.js@1.8.0 │ ├── qs@6.5.2 deduped │ ├── range-parser@1.2.0 │ ├── safe-buffer@5.1.2 deduped │ ├─┬ send@0.16.2 │ │ ├── debug@2.6.9 deduped │ │ ├── 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.6.3 deduped │ │ ├── mime@1.4.1 │ │ ├── ms@2.0.0 deduped │ │ ├── on-finished@2.3.0 deduped │ │ ├── range-parser@1.2.0 deduped │ │ └── statuses@1.4.0 deduped │ ├─┬ serve-static@1.13.2 │ │ ├── encodeurl@1.0.2 deduped │ │ ├── escape-html@1.0.3 deduped │ │ ├── parseurl@1.3.2 deduped │ │ └── send@0.16.2 deduped │ ├── setprototypeof@1.1.0 │ ├── statuses@1.4.0 │ ├─┬ type-is@1.6.16 │ │ ├── media-typer@0.3.0 │ │ └── mime-types@2.1.22 deduped │ ├── utils-merge@1.0.1 │ └── vary@1.1.2 deduped ├─┬ express-device@0.4.2 │ ├─┬ device@0.3.9 │ │ └─┬ useragent@2.3.0 │ │ ├── lru-cache@4.1.5 deduped │ │ └── tmp@0.0.33 deduped │ └── express-partials@0.3.0 ├─┬ husky@1.3.1 │ ├─┬ cosmiconfig@5.1.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 │ │ ├── is-directory@0.3.1 │ │ ├── js-yaml@3.12.2 deduped │ │ ├── lodash.get@4.4.2 │ │ └─┬ parse-json@4.0.0 │ │ ├─┬ error-ex@1.3.2 │ │ │ └── is-arrayish@0.2.1 │ │ └── json-parse-better-errors@1.0.2 deduped │ ├─┬ execa@1.0.0 │ │ ├─┬ cross-spawn@6.0.5 │ │ │ ├── nice-try@1.0.5 deduped │ │ │ ├── path-key@2.0.1 deduped │ │ │ ├── semver@5.6.0 deduped │ │ │ ├── shebang-command@1.2.0 deduped │ │ │ └── which@1.3.1 deduped │ │ ├─┬ get-stream@4.1.0 │ │ │ └─┬ pump@3.0.0 │ │ │ ├── end-of-stream@1.4.1 deduped │ │ │ └── once@1.4.0 deduped │ │ ├── is-stream@1.1.0 │ │ ├─┬ npm-run-path@2.0.2 │ │ │ └── path-key@2.0.1 deduped │ │ ├── p-finally@1.0.0 │ │ ├── signal-exit@3.0.2 │ │ └── strip-eof@1.0.0 │ ├─┬ find-up@3.0.0 │ │ └─┬ locate-path@3.0.0 │ │ ├─┬ p-locate@3.0.0 │ │ │ └─┬ p-limit@2.2.0 │ │ │ └── p-try@2.0.0 │ │ └── path-exists@3.0.0 │ ├── get-stdin@6.0.0 │ ├─┬ is-ci@2.0.0 │ │ └── ci-info@2.0.0 │ ├─┬ pkg-dir@3.0.0 │ │ └── find-up@3.0.0 deduped │ ├─┬ please-upgrade-node@3.1.1 │ │ └── semver-compare@1.0.0 │ ├─┬ read-pkg@4.0.1 │ │ ├─┬ normalize-package-data@2.5.0 │ │ │ ├── hosted-git-info@2.7.1 │ │ │ ├─┬ resolve@1.10.0 │ │ │ │ └── path-parse@1.0.6 deduped │ │ │ ├── semver@5.6.0 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.3 │ │ │ └─┬ spdx-expression-parse@3.0.0 │ │ │ ├── spdx-exceptions@2.2.0 │ │ │ └── spdx-license-ids@3.0.3 deduped │ │ ├── parse-json@4.0.0 deduped │ │ └── pify@3.0.0 deduped │ ├── run-node@1.0.0 │ └── slash@2.0.0 ├─┬ isomorphic-unfetch@3.0.0 │ ├── node-fetch@2.3.0 │ └── unfetch@4.1.0 ├─┬ jest@24.1.0 │ ├─┬ import-local@2.0.0 │ │ ├─┬ pkg-dir@3.0.0 │ │ │ └─┬ find-up@3.0.0 │ │ │ └─┬ locate-path@3.0.0 │ │ │ ├─┬ p-locate@3.0.0 │ │ │ │ └─┬ p-limit@2.2.0 │ │ │ │ └── p-try@2.0.0 │ │ │ └── path-exists@3.0.0 deduped │ │ └─┬ resolve-cwd@2.0.0 │ │ └── resolve-from@3.0.0 deduped │ └─┬ jest-cli@24.1.0 │ ├── ansi-escapes@3.2.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 │ ├── exit@0.1.2 │ ├── glob@7.1.2 deduped │ ├── graceful-fs@4.1.15 │ ├── import-local@2.0.0 deduped │ ├── is-ci@2.0.0 deduped │ ├─┬ istanbul-api@2.1.1 │ │ ├── async@2.6.2 deduped │ │ ├── compare-versions@3.4.0 │ │ ├─┬ fileset@2.0.3 │ │ │ ├── glob@7.1.2 deduped │ │ │ └── minimatch@3.0.4 deduped │ │ ├── istanbul-lib-coverage@2.0.3 deduped │ │ ├─┬ istanbul-lib-hook@2.0.3 │ │ │ └─┬ append-transform@1.0.0 │ │ │ └─┬ default-require-extensions@2.0.0 │ │ │ └── strip-bom@3.0.0 deduped │ │ ├── istanbul-lib-instrument@3.1.0 deduped │ │ ├─┬ istanbul-lib-report@2.0.4 │ │ │ ├── istanbul-lib-coverage@2.0.3 deduped │ │ │ ├── make-dir@1.3.0 deduped │ │ │ └─┬ supports-color@6.1.0 │ │ │ └── has-flag@3.0.0 deduped │ │ ├── istanbul-lib-source-maps@3.0.2 deduped │ │ ├─┬ istanbul-reports@2.1.1 │ │ │ └─┬ handlebars@4.1.0 │ │ │ ├── async@2.6.2 deduped │ │ │ ├─┬ optimist@0.6.1 │ │ │ │ ├── minimist@0.0.10 │ │ │ │ └── wordwrap@0.0.3 │ │ │ ├── source-map@0.6.1 deduped │ │ │ └── uglify-js@3.4.9 deduped │ │ ├── js-yaml@3.12.2 deduped │ │ ├── make-dir@1.3.0 deduped │ │ ├── minimatch@3.0.4 deduped │ │ └── once@1.4.0 deduped │ ├── istanbul-lib-coverage@2.0.3 │ ├── istanbul-lib-instrument@3.1.0 deduped │ ├─┬ istanbul-lib-source-maps@3.0.2 │ │ ├─┬ debug@4.1.1 │ │ │ └── ms@2.1.1 │ │ ├── istanbul-lib-coverage@2.0.3 deduped │ │ ├── make-dir@1.3.0 deduped │ │ ├── rimraf@2.6.3 deduped │ │ └── source-map@0.6.1 deduped │ ├─┬ jest-changed-files@24.0.0 │ │ ├─┬ execa@1.0.0 │ │ │ ├─┬ cross-spawn@6.0.5 │ │ │ │ ├── nice-try@1.0.5 deduped │ │ │ │ ├── path-key@2.0.1 deduped │ │ │ │ ├── semver@5.6.0 deduped │ │ │ │ ├── shebang-command@1.2.0 deduped │ │ │ │ └── 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 deduped │ │ │ ├── p-finally@1.0.0 deduped │ │ │ ├── signal-exit@3.0.2 deduped │ │ │ └── strip-eof@1.0.0 deduped │ │ └── throat@4.1.0 │ ├─┬ jest-config@24.1.0 │ │ ├── @babel/core@7.1.2 deduped │ │ ├── babel-jest@24.1.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 │ │ ├── glob@7.1.2 deduped │ │ ├── jest-environment-jsdom@24.0.0 deduped │ │ ├─┬ jest-environment-node@24.0.0 │ │ │ ├── jest-mock@24.0.0 deduped │ │ │ └── jest-util@24.0.0 deduped │ │ ├── jest-get-type@24.0.0 deduped │ │ ├─┬ jest-jasmine2@24.1.0 │ │ │ ├── @babel/traverse@7.3.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 │ │ │ ├── co@4.6.0 deduped │ │ │ ├─┬ expect@24.1.0 │ │ │ │ ├─┬ ansi-styles@3.2.1 │ │ │ │ │ └── color-convert@1.9.3 deduped │ │ │ │ ├── jest-get-type@24.0.0 deduped │ │ │ │ ├── jest-matcher-utils@24.0.0 deduped │ │ │ │ ├── jest-message-util@24.0.0 deduped │ │ │ │ └── jest-regex-util@24.0.0 deduped │ │ │ ├── is-generator-fn@2.0.0 │ │ │ ├─┬ jest-each@24.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 │ │ │ │ ├── jest-get-type@24.0.0 deduped │ │ │ │ ├── jest-util@24.0.0 deduped │ │ │ │ └── pretty-format@24.0.0 deduped │ │ │ ├── jest-matcher-utils@24.0.0 deduped │ │ │ ├── jest-message-util@24.0.0 deduped │ │ │ ├── jest-snapshot@24.1.0 deduped │ │ │ ├── jest-util@24.0.0 deduped │ │ │ ├── pretty-format@24.0.0 deduped │ │ │ └── throat@4.1.0 deduped │ │ ├── jest-regex-util@24.0.0 deduped │ │ ├─┬ jest-resolve@24.1.0 │ │ │ ├─┬ browser-resolve@1.11.3 │ │ │ │ └── resolve@1.1.7 │ │ │ ├─┬ 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 │ │ │ └── realpath-native@1.1.0 deduped │ │ ├── jest-util@24.0.0 deduped │ │ ├── jest-validate@24.0.0 deduped │ │ ├── micromatch@3.1.10 deduped │ │ ├── pretty-format@24.0.0 deduped │ │ └── realpath-native@1.1.0 deduped │ ├─┬ jest-environment-jsdom@24.0.0 │ │ ├── jest-mock@24.0.0 │ │ ├── jest-util@24.0.0 deduped │ │ └─┬ jsdom@11.12.0 │ │ ├── abab@2.0.0 │ │ ├── acorn@5.7.3 │ │ ├─┬ acorn-globals@4.3.0 │ │ │ ├── acorn@6.1.1 deduped │ │ │ └── acorn-walk@6.1.1 │ │ ├── array-equal@1.0.0 │ │ ├── cssom@0.3.6 │ │ ├─┬ cssstyle@1.2.1 │ │ │ └── cssom@0.3.6 deduped │ │ ├─┬ data-urls@1.1.0 │ │ │ ├── abab@2.0.0 deduped │ │ │ ├── whatwg-mimetype@2.3.0 deduped │ │ │ └─┬ whatwg-url@7.0.0 │ │ │ ├── lodash.sortby@4.7.0 deduped │ │ │ ├── tr46@1.0.1 deduped │ │ │ └── webidl-conversions@4.0.2 deduped │ │ ├─┬ domexception@1.0.1 │ │ │ └── webidl-conversions@4.0.2 deduped │ │ ├─┬ escodegen@1.11.1 │ │ │ ├── esprima@3.1.3 │ │ │ ├── estraverse@4.2.0 deduped │ │ │ ├── esutils@2.0.2 deduped │ │ │ ├── optionator@0.8.2 deduped │ │ │ └── source-map@0.6.1 deduped │ │ ├─┬ html-encoding-sniffer@1.0.2 │ │ │ └── whatwg-encoding@1.0.5 deduped │ │ ├── left-pad@1.3.0 │ │ ├── nwsapi@2.1.1 │ │ ├── parse5@4.0.0 │ │ ├── pn@1.1.0 │ │ ├── request@2.88.0 deduped │ │ ├─┬ request-promise-native@1.0.7 │ │ │ ├─┬ request-promise-core@1.1.2 │ │ │ │ └── lodash@4.17.11 deduped │ │ │ ├── stealthy-require@1.1.1 │ │ │ └── tough-cookie@2.5.0 deduped │ │ ├── sax@1.2.4 deduped │ │ ├── symbol-tree@3.2.2 │ │ ├─┬ tough-cookie@2.5.0 │ │ │ ├── psl@1.1.31 deduped │ │ │ └── punycode@2.1.1 deduped │ │ ├─┬ w3c-hr-time@1.0.1 │ │ │ └── browser-process-hrtime@0.1.3 │ │ ├── webidl-conversions@4.0.2 │ │ ├─┬ whatwg-encoding@1.0.5 │ │ │ └── iconv-lite@0.4.24 deduped │ │ ├── whatwg-mimetype@2.3.0 │ │ ├─┬ whatwg-url@6.5.0 │ │ │ ├── lodash.sortby@4.7.0 deduped │ │ │ ├─┬ tr46@1.0.1 │ │ │ │ └── punycode@2.1.1 deduped │ │ │ └── webidl-conversions@4.0.2 deduped │ │ ├─┬ ws@5.2.2 │ │ │ └── async-limiter@1.0.0 │ │ └── xml-name-validator@3.0.0 │ ├── jest-get-type@24.0.0 │ ├─┬ jest-haste-map@24.0.0 │ │ ├─┬ fb-watchman@2.0.0 │ │ │ └─┬ bser@2.0.0 │ │ │ └── node-int64@0.4.0 │ │ ├── graceful-fs@4.1.15 deduped │ │ ├── invariant@2.2.4 deduped │ │ ├── jest-serializer@24.0.0 │ │ ├── jest-util@24.0.0 deduped │ │ ├── jest-worker@24.0.0 deduped │ │ ├── micromatch@3.1.10 deduped │ │ └─┬ sane@3.1.0 │ │ ├── anymatch@2.0.0 deduped │ │ ├─┬ capture-exit@1.2.0 │ │ │ └── rsvp@3.6.2 │ │ ├─┬ exec-sh@0.2.2 │ │ │ └── merge@1.2.1 │ │ ├─┬ execa@1.0.0 │ │ │ ├─┬ cross-spawn@6.0.5 │ │ │ │ ├── nice-try@1.0.5 deduped │ │ │ │ ├── path-key@2.0.1 deduped │ │ │ │ ├── semver@5.6.0 deduped │ │ │ │ ├── shebang-command@1.2.0 deduped │ │ │ │ └── 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 deduped │ │ │ ├── p-finally@1.0.0 deduped │ │ │ ├── signal-exit@3.0.2 deduped │ │ │ └── strip-eof@1.0.0 deduped │ │ ├── fb-watchman@2.0.0 deduped │ │ ├── fsevents@1.2.7 deduped │ │ ├── micromatch@3.1.10 deduped │ │ ├── minimist@1.2.0 deduped │ │ ├─┬ walker@1.0.7 │ │ │ └─┬ makeerror@1.0.11 │ │ │ └── tmpl@1.0.4 │ │ └─┬ watch@0.18.0 │ │ ├── exec-sh@0.2.2 deduped │ │ └── minimist@1.2.0 deduped │ ├─┬ jest-message-util@24.0.0 │ │ ├── @babel/code-frame@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 deduped │ │ ├── slash@2.0.0 │ │ └── stack-utils@1.0.2 │ ├── jest-regex-util@24.0.0 │ ├─┬ jest-resolve-dependencies@24.1.0 │ │ ├── jest-regex-util@24.0.0 deduped │ │ └── jest-snapshot@24.1.0 deduped │ ├─┬ jest-runner@24.1.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 │ │ ├── exit@0.1.2 deduped │ │ ├── graceful-fs@4.1.15 deduped │ │ ├── jest-config@24.1.0 deduped │ │ ├─┬ jest-docblock@24.0.0 │ │ │ └── detect-newline@2.1.0 │ │ ├── jest-haste-map@24.0.0 deduped │ │ ├── jest-jasmine2@24.1.0 deduped │ │ ├─┬ jest-leak-detector@24.0.0 │ │ │ └── pretty-format@24.0.0 deduped │ │ ├── jest-message-util@24.0.0 deduped │ │ ├── jest-runtime@24.1.0 deduped │ │ ├── jest-util@24.0.0 deduped │ │ ├── jest-worker@24.0.0 deduped │ │ ├── source-map-support@0.5.10 deduped │ │ └── throat@4.1.0 deduped │ ├─┬ jest-runtime@24.1.0 │ │ ├── @babel/core@7.1.2 deduped │ │ ├── babel-plugin-istanbul@5.1.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 │ │ ├── convert-source-map@1.6.0 deduped │ │ ├── exit@0.1.2 deduped │ │ ├── fast-json-stable-stringify@2.0.0 deduped │ │ ├─┬ glob@7.1.3 │ │ │ ├── fs.realpath@1.0.0 deduped │ │ │ ├── inflight@1.0.6 deduped │ │ │ ├── inherits@2.0.3 deduped │ │ │ ├── minimatch@3.0.4 deduped │ │ │ ├── once@1.4.0 deduped │ │ │ └── path-is-absolute@1.0.1 deduped │ │ ├── graceful-fs@4.1.15 deduped │ │ ├── jest-config@24.1.0 deduped │ │ ├── jest-haste-map@24.0.0 deduped │ │ ├── jest-message-util@24.0.0 deduped │ │ ├── jest-regex-util@24.0.0 deduped │ │ ├── jest-resolve@24.1.0 deduped │ │ ├── jest-snapshot@24.1.0 deduped │ │ ├── jest-util@24.0.0 deduped │ │ ├── jest-validate@24.0.0 deduped │ │ ├── micromatch@3.1.10 deduped │ │ ├── realpath-native@1.1.0 deduped │ │ ├── slash@2.0.0 │ │ ├── strip-bom@3.0.0 │ │ ├─┬ write-file-atomic@2.4.1 │ │ │ ├── graceful-fs@4.1.15 deduped │ │ │ ├── imurmurhash@0.1.4 deduped │ │ │ └── signal-exit@3.0.2 deduped │ │ └─┬ yargs@12.0.5 │ │ ├── cliui@4.1.0 deduped │ │ ├── decamelize@1.2.0 deduped │ │ ├─┬ find-up@3.0.0 │ │ │ └─┬ locate-path@3.0.0 │ │ │ ├─┬ p-locate@3.0.0 │ │ │ │ └─┬ p-limit@2.2.0 │ │ │ │ └── p-try@2.0.0 │ │ │ └── path-exists@3.0.0 deduped │ │ ├── get-caller-file@1.0.3 deduped │ │ ├─┬ os-locale@3.1.0 │ │ │ ├─┬ execa@1.0.0 │ │ │ │ ├─┬ cross-spawn@6.0.5 │ │ │ │ │ ├── nice-try@1.0.5 deduped │ │ │ │ │ ├── path-key@2.0.1 deduped │ │ │ │ │ ├── semver@5.6.0 deduped │ │ │ │ │ ├── shebang-command@1.2.0 deduped │ │ │ │ │ └── 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 deduped │ │ │ │ ├── p-finally@1.0.0 deduped │ │ │ │ ├── signal-exit@3.0.2 deduped │ │ │ │ └── strip-eof@1.0.0 deduped │ │ │ ├─┬ lcid@2.0.0 │ │ │ │ └── invert-kv@2.0.0 │ │ │ └─┬ mem@4.1.0 │ │ │ ├── map-age-cleaner@0.1.3 deduped │ │ │ ├── mimic-fn@1.2.0 deduped │ │ │ └── p-is-promise@2.0.0 │ │ ├── require-directory@2.1.1 deduped │ │ ├── require-main-filename@1.0.1 deduped │ │ ├── set-blocking@2.0.0 deduped │ │ ├─┬ string-width@2.1.1 │ │ │ ├── is-fullwidth-code-point@2.0.0 │ │ │ └─┬ strip-ansi@4.0.0 │ │ │ └── ansi-regex@3.0.0 │ │ ├── which-module@2.0.0 deduped │ │ ├── y18n@4.0.0 deduped │ │ └─┬ yargs-parser@11.1.1 │ │ ├── camelcase@5.2.0 deduped │ │ └── decamelize@1.2.0 deduped │ ├─┬ jest-snapshot@24.1.0 │ │ ├── @babel/types@7.3.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 │ │ ├─┬ jest-diff@24.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 │ │ │ ├── diff-sequences@24.0.0 │ │ │ ├── jest-get-type@24.0.0 deduped │ │ │ └── pretty-format@24.0.0 deduped │ │ ├─┬ jest-matcher-utils@24.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 │ │ │ ├── jest-diff@24.0.0 deduped │ │ │ ├── jest-get-type@24.0.0 deduped │ │ │ └── pretty-format@24.0.0 deduped │ │ ├── jest-message-util@24.0.0 deduped │ │ ├── jest-resolve@24.1.0 deduped │ │ ├── mkdirp@0.5.1 deduped │ │ ├── natural-compare@1.4.0 deduped │ │ ├── pretty-format@24.0.0 deduped │ │ └── semver@5.6.0 deduped │ ├─┬ jest-util@24.0.0 │ │ ├── callsites@3.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 │ │ ├── graceful-fs@4.1.15 deduped │ │ ├── is-ci@2.0.0 deduped │ │ ├── jest-message-util@24.0.0 deduped │ │ ├── mkdirp@0.5.1 deduped │ │ ├── slash@2.0.0 │ │ └── source-map@0.6.1 deduped │ ├─┬ jest-validate@24.0.0 │ │ ├── camelcase@5.2.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 │ │ ├── jest-get-type@24.0.0 deduped │ │ ├── leven@2.1.0 │ │ └── pretty-format@24.0.0 deduped │ ├─┬ jest-watcher@24.0.0 │ │ ├── ansi-escapes@3.2.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 │ │ ├── jest-util@24.0.0 deduped │ │ └── string-length@2.0.0 deduped │ ├─┬ jest-worker@24.0.0 │ │ ├─┬ merge-stream@1.0.1 │ │ │ └── readable-stream@2.3.6 deduped │ │ └─┬ supports-color@6.1.0 │ │ └── has-flag@3.0.0 deduped │ ├── micromatch@3.1.10 deduped │ ├─┬ node-notifier@5.4.0 │ │ ├── growly@1.3.0 │ │ ├── is-wsl@1.1.0 deduped │ │ ├── semver@5.6.0 deduped │ │ ├── shellwords@0.1.1 │ │ └── which@1.3.1 deduped │ ├─┬ p-each-series@1.0.0 │ │ └── p-reduce@1.0.0 │ ├─┬ pirates@4.0.1 │ │ └── node-modules-regexp@1.0.0 │ ├─┬ prompts@2.0.3 │ │ ├── kleur@3.0.2 │ │ └── sisteransi@1.0.0 │ ├─┬ realpath-native@1.1.0 │ │ └── util.promisify@1.0.0 deduped │ ├─┬ rimraf@2.6.3 │ │ └─┬ glob@7.1.3 │ │ ├── fs.realpath@1.0.0 deduped │ │ ├── inflight@1.0.6 deduped │ │ ├── inherits@2.0.3 deduped │ │ ├── minimatch@3.0.4 deduped │ │ ├── once@1.4.0 deduped │ │ └── path-is-absolute@1.0.1 deduped │ ├── slash@2.0.0 │ ├─┬ string-length@2.0.0 │ │ ├── astral-regex@1.0.0 deduped │ │ └─┬ strip-ansi@4.0.0 │ │ └── ansi-regex@3.0.0 │ ├─┬ strip-ansi@5.0.0 │ │ └── ansi-regex@4.0.0 │ ├── which@1.3.1 deduped │ └─┬ yargs@12.0.5 │ ├── cliui@4.1.0 deduped │ ├── decamelize@1.2.0 deduped │ ├─┬ find-up@3.0.0 │ │ └─┬ locate-path@3.0.0 │ │ ├─┬ p-locate@3.0.0 │ │ │ └─┬ p-limit@2.2.0 │ │ │ └── p-try@2.0.0 │ │ └── path-exists@3.0.0 deduped │ ├── get-caller-file@1.0.3 deduped │ ├─┬ os-locale@3.1.0 │ │ ├─┬ execa@1.0.0 │ │ │ ├─┬ cross-spawn@6.0.5 │ │ │ │ ├── nice-try@1.0.5 deduped │ │ │ │ ├── path-key@2.0.1 deduped │ │ │ │ ├── semver@5.6.0 deduped │ │ │ │ ├── shebang-command@1.2.0 deduped │ │ │ │ └── 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 deduped │ │ │ ├── p-finally@1.0.0 deduped │ │ │ ├── signal-exit@3.0.2 deduped │ │ │ └── strip-eof@1.0.0 deduped │ │ ├─┬ lcid@2.0.0 │ │ │ └── invert-kv@2.0.0 │ │ └─┬ mem@4.1.0 │ │ ├─┬ map-age-cleaner@0.1.3 │ │ │ └── p-defer@1.0.0 │ │ ├── mimic-fn@1.2.0 deduped │ │ └── p-is-promise@2.0.0 │ ├── require-directory@2.1.1 deduped │ ├── require-main-filename@1.0.1 deduped │ ├── set-blocking@2.0.0 deduped │ ├─┬ string-width@2.1.1 │ │ ├── is-fullwidth-code-point@2.0.0 │ │ └─┬ strip-ansi@4.0.0 │ │ └── ansi-regex@3.0.0 │ ├── which-module@2.0.0 deduped │ ├── y18n@4.0.0 deduped │ └─┬ yargs-parser@11.1.1 │ ├── camelcase@5.2.0 deduped │ └── decamelize@1.2.0 deduped ├─┬ jest-css-modules-transform@2.1.1 │ ├─┬ postcss@7.0.14 │ │ ├─┬ 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 deduped │ └─┬ postcss-nested@4.1.2 │ ├─┬ postcss@7.0.14 │ │ ├─┬ 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 deduped │ └─┬ postcss-selector-parser@5.0.0 │ ├── cssesc@2.0.0 │ ├── indexes-of@1.0.1 │ └── uniq@1.0.1 ├── lodash@4.17.11 ├─┬ next@8.0.3 │ ├─┬ @babel/core@7.1.2 │ │ ├── @babel/code-frame@7.0.0 deduped │ │ ├── @babel/generator@7.3.4 deduped │ │ ├─┬ @babel/helpers@7.3.1 │ │ │ ├── @babel/template@7.1.2 deduped │ │ │ ├── @babel/traverse@7.3.4 deduped │ │ │ └── @babel/types@7.3.4 deduped │ │ ├── @babel/parser@7.3.4 deduped │ │ ├── @babel/template@7.1.2 deduped │ │ ├── @babel/traverse@7.3.4 deduped │ │ ├── @babel/types@7.3.4 deduped │ │ ├─┬ convert-source-map@1.6.0 │ │ │ └── safe-buffer@5.1.2 deduped │ │ ├─┬ debug@3.2.6 │ │ │ └── ms@2.1.1 │ │ ├── json5@0.5.1 │ │ ├── lodash@4.17.11 deduped │ │ ├── resolve@1.5.0 deduped │ │ ├── semver@5.6.0 deduped │ │ └── source-map@0.5.7 │ ├─┬ @babel/plugin-proposal-class-properties@7.1.0 │ │ ├── @babel/helper-function-name@7.1.0 deduped │ │ ├─┬ @babel/helper-member-expression-to-functions@7.0.0 │ │ │ └── @babel/types@7.3.4 deduped │ │ ├─┬ @babel/helper-optimise-call-expression@7.0.0 │ │ │ └── @babel/types@7.3.4 deduped │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├─┬ @babel/helper-replace-supers@7.3.4 │ │ │ ├── @babel/helper-member-expression-to-functions@7.0.0 deduped │ │ │ ├── @babel/helper-optimise-call-expression@7.0.0 deduped │ │ │ ├── @babel/traverse@7.3.4 deduped │ │ │ └── @babel/types@7.3.4 deduped │ │ └─┬ @babel/plugin-syntax-class-properties@7.2.0 │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ ├─┬ @babel/plugin-proposal-object-rest-spread@7.0.0 │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ └── @babel/plugin-syntax-object-rest-spread@7.2.0 deduped │ ├─┬ @babel/plugin-syntax-dynamic-import@7.0.0 │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ ├─┬ @babel/plugin-transform-modules-commonjs@7.1.0 │ │ ├─┬ @babel/helper-module-transforms@7.2.2 │ │ │ ├── @babel/helper-module-imports@7.0.0 deduped │ │ │ ├── @babel/helper-simple-access@7.1.0 deduped │ │ │ ├── @babel/helper-split-export-declaration@7.0.0 deduped │ │ │ ├─┬ @babel/template@7.2.2 │ │ │ │ ├── @babel/code-frame@7.0.0 deduped │ │ │ │ ├── @babel/parser@7.3.4 deduped │ │ │ │ └── @babel/types@7.3.4 deduped │ │ │ ├── @babel/types@7.3.4 deduped │ │ │ └── lodash@4.17.11 deduped │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ └─┬ @babel/helper-simple-access@7.1.0 │ │ ├── @babel/template@7.1.2 deduped │ │ └── @babel/types@7.3.4 deduped │ ├─┬ @babel/plugin-transform-runtime@7.1.0 │ │ ├─┬ @babel/helper-module-imports@7.0.0 │ │ │ └── @babel/types@7.3.4 deduped │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├─┬ resolve@1.10.0 │ │ │ └── path-parse@1.0.6 deduped │ │ └── semver@5.6.0 deduped │ ├─┬ @babel/preset-env@7.1.0 │ │ ├── @babel/helper-module-imports@7.0.0 deduped │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├─┬ @babel/plugin-proposal-async-generator-functions@7.2.0 │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ ├─┬ @babel/helper-remap-async-to-generator@7.1.0 │ │ │ │ ├── @babel/helper-annotate-as-pure@7.0.0 deduped │ │ │ │ ├─┬ @babel/helper-wrap-function@7.2.0 │ │ │ │ │ ├── @babel/helper-function-name@7.1.0 deduped │ │ │ │ │ ├── @babel/template@7.1.2 deduped │ │ │ │ │ ├── @babel/traverse@7.3.4 deduped │ │ │ │ │ └── @babel/types@7.3.4 deduped │ │ │ │ ├── @babel/template@7.1.2 deduped │ │ │ │ ├── @babel/traverse@7.3.4 deduped │ │ │ │ └── @babel/types@7.3.4 deduped │ │ │ └── @babel/plugin-syntax-async-generators@7.2.0 deduped │ │ ├─┬ @babel/plugin-proposal-json-strings@7.2.0 │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ └── @babel/plugin-syntax-json-strings@7.2.0 deduped │ │ ├── @babel/plugin-proposal-object-rest-spread@7.0.0 deduped │ │ ├─┬ @babel/plugin-proposal-optional-catch-binding@7.2.0 │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ └── @babel/plugin-syntax-optional-catch-binding@7.2.0 deduped │ │ ├─┬ @babel/plugin-proposal-unicode-property-regex@7.2.0 │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ ├─┬ @babel/helper-regex@7.0.0 │ │ │ │ └── lodash@4.17.11 deduped │ │ │ └─┬ regexpu-core@4.4.0 │ │ │ ├── regenerate@1.4.0 │ │ │ ├─┬ regenerate-unicode-properties@7.0.0 │ │ │ │ └── regenerate@1.4.0 deduped │ │ │ ├── regjsgen@0.5.0 │ │ │ ├─┬ regjsparser@0.6.0 │ │ │ │ └── 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.4 │ │ │ └── unicode-match-property-value-ecmascript@1.0.2 │ │ ├─┬ @babel/plugin-syntax-async-generators@7.2.0 │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├── @babel/plugin-syntax-object-rest-spread@7.2.0 deduped │ │ ├─┬ @babel/plugin-syntax-optional-catch-binding@7.2.0 │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├─┬ @babel/plugin-transform-arrow-functions@7.2.0 │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├─┬ @babel/plugin-transform-async-to-generator@7.3.4 │ │ │ ├── @babel/helper-module-imports@7.0.0 deduped │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ └── @babel/helper-remap-async-to-generator@7.1.0 deduped │ │ ├─┬ @babel/plugin-transform-block-scoped-functions@7.2.0 │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├─┬ @babel/plugin-transform-block-scoping@7.3.4 │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ └── lodash@4.17.11 deduped │ │ ├─┬ @babel/plugin-transform-classes@7.3.4 │ │ │ ├── @babel/helper-annotate-as-pure@7.0.0 deduped │ │ │ ├── @babel/helper-define-map@7.1.0 deduped │ │ │ ├── @babel/helper-function-name@7.1.0 deduped │ │ │ ├── @babel/helper-optimise-call-expression@7.0.0 deduped │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ ├── @babel/helper-replace-supers@7.3.4 deduped │ │ │ ├── @babel/helper-split-export-declaration@7.0.0 deduped │ │ │ └── globals@11.11.0 deduped │ │ ├─┬ @babel/plugin-transform-computed-properties@7.2.0 │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├── @babel/plugin-transform-destructuring@7.3.2 deduped │ │ ├─┬ @babel/plugin-transform-dotall-regex@7.2.0 │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ ├── @babel/helper-regex@7.0.0 deduped │ │ │ └─┬ regexpu-core@4.4.0 │ │ │ ├── regenerate@1.4.0 deduped │ │ │ ├── regenerate-unicode-properties@7.0.0 deduped │ │ │ ├── regjsgen@0.5.0 │ │ │ ├─┬ regjsparser@0.6.0 │ │ │ │ └── jsesc@0.5.0 deduped │ │ │ ├── unicode-match-property-ecmascript@1.0.4 deduped │ │ │ └── unicode-match-property-value-ecmascript@1.0.2 deduped │ │ ├─┬ @babel/plugin-transform-duplicate-keys@7.2.0 │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├─┬ @babel/plugin-transform-exponentiation-operator@7.2.0 │ │ │ ├─┬ @babel/helper-builder-binary-assignment-operator-visitor@7.1.0 │ │ │ │ ├─┬ @babel/helper-explode-assignable-expression@7.1.0 │ │ │ │ │ ├── @babel/traverse@7.3.4 deduped │ │ │ │ │ └── @babel/types@7.3.4 deduped │ │ │ │ └── @babel/types@7.3.4 deduped │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├─┬ @babel/plugin-transform-for-of@7.2.0 │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├─┬ @babel/plugin-transform-function-name@7.2.0 │ │ │ ├── @babel/helper-function-name@7.1.0 deduped │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├─┬ @babel/plugin-transform-literals@7.2.0 │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├─┬ @babel/plugin-transform-modules-amd@7.2.0 │ │ │ ├── @babel/helper-module-transforms@7.2.2 deduped │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├── @babel/plugin-transform-modules-commonjs@7.1.0 deduped │ │ ├─┬ @babel/plugin-transform-modules-systemjs@7.3.4 │ │ │ ├─┬ @babel/helper-hoist-variables@7.0.0 │ │ │ │ └── @babel/types@7.3.4 deduped │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├─┬ @babel/plugin-transform-modules-umd@7.2.0 │ │ │ ├── @babel/helper-module-transforms@7.2.2 deduped │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├─┬ @babel/plugin-transform-new-target@7.0.0 │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├─┬ @babel/plugin-transform-object-super@7.2.0 │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ └── @babel/helper-replace-supers@7.3.4 deduped │ │ ├─┬ @babel/plugin-transform-parameters@7.3.3 │ │ │ ├─┬ @babel/helper-call-delegate@7.1.0 │ │ │ │ ├── @babel/helper-hoist-variables@7.0.0 deduped │ │ │ │ ├── @babel/traverse@7.3.4 deduped │ │ │ │ └── @babel/types@7.3.4 deduped │ │ │ ├── @babel/helper-get-function-arity@7.0.0 deduped │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├─┬ @babel/plugin-transform-regenerator@7.3.4 │ │ │ └─┬ regenerator-transform@0.13.4 │ │ │ └── private@0.1.8 deduped │ │ ├─┬ @babel/plugin-transform-shorthand-properties@7.2.0 │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├─┬ @babel/plugin-transform-spread@7.2.2 │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├─┬ @babel/plugin-transform-sticky-regex@7.2.0 │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ └── @babel/helper-regex@7.0.0 deduped │ │ ├─┬ @babel/plugin-transform-template-literals@7.2.0 │ │ │ ├── @babel/helper-annotate-as-pure@7.0.0 deduped │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├─┬ @babel/plugin-transform-typeof-symbol@7.2.0 │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped │ │ ├─┬ @babel/plugin-transform-unicode-regex@7.2.0 │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped │ │ │ ├── @babel/helper-regex@7.0.0 deduped │ │ │ └─┬ regexpu-core@4.4.0 │ │ │ ├── regenerate@1.4.0 deduped │ │ │ ├── regenerate-unicode-properties@7.0.0 deduped │ │ │ ├── regjsgen@0.5.0 │ │ │ ├─┬ regjsparser@0.6.0 │ │ │ │ └── jsesc@0.5.0 deduped │ │ │ ├── unicode-match-property-ecmascript@1.0.4 deduped │ │ │ └── unicode-match-property-value-ecmascript@1.0.2 deduped │ │ ├─┬ browserslist@4.4.2 │ │ │ ├── caniuse-lite@1.0.30000941 deduped │ │ │ ├── electron-to-chromium@1.3.113 deduped │ │ │ └── node-releases@1.1.9 deduped │ │ ├─┬ invariant@2.2.4 │ │ │ └── loose-envify@1.4.0 deduped │ │ ├── js-levenshtein@1.1.6 │ │ └── semver@5.6.0 deduped │ ├── @babel/preset-react@7.0.0 deduped │ ├─┬ @babel/runtime@7.1.2 │ │ └── regenerator-runtime@0.12.1 deduped │ ├─┬ @babel/runtime-corejs2@7.1.2 │ │ ├── core-js@2.6.5 │ │ └── regenerator-runtime@0.12.1 deduped │ ├─┬ @babel/template@7.1.2 │ │ ├── @babel/code-frame@7.0.0 deduped │ │ ├── @babel/parser@7.3.4 deduped │ │ └── @babel/types@7.3.4 deduped │ ├── arg@3.0.0 │ ├─┬ async-sema@2.1.4 │ │ └── double-ended-queue@2.1.0-0 │ ├─┬ autodll-webpack-plugin@0.4.2 │ │ ├── bluebird@3.5.3 │ │ ├── del@3.0.0 deduped │ │ ├─┬ find-cache-dir@1.0.0 │ │ │ ├── commondir@1.0.1 deduped │ │ │ ├── make-dir@1.3.0 deduped │ │ │ └── pkg-dir@2.0.0 deduped │ │ ├── lodash@4.17.11 deduped │ │ ├─┬ make-dir@1.3.0 │ │ │ └── pify@3.0.0 deduped │ │ ├── memory-fs@0.4.1 deduped │ │ ├── read-pkg@2.0.0 deduped │ │ ├── tapable@1.1.1 deduped │ │ ├─┬ webpack-merge@4.2.1 │ │ │ └── lodash@4.17.11 deduped │ │ └── webpack-sources@1.3.0 deduped │ ├── babel-core@7.0.0-bridge.0 │ ├─┬ babel-loader@8.0.2 │ │ ├─┬ find-cache-dir@1.0.0 │ │ │ ├── commondir@1.0.1 deduped │ │ │ ├── make-dir@1.3.0 deduped │ │ │ └── pkg-dir@2.0.0 deduped │ │ ├── loader-utils@1.2.3 deduped │ │ ├── mkdirp@0.5.1 deduped │ │ └─┬ util.promisify@1.0.0 │ │ ├── define-properties@1.1.3 deduped │ │ └── object.getownpropertydescriptors@2.0.3 deduped │ ├── babel-plugin-react-require@3.0.0 │ ├── babel-plugin-transform-react-remove-prop-types@0.4.15 │ ├─┬ cacache@11.3.2 │ │ ├── bluebird@3.5.3 deduped │ │ ├── chownr@1.1.1 │ │ ├── figgy-pudding@3.5.1 │ │ ├─┬ glob@7.1.3 │ │ │ ├── fs.realpath@1.0.0 deduped │ │ │ ├── inflight@1.0.6 deduped │ │ │ ├── inherits@2.0.3 deduped │ │ │ ├── minimatch@3.0.4 deduped │ │ │ ├── once@1.4.0 deduped │ │ │ └── path-is-absolute@1.0.1 deduped │ │ ├── graceful-fs@4.1.15 deduped │ │ ├─┬ lru-cache@5.1.1 │ │ │ └── yallist@3.0.3 │ │ ├─┬ mississippi@3.0.0 │ │ │ ├─┬ concat-stream@1.6.2 │ │ │ │ ├── buffer-from@1.1.1 deduped │ │ │ │ ├── inherits@2.0.3 deduped │ │ │ │ ├── readable-stream@2.3.6 deduped │ │ │ │ └── typedarray@0.0.6 │ │ │ ├─┬ duplexify@3.7.1 │ │ │ │ ├── end-of-stream@1.4.1 deduped │ │ │ │ ├── inherits@2.0.3 deduped │ │ │ │ ├── readable-stream@2.3.6 deduped │ │ │ │ └── stream-shift@1.0.0 │ │ │ ├─┬ end-of-stream@1.4.1 │ │ │ │ └── once@1.4.0 deduped │ │ │ ├─┬ flush-write-stream@1.1.1 │ │ │ │ ├── inherits@2.0.3 deduped │ │ │ │ └── readable-stream@2.3.6 deduped │ │ │ ├─┬ from2@2.3.0 │ │ │ │ ├── inherits@2.0.3 deduped │ │ │ │ └── readable-stream@2.3.6 deduped │ │ │ ├─┬ parallel-transform@1.1.0 │ │ │ │ ├── cyclist@0.2.2 │ │ │ │ ├── inherits@2.0.3 deduped │ │ │ │ └── readable-stream@2.3.6 deduped │ │ │ ├── pump@3.0.0 deduped │ │ │ ├─┬ pumpify@1.5.1 │ │ │ │ ├── duplexify@3.7.1 deduped │ │ │ │ ├── inherits@2.0.3 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 deduped │ │ ├─┬ 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 deduped │ │ │ │ ├── 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 │ │ ├── rimraf@2.6.3 deduped │ │ ├─┬ ssri@6.0.1 │ │ │ └── figgy-pudding@3.5.1 deduped │ │ ├─┬ unique-filename@1.1.1 │ │ │ └─┬ unique-slug@2.0.1 │ │ │ └── imurmurhash@0.1.4 deduped │ │ └── y18n@4.0.0 │ ├── case-sensitive-paths-webpack-plugin@2.1.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 │ ├─┬ cross-spawn@5.1.0 │ │ ├─┬ lru-cache@4.1.5 │ │ │ ├── pseudomap@1.0.2 │ │ │ └── yallist@2.1.2 │ │ ├── shebang-command@1.2.0 deduped │ │ └── which@1.3.1 deduped │ ├─┬ del@3.0.0 │ │ ├─┬ globby@6.1.0 │ │ │ ├── array-union@1.0.2 deduped │ │ │ ├── glob@7.1.2 deduped │ │ │ ├── object-assign@4.1.1 deduped │ │ │ ├── pify@2.3.0 │ │ │ └─┬ pinkie-promise@2.0.1 │ │ │ └── pinkie@2.0.4 │ │ ├── is-path-cwd@1.0.0 │ │ ├─┬ is-path-in-cwd@1.0.1 │ │ │ └─┬ is-path-inside@1.0.1 │ │ │ └── path-is-inside@1.0.2 deduped │ │ ├── p-map@1.2.0 │ │ ├── pify@3.0.0 deduped │ │ └── rimraf@2.6.3 deduped │ ├── event-source-polyfill@0.0.12 │ ├─┬ find-cache-dir@2.0.0 │ │ ├── commondir@1.0.1 │ │ ├── make-dir@1.3.0 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.0 │ │ │ └── p-try@2.0.0 │ │ └── path-exists@3.0.0 deduped │ ├─┬ 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 │ ├── fresh@0.5.2 deduped │ ├── glob@7.1.2 deduped │ ├─┬ hoist-non-react-statics@3.2.0 │ │ └── react-is@16.6.3 deduped │ ├── http-status@1.0.1 │ ├─┬ launch-editor@2.2.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 │ │ └── shell-quote@1.6.1 deduped │ ├─┬ loader-utils@1.1.0 │ │ ├── big.js@3.2.0 │ │ ├── emojis-list@2.1.0 │ │ └── json5@0.5.1 │ ├─┬ mkdirp-then@1.2.0 │ │ ├── any-promise@1.3.0 │ │ └── mkdirp@0.5.1 deduped │ ├── nanoid@1.2.1 │ ├─┬ next-server@8.0.3 │ │ ├── etag@1.8.1 deduped │ │ ├─┬ find-up@3.0.0 │ │ │ └─┬ locate-path@3.0.0 │ │ │ ├─┬ p-locate@3.0.0 │ │ │ │ └─┬ p-limit@2.2.0 │ │ │ │ └── p-try@2.0.0 │ │ │ └── path-exists@3.0.0 deduped │ │ ├── fresh@0.5.2 deduped │ │ ├── path-to-regexp@2.1.0 │ │ ├─┬ prop-types@15.6.2 │ │ │ ├── loose-envify@1.4.0 deduped │ │ │ └── object-assign@4.1.1 deduped │ │ ├─┬ send@0.16.1 │ │ │ ├── debug@2.6.9 deduped │ │ │ ├── depd@1.1.2 deduped │ │ │ ├── destroy@1.0.4 deduped │ │ │ ├── encodeurl@1.0.2 deduped │ │ │ ├── escape-html@1.0.3 deduped │ │ │ ├── etag@1.8.1 deduped │ │ │ ├── fresh@0.5.2 deduped │ │ │ ├── http-errors@1.6.3 deduped │ │ │ ├── mime@1.4.1 deduped │ │ │ ├── ms@2.0.0 deduped │ │ │ ├── on-finished@2.3.0 deduped │ │ │ ├── range-parser@1.2.0 deduped │ │ │ └── statuses@1.3.1 │ │ └── url@0.11.0 deduped │ ├── UNMET PEER DEPENDENCY preact@* │ ├─┬ prop-types@15.6.2 │ │ ├── loose-envify@1.4.0 deduped │ │ └── object-assign@4.1.1 deduped │ ├─┬ prop-types-exact@1.2.0 │ │ ├── has@1.0.3 deduped │ │ ├── object.assign@4.1.0 deduped │ │ └── reflect.ownkeys@0.2.0 │ ├── react-error-overlay@4.0.0 │ ├── react-is@16.6.3 │ ├─┬ recursive-copy@2.0.6 │ │ ├─┬ del@2.2.2 │ │ │ ├─┬ globby@5.0.0 │ │ │ │ ├── array-union@1.0.2 deduped │ │ │ │ ├── arrify@1.0.1 deduped │ │ │ │ ├── glob@7.1.2 deduped │ │ │ │ ├── object-assign@4.1.1 deduped │ │ │ │ ├── pify@2.3.0 deduped │ │ │ │ └── pinkie-promise@2.0.1 deduped │ │ │ ├── is-path-cwd@1.0.0 deduped │ │ │ ├── is-path-in-cwd@1.0.1 deduped │ │ │ ├── object-assign@4.1.1 deduped │ │ │ ├── pify@2.3.0 deduped │ │ │ ├── pinkie-promise@2.0.1 deduped │ │ │ └── rimraf@2.6.3 deduped │ │ ├── emitter-mixin@0.0.3 │ │ ├─┬ errno@0.1.7 │ │ │ └── prr@1.0.1 │ │ ├── graceful-fs@4.1.15 deduped │ │ ├── junk@1.0.3 │ │ ├─┬ maximatch@0.1.0 │ │ │ ├── array-differ@1.0.0 │ │ │ ├── array-union@1.0.2 deduped │ │ │ ├── arrify@1.0.1 deduped │ │ │ └── minimatch@3.0.4 deduped │ │ ├── mkdirp@0.5.1 deduped │ │ ├── pify@2.3.0 │ │ ├─┬ promise@7.3.1 │ │ │ └── asap@2.0.6 │ │ └── slash@1.0.0 │ ├─┬ resolve@1.5.0 │ │ └── path-parse@1.0.6 deduped │ ├─┬ schema-utils@1.0.0 │ │ ├── ajv@6.10.0 deduped │ │ ├── ajv-errors@1.0.1 │ │ └── ajv-keywords@3.4.0 deduped │ ├── serialize-javascript@1.4.0 │ ├── source-map@0.6.1 │ ├─┬ strip-ansi@3.0.1 │ │ └── ansi-regex@2.1.1 │ ├─┬ styled-jsx@3.2.1 │ │ ├── babel-plugin-syntax-jsx@6.18.0 │ │ ├── babel-types@6.26.0 deduped │ │ ├── convert-source-map@1.6.0 deduped │ │ ├── loader-utils@1.2.3 deduped │ │ ├── source-map@0.7.3 │ │ ├── string-hash@1.1.3 │ │ ├── stylis@3.5.4 │ │ └── stylis-rule-sheet@0.0.10 │ ├─┬ terser@3.16.1 │ │ ├── commander@2.17.1 deduped │ │ ├── source-map@0.6.1 deduped │ │ └─┬ source-map-support@0.5.10 │ │ ├── buffer-from@1.1.1 │ │ └── source-map@0.6.1 deduped │ ├─┬ tty-aware-progress@1.0.3 │ │ └── progress@2.0.3 deduped │ ├── unfetch@3.0.0 │ ├── unistore@3.2.1 │ ├─┬ url@0.11.0 │ │ ├── punycode@1.3.2 │ │ └── querystring@0.2.0 │ ├── webpack@4.29.0 deduped │ ├─┬ webpack-dev-middleware@3.4.0 │ │ ├── memory-fs@0.4.1 deduped │ │ ├── mime@2.4.0 │ │ ├── range-parser@1.2.0 deduped │ │ └─┬ webpack-log@2.0.0 │ │ ├── ansi-colors@3.2.4 │ │ └── uuid@3.3.2 deduped │ ├─┬ webpack-hot-middleware@2.24.3 │ │ ├── ansi-html@0.0.7 │ │ ├── html-entities@1.2.1 │ │ ├── querystring@0.2.0 deduped │ │ └── strip-ansi@3.0.1 deduped │ ├─┬ webpack-sources@1.3.0 │ │ ├── source-list-map@2.0.1 │ │ └── source-map@0.6.1 deduped │ └─┬ worker-farm@1.5.2 │ ├── errno@0.1.7 deduped │ └── xtend@4.0.1 ├─┬ next-i18next@0.34.0 │ ├── detect-node@2.0.4 │ ├── hoist-non-react-statics@3.3.0 deduped │ ├─┬ i18next@15.0.5 │ │ └── @babel/runtime@7.3.4 deduped │ ├── i18next-browser-languagedetector@3.0.1 │ ├─┬ i18next-express-middleware@1.7.1 │ │ └─┬ cookies@0.7.1 │ │ ├── depd@1.1.2 deduped │ │ └── keygrip@1.0.3 │ ├─┬ i18next-node-fs-backend@2.1.1 │ │ ├─┬ js-yaml@3.12.0 │ │ │ ├── argparse@1.0.10 deduped │ │ │ └── esprima@4.0.1 deduped │ │ └─┬ json5@2.0.0 │ │ └── minimist@1.2.0 deduped │ ├── i18next-xhr-backend@2.0.1 │ ├─┬ path-match@1.2.4 │ │ ├─┬ http-errors@1.4.0 │ │ │ ├── inherits@2.0.1 │ │ │ └── statuses@1.4.0 deduped │ │ └─┬ path-to-regexp@1.7.0 │ │ └── isarray@0.0.1 │ ├─┬ pretty-error@2.1.1 │ │ ├─┬ renderkid@2.0.3 │ │ │ ├─┬ css-select@1.2.0 │ │ │ │ ├── boolbase@1.0.0 │ │ │ │ ├── css-what@2.1.3 │ │ │ │ ├─┬ domutils@1.5.1 │ │ │ │ │ ├─┬ dom-serializer@0.1.1 │ │ │ │ │ │ ├── domelementtype@1.3.1 deduped │ │ │ │ │ │ └── entities@1.1.2 deduped │ │ │ │ │ └── domelementtype@1.3.1 deduped │ │ │ │ └─┬ nth-check@1.0.2 │ │ │ │ └── boolbase@1.0.0 deduped │ │ │ ├─┬ dom-converter@0.2.0 │ │ │ │ └── utila@0.4.0 deduped │ │ │ ├─┬ htmlparser2@3.10.1 │ │ │ │ ├── domelementtype@1.3.1 │ │ │ │ ├─┬ domhandler@2.4.2 │ │ │ │ │ └── domelementtype@1.3.1 deduped │ │ │ │ ├── domutils@1.5.1 deduped │ │ │ │ ├── entities@1.1.2 │ │ │ │ ├── inherits@2.0.3 deduped │ │ │ │ └─┬ readable-stream@3.2.0 │ │ │ │ ├── inherits@2.0.3 deduped │ │ │ │ ├── string_decoder@1.1.1 deduped │ │ │ │ └── util-deprecate@1.0.2 deduped │ │ │ ├── strip-ansi@3.0.1 deduped │ │ │ └── utila@0.4.0 deduped │ │ └── utila@0.4.0 │ ├── prop-types@15.7.2 deduped │ ├─┬ react-i18next@9.0.10 │ │ ├── @babel/runtime@7.3.4 deduped │ │ ├─┬ hoist-non-react-statics@3.2.1 │ │ │ └── react-is@16.8.3 deduped │ │ └─┬ html-parse-stringify2@2.0.1 │ │ └── void-elements@2.0.1 │ └── url@0.11.0 deduped ├─┬ node-sass@4.11.0 │ ├── async-foreach@0.1.3 │ ├─┬ chalk@1.1.3 │ │ ├── ansi-styles@2.2.1 │ │ ├── escape-string-regexp@1.0.5 deduped │ │ ├─┬ has-ansi@2.0.0 │ │ │ └── ansi-regex@2.1.1 deduped │ │ ├── strip-ansi@3.0.1 deduped │ │ └── supports-color@2.0.0 │ ├─┬ cross-spawn@3.0.1 │ │ ├── lru-cache@4.1.5 deduped │ │ └── which@1.3.1 deduped │ ├─┬ gaze@1.1.3 │ │ └─┬ globule@1.2.1 │ │ ├── glob@7.1.2 deduped │ │ ├── lodash@4.17.11 deduped │ │ └── minimatch@3.0.4 deduped │ ├── get-stdin@4.0.1 │ ├── glob@7.1.2 deduped │ ├── in-publish@2.0.0 │ ├── lodash.assign@4.2.0 │ ├── lodash.clonedeep@4.5.0 │ ├── lodash.mergewith@4.6.1 │ ├─┬ meow@3.7.0 │ │ ├─┬ camelcase-keys@2.1.0 │ │ │ ├── camelcase@2.1.1 │ │ │ └── map-obj@1.0.1 deduped │ │ ├── decamelize@1.2.0 deduped │ │ ├─┬ loud-rejection@1.6.0 │ │ │ ├─┬ currently-unhandled@0.4.1 │ │ │ │ └── array-find-index@1.0.2 │ │ │ └── signal-exit@3.0.2 deduped │ │ ├── map-obj@1.0.1 │ │ ├── minimist@1.2.0 │ │ ├── normalize-package-data@2.5.0 deduped │ │ ├── object-assign@4.1.1 deduped │ │ ├─┬ 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 deduped │ │ │ │ ├─┬ parse-json@2.2.0 │ │ │ │ │ └── error-ex@1.3.2 deduped │ │ │ │ ├── pify@2.3.0 │ │ │ │ ├── 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 │ │ ├─┬ redent@1.0.0 │ │ │ ├─┬ indent-string@2.1.0 │ │ │ │ └─┬ repeating@2.0.1 │ │ │ │ └─┬ is-finite@1.0.2 │ │ │ │ └── number-is-nan@1.0.1 deduped │ │ │ └─┬ strip-indent@1.0.1 │ │ │ └── get-stdin@4.0.1 │ │ └── trim-newlines@1.0.0 │ ├── mkdirp@0.5.1 deduped │ ├── nan@2.12.1 │ ├─┬ node-gyp@3.8.0 │ │ ├─┬ fstream@1.0.11 │ │ │ ├── graceful-fs@4.1.15 deduped │ │ │ ├── inherits@2.0.3 deduped │ │ │ ├── mkdirp@0.5.1 deduped │ │ │ └── rimraf@2.6.3 deduped │ │ ├── glob@7.1.2 deduped │ │ ├── graceful-fs@4.1.15 deduped │ │ ├── mkdirp@0.5.1 deduped │ │ ├─┬ nopt@3.0.6 │ │ │ └── abbrev@1.1.1 │ │ ├── npmlog@4.1.2 deduped │ │ ├─┬ osenv@0.1.5 │ │ │ ├── os-homedir@1.0.2 │ │ │ └── os-tmpdir@1.0.2 │ │ ├── request@2.88.0 deduped │ │ ├── rimraf@2.6.3 deduped │ │ ├── semver@5.3.0 │ │ ├─┬ tar@2.2.1 │ │ │ ├─┬ block-stream@0.0.9 │ │ │ │ └── inherits@2.0.3 deduped │ │ │ ├── fstream@1.0.11 deduped │ │ │ └── inherits@2.0.3 deduped │ │ └── which@1.3.1 deduped │ ├─┬ npmlog@4.1.2 │ │ ├─┬ are-we-there-yet@1.1.5 │ │ │ ├── delegates@1.0.0 │ │ │ └── readable-stream@2.3.6 deduped │ │ ├── console-control-strings@1.1.0 │ │ ├─┬ gauge@2.7.4 │ │ │ ├── aproba@1.2.0 deduped │ │ │ ├── console-control-strings@1.1.0 deduped │ │ │ ├── has-unicode@2.0.1 │ │ │ ├── object-assign@4.1.1 deduped │ │ │ ├── signal-exit@3.0.2 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 │ │ │ │ └── strip-ansi@3.0.1 deduped │ │ │ ├── strip-ansi@3.0.1 deduped │ │ │ └─┬ wide-align@1.1.3 │ │ │ └── string-width@1.0.2 deduped │ │ └── set-blocking@2.0.0 deduped │ ├─┬ request@2.88.0 │ │ ├── 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.22 deduped │ │ ├─┬ har-validator@5.1.3 │ │ │ ├── ajv@6.10.0 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.3.0 deduped │ │ │ └─┬ 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 deduped │ │ │ └── tweetnacl@0.14.5 │ │ ├── is-typedarray@1.0.0 │ │ ├── isstream@0.1.2 │ │ ├── json-stringify-safe@5.0.1 │ │ ├── mime-types@2.1.22 deduped │ │ ├── oauth-sign@0.9.0 │ │ ├── performance-now@2.1.0 │ │ ├── qs@6.5.2 deduped │ │ ├── safe-buffer@5.1.2 deduped │ │ ├─┬ tough-cookie@2.4.3 │ │ │ ├── psl@1.1.31 │ │ │ └── punycode@1.4.1 │ │ ├─┬ tunnel-agent@0.6.0 │ │ │ └── safe-buffer@5.1.2 deduped │ │ └── uuid@3.3.2 │ ├─┬ sass-graph@2.2.4 │ │ ├── glob@7.1.2 deduped │ │ ├── lodash@4.17.11 deduped │ │ ├─┬ scss-tokenizer@0.2.3 │ │ │ ├── js-base64@2.5.1 │ │ │ └─┬ source-map@0.4.4 │ │ │ └── amdefine@1.0.1 │ │ └─┬ yargs@7.1.0 │ │ ├── camelcase@3.0.0 │ │ ├─┬ cliui@3.2.0 │ │ │ ├── string-width@1.0.2 deduped │ │ │ ├── strip-ansi@3.0.1 deduped │ │ │ └── wrap-ansi@2.1.0 deduped │ │ ├── decamelize@1.2.0 deduped │ │ ├── get-caller-file@1.0.3 deduped │ │ ├─┬ os-locale@1.4.0 │ │ │ └── lcid@1.0.0 deduped │ │ ├─┬ 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 deduped │ │ │ │ ├─┬ parse-json@2.2.0 │ │ │ │ │ └── error-ex@1.3.2 deduped │ │ │ │ ├── pify@2.3.0 │ │ │ │ ├── pinkie-promise@2.0.1 deduped │ │ │ │ └─┬ strip-bom@2.0.0 │ │ │ │ └── is-utf8@0.2.1 deduped │ │ │ ├── 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 deduped │ │ ├── set-blocking@2.0.0 deduped │ │ ├── string-width@1.0.2 deduped │ │ ├── which-module@1.0.0 │ │ ├── y18n@3.2.1 │ │ └─┬ yargs-parser@5.0.0 │ │ └── camelcase@3.0.0 deduped │ ├─┬ stdout-stream@1.4.1 │ │ └─┬ readable-stream@2.3.6 │ │ ├── core-util-is@1.0.2 │ │ ├── inherits@2.0.3 deduped │ │ ├── isarray@1.0.0 deduped │ │ ├── process-nextick-args@2.0.0 │ │ ├── safe-buffer@5.1.2 deduped │ │ ├── string_decoder@1.1.1 deduped │ │ └── util-deprecate@1.0.2 deduped │ └─┬ true-case-path@1.0.3 │ └── glob@7.1.2 deduped ├─┬ prop-types@15.7.2 │ ├─┬ loose-envify@1.4.0 │ │ └── js-tokens@4.0.0 │ ├── object-assign@4.1.1 │ └── react-is@16.8.3 deduped ├─┬ react@16.8.3 │ ├── loose-envify@1.4.0 deduped │ ├── object-assign@4.1.1 deduped │ ├── prop-types@15.7.2 deduped │ └─┬ scheduler@0.13.3 │ ├── loose-envify@1.4.0 deduped │ └── object-assign@4.1.1 deduped ├─┬ react-dom@16.8.3 │ ├── loose-envify@1.4.0 deduped │ ├── object-assign@4.1.1 deduped │ ├── prop-types@15.7.2 deduped │ └── scheduler@0.13.3 deduped ├─┬ react-hammerjs@1.0.1 │ └── hammerjs@2.0.8 ├─┬ react-testing-library@6.0.0 │ ├── @babel/runtime@7.3.4 deduped │ └─┬ dom-testing-library@3.16.8 │ ├── @babel/runtime@7.3.4 deduped │ ├── @sheerun/mutationobserver-shim@0.3.2 │ ├─┬ pretty-format@24.0.0 │ │ ├── ansi-regex@4.0.0 │ │ └─┬ ansi-styles@3.2.1 │ │ └── color-convert@1.9.3 deduped │ └── wait-for-expect@1.1.0 └─┬ storybook-addon-jsx@6.0.0 ├─┬ js-beautify@1.9.0 │ ├─┬ config-chain@1.1.12 │ │ ├── ini@1.3.5 │ │ └── proto-list@1.2.4 │ ├─┬ editorconfig@0.15.2 │ │ ├── @types/node@10.12.29 │ │ ├── @types/semver@5.5.0 │ │ ├── commander@2.19.0 │ │ ├── lru-cache@4.1.5 deduped │ │ ├── semver@5.6.0 deduped │ │ └── sigmund@1.0.1 │ ├─┬ glob@7.1.3 │ │ ├── fs.realpath@1.0.0 deduped │ │ ├── inflight@1.0.6 deduped │ │ ├── inherits@2.0.3 deduped │ │ ├── minimatch@3.0.4 deduped │ │ ├── once@1.4.0 deduped │ │ └── path-is-absolute@1.0.1 deduped │ ├── mkdirp@0.5.1 deduped │ └─┬ nopt@4.0.1 │ ├── abbrev@1.1.1 deduped │ └── osenv@0.1.5 deduped ├─┬ react-copy-to-clipboard@5.0.1 │ ├── copy-to-clipboard@3.0.8 deduped │ └── prop-types@15.7.2 deduped └── react-element-to-jsx-string@14.0.2 deduped ```
aralroca commented 5 years ago

I guess is related with @material-ui/core@3.9.2, not with Next.js

aralroca commented 5 years ago

Adding "core-js": "2.6.5" on package.json as devDependeny is fixing the storybook. After this is working well (And don't break at least the things that I have from material-ui...) 😕

aralroca commented 5 years ago

I changed the issue title, and I close the issue

tmeasday commented 5 years ago

Do we need to depend on core-js somehow and we are not? (@babel/runtime?)

joaogarin commented 5 years ago

Also getting the sam error, on a project that is not using nextjs or material ui..Just plain storybook with babel (including babel polifyll)

could it be that is caused by fbjs required by react-addons-create-fragment which is by itself required by @storybook/addon-info? Some other dependencies also seem to require fbjs in my project..

forcing core-js seems to work but not something I would like to do since its not a direct dependncy on my project.

artembatura commented 5 years ago

@tmeasday I have the same problem, but error stack is much bigger. I think we need add core-js@2.6.3 dependency to @storybook/ui

tmeasday commented 5 years ago

@artemirq that does seem like one way forward. I guess I am still wondering where that dependency comes from? I don't think babel asks us to add that as a direct dep; is there a babel dependency we are missing? (@babel/runtime would be what I would have guessed, but it doesn't depend on core-js)

tmeasday commented 5 years ago

Looks like this issue describes the problem more cleanly: https://github.com/storybooks/storybook/issues/5831 -- so I'll close this one.