quasarframework / quasar

Quasar Framework - Build high-performance VueJS user interfaces in record time
https://quasar.dev
MIT License
26.02k stars 3.54k forks source link

Workbox options are added to workbox.core instead of workbox #4989

Closed ssuess closed 5 years ago

ssuess commented 5 years ago

Although I am sure some workbox options should indeed be added to workbox.core, others that are standard (such as skipWaiting and clientsClaim) should instead be added to workbox top level.

To Reproduce Steps to reproduce the behavior:

  1. Go to quasar.conf.js and add workboxOptions: { skipWaiting: true } under pwa
  2. load pwa in web browser

Expected behavior That the option will be properly added

Actual behavior Option is not loaded and browser throws an error: Uncaught TypeError: workbox.core.skipWaiting is not a function

This is because not all options are appropriate to add to core, some (like skipWaiting) should be added above. The correct option should be workbox.skipWaiting()

Workaround Create custom service worker file and add options manually.

Possible Solution Perhaps there should be two options available in quasar.conf.js, one for workboxCoreOptions and one for workboxOptions? Or some warning about invalid options?

btw, here is my quasar config info: Operating System - Darwin(18.7.0) - darwin/x64 NodeJs - 11.11.0

Global packages NPM - 6.10.3 yarn - Not installed @quasar/cli - 1.0.0 cordova - 8.1.2 (cordova-lib@8.1.1)

Important local packages quasar - 1.1.0 -- Build high-performance VueJS user interfaces (SPA, PWA, SSR, Mobile and Desktop) in record time @quasar/app - 1.0.5 -- Quasar Framework local CLI @quasar/extras - 1.3.1 -- Quasar Framework fonts, icons and animations vue - 2.6.10 -- Reactive, component-oriented view layer for modern web interfaces. vue-router - 3.1.2 -- Official router for Vue.js 2 vuex - 3.1.1 -- state management for Vue.js electron - Not installed electron-packager - Not installed electron-builder - Not installed @babel/core - 7.5.5 -- Babel compiler core. webpack - 4.39.3 -- Packs CommonJs/AMD modules for the browser. Allows to split your codebase into multiple bundles, which can be loaded on demand. Support loaders to preprocess files, i.e. json, jsx, es7, css, less, ... and your custom stuff. webpack-dev-server - 3.8.0 -- Serves a webpack app. Updates the browser on changes. workbox-webpack-plugin - 4.3.1 -- A plugin for your Webpack build process, helping you generate a manifest of local files that workbox-sw should precache. register-service-worker - 1.6.2 -- Script for registering service worker, with hooks

Quasar App Extensions @quasar/quasar-app-extension-icon-genie - 1.0.1 -- A Quasar CLI Extension for Making All Your Icons

Networking Host - ssuess-pro en0 - 193.0.21.19 utun3 - 10.245.2.181

rstoenescu commented 5 years ago

Hi @ssuess ,

I just tested with quasar/app 1.0.5 (that you also have), and seems to be working correctly (no errors).

At best, this would be an error to report to workbox for their workbox-webpack-plugin. All options are passed to their plugin, and if the plugin does not generate the right content, it can only be due to a problem in their package. But I tested it and no error pops out.

Here's the generated service-worker.js file (stripped out comments):

importScripts("https://storage.googleapis.com/workbox-cdn/releases/4.3.1/workbox-sw.js");

importScripts(
  "precache-manifest.9cf5b321dd467d1e3caec05ef82c8bbf.js"
);

workbox.core.setCacheNameDetails({prefix: "tvuex"});

workbox.core.skipWaiting();

self.__precacheManifest = [].concat(self.__precacheManifest || []);
workbox.precaching.precacheAndRoute(self.__precacheManifest, {});

Are you sure that you are testing the right URL with the latest generated service worker? Might happen, who knows... Any cache issues somehow on the workbox-sw.js from above? If you can confirm that you have eliminated this chance, can you share a reproducing repo pls? I've tested and tested and couldn't reproduce. Thanks!

ssuess commented 5 years ago

This is really confusing to me, because if I add (either via quasar config OR in a custom file)workbox.core.skipWaiting(), I get the console error above and pwa is broken. If on the other hand I add workbox.skipWaiting() directly to custom sw it works as expected. I suppose it could be the version of chrome I am using or some other as yet unknown variable. I will check when I get back to my computer later and follow up with more info. Thanks for the reply.

ssuess commented 5 years ago

I just tested and get the same error in Firefox, Chrome, and Safari: workbox.core.skipWaiting is not a function

Here is the service worker file that was auto generated (with options for skipWaiting and clientsClaim) that causes the error:

importScripts("https://storage.googleapis.com/workbox-cdn/releases/3.6.3/workbox-sw.js");

importScripts(
  "precache-manifest.e8e6b9000d1926a38efea8b590cc8a2c.js"
);

workbox.core.setCacheNameDetails({prefix: "ripestat-ui"});

workbox.core.skipWaiting();

workbox.core.clientsClaim();

self.__precacheManifest = [].concat(self.__precacheManifest || []);
workbox.precaching.precacheAndRoute(self.__precacheManifest, {});

And here is my custom service worker file that works (when using InjectManifest option):

importScripts("precache-manifest.e8e6b9000d1926a38efea8b590cc8a2c.js", "https://storage.googleapis.com/workbox-cdn/releases/3.6.3/workbox-sw.js");

workbox.core.setCacheNameDetails({prefix: "ripestat-ui"}); 

workbox.skipWaiting();

workbox.clientsClaim();

self.__precacheManifest = [].concat(self.__precacheManifest || []);
workbox.precaching.precacheAndRoute(self.__precacheManifest, {});

So I am assuming some other setting or version of workbox or something else must be reading these options differently between your and my install setup. Here is the result of npm ls in my setup:

├── @fortawesome/fontawesome-pro@5.10.2
├── @highcharts/map-collection@1.1.2
├── @kazupon/vue-i18n-loader@0.3.0
├─┬ @quasar/app@1.0.5
│ ├─┬ @quasar/babel-preset-app@1.1.6
│ │ ├─┬ @babel/core@7.5.5
│ │ │ ├─┬ @babel/code-frame@7.5.5
│ │ │ │ └── @babel/highlight@7.0.0 deduped
│ │ │ ├─┬ @babel/generator@7.5.5
│ │ │ │ ├── @babel/types@7.5.5 deduped
│ │ │ │ ├── jsesc@2.5.2 deduped
│ │ │ │ ├── lodash@4.17.14 deduped
│ │ │ │ ├── source-map@0.5.7 deduped
│ │ │ │ └── trim-right@1.0.1 deduped
│ │ │ ├─┬ @babel/helpers@7.5.5
│ │ │ │ ├─┬ @babel/template@7.4.4
│ │ │ │ │ ├── @babel/code-frame@7.0.0 deduped
│ │ │ │ │ ├── @babel/parser@7.5.5
│ │ │ │ │ └── @babel/types@7.5.5 deduped
│ │ │ │ ├─┬ @babel/traverse@7.5.5
│ │ │ │ │ ├─┬ @babel/code-frame@7.5.5
│ │ │ │ │ │ └── @babel/highlight@7.0.0 deduped
│ │ │ │ │ ├─┬ @babel/generator@7.5.5
│ │ │ │ │ │ ├── @babel/types@7.5.5 deduped
│ │ │ │ │ │ ├── jsesc@2.5.2 deduped
│ │ │ │ │ │ ├── lodash@4.17.14 deduped
│ │ │ │ │ │ ├── source-map@0.5.7 deduped
│ │ │ │ │ │ └── trim-right@1.0.1 deduped
│ │ │ │ │ ├── @babel/helper-function-name@7.1.0 deduped
│ │ │ │ │ ├─┬ @babel/helper-split-export-declaration@7.4.4
│ │ │ │ │ │ └── @babel/types@7.5.5 deduped
│ │ │ │ │ ├── @babel/parser@7.5.5 deduped
│ │ │ │ │ ├── @babel/types@7.5.5 deduped
│ │ │ │ │ ├── debug@4.1.1 deduped
│ │ │ │ │ ├── globals@11.11.0 deduped
│ │ │ │ │ └── lodash@4.17.14 deduped
│ │ │ │ └─┬ @babel/types@7.5.5
│ │ │ │   ├── esutils@2.0.2 deduped
│ │ │ │   ├── lodash@4.17.14 deduped
│ │ │ │   └── to-fast-properties@2.0.0 deduped
│ │ │ ├── @babel/parser@7.5.5
│ │ │ ├─┬ @babel/template@7.4.4
│ │ │ │ ├── @babel/code-frame@7.5.5 deduped
│ │ │ │ ├── @babel/parser@7.5.5 deduped
│ │ │ │ └── @babel/types@7.5.5 deduped
│ │ │ ├─┬ @babel/traverse@7.5.5
│ │ │ │ ├── @babel/code-frame@7.5.5 deduped
│ │ │ │ ├── @babel/generator@7.5.5 deduped
│ │ │ │ ├── @babel/helper-function-name@7.1.0 deduped
│ │ │ │ ├─┬ @babel/helper-split-export-declaration@7.4.4
│ │ │ │ │ └── @babel/types@7.5.5 deduped
│ │ │ │ ├── @babel/parser@7.5.5 deduped
│ │ │ │ ├── @babel/types@7.5.5 deduped
│ │ │ │ ├── debug@4.1.1 deduped
│ │ │ │ ├── globals@11.11.0 deduped
│ │ │ │ └── lodash@4.17.14 deduped
│ │ │ ├─┬ @babel/types@7.5.5
│ │ │ │ ├── esutils@2.0.2 deduped
│ │ │ │ ├── lodash@4.17.14 deduped
│ │ │ │ └── to-fast-properties@2.0.0 deduped
│ │ │ ├── convert-source-map@1.6.0 deduped
│ │ │ ├── debug@4.1.1 deduped
│ │ │ ├─┬ json5@2.1.0
│ │ │ │ └── minimist@1.2.0 deduped
│ │ │ ├── lodash@4.17.14 deduped
│ │ │ ├── resolve@1.10.0 deduped
│ │ │ ├── semver@5.6.0 deduped
│ │ │ └── source-map@0.5.7 deduped
│ │ ├─┬ @babel/plugin-proposal-class-properties@7.5.5
│ │ │ ├─┬ @babel/helper-create-class-features-plugin@7.5.5
│ │ │ │ ├── @babel/helper-function-name@7.1.0 deduped
│ │ │ │ ├─┬ @babel/helper-member-expression-to-functions@7.5.5
│ │ │ │ │ └─┬ @babel/types@7.5.5
│ │ │ │ │   ├── esutils@2.0.2 deduped
│ │ │ │ │   ├── lodash@4.17.14 deduped
│ │ │ │ │   └── to-fast-properties@2.0.0 deduped
│ │ │ │ ├─┬ @babel/helper-optimise-call-expression@7.0.0
│ │ │ │ │ └── @babel/types@7.3.3 deduped
│ │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped
│ │ │ │ ├─┬ @babel/helper-replace-supers@7.5.5
│ │ │ │ │ ├── @babel/helper-member-expression-to-functions@7.5.5 deduped
│ │ │ │ │ ├── @babel/helper-optimise-call-expression@7.0.0 deduped
│ │ │ │ │ ├─┬ @babel/traverse@7.5.5
│ │ │ │ │ │ ├─┬ @babel/code-frame@7.5.5
│ │ │ │ │ │ │ └── @babel/highlight@7.0.0 deduped
│ │ │ │ │ │ ├─┬ @babel/generator@7.5.5
│ │ │ │ │ │ │ ├── @babel/types@7.5.5 deduped
│ │ │ │ │ │ │ ├── jsesc@2.5.2 deduped
│ │ │ │ │ │ │ ├── lodash@4.17.14 deduped
│ │ │ │ │ │ │ ├── source-map@0.5.7 deduped
│ │ │ │ │ │ │ └── trim-right@1.0.1 deduped
│ │ │ │ │ │ ├── @babel/helper-function-name@7.1.0 deduped
│ │ │ │ │ │ ├─┬ @babel/helper-split-export-declaration@7.4.4
│ │ │ │ │ │ │ └── @babel/types@7.5.5 deduped
│ │ │ │ │ │ ├── @babel/parser@7.5.5
│ │ │ │ │ │ ├── @babel/types@7.5.5 deduped
│ │ │ │ │ │ ├── debug@4.1.1 deduped
│ │ │ │ │ │ ├── globals@11.11.0 deduped
│ │ │ │ │ │ └── lodash@4.17.14 deduped
│ │ │ │ │ └─┬ @babel/types@7.5.5
│ │ │ │ │   ├── esutils@2.0.2 deduped
│ │ │ │ │   ├── lodash@4.17.14 deduped
│ │ │ │ │   └── to-fast-properties@2.0.0 deduped
│ │ │ │ └─┬ @babel/helper-split-export-declaration@7.4.4
│ │ │ │   └─┬ @babel/types@7.5.5
│ │ │ │     ├── esutils@2.0.2 deduped
│ │ │ │     ├── lodash@4.17.14 deduped
│ │ │ │     └── to-fast-properties@2.0.0 deduped
│ │ │ └── @babel/helper-plugin-utils@7.0.0
│ │ ├─┬ @babel/plugin-proposal-decorators@7.4.4
│ │ │ ├── @babel/helper-create-class-features-plugin@7.5.5 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-export-namespace-from@7.5.2
│ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped
│ │ │ └─┬ @babel/plugin-syntax-export-namespace-from@7.2.0
│ │ │   └── @babel/helper-plugin-utils@7.0.0 deduped
│ │ ├─┬ @babel/plugin-proposal-function-sent@7.5.0
│ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped
│ │ │ ├─┬ @babel/helper-wrap-function@7.2.0
│ │ │ │ ├── @babel/helper-function-name@7.1.0 deduped
│ │ │ │ ├── @babel/template@7.2.2 deduped
│ │ │ │ ├── @babel/traverse@7.2.3 deduped
│ │ │ │ └── @babel/types@7.3.3 deduped
│ │ │ └─┬ @babel/plugin-syntax-function-sent@7.2.0
│ │ │   └── @babel/helper-plugin-utils@7.0.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
│ │ │   └── @babel/helper-plugin-utils@7.0.0 deduped
│ │ ├─┬ @babel/plugin-proposal-numeric-separator@7.2.0
│ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped
│ │ │ └─┬ @babel/plugin-syntax-numeric-separator@7.2.0
│ │ │   └── @babel/helper-plugin-utils@7.0.0 deduped
│ │ ├─┬ @babel/plugin-proposal-throw-expressions@7.2.0
│ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped
│ │ │ └─┬ @babel/plugin-syntax-throw-expressions@7.2.0
│ │ │   └── @babel/helper-plugin-utils@7.0.0 deduped
│ │ ├─┬ @babel/plugin-syntax-dynamic-import@7.2.0
│ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped
│ │ ├─┬ @babel/plugin-syntax-import-meta@7.2.0
│ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped
│ │ ├─┬ @babel/plugin-transform-runtime@7.5.5
│ │ │ ├─┬ @babel/helper-module-imports@7.0.0
│ │ │ │ └── @babel/types@7.3.3 deduped
│ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped
│ │ │ ├── resolve@1.10.0 deduped
│ │ │ └── semver@5.6.0 deduped
│ │ ├─┬ @babel/preset-env@7.5.5
│ │ │ ├── @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 deduped
│ │ │ │ │ ├── @babel/template@7.2.2 deduped
│ │ │ │ │ ├── @babel/traverse@7.2.3 deduped
│ │ │ │ │ └── @babel/types@7.3.3 deduped
│ │ │ │ └── @babel/plugin-syntax-async-generators@7.2.0 deduped
│ │ │ ├─┬ @babel/plugin-proposal-dynamic-import@7.5.0
│ │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped
│ │ │ │ └── @babel/plugin-syntax-dynamic-import@7.2.0 deduped
│ │ │ ├── @babel/plugin-proposal-json-strings@7.2.0 deduped
│ │ │ ├─┬ @babel/plugin-proposal-object-rest-spread@7.5.5
│ │ │ │ ├── @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
│ │ │ │ ├── @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.4.4
│ │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped
│ │ │ │ ├─┬ @babel/helper-regex@7.5.5
│ │ │ │ │ └── lodash@4.17.14 deduped
│ │ │ │ └─┬ regexpu-core@4.5.5
│ │ │ │   ├── regenerate@1.4.0 deduped
│ │ │ │   ├─┬ regenerate-unicode-properties@8.1.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.5
│ │ │ │   └── unicode-match-property-value-ecmascript@1.1.0
│ │ │ ├─┬ @babel/plugin-syntax-async-generators@7.2.0
│ │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped
│ │ │ ├── @babel/plugin-syntax-dynamic-import@7.2.0 deduped
│ │ │ ├── @babel/plugin-syntax-json-strings@7.2.0 deduped
│ │ │ ├─┬ @babel/plugin-syntax-object-rest-spread@7.2.0
│ │ │ │ └── @babel/helper-plugin-utils@7.0.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.5.0
│ │ │ │ ├── @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.5.5
│ │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped
│ │ │ │ └── lodash@4.17.14 deduped
│ │ │ ├─┬ @babel/plugin-transform-classes@7.5.5
│ │ │ │ ├─┬ @babel/helper-annotate-as-pure@7.0.0
│ │ │ │ │ └── @babel/types@7.3.3 deduped
│ │ │ │ ├─┬ @babel/helper-define-map@7.5.5
│ │ │ │ │ ├── @babel/helper-function-name@7.1.0 deduped
│ │ │ │ │ ├─┬ @babel/types@7.5.5
│ │ │ │ │ │ ├── esutils@2.0.2 deduped
│ │ │ │ │ │ ├── lodash@4.17.14 deduped
│ │ │ │ │ │ └── to-fast-properties@2.0.0 deduped
│ │ │ │ │ └── lodash@4.17.14 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.5.5 deduped
│ │ │ │ ├─┬ @babel/helper-split-export-declaration@7.4.4
│ │ │ │ │ └─┬ @babel/types@7.5.5
│ │ │ │ │   ├── esutils@2.0.2 deduped
│ │ │ │ │   ├── lodash@4.17.14 deduped
│ │ │ │ │   └── to-fast-properties@2.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.5.0
│ │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped
│ │ │ ├─┬ @babel/plugin-transform-dotall-regex@7.4.4
│ │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped
│ │ │ │ ├── @babel/helper-regex@7.5.5 deduped
│ │ │ │ └── regexpu-core@4.5.5 deduped
│ │ │ ├─┬ @babel/plugin-transform-duplicate-keys@7.5.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.2.3 deduped
│ │ │ │ │ │ └── @babel/types@7.3.3 deduped
│ │ │ │ │ └── @babel/types@7.3.3 deduped
│ │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped
│ │ │ ├─┬ @babel/plugin-transform-for-of@7.4.4
│ │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped
│ │ │ ├─┬ @babel/plugin-transform-function-name@7.4.4
│ │ │ │ ├── @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-member-expression-literals@7.2.0
│ │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped
│ │ │ ├─┬ @babel/plugin-transform-modules-amd@7.5.0
│ │ │ │ ├─┬ @babel/helper-module-transforms@7.5.5
│ │ │ │ │ ├── @babel/helper-module-imports@7.0.0 deduped
│ │ │ │ │ ├── @babel/helper-simple-access@7.1.0 deduped
│ │ │ │ │ ├─┬ @babel/helper-split-export-declaration@7.4.4
│ │ │ │ │ │ └── @babel/types@7.5.5 deduped
│ │ │ │ │ ├─┬ @babel/template@7.4.4
│ │ │ │ │ │ ├── @babel/code-frame@7.0.0 deduped
│ │ │ │ │ │ ├── @babel/parser@7.5.5
│ │ │ │ │ │ └── @babel/types@7.5.5 deduped
│ │ │ │ │ ├─┬ @babel/types@7.5.5
│ │ │ │ │ │ ├── esutils@2.0.2 deduped
│ │ │ │ │ │ ├── lodash@4.17.14 deduped
│ │ │ │ │ │ └── to-fast-properties@2.0.0 deduped
│ │ │ │ │ └── lodash@4.17.14 deduped
│ │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped
│ │ │ │ └── babel-plugin-dynamic-import-node@2.3.0 deduped
│ │ │ ├─┬ @babel/plugin-transform-modules-commonjs@7.5.0
│ │ │ │ ├── @babel/helper-module-transforms@7.5.5 deduped
│ │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped
│ │ │ │ ├─┬ @babel/helper-simple-access@7.1.0
│ │ │ │ │ ├── @babel/template@7.2.2 deduped
│ │ │ │ │ └── @babel/types@7.3.3 deduped
│ │ │ │ └── babel-plugin-dynamic-import-node@2.3.0 deduped
│ │ │ ├─┬ @babel/plugin-transform-modules-systemjs@7.5.0
│ │ │ │ ├─┬ @babel/helper-hoist-variables@7.4.4
│ │ │ │ │ └─┬ @babel/types@7.5.5
│ │ │ │ │   ├── esutils@2.0.2 deduped
│ │ │ │ │   ├── lodash@4.17.14 deduped
│ │ │ │ │   └── to-fast-properties@2.0.0 deduped
│ │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped
│ │ │ │ └── babel-plugin-dynamic-import-node@2.3.0 deduped
│ │ │ ├─┬ @babel/plugin-transform-modules-umd@7.2.0
│ │ │ │ ├── @babel/helper-module-transforms@7.5.5 deduped
│ │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped
│ │ │ ├─┬ @babel/plugin-transform-named-capturing-groups-regex@7.4.5
│ │ │ │ └── regexp-tree@0.1.12
│ │ │ ├─┬ @babel/plugin-transform-new-target@7.4.4
│ │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped
│ │ │ ├─┬ @babel/plugin-transform-object-super@7.5.5
│ │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped
│ │ │ │ └── @babel/helper-replace-supers@7.5.5 deduped
│ │ │ ├─┬ @babel/plugin-transform-parameters@7.4.4
│ │ │ │ ├─┬ @babel/helper-call-delegate@7.4.4
│ │ │ │ │ ├── @babel/helper-hoist-variables@7.4.4 deduped
│ │ │ │ │ ├─┬ @babel/traverse@7.5.5
│ │ │ │ │ │ ├─┬ @babel/code-frame@7.5.5
│ │ │ │ │ │ │ └── @babel/highlight@7.0.0 deduped
│ │ │ │ │ │ ├─┬ @babel/generator@7.5.5
│ │ │ │ │ │ │ ├── @babel/types@7.5.5 deduped
│ │ │ │ │ │ │ ├── jsesc@2.5.2 deduped
│ │ │ │ │ │ │ ├── lodash@4.17.14 deduped
│ │ │ │ │ │ │ ├── source-map@0.5.7 deduped
│ │ │ │ │ │ │ └── trim-right@1.0.1 deduped
│ │ │ │ │ │ ├── @babel/helper-function-name@7.1.0 deduped
│ │ │ │ │ │ ├─┬ @babel/helper-split-export-declaration@7.4.4
│ │ │ │ │ │ │ └── @babel/types@7.5.5 deduped
│ │ │ │ │ │ ├── @babel/parser@7.5.5
│ │ │ │ │ │ ├── @babel/types@7.5.5 deduped
│ │ │ │ │ │ ├── debug@4.1.1 deduped
│ │ │ │ │ │ ├── globals@11.11.0 deduped
│ │ │ │ │ │ └── lodash@4.17.14 deduped
│ │ │ │ │ └─┬ @babel/types@7.5.5
│ │ │ │ │   ├── esutils@2.0.2 deduped
│ │ │ │ │   ├── lodash@4.17.14 deduped
│ │ │ │ │   └── to-fast-properties@2.0.0 deduped
│ │ │ │ ├── @babel/helper-get-function-arity@7.0.0 deduped
│ │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped
│ │ │ ├─┬ @babel/plugin-transform-property-literals@7.2.0
│ │ │ │ └── @babel/helper-plugin-utils@7.0.0 deduped
│ │ │ ├─┬ @babel/plugin-transform-regenerator@7.4.5
│ │ │ │ └─┬ regenerator-transform@0.14.1
│ │ │ │   └── private@0.1.8 deduped
│ │ │ ├─┬ @babel/plugin-transform-reserved-words@7.2.0
│ │ │ │ └── @babel/helper-plugin-utils@7.0.0 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.5.5 deduped
│ │ │ ├─┬ @babel/plugin-transform-template-literals@7.4.4
│ │ │ │ ├── @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.4.4
│ │ │ │ ├── @babel/helper-plugin-utils@7.0.0 deduped
│ │ │ │ ├── @babel/helper-regex@7.5.5 deduped
│ │ │ │ └── regexpu-core@4.5.5 deduped
│ │ │ ├─┬ @babel/types@7.5.5
│ │ │ │ ├── esutils@2.0.2 deduped
│ │ │ │ ├── lodash@4.17.14 deduped
│ │ │ │ └── to-fast-properties@2.0.0 deduped
│ │ │ ├── browserslist@4.6.6 deduped
│ │ │ ├─┬ core-js-compat@3.2.1
│ │ │ │ ├── browserslist@4.6.6 deduped
│ │ │ │ └── semver@6.3.0
│ │ │ ├── invariant@2.2.4 deduped
│ │ │ ├── js-levenshtein@1.1.6
│ │ │ └── semver@5.6.0 deduped
│ │ ├─┬ @babel/runtime@7.5.5
│ │ │ └── regenerator-runtime@0.13.2
│ │ ├─┬ @babel/runtime-corejs2@7.5.5
│ │ │ ├── core-js@2.6.5
│ │ │ └── regenerator-runtime@0.13.2 deduped
│ │ ├─┬ @babel/runtime-corejs3@7.5.5
│ │ │ ├── core-js-pure@3.2.1
│ │ │ └── regenerator-runtime@0.13.2 deduped
│ │ ├─┬ babel-loader@8.0.6
│ │ │ ├── find-cache-dir@2.1.0 deduped
│ │ │ ├── loader-utils@1.2.3 deduped
│ │ │ ├── mkdirp@0.5.1 deduped
│ │ │ └── pify@4.0.1 deduped
│ │ ├─┬ babel-plugin-dynamic-import-node@2.3.0
│ │ │ └─┬ object.assign@4.1.0
│ │ │   ├── define-properties@1.1.3 deduped
│ │ │   ├── function-bind@1.1.1 deduped
│ │ │   ├── has-symbols@1.0.0
│ │ │   └── object-keys@1.1.1
│ │ ├─┬ babel-plugin-module-resolver@3.2.0
│ │ │ ├─┬ find-babel-config@1.2.0
│ │ │ │ ├── json5@0.5.1
│ │ │ │ └── path-exists@3.0.0
│ │ │ ├── glob@7.1.3 deduped
│ │ │ ├─┬ pkg-up@2.0.0
│ │ │ │ └─┬ find-up@2.1.0
│ │ │ │   └─┬ locate-path@2.0.0
│ │ │ │     ├─┬ p-locate@2.0.0
│ │ │ │     │ └─┬ p-limit@1.3.0
│ │ │ │     │   └── p-try@1.0.0
│ │ │ │     └── path-exists@3.0.0 deduped
│ │ │ ├── reselect@3.0.1
│ │ │ └── resolve@1.10.0 deduped
│ │ └─┬ babel-plugin-transform-imports@1.5.1
│ │   ├── babel-types@6.26.0 deduped
│ │   ├─┬ is-valid-path@0.1.1
│ │   │ └─┬ is-invalid-path@0.1.0
│ │   │   └── is-glob@2.0.1 deduped
│ │   ├── lodash.camelcase@4.3.0
│ │   ├── lodash.findkey@4.6.0
│ │   ├── lodash.kebabcase@4.1.1
│ │   └── lodash.snakecase@4.1.1
│ ├── @quasar/fastclick@1.1.3
│ ├── @vue/preload-webpack-plugin@1.1.1
│ ├─┬ autoprefixer@9.6.1
│ │ ├── browserslist@4.6.6 deduped
│ │ ├── caniuse-lite@1.0.30000989
│ │ ├── chalk@2.4.2 deduped
│ │ ├── normalize-range@0.1.2
│ │ ├── num2fraction@1.2.2
│ │ ├── postcss@7.0.17 deduped
│ │ └── postcss-value-parser@4.0.2
│ ├─┬ 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
│ │ └─┬ supports-color@5.5.0
│ │   └── has-flag@3.0.0
│ ├─┬ chokidar@3.0.2
│ │ ├─┬ anymatch@3.0.3
│ │ │ ├── normalize-path@3.0.0 deduped
│ │ │ └── picomatch@2.0.7
│ │ ├─┬ braces@3.0.2
│ │ │ └─┬ fill-range@7.0.1
│ │ │   └─┬ to-regex-range@5.0.1
│ │ │     └── is-number@7.0.0
│ │ ├── fsevents@2.0.7
│ │ ├─┬ glob-parent@5.0.0
│ │ │ └─┬ is-glob@4.0.1
│ │ │   └── is-extglob@2.1.1
│ │ ├─┬ is-binary-path@2.1.0
│ │ │ └── binary-extensions@2.0.0
│ │ ├─┬ is-glob@4.0.1
│ │ │ └── is-extglob@2.1.1
│ │ ├── normalize-path@3.0.0
│ │ └─┬ readdirp@3.1.2
│ │   └── picomatch@2.0.7 deduped
│ ├── ci-info@2.0.0
│ ├─┬ compression-webpack-plugin@3.0.0
│ │ ├─┬ cacache@11.3.3
│ │ │ ├── bluebird@3.5.5
│ │ │ ├── chownr@1.1.1
│ │ │ ├── figgy-pudding@3.5.1
│ │ │ ├─┬ glob@7.1.4
│ │ │ │ ├── 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 deduped
│ │ │ ├─┬ 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.2
│ │ │ │   └── imurmurhash@0.1.4 deduped
│ │ │ └── y18n@4.0.0
│ │ ├─┬ find-cache-dir@3.0.0
│ │ │ ├── commondir@1.0.1
│ │ │ ├─┬ make-dir@3.0.0
│ │ │ │ └── semver@6.3.0
│ │ │ └─┬ pkg-dir@4.2.0
│ │ │   └─┬ find-up@4.1.0
│ │ │     ├─┬ locate-path@5.0.0
│ │ │     │ └─┬ p-locate@4.1.0
│ │ │     │   └── p-limit@2.2.1 deduped
│ │ │     └── path-exists@4.0.0
│ │ ├── neo-async@2.6.1
│ │ ├── schema-utils@1.0.0 deduped
│ │ ├── serialize-javascript@1.8.0
│ │ └─┬ webpack-sources@1.4.3
│ │   ├── source-list-map@2.0.1
│ │   └── source-map@0.6.1
│ ├─┬ copy-webpack-plugin@5.0.4
│ │ ├── cacache@11.3.3 deduped
│ │ ├─┬ find-cache-dir@2.1.0
│ │ │ ├── commondir@1.0.1 deduped
│ │ │ ├─┬ make-dir@2.1.0
│ │ │ │ ├── pify@4.0.1 deduped
│ │ │ │ └── semver@5.6.0 deduped
│ │ │ └─┬ pkg-dir@3.0.0
│ │ │   └── find-up@3.0.0 deduped
│ │ ├─┬ glob-parent@3.1.0
│ │ │ ├─┬ is-glob@3.1.0
│ │ │ │ └── is-extglob@2.1.1 deduped
│ │ │ └── path-dirname@1.0.2
│ │ ├─┬ globby@7.1.1
│ │ │ ├─┬ array-union@1.0.2
│ │ │ │ └── array-uniq@1.0.3
│ │ │ ├─┬ dir-glob@2.2.2
│ │ │ │ └─┬ path-type@3.0.0
│ │ │ │   └── pify@3.0.0
│ │ │ ├── glob@7.1.3 deduped
│ │ │ ├── ignore@3.3.10
│ │ │ ├── pify@3.0.0
│ │ │ └── slash@1.0.0 deduped
│ │ ├─┬ is-glob@4.0.1
│ │ │ └── is-extglob@2.1.1
│ │ ├── loader-utils@1.2.3 deduped
│ │ ├── minimatch@3.0.4 deduped
│ │ ├── normalize-path@3.0.0 deduped
│ │ ├─┬ p-limit@2.2.1
│ │ │ └── p-try@2.2.0
│ │ ├── schema-utils@1.0.0 deduped
│ │ ├── serialize-javascript@1.8.0 deduped
│ │ └─┬ webpack-log@2.0.0
│ │   ├── ansi-colors@3.2.4
│ │   └── uuid@3.3.2
│ ├─┬ 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
│ ├─┬ css-loader@3.2.0
│ │ ├── camelcase@5.3.1
│ │ ├── cssesc@3.0.0
│ │ ├─┬ icss-utils@4.1.1
│ │ │ └── postcss@7.0.17 deduped
│ │ ├── loader-utils@1.2.3 deduped
│ │ ├── normalize-path@3.0.0 deduped
│ │ ├── postcss@7.0.17 deduped
│ │ ├─┬ postcss-modules-extract-imports@2.0.0
│ │ │ └── postcss@7.0.17 deduped
│ │ ├─┬ postcss-modules-local-by-default@3.0.2
│ │ │ ├── icss-utils@4.1.1 deduped
│ │ │ ├── postcss@7.0.17 deduped
│ │ │ ├─┬ postcss-selector-parser@6.0.2
│ │ │ │ ├── cssesc@3.0.0 deduped
│ │ │ │ ├── indexes-of@1.0.1
│ │ │ │ └── uniq@1.0.1
│ │ │ └── postcss-value-parser@4.0.2 deduped
│ │ ├─┬ postcss-modules-scope@2.1.0
│ │ │ ├── postcss@7.0.17 deduped
│ │ │ └── postcss-selector-parser@6.0.2 deduped
│ │ ├─┬ postcss-modules-values@3.0.0
│ │ │ ├── icss-utils@4.1.1 deduped
│ │ │ └── postcss@7.0.17 deduped
│ │ ├── postcss-value-parser@4.0.2 deduped
│ │ └─┬ schema-utils@2.1.0
│ │   ├── ajv@6.10.2 deduped
│ │   └── ajv-keywords@3.4.1 deduped
│ ├─┬ cssnano@4.1.10
│ │ ├─┬ cosmiconfig@5.2.1
│ │ │ ├─┬ 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.13.1
│ │ │ │ ├── argparse@1.0.10 deduped
│ │ │ │ └── esprima@4.0.1 deduped
│ │ │ └─┬ parse-json@4.0.0
│ │ │   ├─┬ error-ex@1.3.2
│ │ │   │ └── is-arrayish@0.2.1
│ │ │   └── json-parse-better-errors@1.0.2 deduped
│ │ ├─┬ cssnano-preset-default@4.0.7
│ │ │ ├─┬ css-declaration-sorter@4.0.1
│ │ │ │ ├── postcss@7.0.17 deduped
│ │ │ │ └── timsort@0.3.0
│ │ │ ├─┬ cssnano-util-raw-cache@4.0.1
│ │ │ │ └── postcss@7.0.17 deduped
│ │ │ ├── postcss@7.0.17 deduped
│ │ │ ├─┬ postcss-calc@7.0.1
│ │ │ │ ├── css-unit-converter@1.1.1
│ │ │ │ ├── postcss@7.0.17 deduped
│ │ │ │ ├─┬ postcss-selector-parser@5.0.0
│ │ │ │ │ ├── cssesc@2.0.0
│ │ │ │ │ ├── indexes-of@1.0.1 deduped
│ │ │ │ │ └── uniq@1.0.1 deduped
│ │ │ │ └── postcss-value-parser@3.3.1
│ │ │ ├─┬ postcss-colormin@4.0.3
│ │ │ │ ├── browserslist@4.6.6 deduped
│ │ │ │ ├── color@3.1.2 deduped
│ │ │ │ ├── has@1.0.3 deduped
│ │ │ │ ├── postcss@7.0.17 deduped
│ │ │ │ └── postcss-value-parser@3.3.1
│ │ │ ├─┬ postcss-convert-values@4.0.1
│ │ │ │ ├── postcss@7.0.17 deduped
│ │ │ │ └── postcss-value-parser@3.3.1
│ │ │ ├─┬ postcss-discard-comments@4.0.2
│ │ │ │ └── postcss@7.0.17 deduped
│ │ │ ├─┬ postcss-discard-duplicates@4.0.2
│ │ │ │ └── postcss@7.0.17 deduped
│ │ │ ├─┬ postcss-discard-empty@4.0.1
│ │ │ │ └── postcss@7.0.17 deduped
│ │ │ ├─┬ postcss-discard-overridden@4.0.1
│ │ │ │ └── postcss@7.0.17 deduped
│ │ │ ├─┬ postcss-merge-longhand@4.0.11
│ │ │ │ ├── css-color-names@0.0.4
│ │ │ │ ├── postcss@7.0.17 deduped
│ │ │ │ ├── postcss-value-parser@3.3.1
│ │ │ │ └─┬ stylehacks@4.0.3
│ │ │ │   ├── browserslist@4.6.6 deduped
│ │ │ │   ├── postcss@7.0.17 deduped
│ │ │ │   └─┬ postcss-selector-parser@3.1.1
│ │ │ │     ├─┬ dot-prop@4.2.0
│ │ │ │     │ └── is-obj@1.0.1 deduped
│ │ │ │     ├── indexes-of@1.0.1 deduped
│ │ │ │     └── uniq@1.0.1 deduped
│ │ │ ├─┬ postcss-merge-rules@4.0.3
│ │ │ │ ├── browserslist@4.6.6 deduped
│ │ │ │ ├─┬ caniuse-api@3.0.0
│ │ │ │ │ ├── browserslist@4.6.6 deduped
│ │ │ │ │ ├── caniuse-lite@1.0.30000954 deduped
│ │ │ │ │ ├── lodash.memoize@4.1.2
│ │ │ │ │ └── lodash.uniq@4.5.0 deduped
│ │ │ │ ├── cssnano-util-same-parent@4.0.1
│ │ │ │ ├── postcss@7.0.17 deduped
│ │ │ │ ├─┬ postcss-selector-parser@3.1.1
│ │ │ │ │ ├─┬ dot-prop@4.2.0
│ │ │ │ │ │ └── is-obj@1.0.1 deduped
│ │ │ │ │ ├── indexes-of@1.0.1 deduped
│ │ │ │ │ └── uniq@1.0.1 deduped
│ │ │ │ └── vendors@1.0.3
│ │ │ ├─┬ postcss-minify-font-values@4.0.2
│ │ │ │ ├── postcss@7.0.17 deduped
│ │ │ │ └── postcss-value-parser@3.3.1
│ │ │ ├─┬ postcss-minify-gradients@4.0.2
│ │ │ │ ├── cssnano-util-get-arguments@4.0.0
│ │ │ │ ├─┬ is-color-stop@1.1.0
│ │ │ │ │ ├── css-color-names@0.0.4 deduped
│ │ │ │ │ ├── hex-color-regex@1.1.0
│ │ │ │ │ ├── hsl-regex@1.0.0
│ │ │ │ │ ├── hsla-regex@1.0.0
│ │ │ │ │ ├── rgb-regex@1.0.1
│ │ │ │ │ └── rgba-regex@1.0.0
│ │ │ │ ├── postcss@7.0.17 deduped
│ │ │ │ └── postcss-value-parser@3.3.1
│ │ │ ├─┬ postcss-minify-params@4.0.2
│ │ │ │ ├── alphanum-sort@1.0.2
│ │ │ │ ├── browserslist@4.6.6 deduped
│ │ │ │ ├── cssnano-util-get-arguments@4.0.0 deduped
│ │ │ │ ├── postcss@7.0.17 deduped
│ │ │ │ ├── postcss-value-parser@3.3.1
│ │ │ │ └── uniqs@2.0.0
│ │ │ ├─┬ postcss-minify-selectors@4.0.2
│ │ │ │ ├── alphanum-sort@1.0.2 deduped
│ │ │ │ ├── has@1.0.3 deduped
│ │ │ │ ├── postcss@7.0.17 deduped
│ │ │ │ └─┬ postcss-selector-parser@3.1.1
│ │ │ │   ├─┬ dot-prop@4.2.0
│ │ │ │   │ └── is-obj@1.0.1 deduped
│ │ │ │   ├── indexes-of@1.0.1 deduped
│ │ │ │   └── uniq@1.0.1 deduped
│ │ │ ├─┬ postcss-normalize-charset@4.0.1
│ │ │ │ └── postcss@7.0.17 deduped
│ │ │ ├─┬ postcss-normalize-display-values@4.0.2
│ │ │ │ ├── cssnano-util-get-match@4.0.0
│ │ │ │ ├── postcss@7.0.17 deduped
│ │ │ │ └── postcss-value-parser@3.3.1
│ │ │ ├─┬ postcss-normalize-positions@4.0.2
│ │ │ │ ├── cssnano-util-get-arguments@4.0.0 deduped
│ │ │ │ ├── has@1.0.3 deduped
│ │ │ │ ├── postcss@7.0.17 deduped
│ │ │ │ └── postcss-value-parser@3.3.1
│ │ │ ├─┬ postcss-normalize-repeat-style@4.0.2
│ │ │ │ ├── cssnano-util-get-arguments@4.0.0 deduped
│ │ │ │ ├── cssnano-util-get-match@4.0.0 deduped
│ │ │ │ ├── postcss@7.0.17 deduped
│ │ │ │ └── postcss-value-parser@3.3.1
│ │ │ ├─┬ postcss-normalize-string@4.0.2
│ │ │ │ ├── has@1.0.3 deduped
│ │ │ │ ├── postcss@7.0.17 deduped
│ │ │ │ └── postcss-value-parser@3.3.1
│ │ │ ├─┬ postcss-normalize-timing-functions@4.0.2
│ │ │ │ ├── cssnano-util-get-match@4.0.0 deduped
│ │ │ │ ├── postcss@7.0.17 deduped
│ │ │ │ └── postcss-value-parser@3.3.1
│ │ │ ├─┬ postcss-normalize-unicode@4.0.1
│ │ │ │ ├── browserslist@4.6.6 deduped
│ │ │ │ ├── postcss@7.0.17 deduped
│ │ │ │ └── postcss-value-parser@3.3.1
│ │ │ ├─┬ postcss-normalize-url@4.0.1
│ │ │ │ ├── is-absolute-url@2.1.0
│ │ │ │ ├── normalize-url@3.3.0
│ │ │ │ ├── postcss@7.0.17 deduped
│ │ │ │ └── postcss-value-parser@3.3.1
│ │ │ ├─┬ postcss-normalize-whitespace@4.0.2
│ │ │ │ ├── postcss@7.0.17 deduped
│ │ │ │ └── postcss-value-parser@3.3.1
│ │ │ ├─┬ postcss-ordered-values@4.1.2
│ │ │ │ ├── cssnano-util-get-arguments@4.0.0 deduped
│ │ │ │ ├── postcss@7.0.17 deduped
│ │ │ │ └── postcss-value-parser@3.3.1
│ │ │ ├─┬ postcss-reduce-initial@4.0.3
│ │ │ │ ├── browserslist@4.6.6 deduped
│ │ │ │ ├── caniuse-api@3.0.0 deduped
│ │ │ │ ├── has@1.0.3 deduped
│ │ │ │ └── postcss@7.0.17 deduped
│ │ │ ├─┬ postcss-reduce-transforms@4.0.2
│ │ │ │ ├── cssnano-util-get-match@4.0.0 deduped
│ │ │ │ ├── has@1.0.3 deduped
│ │ │ │ ├── postcss@7.0.17 deduped
│ │ │ │ └── postcss-value-parser@3.3.1
│ │ │ ├─┬ postcss-svgo@4.0.2
│ │ │ │ ├─┬ is-svg@3.0.0
│ │ │ │ │ └── html-comment-regex@1.1.2
│ │ │ │ ├── postcss@7.0.17 deduped
│ │ │ │ ├── postcss-value-parser@3.3.1
│ │ │ │ └── svgo@1.2.2 deduped
│ │ │ └─┬ postcss-unique-selectors@4.0.1
│ │ │   ├── alphanum-sort@1.0.2 deduped
│ │ │   ├── postcss@7.0.17 deduped
│ │ │   └── uniqs@2.0.0 deduped
│ │ ├── is-resolvable@1.1.0
│ │ └── postcss@7.0.17 deduped
│ ├─┬ dot-prop@5.1.0
│ │ └── is-obj@2.0.0
│ ├─┬ elementtree@0.1.7
│ │ └── sax@1.1.4
│ ├─┬ express@4.17.1
│ │ ├─┬ accepts@1.3.7
│ │ │ ├─┬ mime-types@2.1.24
│ │ │ │ └── mime-db@1.40.0
│ │ │ └── negotiator@0.6.2
│ │ ├── array-flatten@1.1.1
│ │ ├─┬ body-parser@1.19.0
│ │ │ ├── bytes@3.1.0
│ │ │ ├── content-type@1.0.4 deduped
│ │ │ ├─┬ debug@2.6.9
│ │ │ │ └── ms@2.0.0
│ │ │ ├── depd@1.1.2 deduped
│ │ │ ├─┬ http-errors@1.7.2
│ │ │ │ ├── depd@1.1.2 deduped
│ │ │ │ ├── inherits@2.0.3 deduped
│ │ │ │ ├── setprototypeof@1.1.1 deduped
│ │ │ │ ├── statuses@1.5.0 deduped
│ │ │ │ └── toidentifier@1.0.0
│ │ │ ├─┬ iconv-lite@0.4.24
│ │ │ │ └── safer-buffer@2.1.2 deduped
│ │ │ ├── on-finished@2.3.0 deduped
│ │ │ ├── qs@6.7.0 deduped
│ │ │ ├─┬ raw-body@2.4.0
│ │ │ │ ├── bytes@3.1.0 deduped
│ │ │ │ ├── http-errors@1.7.2 deduped
│ │ │ │ ├─┬ iconv-lite@0.4.24
│ │ │ │ │ └── safer-buffer@2.1.2 deduped
│ │ │ │ └── unpipe@1.0.0 deduped
│ │ │ └── type-is@1.6.18 deduped
│ │ ├─┬ content-disposition@0.5.3
│ │ │ └── safe-buffer@5.1.2 deduped
│ │ ├── content-type@1.0.4
│ │ ├── cookie@0.4.0
│ │ ├── cookie-signature@1.0.6
│ │ ├─┬ debug@2.6.9
│ │ │ └── ms@2.0.0
│ │ ├── depd@1.1.2
│ │ ├── encodeurl@1.0.2
│ │ ├── escape-html@1.0.3
│ │ ├── etag@1.8.1
│ │ ├─┬ finalhandler@1.1.2
│ │ │ ├─┬ debug@2.6.9
│ │ │ │ └── ms@2.0.0
│ │ │ ├── encodeurl@1.0.2 deduped
│ │ │ ├── escape-html@1.0.3 deduped
│ │ │ ├── on-finished@2.3.0 deduped
│ │ │ ├── parseurl@1.3.3 deduped
│ │ │ ├── statuses@1.5.0 deduped
│ │ │ └── unpipe@1.0.0
│ │ ├── fresh@0.5.2
│ │ ├── merge-descriptors@1.0.1
│ │ ├── methods@1.1.2
│ │ ├─┬ on-finished@2.3.0
│ │ │ └── ee-first@1.1.1
│ │ ├── parseurl@1.3.3
│ │ ├── path-to-regexp@0.1.7
│ │ ├─┬ proxy-addr@2.0.5
│ │ │ ├── forwarded@0.1.2
│ │ │ └── ipaddr.js@1.9.0
│ │ ├── qs@6.7.0
│ │ ├── range-parser@1.2.1
│ │ ├── safe-buffer@5.1.2
│ │ ├─┬ send@0.17.1
│ │ │ ├─┬ debug@2.6.9
│ │ │ │ └── ms@2.0.0
│ │ │ ├── depd@1.1.2 deduped
│ │ │ ├── destroy@1.0.4
│ │ │ ├── encodeurl@1.0.2 deduped
│ │ │ ├── escape-html@1.0.3 deduped
│ │ │ ├── etag@1.8.1 deduped
│ │ │ ├── fresh@0.5.2 deduped
│ │ │ ├── http-errors@1.7.2 deduped
│ │ │ ├── mime@1.6.0
│ │ │ ├── ms@2.1.1 deduped
│ │ │ ├── on-finished@2.3.0 deduped
│ │ │ ├── range-parser@1.2.1 deduped
│ │ │ └── statuses@1.5.0 deduped
│ │ ├─┬ serve-static@1.14.1
│ │ │ ├── encodeurl@1.0.2 deduped
│ │ │ ├── escape-html@1.0.3 deduped
│ │ │ ├── parseurl@1.3.3 deduped
│ │ │ └── send@0.17.1 deduped
│ │ ├── setprototypeof@1.1.1
│ │ ├── statuses@1.5.0
│ │ ├─┬ type-is@1.6.18
│ │ │ ├── media-typer@0.3.0
│ │ │ └── mime-types@2.1.24 deduped
│ │ ├── utils-merge@1.0.1
│ │ └── vary@1.1.2
│ ├─┬ fast-glob@3.0.4
│ │ ├── @nodelib/fs.stat@2.0.1
│ │ ├─┬ @nodelib/fs.walk@1.2.2
│ │ │ ├─┬ @nodelib/fs.scandir@2.1.1
│ │ │ │ ├── @nodelib/fs.stat@2.0.1 deduped
│ │ │ │ └── run-parallel@1.1.9
│ │ │ └─┬ fastq@1.6.0
│ │ │   └── reusify@1.0.4
│ │ ├── glob-parent@5.0.0 deduped
│ │ ├─┬ is-glob@4.0.1
│ │ │ └── is-extglob@2.1.1
│ │ ├── merge2@1.2.3
│ │ └─┬ micromatch@4.0.2
│ │   ├── braces@3.0.2 deduped
│ │   └── picomatch@2.0.7 deduped
│ ├─┬ file-loader@4.2.0
│ │ ├── loader-utils@1.2.3 deduped
│ │ └─┬ schema-utils@2.1.0
│ │   ├── ajv@6.10.2 deduped
│ │   └── ajv-keywords@3.4.1 deduped
│ ├─┬ friendly-errors-webpack-plugin@1.7.0
│ │ ├─┬ 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
│ │ ├─┬ error-stack-parser@2.0.3
│ │ │ └── stackframe@1.0.4
│ │ └─┬ string-width@2.1.1
│ │   ├── is-fullwidth-code-point@2.0.0
│ │   └─┬ strip-ansi@4.0.0
│ │     └── ansi-regex@3.0.0
│ ├─┬ fs-extra@8.1.0
│ │ ├── graceful-fs@4.2.2
│ │ ├─┬ jsonfile@4.0.0
│ │ │ └── graceful-fs@4.1.15 deduped
│ │ └── universalify@0.1.2
│ ├── hash-sum@2.0.0
│ ├─┬ html-minifier@4.0.0
│ │ ├─┬ 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
│ │ ├── commander@2.20.0
│ │ ├── he@1.2.0
│ │ ├─┬ param-case@2.1.1
│ │ │ └── no-case@2.3.2 deduped
│ │ ├── relateurl@0.2.7
│ │ └─┬ uglify-js@3.6.0
│ │   ├── commander@2.20.0
│ │   └── source-map@0.6.1
│ ├─┬ html-webpack-plugin@3.2.0
│ │ ├─┬ html-minifier@3.5.21
│ │ │ ├── camel-case@3.0.0 deduped
│ │ │ ├── clean-css@4.2.1 deduped
│ │ │ ├── commander@2.17.1 deduped
│ │ │ ├── he@1.2.0 deduped
│ │ │ ├── param-case@2.1.1 deduped
│ │ │ ├── relateurl@0.2.7 deduped
│ │ │ └─┬ uglify-js@3.4.10
│ │ │   ├── commander@2.19.0
│ │ │   └── source-map@0.6.1
│ │ ├─┬ loader-utils@0.2.17
│ │ │ ├── big.js@3.2.0
│ │ │ ├── emojis-list@2.1.0 deduped
│ │ │ ├── json5@0.5.1
│ │ │ └── object-assign@4.1.1 deduped
│ │ ├── lodash@4.17.14 deduped
│ │ ├─┬ pretty-error@2.1.1
│ │ │ ├─┬ renderkid@2.0.3
│ │ │ │ ├─┬ css-select@1.2.0
│ │ │ │ │ ├── boolbase@1.0.0 deduped
│ │ │ │ │ ├── css-what@2.1.3 deduped
│ │ │ │ │ ├─┬ domutils@1.5.1
│ │ │ │ │ │ ├── dom-serializer@0.1.1 deduped
│ │ │ │ │ │ └── domelementtype@1.3.1 deduped
│ │ │ │ │ └── nth-check@1.0.2 deduped
│ │ │ │ ├─┬ dom-converter@0.2.0
│ │ │ │ │ └── utila@0.4.0 deduped
│ │ │ │ ├─┬ htmlparser2@3.10.1
│ │ │ │ │ ├── domelementtype@1.3.1 deduped
│ │ │ │ │ ├─┬ domhandler@2.4.2
│ │ │ │ │ │ └── domelementtype@1.3.1 deduped
│ │ │ │ │ ├── domutils@1.7.0 deduped
│ │ │ │ │ ├── entities@1.1.2
│ │ │ │ │ ├── inherits@2.0.3 deduped
│ │ │ │ │ └─┬ readable-stream@3.4.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
│ │ ├── tapable@1.1.3
│ │ ├── toposort@1.0.7
│ │ └─┬ util.promisify@1.0.0
│ │   ├─┬ define-properties@1.1.3
│ │   │ └── object-keys@1.1.1 deduped
│ │   └─┬ object.getownpropertydescriptors@2.0.3
│ │     ├── define-properties@1.1.3 deduped
│ │     └── es-abstract@1.13.0 deduped
│ ├─┬ inquirer@6.5.1
│ │ ├─┬ ansi-escapes@4.2.1
│ │ │ └── type-fest@0.5.2
│ │ ├── chalk@2.4.2 deduped
│ │ ├─┬ cli-cursor@3.1.0
│ │ │ └─┬ restore-cursor@3.1.0
│ │ │   ├─┬ onetime@5.1.0
│ │ │   │ └── mimic-fn@2.1.0
│ │ │   └── 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
│ │ │ └─┬ tmp@0.0.33
│ │ │   └── os-tmpdir@1.0.2
│ │ ├─┬ figures@3.0.0
│ │ │ └── escape-string-regexp@1.0.5 deduped
│ │ ├── lodash@4.17.15
│ │ ├── mute-stream@0.0.8
│ │ ├─┬ run-async@2.3.0
│ │ │ └── is-promise@2.1.0
│ │ ├─┬ rxjs@6.4.0
│ │ │ └── tslib@1.9.3
│ │ ├─┬ string-width@4.1.0
│ │ │ ├── emoji-regex@8.0.0
│ │ │ ├── is-fullwidth-code-point@3.0.0
│ │ │ └── strip-ansi@5.2.0 deduped
│ │ ├── strip-ansi@5.2.0 deduped
│ │ └── through@2.3.8
│ ├── isbinaryfile@4.0.2
│ ├── lodash.debounce@4.0.8
│ ├─┬ lodash.template@4.5.0
│ │ ├── lodash._reinterpolate@3.0.0
│ │ └─┬ lodash.templatesettings@4.2.0
│ │   └── lodash._reinterpolate@3.0.0 deduped
│ ├── lodash.throttle@4.1.1
│ ├─┬ log-update@3.2.0
│ │ ├── ansi-escapes@3.2.0
│ │ ├─┬ cli-cursor@2.1.0
│ │ │ └─┬ restore-cursor@2.0.0
│ │ │   ├─┬ onetime@2.0.1
│ │ │   │ └── mimic-fn@1.2.0
│ │ │   └── signal-exit@3.0.2 deduped
│ │ └─┬ wrap-ansi@5.1.0
│ │   ├── ansi-styles@3.2.1 deduped
│ │   ├─┬ string-width@3.1.0
│ │   │ ├── emoji-regex@7.0.3 deduped
│ │   │ ├── is-fullwidth-code-point@2.0.0 deduped
│ │   │ └── strip-ansi@5.2.0 deduped
│ │   └─┬ strip-ansi@5.2.0
│ │     └── ansi-regex@4.1.0
│ ├─┬ lru-cache@5.1.1
│ │ └── yallist@3.0.3
│ ├─┬ memory-fs@0.4.1
│ │ ├─┬ errno@0.1.7
│ │ │ └── prr@1.0.1
│ │ └─┬ 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
│ ├─┬ mini-css-extract-plugin@0.8.0
│ │ ├── loader-utils@1.2.3 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
│ │ ├── schema-utils@1.0.0 deduped
│ │ └── webpack-sources@1.4.3 deduped
│ ├── minimist@1.2.0
│ ├── ms@2.1.2
│ ├── node-loader@0.6.0
│ ├─┬ open@6.4.0
│ │ └── is-wsl@1.1.0
│ ├─┬ optimize-css-assets-webpack-plugin@5.0.3
│ │ ├── cssnano@4.1.10 deduped
│ │ └─┬ last-call-webpack-plugin@3.0.0
│ │   ├── lodash@4.17.14 deduped
│ │   └── webpack-sources@1.4.3 deduped
│ ├─┬ ouch@2.0.0
│ │ ├── @positron/stack-trace@1.0.0
│ │ ├── ejs@2.6.2
│ │ ├── escape-html@1.0.3 deduped
│ │ └── lodash@4.17.14 deduped
│ ├── postcss-loader@3.0.0 deduped
│ ├─┬ postcss-rtl@1.4.0
│ │ └─┬ rtlcss@2.4.0
│ │   ├── chalk@2.4.2 deduped
│ │   ├─┬ findup@0.1.5
│ │   │ ├── colors@0.6.2
│ │   │ └── commander@2.1.0
│ │   ├── mkdirp@0.5.1 deduped
│ │   ├─┬ postcss@6.0.23
│ │   │ ├── chalk@2.4.2 deduped
│ │   │ ├── source-map@0.6.1
│ │   │ └── supports-color@5.5.0 deduped
│ │   └── strip-json-comments@2.0.1 deduped
│ ├─┬ postcss-safe-parser@4.0.1
│ │ └── postcss@7.0.17 deduped
│ ├── register-service-worker@1.6.2
│ ├── semver@6.3.0
│ ├─┬ strip-ansi@5.2.0
│ │ └── ansi-regex@4.1.0
│ ├─┬ stylus@0.54.5
│ │ ├── css-parse@1.7.0
│ │ ├── debug@4.1.1 deduped
│ │ ├─┬ glob@7.0.6
│ │ │ ├── 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
│ │ ├── sax@0.5.8
│ │ └─┬ source-map@0.1.43
│ │   └── amdefine@1.0.1
│ ├─┬ stylus-loader@3.0.2
│ │ ├── loader-utils@1.2.3 deduped
│ │ ├── lodash.clonedeep@4.5.0
│ │ └── when@3.6.4
│ ├─┬ terser-webpack-plugin@1.4.1
│ │ ├─┬ cacache@12.0.3
│ │ │ ├── bluebird@3.5.5 deduped
│ │ │ ├── chownr@1.1.1 deduped
│ │ │ ├── figgy-pudding@3.5.1 deduped
│ │ │ ├─┬ glob@7.1.4
│ │ │ │ ├── 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
│ │ │ ├── infer-owner@1.0.4
│ │ │ ├── lru-cache@5.1.1 deduped
│ │ │ ├── mississippi@3.0.0 deduped
│ │ │ ├── mkdirp@0.5.1 deduped
│ │ │ ├── move-concurrently@1.0.1 deduped
│ │ │ ├── promise-inflight@1.0.1 deduped
│ │ │ ├── rimraf@2.6.3 deduped
│ │ │ ├── ssri@6.0.1 deduped
│ │ │ ├── unique-filename@1.1.1 deduped
│ │ │ └── y18n@4.0.0 deduped
│ │ ├── find-cache-dir@2.1.0 deduped
│ │ ├── is-wsl@1.1.0 deduped
│ │ ├── schema-utils@1.0.0 deduped
│ │ ├── serialize-javascript@1.8.0 deduped
│ │ ├── source-map@0.6.1
│ │ ├─┬ terser@4.2.1
│ │ │ ├── commander@2.20.0
│ │ │ ├── source-map@0.6.1
│ │ │ └─┬ source-map-support@0.5.13
│ │ │   ├── buffer-from@1.1.1
│ │ │   └── source-map@0.6.1
│ │ ├── webpack-sources@1.4.3 deduped
│ │ └─┬ worker-farm@1.7.0
│ │   └── errno@0.1.7 deduped
│ ├─┬ url-loader@2.1.0
│ │ ├── loader-utils@1.2.3 deduped
│ │ ├── mime@2.4.4
│ │ └─┬ schema-utils@2.1.0
│ │   ├── ajv@6.10.2 deduped
│ │   └── ajv-keywords@3.4.1 deduped
│ ├── vue@2.6.10
│ ├─┬ vue-loader@15.7.1
│ │ ├─┬ @vue/component-compiler-utils@3.0.0
│ │ │ ├─┬ consolidate@0.15.1
│ │ │ │ └── bluebird@3.5.5 deduped
│ │ │ ├── hash-sum@1.0.2
│ │ │ ├─┬ lru-cache@4.1.5
│ │ │ │ ├── pseudomap@1.0.2
│ │ │ │ └── yallist@2.1.2
│ │ │ ├─┬ merge-source-map@1.1.0
│ │ │ │ └── source-map@0.6.1
│ │ │ ├── postcss@7.0.17 deduped
│ │ │ ├─┬ postcss-selector-parser@5.0.0
│ │ │ │ ├── cssesc@2.0.0
│ │ │ │ ├── indexes-of@1.0.1 deduped
│ │ │ │ └── uniq@1.0.1 deduped
│ │ │ ├── prettier@1.16.3
│ │ │ ├── source-map@0.6.1
│ │ │ └── vue-template-es2015-compiler@1.9.1
│ │ ├── hash-sum@1.0.2
│ │ ├── loader-utils@1.2.3 deduped
│ │ ├── vue-hot-reload-api@2.3.3
│ │ └── vue-style-loader@4.1.2 deduped
│ ├── vue-router@3.1.2
│ ├─┬ vue-server-renderer@2.6.10
│ │ ├─┬ chalk@1.1.3
│ │ │ ├── ansi-styles@2.2.1
│ │ │ ├── escape-string-regexp@1.0.5 deduped
│ │ │ ├── has-ansi@2.0.0 deduped
│ │ │ ├── strip-ansi@3.0.1 deduped
│ │ │ └── supports-color@2.0.0
│ │ ├── hash-sum@1.0.2
│ │ ├── he@1.2.0 deduped
│ │ ├── lodash.template@4.5.0 deduped
│ │ ├── lodash.uniq@4.5.0
│ │ ├─┬ resolve@1.10.0
│ │ │ └── path-parse@1.0.6 deduped
│ │ ├── serialize-javascript@1.8.0 deduped
│ │ └── source-map@0.5.6
│ ├─┬ vue-style-loader@4.1.2
│ │ ├── hash-sum@1.0.2
│ │ └── loader-utils@1.2.3 deduped
│ ├─┬ vue-template-compiler@2.6.10
│ │ ├── de-indent@1.0.2
│ │ └── he@1.2.0 deduped
│ ├── vuex@3.1.1
│ ├─┬ webpack@4.39.3
│ │ ├─┬ @webassemblyjs/ast@1.8.5
│ │ │ ├── @webassemblyjs/helper-module-context@1.8.5 deduped
│ │ │ ├── @webassemblyjs/helper-wasm-bytecode@1.8.5
│ │ │ └─┬ @webassemblyjs/wast-parser@1.8.5
│ │ │   ├── @webassemblyjs/ast@1.8.5 deduped
│ │ │   ├── @webassemblyjs/floating-point-hex-parser@1.8.5
│ │ │   ├── @webassemblyjs/helper-api-error@1.8.5 deduped
│ │ │   ├─┬ @webassemblyjs/helper-code-frame@1.8.5
│ │ │   │ └── @webassemblyjs/wast-printer@1.8.5 deduped
│ │ │   ├── @webassemblyjs/helper-fsm@1.8.5
│ │ │   └── @xtuc/long@4.2.2
│ │ ├─┬ @webassemblyjs/helper-module-context@1.8.5
│ │ │ ├── @webassemblyjs/ast@1.8.5 deduped
│ │ │ └── mamacro@0.0.3
│ │ ├─┬ @webassemblyjs/wasm-edit@1.8.5
│ │ │ ├── @webassemblyjs/ast@1.8.5 deduped
│ │ │ ├── @webassemblyjs/helper-buffer@1.8.5
│ │ │ ├── @webassemblyjs/helper-wasm-bytecode@1.8.5 deduped
│ │ │ ├─┬ @webassemblyjs/helper-wasm-section@1.8.5
│ │ │ │ ├── @webassemblyjs/ast@1.8.5 deduped
│ │ │ │ ├── @webassemblyjs/helper-buffer@1.8.5 deduped
│ │ │ │ ├── @webassemblyjs/helper-wasm-bytecode@1.8.5 deduped
│ │ │ │ └── @webassemblyjs/wasm-gen@1.8.5 deduped
│ │ │ ├─┬ @webassemblyjs/wasm-gen@1.8.5
│ │ │ │ ├── @webassemblyjs/ast@1.8.5 deduped
│ │ │ │ ├── @webassemblyjs/helper-wasm-bytecode@1.8.5 deduped
│ │ │ │ ├── @webassemblyjs/ieee754@1.8.5 deduped
│ │ │ │ ├── @webassemblyjs/leb128@1.8.5 deduped
│ │ │ │ └── @webassemblyjs/utf8@1.8.5 deduped
│ │ │ ├─┬ @webassemblyjs/wasm-opt@1.8.5
│ │ │ │ ├── @webassemblyjs/ast@1.8.5 deduped
│ │ │ │ ├── @webassemblyjs/helper-buffer@1.8.5 deduped
│ │ │ │ ├── @webassemblyjs/wasm-gen@1.8.5 deduped
│ │ │ │ └── @webassemblyjs/wasm-parser@1.8.5 deduped
│ │ │ ├── @webassemblyjs/wasm-parser@1.8.5 deduped
│ │ │ └─┬ @webassemblyjs/wast-printer@1.8.5
│ │ │   ├── @webassemblyjs/ast@1.8.5 deduped
│ │ │   ├── @webassemblyjs/wast-parser@1.8.5 deduped
│ │ │   └── @xtuc/long@4.2.2 deduped
│ │ ├─┬ @webassemblyjs/wasm-parser@1.8.5
│ │ │ ├── @webassemblyjs/ast@1.8.5 deduped
│ │ │ ├── @webassemblyjs/helper-api-error@1.8.5
│ │ │ ├── @webassemblyjs/helper-wasm-bytecode@1.8.5 deduped
│ │ │ ├─┬ @webassemblyjs/ieee754@1.8.5
│ │ │ │ └── @xtuc/ieee754@1.2.0
│ │ │ ├─┬ @webassemblyjs/leb128@1.8.5
│ │ │ │ └── @xtuc/long@4.2.2 deduped
│ │ │ └── @webassemblyjs/utf8@1.8.5
│ │ ├── acorn@6.3.0
│ │ ├── ajv@6.10.2 deduped
│ │ ├── ajv-keywords@3.4.1
│ │ ├─┬ chrome-trace-event@1.0.2
│ │ │ └── tslib@1.9.3 deduped
│ │ ├─┬ enhanced-resolve@4.1.0
│ │ │ ├── graceful-fs@4.1.15 deduped
│ │ │ ├── memory-fs@0.4.1 deduped
│ │ │ └── tapable@1.1.3 deduped
│ │ ├─┬ eslint-scope@4.0.3
│ │ │ ├── esrecurse@4.2.1 deduped
│ │ │ └── estraverse@4.2.0 deduped
│ │ ├── json-parse-better-errors@1.0.2
│ │ ├── loader-runner@2.4.0
│ │ ├── loader-utils@1.2.3 deduped
│ │ ├── memory-fs@0.4.1 deduped
│ │ ├─┬ micromatch@3.1.10
│ │ │ ├── arr-diff@4.0.0
│ │ │ ├── array-unique@0.3.2
│ │ │ ├─┬ braces@3.0.2
│ │ │ │ └─┬ fill-range@7.0.1
│ │ │ │   └─┬ to-regex-range@5.0.1
│ │ │ │     └── is-number@7.0.0
│ │ │ ├─┬ 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 deduped
│ │ │ │ └── isobject@3.0.1
│ │ │ ├─┬ extend-shallow@3.0.2
│ │ │ │ ├── assign-symbols@1.0.0
│ │ │ │ └─┬ is-extendable@1.0.1
│ │ │ │   └─┬ is-plain-object@2.0.4
│ │ │ │     └── isobject@3.0.1 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 deduped
│ │ │ │ ├─┬ expand-brackets@2.1.4
│ │ │ │ │ ├─┬ debug@2.6.9
│ │ │ │ │ │ └── ms@2.0.0
│ │ │ │ │ ├─┬ 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
│ │ │ │ ├── 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 deduped
│ │ │ │ ├── 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.1
│ │ │ │ │ │ │ ├─┬ 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
│ │ │ │ │ │ │   └── is-buffer@1.1.6 deduped
│ │ │ │ │ │ ├─┬ union-value@1.0.1
│ │ │ │ │ │ │ ├── arr-union@3.1.0 deduped
│ │ │ │ │ │ │ ├── get-value@2.0.6 deduped
│ │ │ │ │ │ │ ├── is-extendable@0.1.1 deduped
│ │ │ │ │ │ │ └─┬ set-value@2.0.1
│ │ │ │ │ │ │   ├─┬ 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
│ │ │ │ │ │ └─┬ 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
│ │ │ │ │ │ ├─┬ 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
│ │ │ │ │ │       └── is-buffer@1.1.6 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 deduped
│ │ │ │ │ ├── isobject@3.0.1 deduped
│ │ │ │ │ ├─┬ mixin-deep@1.3.2
│ │ │ │ │ │ ├── for-in@1.0.2
│ │ │ │ │ │ └─┬ is-extendable@1.0.1
│ │ │ │ │ │   └── is-plain-object@2.0.4 deduped
│ │ │ │ │ └── pascalcase@0.1.1
│ │ │ │ ├─┬ debug@2.6.9
│ │ │ │ │ └── ms@2.0.0
│ │ │ │ ├─┬ define-property@0.2.5
│ │ │ │ │ └─┬ is-descriptor@0.1.6
│ │ │ │ │   ├─┬ is-accessor-descriptor@0.1.6
│ │ │ │ │   │ └─┬ kind-of@3.2.2
│ │ │ │ │   │   └── is-buffer@1.1.6 deduped
│ │ │ │ │   ├─┬ is-data-descriptor@0.1.4
│ │ │ │ │   │ └─┬ kind-of@3.2.2
│ │ │ │ │   │   └── is-buffer@1.1.6 deduped
│ │ │ │ │   └── kind-of@5.1.0
│ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ ├── map-cache@0.2.2 deduped
│ │ │ │ ├── source-map@0.5.7 deduped
│ │ │ │ ├─┬ 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.1 deduped
│ │ ├─┬ node-libs-browser@2.2.1
│ │ │ ├─┬ assert@1.5.0
│ │ │ │ ├── object-assign@4.1.1 deduped
│ │ │ │ └─┬ util@0.10.3
│ │ │ │   └── inherits@2.0.1
│ │ │ ├─┬ browserify-zlib@0.2.0
│ │ │ │ └── pako@1.0.10
│ │ │ ├─┬ buffer@4.9.1
│ │ │ │ ├── base64-js@1.3.0
│ │ │ │ ├── ieee754@1.1.13
│ │ │ │ └── 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.5.0
│ │ │ │ │ │ ├── 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 deduped
│ │ │ │ │ │ └── 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.5.0 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.1
│ │ │ ├── process@0.11.10
│ │ │ ├── punycode@1.4.1
│ │ │ ├── querystring-es3@0.2.1
│ │ │ ├── readable-stream@2.3.6 deduped
│ │ │ ├─┬ stream-browserify@2.0.2
│ │ │ │ ├── inherits@2.0.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
│ │ │ ├── string_decoder@1.1.1 deduped
│ │ │ ├─┬ timers-browserify@2.0.11
│ │ │ │ └── setimmediate@1.0.5
│ │ │ ├── tty-browserify@0.0.0
│ │ │ ├── url@0.11.0 deduped
│ │ │ ├─┬ util@0.11.1
│ │ │ │ └── inherits@2.0.3 deduped
│ │ │ └── vm-browserify@1.1.0
│ │ ├── schema-utils@1.0.0 deduped
│ │ ├── tapable@1.1.3 deduped
│ │ ├── terser-webpack-plugin@1.4.1 deduped
│ │ ├─┬ watchpack@1.6.0
│ │ │ ├─┬ chokidar@2.1.8
│ │ │ │ ├─┬ anymatch@2.0.0
│ │ │ │ │ ├── micromatch@3.1.10 deduped
│ │ │ │ │ └─┬ normalize-path@2.1.1
│ │ │ │ │   └── remove-trailing-separator@1.1.0 deduped
│ │ │ │ ├── async-each@1.0.2 deduped
│ │ │ │ ├─┬ braces@2.3.2
│ │ │ │ │ ├── arr-flatten@1.1.0 deduped
│ │ │ │ │ ├── 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 deduped
│ │ │ │ │ │ ├── is-number@3.0.0 deduped
│ │ │ │ │ │ ├── repeat-string@1.6.1 deduped
│ │ │ │ │ │ └─┬ 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 deduped
│ │ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ │ ├── snapdragon-node@2.1.1 deduped
│ │ │ │ │ ├── split-string@3.1.0 deduped
│ │ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ │ ├── fsevents@1.2.7 deduped
│ │ │ │ ├─┬ glob-parent@3.1.0
│ │ │ │ │ ├─┬ is-glob@3.1.0
│ │ │ │ │ │ └── is-extglob@2.1.1 deduped
│ │ │ │ │ └── path-dirname@1.0.2 deduped
│ │ │ │ ├── inherits@2.0.3 deduped
│ │ │ │ ├── is-binary-path@1.0.1 deduped
│ │ │ │ ├─┬ is-glob@4.0.1
│ │ │ │ │ └── is-extglob@2.1.1
│ │ │ │ ├── normalize-path@3.0.0 deduped
│ │ │ │ ├── path-is-absolute@1.0.1 deduped
│ │ │ │ ├── readdirp@2.2.1 deduped
│ │ │ │ └── upath@1.1.2 deduped
│ │ │ ├── graceful-fs@4.1.15 deduped
│ │ │ └── neo-async@2.6.1 deduped
│ │ └── webpack-sources@1.4.3 deduped
│ ├─┬ webpack-bundle-analyzer@3.4.1
│ │ ├── acorn@6.1.0
│ │ ├── acorn-walk@6.2.0
│ │ ├─┬ bfj@6.1.2
│ │ │ ├── bluebird@3.5.5 deduped
│ │ │ ├── check-types@8.0.3
│ │ │ ├── hoopy@0.1.4
│ │ │ └── tryer@1.0.1
│ │ ├── chalk@2.4.2 deduped
│ │ ├── commander@2.20.0
│ │ ├── ejs@2.6.2 deduped
│ │ ├── express@4.17.1 deduped
│ │ ├── filesize@3.6.1
│ │ ├─┬ gzip-size@5.1.1
│ │ │ ├── duplexer@0.1.1
│ │ │ └── pify@4.0.1 deduped
│ │ ├── lodash@4.17.15
│ │ ├── mkdirp@0.5.1 deduped
│ │ ├── opener@1.5.1
│ │ └─┬ ws@6.2.1
│ │   └── async-limiter@1.0.1
│ ├─┬ webpack-chain@6.0.0
│ │ ├── deepmerge@1.5.2
│ │ └── javascript-stringify@2.0.0
│ ├─┬ webpack-dev-server@3.8.0
│ │ ├── ansi-html@0.0.7
│ │ ├─┬ bonjour@3.5.0
│ │ │ ├── array-flatten@2.1.2
│ │ │ ├─┬ deep-equal@1.1.0
│ │ │ │ ├── is-arguments@1.0.4
│ │ │ │ ├── is-date-object@1.0.1
│ │ │ │ ├─┬ is-regex@1.0.4
│ │ │ │ │ └── has@1.0.3 deduped
│ │ │ │ ├── object-is@1.0.1
│ │ │ │ ├── object-keys@1.1.1 deduped
│ │ │ │ └─┬ regexp.prototype.flags@1.2.0
│ │ │ │   └── define-properties@1.1.3 deduped
│ │ │ ├── dns-equal@1.0.0
│ │ │ ├─┬ dns-txt@2.0.2
│ │ │ │ └── buffer-indexof@1.1.1
│ │ │ ├─┬ multicast-dns@6.2.3
│ │ │ │ ├─┬ dns-packet@1.3.1
│ │ │ │ │ ├── ip@1.1.5 deduped
│ │ │ │ │ └── safe-buffer@5.1.2 deduped
│ │ │ │ └── thunky@1.0.3
│ │ │ └── multicast-dns-service-types@1.1.0
│ │ ├─┬ chokidar@2.1.8
│ │ │ ├─┬ anymatch@2.0.0
│ │ │ │ ├── micromatch@3.1.10 deduped
│ │ │ │ └─┬ normalize-path@2.1.1
│ │ │ │   └── remove-trailing-separator@1.1.0
│ │ │ ├── async-each@1.0.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 deduped
│ │ │ │ │ ├─┬ is-number@3.0.0
│ │ │ │ │ │ └─┬ kind-of@3.2.2
│ │ │ │ │ │   └── is-buffer@1.1.6 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 deduped
│ │ │ │ │ ├── isobject@3.0.1 deduped
│ │ │ │ │ └─┬ snapdragon-util@3.0.1
│ │ │ │ │   └─┬ kind-of@3.2.2
│ │ │ │ │     └── is-buffer@1.1.6 deduped
│ │ │ │ ├─┬ split-string@3.1.0
│ │ │ │ │ └── extend-shallow@3.0.2 deduped
│ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ ├─┬ fsevents@1.2.7
│ │ │ │ ├── nan@2.13.2 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
│ │ │ │ ├─┬ is-glob@3.1.0
│ │ │ │ │ └── is-extglob@2.1.1 deduped
│ │ │ │ └── path-dirname@1.0.2 deduped
│ │ │ ├── inherits@2.0.3 deduped
│ │ │ ├─┬ is-binary-path@1.0.1
│ │ │ │ └── binary-extensions@1.13.0
│ │ │ ├─┬ is-glob@4.0.1
│ │ │ │ └── is-extglob@2.1.1
│ │ │ ├── normalize-path@3.0.0 deduped
│ │ │ ├── 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.2
│ │ ├─┬ compression@1.7.4
│ │ │ ├── accepts@1.3.7 deduped
│ │ │ ├── bytes@3.0.0
│ │ │ ├─┬ compressible@2.0.17
│ │ │ │ └── mime-db@1.40.0 deduped
│ │ │ ├─┬ debug@2.6.9
│ │ │ │ └── ms@2.0.0
│ │ │ ├── on-headers@1.0.2
│ │ │ ├── safe-buffer@5.1.2 deduped
│ │ │ └── vary@1.1.2 deduped
│ │ ├── connect-history-api-fallback@1.6.0
│ │ ├── debug@4.1.1 deduped
│ │ ├─┬ del@4.1.1
│ │ │ ├─┬ @types/glob@7.1.1
│ │ │ │ ├── @types/events@3.0.0
│ │ │ │ ├── @types/minimatch@3.0.3
│ │ │ │ └── @types/node@12.7.2
│ │ │ ├─┬ globby@6.1.0
│ │ │ │ ├── array-union@1.0.2 deduped
│ │ │ │ ├── glob@7.1.3 deduped
│ │ │ │ ├── object-assign@4.1.1 deduped
│ │ │ │ ├── pify@2.3.0
│ │ │ │ └─┬ pinkie-promise@2.0.1
│ │ │ │   └── pinkie@2.0.4
│ │ │ ├── is-path-cwd@2.2.0
│ │ │ ├─┬ is-path-in-cwd@2.1.0
│ │ │ │ └─┬ is-path-inside@2.1.0
│ │ │ │   └── path-is-inside@1.0.2 deduped
│ │ │ ├── p-map@2.1.0
│ │ │ ├── pify@4.0.1 deduped
│ │ │ └── rimraf@2.6.3 deduped
│ │ ├── express@4.17.1 deduped
│ │ ├── html-entities@1.2.1
│ │ ├─┬ http-proxy-middleware@0.19.1
│ │ │ ├─┬ http-proxy@1.17.0
│ │ │ │ ├── eventemitter3@3.1.2
│ │ │ │ ├─┬ follow-redirects@1.8.1
│ │ │ │ │ └─┬ debug@3.2.6
│ │ │ │ │   └── ms@2.1.1 deduped
│ │ │ │ └── requires-port@1.0.0
│ │ │ ├─┬ is-glob@4.0.1
│ │ │ │ └── is-extglob@2.1.1
│ │ │ ├── lodash@4.17.14 deduped
│ │ │ └── micromatch@3.1.10 deduped
│ │ ├─┬ import-local@2.0.0
│ │ │ ├── pkg-dir@3.0.0 deduped
│ │ │ └─┬ resolve-cwd@2.0.0
│ │ │   └── resolve-from@3.0.0 deduped
│ │ ├─┬ internal-ip@4.3.0
│ │ │ ├─┬ default-gateway@4.2.0
│ │ │ │ ├── execa@1.0.0 deduped
│ │ │ │ └── ip-regex@2.1.0
│ │ │ └── ipaddr.js@1.9.0 deduped
│ │ ├── ip@1.1.5
│ │ ├── is-absolute-url@3.0.1
│ │ ├── killable@1.0.1
│ │ ├── loglevel@1.6.3
│ │ ├─┬ opn@5.5.0
│ │ │ └── is-wsl@1.1.0 deduped
│ │ ├─┬ p-retry@3.0.1
│ │ │ └── retry@0.12.0
│ │ ├─┬ portfinder@1.0.23
│ │ │ ├── async@1.5.2
│ │ │ ├─┬ debug@2.6.9
│ │ │ │ └── ms@2.0.0
│ │ │ └── mkdirp@0.5.1 deduped
│ │ ├── schema-utils@1.0.0 deduped
│ │ ├─┬ selfsigned@1.10.4
│ │ │ └── node-forge@0.7.5
│ │ ├── semver@6.3.0
│ │ ├─┬ serve-index@1.9.1
│ │ │ ├── accepts@1.3.7 deduped
│ │ │ ├── batch@0.6.1
│ │ │ ├─┬ debug@2.6.9
│ │ │ │ └── ms@2.0.0
│ │ │ ├── escape-html@1.0.3 deduped
│ │ │ ├─┬ http-errors@1.6.3
│ │ │ │ ├── depd@1.1.2 deduped
│ │ │ │ ├── inherits@2.0.3 deduped
│ │ │ │ ├── setprototypeof@1.1.0
│ │ │ │ └── statuses@1.5.0 deduped
│ │ │ ├── mime-types@2.1.24 deduped
│ │ │ └── parseurl@1.3.3 deduped
│ │ ├─┬ sockjs@0.3.19
│ │ │ ├─┬ faye-websocket@0.10.0
│ │ │ │ └─┬ websocket-driver@0.7.3
│ │ │ │   ├── http-parser-js@0.4.10
│ │ │ │   ├── safe-buffer@5.1.2 deduped
│ │ │ │   └── websocket-extensions@0.1.3
│ │ │ └── uuid@3.3.2 deduped
│ │ ├─┬ sockjs-client@1.3.0
│ │ │ ├─┬ debug@3.2.6
│ │ │ │ └── ms@2.1.1 deduped
│ │ │ ├─┬ eventsource@1.0.7
│ │ │ │ └─┬ original@1.0.2
│ │ │ │   └── url-parse@1.4.7 deduped
│ │ │ ├─┬ faye-websocket@0.11.3
│ │ │ │ └── websocket-driver@0.7.3 deduped
│ │ │ ├── inherits@2.0.3 deduped
│ │ │ ├── json3@3.3.3
│ │ │ └─┬ url-parse@1.4.7
│ │ │   ├── querystringify@2.1.1
│ │ │   └── requires-port@1.0.0 deduped
│ │ ├─┬ spdy@4.0.1
│ │ │ ├── debug@4.1.1 deduped
│ │ │ ├── handle-thing@2.0.0
│ │ │ ├── http-deceiver@1.2.7
│ │ │ ├── select-hose@2.0.0
│ │ │ └─┬ spdy-transport@3.0.0
│ │ │   ├── debug@4.1.1 deduped
│ │ │   ├── detect-node@2.0.4
│ │ │   ├─┬ hpack.js@2.1.6
│ │ │   │ ├── inherits@2.0.3 deduped
│ │ │   │ ├── obuf@1.1.2 deduped
│ │ │   │ ├── readable-stream@2.3.6 deduped
│ │ │   │ └── wbuf@1.7.3 deduped
│ │ │   ├── obuf@1.1.2
│ │ │   ├─┬ readable-stream@3.4.0
│ │ │   │ ├── inherits@2.0.3 deduped
│ │ │   │ ├── string_decoder@1.1.1 deduped
│ │ │   │ └── util-deprecate@1.0.2 deduped
│ │ │   └─┬ wbuf@1.7.3
│ │ │     └── minimalistic-assert@1.0.1
│ │ ├─┬ strip-ansi@3.0.1
│ │ │ └── ansi-regex@2.1.1
│ │ ├─┬ supports-color@6.1.0
│ │ │ └── has-flag@3.0.0 deduped
│ │ ├─┬ url@0.11.0
│ │ │ ├── punycode@1.3.2
│ │ │ └── querystring@0.2.0
│ │ ├─┬ webpack-dev-middleware@3.7.0
│ │ │ ├── memory-fs@0.4.1 deduped
│ │ │ ├── mime@2.4.4
│ │ │ ├── range-parser@1.2.1 deduped
│ │ │ └── webpack-log@2.0.0 deduped
│ │ ├── webpack-log@2.0.0 deduped
│ │ ├── ws@6.2.1 deduped
│ │ └─┬ yargs@12.0.5
│ │   ├─┬ cliui@4.1.0
│ │   │ ├── string-width@2.1.1 deduped
│ │   │ ├─┬ strip-ansi@4.0.0
│ │   │ │ └── ansi-regex@3.0.0
│ │   │ └─┬ wrap-ansi@2.1.0
│ │   │   ├─┬ string-width@1.0.2
│ │   │   │ ├── code-point-at@1.1.0 deduped
│ │   │   │ ├─┬ is-fullwidth-code-point@1.0.0
│ │   │   │ │ └── number-is-nan@1.0.1 deduped
│ │   │   │ └── strip-ansi@3.0.1 deduped
│ │   │   └─┬ strip-ansi@3.0.1
│ │   │     └── ansi-regex@2.1.1
│ │   ├── decamelize@1.2.0
│ │   ├─┬ find-up@3.0.0
│ │   │ └─┬ locate-path@3.0.0
│ │   │   ├─┬ p-locate@3.0.0
│ │   │   │ └── p-limit@2.2.1 deduped
│ │   │   └── path-exists@3.0.0 deduped
│ │   ├── get-caller-file@1.0.3
│ │   ├─┬ os-locale@3.1.0
│ │   │ ├── execa@1.0.0 deduped
│ │   │ ├─┬ lcid@2.0.0
│ │   │ │ └── invert-kv@2.0.0
│ │   │ └─┬ mem@4.3.0
│ │   │   ├─┬ map-age-cleaner@0.1.3
│ │   │   │ └── p-defer@1.0.0
│ │   │   ├── mimic-fn@2.1.0
│ │   │   └── p-is-promise@2.1.0
│ │   ├── require-directory@2.1.1
│ │   ├── require-main-filename@1.0.1
│ │   ├── set-blocking@2.0.0
│ │   ├── string-width@2.1.1 deduped
│ │   ├── which-module@2.0.0
│ │   ├── y18n@4.0.0 deduped
│ │   └─┬ yargs-parser@11.1.1
│ │     ├── camelcase@5.3.1 deduped
│ │     └── decamelize@1.2.0 deduped
│ ├─┬ webpack-merge@4.2.2
│ │ └── lodash@4.17.15
│ ├── webpack-node-externals@1.7.2
│ └─┬ workbox-webpack-plugin@4.3.1
│   ├── @babel/runtime@7.5.5 deduped
│   ├─┬ json-stable-stringify@1.0.1
│   │ └── jsonify@0.0.0
│   └─┬ workbox-build@4.3.1
│     ├── @babel/runtime@7.5.5 deduped
│     ├─┬ @hapi/joi@15.1.1
│     │ ├── @hapi/address@2.0.0
│     │ ├── @hapi/bourne@1.3.2
│     │ ├── @hapi/hoek@8.2.1
│     │ └─┬ @hapi/topo@3.1.3
│     │   └── @hapi/hoek@8.2.1 deduped
│     ├── common-tags@1.8.0
│     ├─┬ fs-extra@4.0.3
│     │ ├── graceful-fs@4.1.15 deduped
│     │ ├── jsonfile@4.0.0 deduped
│     │ └── universalify@0.1.2 deduped
│     ├── glob@7.1.3 deduped
│     ├── lodash.template@4.5.0 deduped
│     ├── pretty-bytes@5.3.0
│     ├─┬ stringify-object@3.3.0
│     │ ├── get-own-enumerable-property-symbols@3.0.0
│     │ ├── is-obj@1.0.1
│     │ └── is-regexp@1.0.0
│     ├─┬ strip-comments@1.0.2
│     │ ├─┬ babel-extract-comments@1.0.0
│     │ │ └── babylon@6.18.0 deduped
│     │ └─┬ babel-plugin-transform-object-rest-spread@6.26.0
│     │   ├── babel-plugin-syntax-object-rest-spread@6.13.0
│     │   └── babel-runtime@6.26.0 deduped
│     ├─┬ workbox-background-sync@4.3.1
│     │ └── workbox-core@4.3.1 deduped
│     ├─┬ workbox-broadcast-update@4.3.1
│     │ └── workbox-core@4.3.1 deduped
│     ├─┬ workbox-cacheable-response@4.3.1
│     │ └── workbox-core@4.3.1 deduped
│     ├── workbox-core@4.3.1
│     ├─┬ workbox-expiration@4.3.1
│     │ └── workbox-core@4.3.1 deduped
│     ├─┬ workbox-google-analytics@4.3.1
│     │ ├── workbox-background-sync@4.3.1 deduped
│     │ ├── workbox-core@4.3.1 deduped
│     │ ├── workbox-routing@4.3.1 deduped
│     │ └── workbox-strategies@4.3.1 deduped
│     ├─┬ workbox-navigation-preload@4.3.1
│     │ └── workbox-core@4.3.1 deduped
│     ├─┬ workbox-precaching@4.3.1
│     │ └── workbox-core@4.3.1 deduped
│     ├─┬ workbox-range-requests@4.3.1
│     │ └── workbox-core@4.3.1 deduped
│     ├─┬ workbox-routing@4.3.1
│     │ └── workbox-core@4.3.1 deduped
│     ├─┬ workbox-strategies@4.3.1
│     │ └── workbox-core@4.3.1 deduped
│     ├─┬ workbox-streams@4.3.1
│     │ └── workbox-core@4.3.1 deduped
│     ├── workbox-sw@4.3.1
│     └─┬ workbox-window@4.3.1
│       └── workbox-core@4.3.1 deduped
├── @quasar/extras@1.3.1
├─┬ @quasar/quasar-app-extension-icon-genie@1.0.1
│ ├── elementtree@0.1.7 deduped
│ ├─┬ execa@1.0.0
│ │ ├── cross-spawn@6.0.5 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
│ ├─┬ fs-extra@7.0.1
│ │ ├── graceful-fs@4.1.15
│ │ ├── jsonfile@4.0.0 deduped
│ │ └── universalify@0.1.2 deduped
│ ├─┬ imagemin@6.1.0
│ │ ├── file-type@10.11.0
│ │ ├─┬ globby@8.0.2
│ │ │ ├── array-union@1.0.2 deduped
│ │ │ ├─┬ dir-glob@2.0.0
│ │ │ │ ├── arrify@1.0.1
│ │ │ │ └── path-type@3.0.0 deduped
│ │ │ ├─┬ fast-glob@2.2.7
│ │ │ │ ├─┬ @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 deduped
│ │ │ │ ├─┬ is-glob@4.0.1
│ │ │ │ │ └── is-extglob@2.1.1
│ │ │ │ ├── merge2@1.2.3 deduped
│ │ │ │ └── micromatch@3.1.10 deduped
│ │ │ ├── glob@7.1.3 deduped
│ │ │ ├── ignore@3.3.10 deduped
│ │ │ ├── pify@3.0.0
│ │ │ └── slash@1.0.0 deduped
│ │ ├─┬ make-dir@1.3.0
│ │ │ └── pify@3.0.0
│ │ ├── p-pipe@1.2.0
│ │ ├── pify@4.0.1
│ │ └── replace-ext@1.0.0
│ ├─┬ imagemin-optipng@6.0.0
│ │ ├─┬ exec-buffer@3.2.0
│ │ │ ├─┬ execa@0.7.0
│ │ │ │ ├─┬ cross-spawn@5.1.0
│ │ │ │ │ ├─┬ lru-cache@4.1.5
│ │ │ │ │ │ ├── pseudomap@1.0.2 deduped
│ │ │ │ │ │ └── yallist@2.1.2
│ │ │ │ │ ├── shebang-command@1.2.0 deduped
│ │ │ │ │ └── which@1.3.1 deduped
│ │ │ │ ├── get-stream@3.0.0
│ │ │ │ ├── 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
│ │ │ ├── p-finally@1.0.0 deduped
│ │ │ ├── pify@3.0.0
│ │ │ ├── rimraf@2.6.3 deduped
│ │ │ └─┬ tempfile@2.0.0
│ │ │   ├── temp-dir@1.0.0
│ │ │   └── uuid@3.3.2 deduped
│ │ ├── is-png@1.1.0 deduped
│ │ └─┬ optipng-bin@5.1.0
│ │   ├─┬ bin-build@3.0.0
│ │   │ ├─┬ decompress@4.2.0
│ │   │ │ ├─┬ decompress-tar@4.1.1
│ │   │ │ │ ├── file-type@5.2.0
│ │   │ │ │ ├── is-stream@1.1.0 deduped
│ │   │ │ │ └── tar-stream@1.6.2 deduped
│ │   │ │ ├─┬ decompress-tarbz2@4.1.1
│ │   │ │ │ ├── decompress-tar@4.1.1 deduped
│ │   │ │ │ ├── file-type@6.2.0
│ │   │ │ │ ├── is-stream@1.1.0 deduped
│ │   │ │ │ ├─┬ seek-bzip@1.0.5
│ │   │ │ │ │ └─┬ commander@2.8.1
│ │   │ │ │ │   └── graceful-readlink@1.0.1
│ │   │ │ │ └─┬ unbzip2-stream@1.3.3
│ │   │ │ │   ├─┬ buffer@5.4.0
│ │   │ │ │   │ ├── base64-js@1.3.0 deduped
│ │   │ │ │   │ └── ieee754@1.1.13 deduped
│ │   │ │ │   └── through@2.3.8 deduped
│ │   │ │ ├─┬ decompress-targz@4.1.1
│ │   │ │ │ ├── decompress-tar@4.1.1 deduped
│ │   │ │ │ ├── file-type@5.2.0
│ │   │ │ │ └── is-stream@1.1.0 deduped
│ │   │ │ ├─┬ decompress-unzip@4.0.1
│ │   │ │ │ ├── file-type@3.9.0
│ │   │ │ │ ├─┬ get-stream@2.3.1
│ │   │ │ │ │ ├── object-assign@4.1.1 deduped
│ │   │ │ │ │ └── pinkie-promise@2.0.1 deduped
│ │   │ │ │ ├── pify@2.3.0
│ │   │ │ │ └─┬ yauzl@2.10.0
│ │   │ │ │   ├── buffer-crc32@0.2.13
│ │   │ │ │   └─┬ fd-slicer@1.1.0
│ │   │ │ │     └── pend@1.2.0
│ │   │ │ ├── graceful-fs@4.1.15 deduped
│ │   │ │ ├─┬ make-dir@1.3.0
│ │   │ │ │ └── pify@3.0.0
│ │   │ │ ├── pify@2.3.0
│ │   │ │ └─┬ strip-dirs@2.1.0
│ │   │ │   └── is-natural-number@4.0.1
│ │   │ ├─┬ download@6.2.5
│ │   │ │ ├─┬ caw@2.0.1
│ │   │ │ │ ├─┬ get-proxy@2.1.0
│ │   │ │ │ │ └─┬ npm-conf@1.1.3
│ │   │ │ │ │   ├─┬ config-chain@1.1.12
│ │   │ │ │ │   │ ├── ini@1.3.5 deduped
│ │   │ │ │ │   │ └── proto-list@1.2.4
│ │   │ │ │ │   └── pify@3.0.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
│ │   │ │ │ ├── tunnel-agent@0.6.0 deduped
│ │   │ │ │ └── url-to-options@1.0.1
│ │   │ │ ├── content-disposition@0.5.3 deduped
│ │   │ │ ├── decompress@4.2.0 deduped
│ │   │ │ ├─┬ ext-name@5.0.0
│ │   │ │ │ ├─┬ ext-list@2.2.2
│ │   │ │ │ │ └── mime-db@1.40.0 deduped
│ │   │ │ │ └─┬ sort-keys-length@1.0.1
│ │   │ │ │   └── sort-keys@1.1.2 deduped
│ │   │ │ ├── file-type@5.2.0
│ │   │ │ ├─┬ filenamify@2.1.0
│ │   │ │ │ ├── filename-reserved-regex@2.0.0
│ │   │ │ │ ├─┬ strip-outer@1.0.1
│ │   │ │ │ │ └── escape-string-regexp@1.0.5 deduped
│ │   │ │ │ └─┬ trim-repeated@1.0.0
│ │   │ │ │   └── escape-string-regexp@1.0.5 deduped
│ │   │ │ ├── get-stream@3.0.0
│ │   │ │ ├─┬ got@7.1.0
│ │   │ │ │ ├── decompress-response@3.3.0 deduped
│ │   │ │ │ ├── duplexer3@0.1.4
│ │   │ │ │ ├── get-stream@3.0.0
│ │   │ │ │ ├── is-plain-obj@1.1.0 deduped
│ │   │ │ │ ├── is-retry-allowed@1.1.0
│ │   │ │ │ ├── is-stream@1.1.0 deduped
│ │   │ │ │ ├── isurl@1.0.0 deduped
│ │   │ │ │ ├── lowercase-keys@1.0.1
│ │   │ │ │ ├── p-cancelable@0.3.0
│ │   │ │ │ ├─┬ p-timeout@1.2.1
│ │   │ │ │ │ └── p-finally@1.0.0 deduped
│ │   │ │ │ ├── safe-buffer@5.1.2 deduped
│ │   │ │ │ ├── timed-out@4.0.1
│ │   │ │ │ ├─┬ url-parse-lax@1.0.0
│ │   │ │ │ │ └── prepend-http@1.0.4 deduped
│ │   │ │ │ └── url-to-options@1.0.1 deduped
│ │   │ │ ├─┬ make-dir@1.3.0
│ │   │ │ │ └── pify@3.0.0 deduped
│ │   │ │ ├─┬ p-event@1.3.0
│ │   │ │ │ └── p-timeout@1.2.1 deduped
│ │   │ │ └── pify@3.0.0
│ │   │ ├─┬ execa@0.7.0
│ │   │ │ ├─┬ cross-spawn@5.1.0
│ │   │ │ │ ├─┬ lru-cache@4.1.5
│ │   │ │ │ │ ├── pseudomap@1.0.2 deduped
│ │   │ │ │ │ └── yallist@2.1.2
│ │   │ │ │ ├── shebang-command@1.2.0 deduped
│ │   │ │ │ └── which@1.3.1 deduped
│ │   │ │ ├── get-stream@3.0.0
│ │   │ │ ├── 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
│ │   │ ├─┬ p-map-series@1.0.0
│ │   │ │ └── p-reduce@1.0.0
│ │   │ └── tempfile@2.0.0 deduped
│ │   ├─┬ bin-wrapper@4.1.0
│ │   │ ├─┬ bin-check@4.1.0
│ │   │ │ ├─┬ execa@0.7.0
│ │   │ │ │ ├─┬ cross-spawn@5.1.0
│ │   │ │ │ │ ├─┬ lru-cache@4.1.5
│ │   │ │ │ │ │ ├── pseudomap@1.0.2 deduped
│ │   │ │ │ │ │ └── yallist@2.1.2
│ │   │ │ │ │ ├── shebang-command@1.2.0 deduped
│ │   │ │ │ │ └── which@1.3.1 deduped
│ │   │ │ │ ├── get-stream@3.0.0
│ │   │ │ │ ├── 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
│ │   │ │ └─┬ executable@4.1.1
│ │   │ │   └── pify@2.3.0
│ │   │ ├─┬ bin-version-check@4.0.0
│ │   │ │ ├─┬ bin-version@3.1.0
│ │   │ │ │ ├── execa@1.0.0 deduped
│ │   │ │ │ └─┬ find-versions@3.1.0
│ │   │ │ │   ├── array-uniq@2.1.0
│ │   │ │ │   └── semver-regex@2.0.0
│ │   │ │ ├── semver@5.6.0 deduped
│ │   │ │ └─┬ semver-truncate@1.1.2
│ │   │ │   └── semver@5.6.0 deduped
│ │   │ ├─┬ download@7.1.0
│ │   │ │ ├─┬ archive-type@4.0.0
│ │   │ │ │ └── file-type@4.4.0
│ │   │ │ ├── caw@2.0.1 deduped
│ │   │ │ ├── content-disposition@0.5.3 deduped
│ │   │ │ ├── decompress@4.2.0 deduped
│ │   │ │ ├── ext-name@5.0.0 deduped
│ │   │ │ ├── file-type@8.1.0
│ │   │ │ ├── filenamify@2.1.0 deduped
│ │   │ │ ├── get-stream@3.0.0
│ │   │ │ ├─┬ 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
│ │   │ │ │ │ ├── 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 deduped
│ │   │ │ │ ├── duplexer3@0.1.4 deduped
│ │   │ │ │ ├── get-stream@3.0.0 deduped
│ │   │ │ │ ├─┬ into-stream@3.1.0
│ │   │ │ │ │ ├── from2@2.3.0 deduped
│ │   │ │ │ │ └── p-is-promise@1.1.0
│ │   │ │ │ ├── is-retry-allowed@1.1.0 deduped
│ │   │ │ │ ├── isurl@1.0.0 deduped
│ │   │ │ │ ├── lowercase-keys@1.0.1 deduped
│ │   │ │ │ ├── mimic-response@1.0.1 deduped
│ │   │ │ │ ├── p-cancelable@0.4.1
│ │   │ │ │ ├─┬ p-timeout@2.0.1
│ │   │ │ │ │ └── p-finally@1.0.0 deduped
│ │   │ │ │ ├── pify@3.0.0
│ │   │ │ │ ├── safe-buffer@5.1.2 deduped
│ │   │ │ │ ├── timed-out@4.0.1 deduped
│ │   │ │ │ ├─┬ url-parse-lax@3.0.0
│ │   │ │ │ │ └── prepend-http@2.0.0
│ │   │ │ │ └── url-to-options@1.0.1 deduped
│ │   │ │ ├─┬ make-dir@1.3.0
│ │   │ │ │ └── pify@3.0.0
│ │   │ │ ├─┬ p-event@2.3.1
│ │   │ │ │ └── p-timeout@2.0.1 deduped
│ │   │ │ └── pify@3.0.0
│ │   │ ├── import-lazy@3.1.0
│ │   │ ├─┬ os-filter-obj@2.0.0
│ │   │ │ └── arch@2.1.1
│ │   │ └── pify@4.0.1 deduped
│ │   └─┬ logalot@2.1.0
│ │     ├─┬ figures@1.7.0
│ │     │ ├── escape-string-regexp@1.0.5 deduped
│ │     │ └── object-assign@4.1.1 deduped
│ │     └─┬ squeak@1.3.0
│ │       ├─┬ chalk@1.1.3
│ │       │ ├── ansi-styles@2.2.1
│ │       │ ├── escape-string-regexp@1.0.5 deduped
│ │       │ ├── has-ansi@2.0.0 deduped
│ │       │ ├── strip-ansi@3.0.1 deduped
│ │       │ └── supports-color@2.0.0
│ │       ├── console-stream@0.1.1
│ │       └─┬ lpad-align@1.1.2
│ │         ├── get-stdin@4.0.1
│ │         ├─┬ indent-string@2.1.0
│ │         │ └── repeating@2.0.1 deduped
│ │         ├── longest@1.0.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 deduped
│ │           ├── 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 deduped
│ │           │ └─┬ strip-indent@1.0.1
│ │           │   └── get-stdin@4.0.1 deduped
│ │           └── trim-newlines@1.0.0
│ ├─┬ imagemin-pngcrush@6.0.0
│ │ ├── exec-buffer@3.2.0 deduped
│ │ ├── is-png@1.1.0 deduped
│ │ └─┬ pngcrush-bin@4.0.0
│ │   ├── bin-build@3.0.0 deduped
│ │   ├── bin-wrapper@4.1.0 deduped
│ │   └── logalot@2.1.0 deduped
│ ├─┬ imagemin-pngquant@7.0.0
│ │ ├── execa@1.0.0 deduped
│ │ ├── is-png@1.1.0 deduped
│ │ ├── is-stream@1.1.0 deduped
│ │ ├── ow@0.8.0
│ │ └─┬ pngquant-bin@5.0.2
│ │   ├── bin-build@3.0.0 deduped
│ │   ├── bin-wrapper@4.1.0 deduped
│ │   ├─┬ execa@0.10.0
│ │   │ ├── cross-spawn@6.0.5 deduped
│ │   │ ├── get-stream@3.0.0
│ │   │ ├── 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
│ │   └── logalot@2.1.0 deduped
│ ├─┬ imagemin-zopfli@6.0.0
│ │ ├── exec-buffer@3.2.0 deduped
│ │ ├── is-png@1.1.0 deduped
│ │ └─┬ zopflipng-bin@5.0.0
│ │   ├── bin-build@3.0.0 deduped
│ │   ├── bin-wrapper@4.1.0 deduped
│ │   └── logalot@2.1.0 deduped
│ ├── is-png@1.1.0
│ ├── minimist@1.2.0 deduped
│ ├── png2icons@2.0.1
│ ├─┬ potrace@2.1.2
│ │ └─┬ jimp@0.6.4
│ │   ├─┬ @babel/polyfill@7.4.4
│ │   │ ├── core-js@2.6.5 deduped
│ │   │ └── regenerator-runtime@0.13.2 deduped
│ │   ├─┬ @jimp/custom@0.6.4
│ │   │ ├─┬ @jimp/core@0.6.4
│ │   │ │ ├─┬ @jimp/utils@0.6.4
│ │   │ │ │ └── core-js@2.6.5 deduped
│ │   │ │ ├── any-base@1.1.0
│ │   │ │ ├─┬ buffer@5.4.0
│ │   │ │ │ ├── base64-js@1.3.0 deduped
│ │   │ │ │ └── ieee754@1.1.13 deduped
│ │   │ │ ├── core-js@2.6.5 deduped
│ │   │ │ ├── exif-parser@0.1.12
│ │   │ │ ├── file-type@9.0.0
│ │   │ │ ├─┬ load-bmfont@1.4.0
│ │   │ │ │ ├── buffer-equal@0.0.1
│ │   │ │ │ ├── mime@1.6.0 deduped
│ │   │ │ │ ├── parse-bmfont-ascii@1.0.6
│ │   │ │ │ ├── parse-bmfont-binary@1.0.6
│ │   │ │ │ ├─┬ parse-bmfont-xml@1.1.4
│ │   │ │ │ │ ├── xml-parse-from-string@1.0.1
│ │   │ │ │ │ └─┬ xml2js@0.4.19
│ │   │ │ │ │   ├── sax@1.2.4 deduped
│ │   │ │ │ │   └── xmlbuilder@9.0.7
│ │   │ │ │ ├── phin@2.9.3 deduped
│ │   │ │ │ ├─┬ xhr@2.5.0
│ │   │ │ │ │ ├─┬ global@4.3.2
│ │   │ │ │ │ │ ├─┬ min-document@2.19.0
│ │   │ │ │ │ │ │ └── dom-walk@0.1.1
│ │   │ │ │ │ │ └── process@0.5.2
│ │   │ │ │ │ ├── is-function@1.0.1
│ │   │ │ │ │ ├─┬ parse-headers@2.0.2
│ │   │ │ │ │ │ ├─┬ for-each@0.3.3
│ │   │ │ │ │ │ │ └── is-callable@1.1.4 deduped
│ │   │ │ │ │ │ └─┬ string.prototype.trim@1.2.0
│ │   │ │ │ │ │   ├── define-properties@1.1.3 deduped
│ │   │ │ │ │ │   ├── es-abstract@1.13.0 deduped
│ │   │ │ │ │ │   └── function-bind@1.1.1 deduped
│ │   │ │ │ │ └── xtend@4.0.1 deduped
│ │   │ │ │ └── xtend@4.0.1 deduped
│ │   │ │ ├── mkdirp@0.5.1 deduped
│ │   │ │ ├── phin@2.9.3
│ │   │ │ ├─┬ pixelmatch@4.0.2
│ │   │ │ │ └── pngjs@3.4.0 deduped
│ │   │ │ └── tinycolor2@1.4.1
│ │   │ └── core-js@2.6.5 deduped
│ │   ├─┬ @jimp/plugins@0.6.4
│ │   │ ├─┬ @jimp/plugin-blit@0.6.4
│ │   │ │ ├── @jimp/utils@0.6.4 deduped
│ │   │ │ └── core-js@2.6.5 deduped
│ │   │ ├─┬ @jimp/plugin-blur@0.6.4
│ │   │ │ ├── @jimp/utils@0.6.4 deduped
│ │   │ │ └── core-js@2.6.5 deduped
│ │   │ ├─┬ @jimp/plugin-color@0.6.4
│ │   │ │ ├── @jimp/utils@0.6.4 deduped
│ │   │ │ ├── core-js@2.6.5 deduped
│ │   │ │ └── tinycolor2@1.4.1 deduped
│ │   │ ├─┬ @jimp/plugin-contain@0.6.4
│ │   │ │ ├── @jimp/utils@0.6.4 deduped
│ │   │ │ └── core-js@2.6.5 deduped
│ │   │ ├─┬ @jimp/plugin-cover@0.6.4
│ │   │ │ ├── @jimp/utils@0.6.4 deduped
│ │   │ │ └── core-js@2.6.5 deduped
│ │   │ ├─┬ @jimp/plugin-crop@0.6.4
│ │   │ │ ├── @jimp/utils@0.6.4 deduped
│ │   │ │ └── core-js@2.6.5 deduped
│ │   │ ├─┬ @jimp/plugin-displace@0.6.4
│ │   │ │ ├── @jimp/utils@0.6.4 deduped
│ │   │ │ └── core-js@2.6.5 deduped
│ │   │ ├─┬ @jimp/plugin-dither@0.6.4
│ │   │ │ ├── @jimp/utils@0.6.4 deduped
│ │   │ │ └── core-js@2.6.5 deduped
│ │   │ ├─┬ @jimp/plugin-flip@0.6.4
│ │   │ │ ├── @jimp/utils@0.6.4 deduped
│ │   │ │ └── core-js@2.6.5 deduped
│ │   │ ├─┬ @jimp/plugin-gaussian@0.6.4
│ │   │ │ ├── @jimp/utils@0.6.4 deduped
│ │   │ │ └── core-js@2.6.5 deduped
│ │   │ ├─┬ @jimp/plugin-invert@0.6.4
│ │   │ │ ├── @jimp/utils@0.6.4 deduped
│ │   │ │ └── core-js@2.6.5 deduped
│ │   │ ├─┬ @jimp/plugin-mask@0.6.4
│ │   │ │ ├── @jimp/utils@0.6.4 deduped
│ │   │ │ └── core-js@2.6.5 deduped
│ │   │ ├─┬ @jimp/plugin-normalize@0.6.4
│ │   │ │ ├── @jimp/utils@0.6.4 deduped
│ │   │ │ └── core-js@2.6.5 deduped
│ │   │ ├─┬ @jimp/plugin-print@0.6.4
│ │   │ │ ├── @jimp/utils@0.6.4 deduped
│ │   │ │ ├── core-js@2.6.5 deduped
│ │   │ │ └── load-bmfont@1.4.0 deduped
│ │   │ ├─┬ @jimp/plugin-resize@0.6.4
│ │   │ │ ├── @jimp/utils@0.6.4 deduped
│ │   │ │ └── core-js@2.6.5 deduped
│ │   │ ├─┬ @jimp/plugin-rotate@0.6.4
│ │   │ │ ├── @jimp/utils@0.6.4 deduped
│ │   │ │ └── core-js@2.6.5 deduped
│ │   │ ├─┬ @jimp/plugin-scale@0.6.4
│ │   │ │ ├── @jimp/utils@0.6.4 deduped
│ │   │ │ └── core-js@2.6.5 deduped
│ │   │ ├── core-js@2.6.5 deduped
│ │   │ └── timm@1.6.2
│ │   ├─┬ @jimp/types@0.6.4
│ │   │ ├─┬ @jimp/bmp@0.6.4
│ │   │ │ ├── @jimp/utils@0.6.4 deduped
│ │   │ │ ├── bmp-js@0.1.0
│ │   │ │ └── core-js@2.6.5 deduped
│ │   │ ├─┬ @jimp/gif@0.6.4
│ │   │ │ ├── @jimp/utils@0.6.4 deduped
│ │   │ │ ├── core-js@2.6.5 deduped
│ │   │ │ └── omggif@1.0.10
│ │   │ ├─┬ @jimp/jpeg@0.6.4
│ │   │ │ ├── @jimp/utils@0.6.4 deduped
│ │   │ │ ├── core-js@2.6.5 deduped
│ │   │ │ └── jpeg-js@0.3.6
│ │   │ ├─┬ @jimp/png@0.6.4
│ │   │ │ ├── @jimp/utils@0.6.4 deduped
│ │   │ │ ├── core-js@2.6.5 deduped
│ │   │ │ └── pngjs@3.4.0
│ │   │ ├─┬ @jimp/tiff@0.6.4
│ │   │ │ ├── core-js@2.6.5 deduped
│ │   │ │ └─┬ utif@2.0.1
│ │   │ │   └── pako@1.0.10 deduped
│ │   │ ├── core-js@2.6.5 deduped
│ │   │ └── timm@1.6.2 deduped
│ │   └── core-js@2.6.5 deduped
│ ├─┬ read-chunk@3.2.0
│ │ ├── pify@4.0.1 deduped
│ │ └─┬ with-open-file@0.1.6
│ │   ├── p-finally@1.0.0 deduped
│ │   ├── p-try@2.2.0 deduped
│ │   └── pify@4.0.1 deduped
│ ├─┬ sharp@0.22.1
│ │ ├─┬ color@3.1.2
│ │ │ ├── color-convert@1.9.3 deduped
│ │ │ └─┬ color-string@1.5.3
│ │ │   ├── color-name@1.1.3 deduped
│ │ │   └─┬ simple-swizzle@0.2.2
│ │ │     └── is-arrayish@0.3.2
│ │ ├── detect-libc@1.0.3
│ │ ├── fs-copy-file-sync@1.1.1
│ │ ├── nan@2.13.2
│ │ ├─┬ 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@2.1.1 deduped
│ │ │ └── set-blocking@2.0.0 deduped
│ │ ├─┬ prebuild-install@5.3.0
│ │ │ ├── detect-libc@1.0.3 deduped
│ │ │ ├── expand-template@2.0.3
│ │ │ ├── github-from-package@0.0.0
│ │ │ ├── minimist@1.2.0 deduped
│ │ │ ├── mkdirp@0.5.1 deduped
│ │ │ ├── napi-build-utils@1.0.1
│ │ │ ├─┬ node-abi@2.11.0
│ │ │ │ └── semver@5.6.0 deduped
│ │ │ ├── noop-logger@0.1.1
│ │ │ ├── npmlog@4.1.2 deduped
│ │ │ ├── os-homedir@1.0.2
│ │ │ ├─┬ pump@2.0.1
│ │ │ │ ├── end-of-stream@1.4.1 deduped
│ │ │ │ └── once@1.4.0 deduped
│ │ │ ├─┬ rc@1.2.8
│ │ │ │ ├── deep-extend@0.6.0
│ │ │ │ ├── ini@1.3.5
│ │ │ │ ├── minimist@1.2.0 deduped
│ │ │ │ └── strip-json-comments@2.0.1 deduped
│ │ │ ├─┬ simple-get@2.8.1
│ │ │ │ ├── decompress-response@3.3.0 deduped
│ │ │ │ ├── once@1.4.0 deduped
│ │ │ │ └── simple-concat@1.0.0 deduped
│ │ │ ├─┬ tar-fs@1.16.3
│ │ │ │ ├── chownr@1.1.1 deduped
│ │ │ │ ├── mkdirp@0.5.1 deduped
│ │ │ │ ├─┬ pump@1.0.3
│ │ │ │ │ ├── end-of-stream@1.4.1 deduped
│ │ │ │ │ └── once@1.4.0 deduped
│ │ │ │ └─┬ tar-stream@1.6.2
│ │ │ │   ├─┬ bl@1.2.2
│ │ │ │   │ ├── readable-stream@2.3.6 deduped
│ │ │ │   │ └── safe-buffer@5.1.2 deduped
│ │ │ │   ├─┬ buffer-alloc@1.2.0
│ │ │ │   │ ├── buffer-alloc-unsafe@1.1.0
│ │ │ │   │ └── buffer-fill@1.0.0
│ │ │ │   ├── end-of-stream@1.4.1 deduped
│ │ │ │   ├── fs-constants@1.0.0
│ │ │ │   ├── readable-stream@2.3.6 deduped
│ │ │ │   ├── to-buffer@1.1.1
│ │ │ │   └── xtend@4.0.1 deduped
│ │ │ ├── tunnel-agent@0.6.0 deduped
│ │ │ └── which-pm-runs@1.0.0
│ │ ├── semver@6.3.0
│ │ ├─┬ simple-get@3.0.3
│ │ │ ├─┬ decompress-response@3.3.0
│ │ │ │ └── mimic-response@1.0.1
│ │ │ ├── once@1.4.0 deduped
│ │ │ └── simple-concat@1.0.0
│ │ ├─┬ tar@4.4.10
│ │ │ ├── chownr@1.1.1 deduped
│ │ │ ├─┬ fs-minipass@1.2.6
│ │ │ │ └── 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 deduped
│ │ │ └── yallist@3.0.3 deduped
│ │ └─┬ tunnel-agent@0.6.0
│ │   └── safe-buffer@5.1.2 deduped
│ └─┬ svgo@1.2.2
│   ├── chalk@2.4.2 deduped
│   ├─┬ coa@2.0.2
│   │ ├── @types/q@1.5.2
│   │ ├── chalk@2.4.2 deduped
│   │ └── q@1.5.1
│   ├─┬ css-select@2.0.2
│   │ ├── boolbase@1.0.0
│   │ ├── css-what@2.1.3
│   │ ├─┬ domutils@1.7.0
│   │ │ ├─┬ dom-serializer@0.1.1
│   │ │ │ ├── domelementtype@1.3.1 deduped
│   │ │ │ └── entities@1.1.2 deduped
│   │ │ └── domelementtype@1.3.1
│   │ └─┬ nth-check@1.0.2
│   │   └── boolbase@1.0.0 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 deduped
│   ├── 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 deduped
│   ├── js-yaml@3.13.1 deduped
│   ├── mkdirp@0.5.1 deduped
│   ├─┬ object.values@1.1.0
│   │ ├── define-properties@1.1.3 deduped
│   │ ├─┬ es-abstract@1.13.0
│   │ │ ├─┬ es-to-primitive@1.2.0
│   │ │ │ ├── is-callable@1.1.4 deduped
│   │ │ │ ├── is-date-object@1.0.1 deduped
│   │ │ │ └─┬ is-symbol@1.0.2
│   │ │ │   └── has-symbols@1.0.0 deduped
│   │ │ ├── function-bind@1.1.1 deduped
│   │ │ ├── has@1.0.3 deduped
│   │ │ ├── is-callable@1.1.4
│   │ │ ├── is-regex@1.0.4 deduped
│   │ │ └── object-keys@1.1.1 deduped
│   │ ├── function-bind@1.1.1
│   │ └── has@1.0.3 deduped
│   ├── sax@1.2.4
│   ├── stable@0.1.8
│   ├── unquote@1.1.1
│   └── util.promisify@1.0.0 deduped
├─┬ @ripe-rnd/ui-datastores@0.0.1
│ ├── localforage@1.7.3 deduped
│ └─┬ topojson-client@3.0.0
│   └── commander@2.17.1
├─┬ @ripe-rnd/wc-ip@0.0.1
│ ├── big-integer@1.6.43
│ ├── ipaddr.js@1.9.0
│ └─┬ lit-element@2.1.0
│   └── lit-html@1.0.0
├─┬ @vue/eslint-config-standard@4.0.0
│ ├── eslint-config-standard@12.0.0
│ ├─┬ eslint-plugin-import@2.16.0
│ │ ├── contains-path@0.1.0
│ │ ├─┬ debug@2.6.9
│ │ │ └── ms@2.0.0
│ │ ├─┬ doctrine@1.5.0
│ │ │ ├── esutils@2.0.2 deduped
│ │ │ └── isarray@1.0.0 deduped
│ │ ├─┬ eslint-import-resolver-node@0.3.2
│ │ │ ├─┬ debug@2.6.9
│ │ │ │ └── ms@2.0.0
│ │ │ └── resolve@1.10.0 deduped
│ │ ├─┬ eslint-module-utils@2.3.0
│ │ │ ├─┬ debug@2.6.9
│ │ │ │ └── ms@2.0.0
│ │ │ └─┬ pkg-dir@2.0.0
│ │ │   └─┬ find-up@2.1.0
│ │ │     └─┬ locate-path@2.0.0
│ │ │       ├─┬ p-locate@2.0.0
│ │ │       │ └─┬ p-limit@1.3.0
│ │ │       │   └── p-try@1.0.0
│ │ │       └── path-exists@3.0.0 deduped
│ │ ├─┬ has@1.0.3
│ │ │ └── function-bind@1.1.1 deduped
│ │ ├── lodash@4.17.14 deduped
│ │ ├── minimatch@3.0.4 deduped
│ │ ├─┬ read-pkg-up@2.0.0
│ │ │ ├─┬ find-up@2.1.0
│ │ │ │ └─┬ locate-path@2.0.0
│ │ │ │   ├─┬ p-locate@2.0.0
│ │ │ │   │ └─┬ p-limit@1.3.0
│ │ │ │   │   └── p-try@1.0.0
│ │ │ │   └── path-exists@3.0.0 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
│ │ │   ├─┬ normalize-package-data@2.5.0
│ │ │   │ ├── hosted-git-info@2.7.1
│ │ │   │ ├── resolve@1.10.0 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
│ │ │   └─┬ path-type@2.0.0
│ │ │     └── pify@2.3.0
│ │ └── resolve@1.10.0 deduped
│ ├─┬ eslint-plugin-node@8.0.1
│ │ ├─┬ eslint-plugin-es@1.4.0
│ │ │ ├── eslint-utils@1.4.2 deduped
│ │ │ └── regexpp@2.0.1 deduped
│ │ ├── eslint-utils@1.4.2 deduped
│ │ ├── ignore@5.0.5
│ │ ├── minimatch@3.0.4 deduped
│ │ ├── resolve@1.10.0 deduped
│ │ └── semver@5.6.0 deduped
│ ├── eslint-plugin-promise@4.0.1
│ └── eslint-plugin-standard@4.0.0
├─┬ ajv@6.10.2
│ ├── fast-deep-equal@2.0.1
│ ├── fast-json-stable-stringify@2.0.0
│ ├── json-schema-traverse@0.4.1
│ └─┬ uri-js@4.2.2
│   └── punycode@2.1.1
├─┬ axios@0.19.0
│ ├─┬ follow-redirects@1.5.10
│ │ └─┬ debug@3.1.0
│ │   └── ms@2.0.0
│ └── is-buffer@2.0.3
├─┬ babel-eslint@10.0.3
│ ├─┬ @babel/code-frame@7.0.0
│ │ └─┬ @babel/highlight@7.0.0
│ │   ├── chalk@2.4.2 deduped
│ │   ├── esutils@2.0.2 deduped
│ │   └── js-tokens@4.0.0
│ ├── @babel/parser@7.3.3
│ ├─┬ @babel/traverse@7.2.3
│ │ ├── @babel/code-frame@7.0.0 deduped
│ │ ├─┬ @babel/generator@7.3.3
│ │ │ ├── @babel/types@7.3.3 deduped
│ │ │ ├── jsesc@2.5.2
│ │ │ ├── lodash@4.17.14 deduped
│ │ │ ├── source-map@0.5.7 deduped
│ │ │ └── trim-right@1.0.1
│ │ ├─┬ @babel/helper-function-name@7.1.0
│ │ │ ├─┬ @babel/helper-get-function-arity@7.0.0
│ │ │ │ └── @babel/types@7.3.3 deduped
│ │ │ ├─┬ @babel/template@7.2.2
│ │ │ │ ├── @babel/code-frame@7.0.0 deduped
│ │ │ │ ├── @babel/parser@7.3.3 deduped
│ │ │ │ └── @babel/types@7.3.3 deduped
│ │ │ └── @babel/types@7.3.3 deduped
│ │ ├─┬ @babel/helper-split-export-declaration@7.0.0
│ │ │ └── @babel/types@7.3.3 deduped
│ │ ├── @babel/parser@7.3.3 deduped
│ │ ├── @babel/types@7.3.3 deduped
│ │ ├─┬ debug@4.1.1
│ │ │ └── ms@2.1.1 deduped
│ │ ├── globals@11.11.0 deduped
│ │ └── lodash@4.17.14 deduped
│ ├─┬ @babel/types@7.3.3
│ │ ├── esutils@2.0.2 deduped
│ │ ├── lodash@4.17.14 deduped
│ │ └── to-fast-properties@2.0.0
│ ├── eslint-visitor-keys@1.0.0
│ └─┬ resolve@1.12.0
│   └── path-parse@1.0.6
├─┬ browserslist@4.6.6
│ ├── caniuse-lite@1.0.30000984
│ ├── electron-to-chromium@1.3.194
│ └─┬ node-releases@1.1.25
│   └── semver@5.6.0 deduped
├─┬ eslint@5.16.0
│ ├── @babel/code-frame@7.0.0 deduped
│ ├── ajv@6.10.2 deduped
│ ├── chalk@2.4.2 deduped
│ ├── cross-spawn@6.0.5 deduped
│ ├─┬ debug@4.1.1
│ │ └── ms@2.1.1
│ ├─┬ doctrine@3.0.0
│ │ └── esutils@2.0.2 deduped
│ ├─┬ eslint-scope@4.0.3
│ │ ├─┬ esrecurse@4.2.1
│ │ │ └── estraverse@4.2.0 deduped
│ │ └── estraverse@4.2.0
│ ├─┬ eslint-utils@1.4.2
│ │ └── eslint-visitor-keys@1.0.0 deduped
│ ├── eslint-visitor-keys@1.0.0 deduped
│ ├─┬ espree@5.0.1
│ │ ├── acorn@6.1.0 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 deduped
│ │   ├── rimraf@2.6.3 deduped
│ │   └─┬ write@1.0.3
│ │     └── mkdirp@0.5.1 deduped
│ ├── functional-red-black-tree@1.0.1
│ ├─┬ 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
│ ├── globals@11.11.0
│ ├── ignore@4.0.6
│ ├─┬ import-fresh@3.1.0
│ │ ├─┬ parent-module@1.0.1
│ │ │ └── callsites@3.1.0
│ │ └── resolve-from@4.0.0
│ ├── imurmurhash@0.1.4
│ ├─┬ inquirer@6.5.0
│ │ ├── 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
│ │ │ └── escape-string-regexp@1.0.5 deduped
│ │ ├── lodash@4.17.14 deduped
│ │ ├── mute-stream@0.0.7
│ │ ├── run-async@2.3.0 deduped
│ │ ├── rxjs@6.4.0 deduped
│ │ ├── string-width@2.1.1 deduped
│ │ ├─┬ strip-ansi@5.2.0
│ │ │ └── ansi-regex@4.1.0
│ │ └── through@2.3.8 deduped
│ ├─┬ js-yaml@3.13.1
│ │ ├─┬ 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.14
│ ├─┬ 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
│ ├─┬ strip-ansi@4.0.0
│ │ └── ansi-regex@3.0.0
│ ├── strip-json-comments@2.0.1
│ ├─┬ table@5.4.4
│ │ ├─┬ ajv@6.10.2
│ │ │ ├── fast-deep-equal@2.0.1 deduped
│ │ │ ├── fast-json-stable-stringify@2.0.0 deduped
│ │ │ ├── json-schema-traverse@0.4.1 deduped
│ │ │ └── uri-js@4.2.2 deduped
│ │ ├── lodash@4.17.14 deduped
│ │ ├─┬ slice-ansi@2.1.0
│ │ │ ├── ansi-styles@3.2.1 deduped
│ │ │ ├── astral-regex@1.0.0
│ │ │ └── is-fullwidth-code-point@2.0.0 deduped
│ │ └─┬ string-width@3.1.0
│ │   ├── emoji-regex@7.0.3
│ │   ├── is-fullwidth-code-point@2.0.0 deduped
│ │   └─┬ strip-ansi@5.2.0
│ │     └── ansi-regex@4.1.0
│ └── text-table@0.2.0
├─┬ eslint-loader@2.2.1
│ ├─┬ loader-fs-cache@1.0.2
│ │ ├─┬ find-cache-dir@0.1.1
│ │ │ ├── commondir@1.0.1 deduped
│ │ │ ├── mkdirp@0.5.1 deduped
│ │ │ └─┬ pkg-dir@1.0.0
│ │ │   └─┬ find-up@1.1.2
│ │ │     ├─┬ path-exists@2.1.0
│ │ │     │ └── pinkie-promise@2.0.1 deduped
│ │ │     └── pinkie-promise@2.0.1 deduped
│ │ └── mkdirp@0.5.1 deduped
│ ├─┬ loader-utils@1.2.3
│ │ ├── big.js@5.2.2
│ │ ├── emojis-list@2.1.0
│ │ └─┬ json5@1.0.1
│ │   └── minimist@1.2.0 deduped
│ ├── object-assign@4.1.1
│ ├── object-hash@1.3.1
│ └─┬ rimraf@2.6.3
│   └── glob@7.1.3 deduped
├─┬ eslint-plugin-vue@5.2.3
│ └─┬ vue-eslint-parser@5.0.0
│   ├── debug@4.1.1 deduped
│   ├─┬ eslint-scope@4.0.0
│   │ ├── esrecurse@4.2.1 deduped
│   │ └── estraverse@4.2.0 deduped
│   ├── eslint-visitor-keys@1.0.0 deduped
│   ├─┬ espree@4.1.0
│   │ ├── acorn@6.1.0 deduped
│   │ ├── acorn-jsx@5.0.1 deduped
│   │ └── eslint-visitor-keys@1.0.0 deduped
│   ├── esquery@1.0.1 deduped
│   └── lodash@4.17.14 deduped
├── frappe-charts@1.2.4
├── highcharts@7.1.3
├── highcharts-vue@1.3.5
├─┬ localforage@1.7.3
│ └─┬ lie@3.1.1
│   └── immediate@3.0.6
├─┬ packery@2.1.2
│ ├── get-size@2.0.3
│ └─┬ outlayer@2.1.1
│   ├── ev-emitter@1.1.1
│   ├─┬ fizzy-ui-utils@2.0.7
│   │ └── desandro-matches-selector@2.0.2
│   └── get-size@2.0.3 deduped
├─┬ postcss-loader@3.0.0
│ ├── loader-utils@1.2.3 deduped
│ ├─┬ postcss@7.0.17
│ │ ├── chalk@2.4.2 deduped
│ │ ├── source-map@0.6.1
│ │ └─┬ supports-color@6.1.0
│ │   └── has-flag@3.0.0 deduped
│ ├─┬ postcss-load-config@2.1.0
│ │ ├── cosmiconfig@5.2.1 deduped
│ │ └─┬ import-cwd@2.1.0
│ │   └─┬ import-from@2.1.0
│ │     └── resolve-from@3.0.0 deduped
│ └─┬ schema-utils@1.0.0
│   ├── ajv@6.10.2 deduped
│   ├── ajv-errors@1.0.1
│   └── ajv-keywords@3.4.1 deduped
├── quasar@1.1.0
├── vue-i18n@7.8.1
├─┬ vue-localforage@0.2.5
│ ├── localforage@1.7.3 deduped
│ └─┬ vue@1.0.28
│   └─┬ envify@3.4.1
│     ├─┬ jstransform@11.0.3
│     │ ├── base62@1.2.8
│     │ ├─┬ commoner@0.10.8
│     │ │ ├── commander@2.17.1 deduped
│     │ │ ├─┬ detective@4.7.1
│     │ │ │ ├── acorn@5.7.3
│     │ │ │ └── defined@1.0.0
│     │ │ ├─┬ glob@5.0.15
│     │ │ │ ├── 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
│     │ │ ├─┬ iconv-lite@0.4.23
│     │ │ │ └── safer-buffer@2.1.2 deduped
│     │ │ ├── mkdirp@0.5.1 deduped
│     │ │ ├── private@0.1.8 deduped
│     │ │ ├── q@1.5.1 deduped
│     │ │ └─┬ recast@0.11.23
│     │ │   ├── ast-types@0.9.6
│     │ │   ├── esprima@3.1.3
│     │ │   ├── private@0.1.8 deduped
│     │ │   └── source-map@0.5.7 deduped
│     │ ├── esprima-fb@15001.1.0-dev-harmony-fb
│     │ ├── object-assign@2.1.1
│     │ └─┬ source-map@0.4.4
│     │   └── amdefine@1.0.1 deduped
│     └── through@2.3.8 deduped
├── vue-masonry-css@1.0.3
├─┬ vue-packery-draggabilly-plugin@1.0.3
│ ├─┬ babel-cli@6.26.0
│ │ ├── babel-core@6.26.3 deduped
│ │ ├─┬ babel-polyfill@6.26.0
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ ├── core-js@2.6.5 deduped
│ │ │ └── regenerator-runtime@0.10.5
│ │ ├─┬ babel-register@6.26.0
│ │ │ ├── babel-core@6.26.3 deduped
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ ├── core-js@2.6.5 deduped
│ │ │ ├─┬ home-or-tmp@2.0.0
│ │ │ │ ├── os-homedir@1.0.2 deduped
│ │ │ │ └── os-tmpdir@1.0.2 deduped
│ │ │ ├── lodash@4.17.14 deduped
│ │ │ ├── mkdirp@0.5.1 deduped
│ │ │ └─┬ source-map-support@0.4.18
│ │ │   └── source-map@0.5.7 deduped
│ │ ├─┬ babel-runtime@6.26.0
│ │ │ ├── core-js@2.6.5 deduped
│ │ │ └── regenerator-runtime@0.11.1
│ │ ├─┬ chokidar@1.7.0
│ │ │ ├─┬ anymatch@1.3.2
│ │ │ │ ├─┬ micromatch@2.3.11
│ │ │ │ │ ├─┬ arr-diff@2.0.0
│ │ │ │ │ │ └── arr-flatten@1.1.0 deduped
│ │ │ │ │ ├── array-unique@0.2.1
│ │ │ │ │ ├─┬ braces@1.8.5
│ │ │ │ │ │ ├─┬ expand-range@1.8.2
│ │ │ │ │ │ │ └─┬ fill-range@2.2.4
│ │ │ │ │ │ │   ├─┬ is-number@2.1.0
│ │ │ │ │ │ │   │ └─┬ kind-of@3.2.2
│ │ │ │ │ │ │   │   └── is-buffer@1.1.6 deduped
│ │ │ │ │ │ │   ├─┬ isobject@2.1.0
│ │ │ │ │ │ │   │ └── isarray@1.0.0 deduped
│ │ │ │ │ │ │   ├─┬ randomatic@3.1.1
│ │ │ │ │ │ │   │ ├── is-number@4.0.0
│ │ │ │ │ │ │   │ ├── kind-of@6.0.2 deduped
│ │ │ │ │ │ │   │ └── math-random@1.0.4
│ │ │ │ │ │ │   ├── repeat-element@1.1.3 deduped
│ │ │ │ │ │ │   └── repeat-string@1.6.1 deduped
│ │ │ │ │ │ ├── preserve@0.2.0
│ │ │ │ │ │ └── repeat-element@1.1.3 deduped
│ │ │ │ │ ├─┬ expand-brackets@0.1.5
│ │ │ │ │ │ └── is-posix-bracket@0.1.1
│ │ │ │ │ ├─┬ extglob@0.3.2
│ │ │ │ │ │ └── is-extglob@1.0.0 deduped
│ │ │ │ │ ├── filename-regex@2.0.1
│ │ │ │ │ ├── is-extglob@1.0.0 deduped
│ │ │ │ │ ├── is-glob@2.0.1 deduped
│ │ │ │ │ ├─┬ kind-of@3.2.2
│ │ │ │ │ │ └── is-buffer@1.1.6
│ │ │ │ │ ├── normalize-path@2.1.1 deduped
│ │ │ │ │ ├─┬ object.omit@2.0.1
│ │ │ │ │ │ ├─┬ for-own@0.1.5
│ │ │ │ │ │ │ └── for-in@1.0.2 deduped
│ │ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ ├─┬ parse-glob@3.0.4
│ │ │ │ │ │ ├─┬ glob-base@0.3.0
│ │ │ │ │ │ │ ├─┬ glob-parent@2.0.0
│ │ │ │ │ │ │ │ └── is-glob@2.0.1 deduped
│ │ │ │ │ │ │ └── is-glob@2.0.1 deduped
│ │ │ │ │ │ ├── is-dotfile@1.0.3
│ │ │ │ │ │ ├── is-extglob@1.0.0 deduped
│ │ │ │ │ │ └── is-glob@2.0.1 deduped
│ │ │ │ │ └─┬ regex-cache@0.4.4
│ │ │ │ │   └─┬ is-equal-shallow@0.1.3
│ │ │ │ │     └── is-primitive@2.0.0
│ │ │ │ └─┬ normalize-path@2.1.1
│ │ │ │   └── remove-trailing-separator@1.1.0 deduped
│ │ │ ├── async-each@1.0.2 deduped
│ │ │ ├── fsevents@1.2.7 deduped
│ │ │ ├─┬ glob-parent@2.0.0
│ │ │ │ └── is-glob@2.0.1 deduped
│ │ │ ├── inherits@2.0.3 deduped
│ │ │ ├── is-binary-path@1.0.1 deduped
│ │ │ ├─┬ is-glob@2.0.1
│ │ │ │ └── is-extglob@1.0.0
│ │ │ ├── path-is-absolute@1.0.1 deduped
│ │ │ └── readdirp@2.2.1 deduped
│ │ ├── commander@2.17.1 deduped
│ │ ├─┬ convert-source-map@1.6.0
│ │ │ └── safe-buffer@5.1.2 deduped
│ │ ├── fs-readdir-recursive@1.1.0
│ │ ├── glob@7.1.3 deduped
│ │ ├── lodash@4.17.14 deduped
│ │ ├─┬ output-file-sync@1.1.2
│ │ │ ├── graceful-fs@4.1.15 deduped
│ │ │ ├── mkdirp@0.5.1 deduped
│ │ │ └── object-assign@4.1.1 deduped
│ │ ├── path-is-absolute@1.0.1 deduped
│ │ ├── slash@1.0.0
│ │ ├── source-map@0.5.7
│ │ └─┬ v8flags@2.1.1
│ │   └── user-home@1.1.1
│ ├─┬ babel-core@6.26.3
│ │ ├─┬ babel-code-frame@6.26.0
│ │ │ ├─┬ chalk@1.1.3
│ │ │ │ ├── ansi-styles@2.2.1
│ │ │ │ ├── escape-string-regexp@1.0.5 deduped
│ │ │ │ ├── has-ansi@2.0.0 deduped
│ │ │ │ ├── strip-ansi@3.0.1 deduped
│ │ │ │ └── supports-color@2.0.0
│ │ │ ├── esutils@2.0.2 deduped
│ │ │ └── js-tokens@3.0.2
│ │ ├─┬ babel-generator@6.26.1
│ │ │ ├── babel-messages@6.23.0 deduped
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ ├── babel-types@6.26.0 deduped
│ │ │ ├─┬ detect-indent@4.0.0
│ │ │ │ └─┬ repeating@2.0.1
│ │ │ │   └─┬ is-finite@1.0.2
│ │ │ │     └── number-is-nan@1.0.1 deduped
│ │ │ ├── jsesc@1.3.0
│ │ │ ├── lodash@4.17.14 deduped
│ │ │ ├── source-map@0.5.7 deduped
│ │ │ └── trim-right@1.0.1 deduped
│ │ ├─┬ babel-helpers@6.24.1
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ └── babel-template@6.26.0 deduped
│ │ ├─┬ babel-messages@6.23.0
│ │ │ └── babel-runtime@6.26.0 deduped
│ │ ├── babel-register@6.26.0 deduped
│ │ ├── babel-runtime@6.26.0 deduped
│ │ ├─┬ babel-template@6.26.0
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ ├── babel-traverse@6.26.0 deduped
│ │ │ ├── babel-types@6.26.0 deduped
│ │ │ ├── babylon@6.18.0 deduped
│ │ │ └── lodash@4.17.14 deduped
│ │ ├─┬ babel-traverse@6.26.0
│ │ │ ├── babel-code-frame@6.26.0 deduped
│ │ │ ├── babel-messages@6.23.0 deduped
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ ├── babel-types@6.26.0 deduped
│ │ │ ├── babylon@6.18.0 deduped
│ │ │ ├─┬ debug@2.6.9
│ │ │ │ └── ms@2.0.0
│ │ │ ├── globals@9.18.0
│ │ │ ├── invariant@2.2.4 deduped
│ │ │ └── lodash@4.17.14 deduped
│ │ ├─┬ babel-types@6.26.0
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ ├── esutils@2.0.2 deduped
│ │ │ ├── lodash@4.17.14 deduped
│ │ │ └── to-fast-properties@1.0.3
│ │ ├── babylon@6.18.0
│ │ ├── convert-source-map@1.6.0 deduped
│ │ ├─┬ debug@2.6.9
│ │ │ └── ms@2.0.0
│ │ ├── json5@0.5.1
│ │ ├── lodash@4.17.14 deduped
│ │ ├── minimatch@3.0.4 deduped
│ │ ├── path-is-absolute@1.0.1 deduped
│ │ ├── private@0.1.8
│ │ ├── slash@1.0.0 deduped
│ │ └── source-map@0.5.7 deduped
│ ├─┬ babel-preset-env@1.7.0
│ │ ├─┬ babel-plugin-check-es2015-constants@6.22.0
│ │ │ └── babel-runtime@6.26.0 deduped
│ │ ├── babel-plugin-syntax-trailing-function-commas@6.22.0
│ │ ├─┬ babel-plugin-transform-async-to-generator@6.24.1
│ │ │ ├─┬ babel-helper-remap-async-to-generator@6.24.1
│ │ │ │ ├── babel-helper-function-name@6.24.1 deduped
│ │ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ │ ├── babel-template@6.26.0 deduped
│ │ │ │ ├── babel-traverse@6.26.0 deduped
│ │ │ │ └── babel-types@6.26.0 deduped
│ │ │ ├── babel-plugin-syntax-async-functions@6.13.0
│ │ │ └── babel-runtime@6.26.0 deduped
│ │ ├─┬ babel-plugin-transform-es2015-arrow-functions@6.22.0
│ │ │ └── babel-runtime@6.26.0 deduped
│ │ ├─┬ babel-plugin-transform-es2015-block-scoped-functions@6.22.0
│ │ │ └── babel-runtime@6.26.0 deduped
│ │ ├─┬ babel-plugin-transform-es2015-block-scoping@6.26.0
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ ├── babel-template@6.26.0 deduped
│ │ │ ├── babel-traverse@6.26.0 deduped
│ │ │ ├── babel-types@6.26.0 deduped
│ │ │ └── lodash@4.17.14 deduped
│ │ ├─┬ babel-plugin-transform-es2015-classes@6.24.1
│ │ │ ├─┬ babel-helper-define-map@6.26.0
│ │ │ │ ├── babel-helper-function-name@6.24.1 deduped
│ │ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ │ ├── babel-types@6.26.0 deduped
│ │ │ │ └── lodash@4.17.14 deduped
│ │ │ ├─┬ babel-helper-function-name@6.24.1
│ │ │ │ ├── babel-helper-get-function-arity@6.24.1 deduped
│ │ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ │ ├── babel-template@6.26.0 deduped
│ │ │ │ ├── babel-traverse@6.26.0 deduped
│ │ │ │ └── babel-types@6.26.0 deduped
│ │ │ ├─┬ babel-helper-optimise-call-expression@6.24.1
│ │ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ │ └── babel-types@6.26.0 deduped
│ │ │ ├─┬ babel-helper-replace-supers@6.24.1
│ │ │ │ ├── babel-helper-optimise-call-expression@6.24.1 deduped
│ │ │ │ ├── babel-messages@6.23.0 deduped
│ │ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ │ ├── babel-template@6.26.0 deduped
│ │ │ │ ├── babel-traverse@6.26.0 deduped
│ │ │ │ └── babel-types@6.26.0 deduped
│ │ │ ├── babel-messages@6.23.0 deduped
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ ├── babel-template@6.26.0 deduped
│ │ │ ├── babel-traverse@6.26.0 deduped
│ │ │ └── babel-types@6.26.0 deduped
│ │ ├─┬ babel-plugin-transform-es2015-computed-properties@6.24.1
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ └── babel-template@6.26.0 deduped
│ │ ├─┬ babel-plugin-transform-es2015-destructuring@6.23.0
│ │ │ └── babel-runtime@6.26.0 deduped
│ │ ├─┬ babel-plugin-transform-es2015-duplicate-keys@6.24.1
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ └── babel-types@6.26.0 deduped
│ │ ├─┬ babel-plugin-transform-es2015-for-of@6.23.0
│ │ │ └── babel-runtime@6.26.0 deduped
│ │ ├─┬ babel-plugin-transform-es2015-function-name@6.24.1
│ │ │ ├── babel-helper-function-name@6.24.1 deduped
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ └── babel-types@6.26.0 deduped
│ │ ├─┬ babel-plugin-transform-es2015-literals@6.22.0
│ │ │ └── babel-runtime@6.26.0 deduped
│ │ ├─┬ babel-plugin-transform-es2015-modules-amd@6.24.1
│ │ │ ├── babel-plugin-transform-es2015-modules-commonjs@6.26.2 deduped
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ └── babel-template@6.26.0 deduped
│ │ ├─┬ 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 deduped
│ │ │ ├── babel-template@6.26.0 deduped
│ │ │ └── babel-types@6.26.0 deduped
│ │ ├─┬ babel-plugin-transform-es2015-modules-systemjs@6.24.1
│ │ │ ├─┬ babel-helper-hoist-variables@6.24.1
│ │ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ │ └── babel-types@6.26.0 deduped
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ └── babel-template@6.26.0 deduped
│ │ ├─┬ babel-plugin-transform-es2015-modules-umd@6.24.1
│ │ │ ├── babel-plugin-transform-es2015-modules-amd@6.24.1 deduped
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ └── babel-template@6.26.0 deduped
│ │ ├─┬ babel-plugin-transform-es2015-object-super@6.24.1
│ │ │ ├── babel-helper-replace-supers@6.24.1 deduped
│ │ │ └── babel-runtime@6.26.0 deduped
│ │ ├─┬ babel-plugin-transform-es2015-parameters@6.24.1
│ │ │ ├─┬ babel-helper-call-delegate@6.24.1
│ │ │ │ ├── babel-helper-hoist-variables@6.24.1 deduped
│ │ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ │ ├── babel-traverse@6.26.0 deduped
│ │ │ │ └── babel-types@6.26.0 deduped
│ │ │ ├─┬ babel-helper-get-function-arity@6.24.1
│ │ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ │ └── babel-types@6.26.0 deduped
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ ├── babel-template@6.26.0 deduped
│ │ │ ├── babel-traverse@6.26.0 deduped
│ │ │ └── babel-types@6.26.0 deduped
│ │ ├─┬ babel-plugin-transform-es2015-shorthand-properties@6.24.1
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ └── babel-types@6.26.0 deduped
│ │ ├─┬ babel-plugin-transform-es2015-spread@6.22.0
│ │ │ └── babel-runtime@6.26.0 deduped
│ │ ├─┬ babel-plugin-transform-es2015-sticky-regex@6.24.1
│ │ │ ├─┬ babel-helper-regex@6.26.0
│ │ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ │ ├── babel-types@6.26.0 deduped
│ │ │ │ └── lodash@4.17.14 deduped
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ └── babel-types@6.26.0 deduped
│ │ ├─┬ babel-plugin-transform-es2015-template-literals@6.22.0
│ │ │ └── babel-runtime@6.26.0 deduped
│ │ ├─┬ babel-plugin-transform-es2015-typeof-symbol@6.23.0
│ │ │ └── babel-runtime@6.26.0 deduped
│ │ ├─┬ babel-plugin-transform-es2015-unicode-regex@6.24.1
│ │ │ ├── babel-helper-regex@6.26.0 deduped
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ └─┬ regexpu-core@2.0.0
│ │ │   ├── regenerate@1.4.0
│ │ │   ├── regjsgen@0.2.0
│ │ │   └─┬ regjsparser@0.1.5
│ │ │     └── jsesc@0.5.0
│ │ ├─┬ babel-plugin-transform-exponentiation-operator@6.24.1
│ │ │ ├─┬ babel-helper-builder-binary-assignment-operator-visitor@6.24.1
│ │ │ │ ├─┬ babel-helper-explode-assignable-expression@6.24.1
│ │ │ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ │ │ ├── babel-traverse@6.26.0 deduped
│ │ │ │ │ └── babel-types@6.26.0 deduped
│ │ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ │ └── babel-types@6.26.0 deduped
│ │ │ ├── babel-plugin-syntax-exponentiation-operator@6.13.0
│ │ │ └── babel-runtime@6.26.0 deduped
│ │ ├─┬ babel-plugin-transform-regenerator@6.26.0
│ │ │ └─┬ regenerator-transform@0.10.1
│ │ │   ├── babel-runtime@6.26.0 deduped
│ │ │   ├── babel-types@6.26.0 deduped
│ │ │   └── private@0.1.8 deduped
│ │ ├─┬ browserslist@3.2.8
│ │ │ ├── caniuse-lite@1.0.30000954
│ │ │ └── electron-to-chromium@1.3.143
│ │ ├─┬ invariant@2.2.4
│ │ │ └─┬ loose-envify@1.4.0
│ │ │   └── js-tokens@4.0.0 deduped
│ │ └── semver@5.6.0 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
│ └─┬ draggabilly@2.2.0
│   ├── get-size@2.0.3 deduped
│   └─┬ unidragger@2.3.0
│     └─┬ unipointer@2.3.0
│       └── ev-emitter@1.1.1 deduped
├─┬ vue-packery-plugin@1.4.8
│ └── packery@2.1.2 deduped
├─┬ vue2-frappe@1.0.28
│ └── frappe-charts@1.2.4 deduped
├─┬ vuedraggable@2.23.0
│ └── sortablejs@1.9.0
└─┬ vuex-persist@2.0.1 (github:morphatic/vuex-persist#e7616e58b7e05e9929f57fb4b01f1331cdc11ae2)
  ├── flatted@2.0.0
  └── lodash.merge@4.6.1

Do we have any major version differences, or is there anything else you think could be causing this?

rstoenescu commented 5 years ago

I'm just noticing this part:

// notice 3.6.3:
importScripts("https://storage.googleapis.com/workbox-cdn/releases/3.6.3/workbox-sw.js");

It should be:

// notice 4.x:
importScripts("https://storage.googleapis.com/workbox-cdn/releases/4.3.1/workbox-sw.js");

This gets generated automatically, so:

Looking forward to your reply.

ssuess commented 5 years ago

As a test, I created a brand new quasar app, and then moved all of my src files into it and reinstalled missing npms. For some reason, workbox.core directives now work! I am going to do a folder compare and see what the differences might be...

rstoenescu commented 5 years ago

Interesting... then it's definitely something related to how yarn/npm managed the packages. Will close this, but please do share your findings here.