Skip to content

Instantly share code, notes, and snippets.

@wdiechmann
Last active March 10, 2021 15:48
Show Gist options
  • Select an option

  • Save wdiechmann/c179eb88bb4c769b89719215bcda2cd1 to your computer and use it in GitHub Desktop.

Select an option

Save wdiechmann/c179eb88bb4c769b89719215bcda2cd1 to your computer and use it in GitHub Desktop.
VueTailwind issue

Software versions

rails: 6.1.3 ruby: 2.6.1p33 node: v14.12.0 yarn: 1.22.5

webpacker.yml

# Note: You must restart bin/webpack-dev-server for changes to take effect

default: &default
  source_path: app/javascript
  source_entry_path: packs
  public_root_path: public
  public_output_path: packs
  cache_path: tmp/cache/webpacker
  webpack_compile_output: true

  # Additional paths webpack should lookup modules
  # ['app/assets', 'engine/foo/app/assets']
  additional_paths: []

  # Reload manifest.json on all requests so we reload latest compiled packs
  cache_manifest: false

  # Extract and emit a css file
  extract_css: false

  static_assets_extensions:
    - .jpg
    - .jpeg
    - .png
    - .gif
    - .tiff
    - .ico
    - .svg
    - .eot
    - .otf
    - .ttf
    - .woff
    - .woff2

  extensions:
    - .vue
    - .mjs
    - .js
    - .sass
    - .scss
    - .css
    - .module.sass
    - .module.scss
    - .module.css
    - .png
    - .svg
    - .gif
    - .jpeg
    - .jpg

development:
  <<: *default
  compile: true

  # Reference: https://webpack.js.org/configuration/dev-server/
  dev_server:
    https: false
    host: localhost
    port: 3035
    public: localhost:3035
    hmr: false
    # Inline should be set to true if using HMR
    inline: true
    overlay: true
    compress: true
    disable_host_check: true
    use_local_ip: false
    quiet: false
    pretty: false
    headers:
      'Access-Control-Allow-Origin': '*'
    watch_options:
      ignored: '**/node_modules/**'


test:
  <<: *default
  compile: true

  # Compile test packs to a separate directory
  public_output_path: packs-test

production:
  <<: *default

  # Production depends on precompilation of packs prior to booting for performance.
  compile: false

  # Extract and emit a css file
  extract_css: true

  # Cache manifest.json for performance
  cache_manifest: true

app/javascript/packs/application.js:

import Rails from "@rails/ujs"
import Turbolinks from "turbolinks"
import * as ActiveStorage from "@rails/activestorage"
import "channels"

require("stylesheets/application.scss")

Rails.start()
Turbolinks.start()
ActiveStorage.start()

app/javascript/packs/hello_vue.js:

import TurbolinksAdapter from 'vue-turbolinks'
import Vue from 'vue/dist/vue.esm'
import App from '../app.vue'
import VueTailwind from 'vue-tailwind'

Vue.use(TurbolinksAdapter)
Vue.use(VueTailwind)

document.addEventListener('turbolinks:load', () => {
  const app = new Vue({
    el: '#hello',
    data: () => {
      return {
        message: "Can you say hello?"
      }
    },
    components: { App }
  })
})

webpack/environment.js:

const { environment } = require('@rails/webpacker')
const { VueLoaderPlugin } = require('vue-loader')
const vue = require('./loaders/vue')

environment.plugins.prepend('VueLoaderPlugin', new VueLoaderPlugin())
environment.loaders.prepend('vue', vue)
module.exports = environment

webpack/loaders/vue.js:

module.exports = {
  test: /\.vue(\.erb)?$/,
  use: [{
    loader: 'vue-loader'
  }]
}

tailwind.config.js:

const defaultTheme = require('tailwindcss/defaultTheme')
// const colors = require('tailwindcss/colors')

module.exports = {
  purge: [
    './app/assets/**/*.js',
    './app/assets/**/*.coffee',
    './app/javascript/**/*.coffee',
    './app/javascript/**/*.js',
    './app/views/**/*.haml',
    './app/helpers/*.rb',
    './app/views/**/*.erb',
    './app/**/*.jsx',
    'node_modules/vue-tailwind/dist/*.js',
  ],
  darkMode: false, // or 'media' or 'class'
  theme: {
    extend: {
      colors: {
        'premier-blue': '#00122F',
        'premier-red': '#C80019',
        'premier-amber': '#381308'
      },
      fontFamily: {
        sans: ['Inter var', ...defaultTheme.fontFamily.sans],
      },
    },
  },
  variants: {
    extend: {
      opacity: ['disabled'],
      cursor: ['disabled'],
    },
  },
  plugins: [
    require('@tailwindcss/forms'),
    require('@tailwindcss/typography'),
    require('@tailwindcss/aspect-ratio'),
  ],
}

postcss.config.js

module.exports = {
  plugins: [
    require('tailwindcss')('./app/javascript/tailwind.config.js'),
    require('autoprefixer'),
    require('postcss-import'),
    require('postcss-flexbugs-fixes'),
    require('postcss-preset-env')({
      autoprefixer: {
        flexbox: 'no-2009'
      },
      stage: 3
    })
  ]
}

node_modules:

yarn list v1.22.5
├─ @babel/code-frame@7.12.13
│  └─ @babel/highlight@^7.12.13
├─ @babel/compat-data@7.13.8
├─ @babel/core@7.13.10
│  ├─ @babel/code-frame@^7.12.13
│  ├─ @babel/generator@^7.13.9
│  ├─ @babel/helper-compilation-targets@^7.13.10
│  ├─ @babel/helper-module-transforms@^7.13.0
│  ├─ @babel/helpers@^7.13.10
│  ├─ @babel/parser@^7.13.10
│  ├─ @babel/template@^7.12.13
│  ├─ @babel/traverse@^7.13.0
│  ├─ @babel/types@^7.13.0
│  ├─ convert-source-map@^1.7.0
│  ├─ debug@^4.1.0
│  ├─ debug@4.3.1
│  │  └─ ms@2.1.2
│  ├─ gensync@^1.0.0-beta.2
│  ├─ json5@^2.1.2
│  ├─ lodash@^4.17.19
│  ├─ ms@2.1.2
│  ├─ semver@^6.3.0
│  ├─ source-map@^0.5.0
│  └─ source-map@0.5.7
├─ @babel/generator@7.13.9
│  ├─ @babel/types@^7.13.0
│  ├─ jsesc@^2.5.1
│  ├─ source-map@^0.5.0
│  └─ source-map@0.5.7
├─ @babel/helper-annotate-as-pure@7.12.13
│  └─ @babel/types@^7.12.13
├─ @babel/helper-builder-binary-assignment-operator-visitor@7.12.13
│  ├─ @babel/helper-explode-assignable-expression@^7.12.13
│  └─ @babel/types@^7.12.13
├─ @babel/helper-compilation-targets@7.13.10
│  ├─ @babel/compat-data@^7.13.8
│  ├─ @babel/helper-validator-option@^7.12.17
│  ├─ browserslist@^4.14.5
│  └─ semver@^6.3.0
├─ @babel/helper-create-class-features-plugin@7.13.10
│  ├─ @babel/helper-function-name@^7.12.13
│  ├─ @babel/helper-member-expression-to-functions@^7.13.0
│  ├─ @babel/helper-optimise-call-expression@^7.12.13
│  ├─ @babel/helper-replace-supers@^7.13.0
│  └─ @babel/helper-split-export-declaration@^7.12.13
├─ @babel/helper-create-regexp-features-plugin@7.12.17
│  ├─ @babel/helper-annotate-as-pure@^7.12.13
│  └─ regexpu-core@^4.7.1
├─ @babel/helper-define-polyfill-provider@0.1.5
│  ├─ @babel/helper-compilation-targets@^7.13.0
│  ├─ @babel/helper-module-imports@^7.12.13
│  ├─ @babel/helper-plugin-utils@^7.13.0
│  ├─ @babel/traverse@^7.13.0
│  ├─ debug@^4.1.1
│  ├─ debug@4.3.1
│  │  └─ ms@2.1.2
│  ├─ lodash.debounce@^4.0.8
│  ├─ ms@2.1.2
│  ├─ resolve@^1.14.2
│  └─ semver@^6.1.2
├─ @babel/helper-explode-assignable-expression@7.13.0
│  └─ @babel/types@^7.13.0
├─ @babel/helper-function-name@7.12.13
│  ├─ @babel/helper-get-function-arity@^7.12.13
│  ├─ @babel/template@^7.12.13
│  └─ @babel/types@^7.12.13
├─ @babel/helper-get-function-arity@7.12.13
│  └─ @babel/types@^7.12.13
├─ @babel/helper-hoist-variables@7.13.0
│  ├─ @babel/traverse@^7.13.0
│  └─ @babel/types@^7.13.0
├─ @babel/helper-member-expression-to-functions@7.13.0
│  └─ @babel/types@^7.13.0
├─ @babel/helper-module-imports@7.12.13
│  └─ @babel/types@^7.12.13
├─ @babel/helper-module-transforms@7.13.0
│  ├─ @babel/helper-module-imports@^7.12.13
│  ├─ @babel/helper-replace-supers@^7.13.0
│  ├─ @babel/helper-simple-access@^7.12.13
│  ├─ @babel/helper-split-export-declaration@^7.12.13
│  ├─ @babel/helper-validator-identifier@^7.12.11
│  ├─ @babel/template@^7.12.13
│  ├─ @babel/traverse@^7.13.0
│  ├─ @babel/types@^7.13.0
│  └─ lodash@^4.17.19
├─ @babel/helper-optimise-call-expression@7.12.13
│  └─ @babel/types@^7.12.13
├─ @babel/helper-plugin-utils@7.13.0
├─ @babel/helper-remap-async-to-generator@7.13.0
│  ├─ @babel/helper-annotate-as-pure@^7.12.13
│  ├─ @babel/helper-wrap-function@^7.13.0
│  └─ @babel/types@^7.13.0
├─ @babel/helper-replace-supers@7.13.0
│  ├─ @babel/helper-member-expression-to-functions@^7.13.0
│  ├─ @babel/helper-optimise-call-expression@^7.12.13
│  ├─ @babel/traverse@^7.13.0
│  └─ @babel/types@^7.13.0
├─ @babel/helper-simple-access@7.12.13
│  └─ @babel/types@^7.12.13
├─ @babel/helper-skip-transparent-expression-wrappers@7.12.1
│  └─ @babel/types@^7.12.1
├─ @babel/helper-split-export-declaration@7.12.13
│  └─ @babel/types@^7.12.13
├─ @babel/helper-validator-identifier@7.12.11
├─ @babel/helper-validator-option@7.12.17
├─ @babel/helper-wrap-function@7.13.0
│  ├─ @babel/helper-function-name@^7.12.13
│  ├─ @babel/template@^7.12.13
│  ├─ @babel/traverse@^7.13.0
│  └─ @babel/types@^7.13.0
├─ @babel/helpers@7.13.10
│  ├─ @babel/template@^7.12.13
│  ├─ @babel/traverse@^7.13.0
│  └─ @babel/types@^7.13.0
├─ @babel/highlight@7.13.10
│  ├─ @babel/helper-validator-identifier@^7.12.11
│  ├─ chalk@^2.0.0
│  └─ js-tokens@^4.0.0
├─ @babel/parser@7.13.10
├─ @babel/plugin-proposal-async-generator-functions@7.13.8
│  ├─ @babel/helper-plugin-utils@^7.13.0
│  ├─ @babel/helper-remap-async-to-generator@^7.13.0
│  └─ @babel/plugin-syntax-async-generators@^7.8.4
├─ @babel/plugin-proposal-class-properties@7.13.0
│  ├─ @babel/helper-create-class-features-plugin@^7.13.0
│  └─ @babel/helper-plugin-utils@^7.13.0
├─ @babel/plugin-proposal-dynamic-import@7.13.8
│  ├─ @babel/helper-plugin-utils@^7.13.0
│  └─ @babel/plugin-syntax-dynamic-import@^7.8.3
├─ @babel/plugin-proposal-export-namespace-from@7.12.13
│  ├─ @babel/helper-plugin-utils@^7.12.13
│  └─ @babel/plugin-syntax-export-namespace-from@^7.8.3
├─ @babel/plugin-proposal-json-strings@7.13.8
│  ├─ @babel/helper-plugin-utils@^7.13.0
│  └─ @babel/plugin-syntax-json-strings@^7.8.3
├─ @babel/plugin-proposal-logical-assignment-operators@7.13.8
│  ├─ @babel/helper-plugin-utils@^7.13.0
│  └─ @babel/plugin-syntax-logical-assignment-operators@^7.10.4
├─ @babel/plugin-proposal-nullish-coalescing-operator@7.13.8
│  ├─ @babel/helper-plugin-utils@^7.13.0
│  └─ @babel/plugin-syntax-nullish-coalescing-operator@^7.8.3
├─ @babel/plugin-proposal-numeric-separator@7.12.13
│  ├─ @babel/helper-plugin-utils@^7.12.13
│  └─ @babel/plugin-syntax-numeric-separator@^7.10.4
├─ @babel/plugin-proposal-object-rest-spread@7.13.8
│  ├─ @babel/compat-data@^7.13.8
│  ├─ @babel/helper-compilation-targets@^7.13.8
│  ├─ @babel/helper-plugin-utils@^7.13.0
│  ├─ @babel/plugin-syntax-object-rest-spread@^7.8.3
│  └─ @babel/plugin-transform-parameters@^7.13.0
├─ @babel/plugin-proposal-optional-catch-binding@7.13.8
│  ├─ @babel/helper-plugin-utils@^7.13.0
│  └─ @babel/plugin-syntax-optional-catch-binding@^7.8.3
├─ @babel/plugin-proposal-optional-chaining@7.13.8
│  ├─ @babel/helper-plugin-utils@^7.13.0
│  ├─ @babel/helper-skip-transparent-expression-wrappers@^7.12.1
│  └─ @babel/plugin-syntax-optional-chaining@^7.8.3
├─ @babel/plugin-proposal-private-methods@7.13.0
│  ├─ @babel/helper-create-class-features-plugin@^7.13.0
│  └─ @babel/helper-plugin-utils@^7.13.0
├─ @babel/plugin-proposal-unicode-property-regex@7.12.13
│  ├─ @babel/helper-create-regexp-features-plugin@^7.12.13
│  └─ @babel/helper-plugin-utils@^7.12.13
├─ @babel/plugin-syntax-async-generators@7.8.4
│  └─ @babel/helper-plugin-utils@^7.8.0
├─ @babel/plugin-syntax-class-properties@7.12.13
│  └─ @babel/helper-plugin-utils@^7.12.13
├─ @babel/plugin-syntax-dynamic-import@7.8.3
│  └─ @babel/helper-plugin-utils@^7.8.0
├─ @babel/plugin-syntax-export-namespace-from@7.8.3
│  └─ @babel/helper-plugin-utils@^7.8.3
├─ @babel/plugin-syntax-json-strings@7.8.3
│  └─ @babel/helper-plugin-utils@^7.8.0
├─ @babel/plugin-syntax-logical-assignment-operators@7.10.4
│  └─ @babel/helper-plugin-utils@^7.10.4
├─ @babel/plugin-syntax-nullish-coalescing-operator@7.8.3
│  └─ @babel/helper-plugin-utils@^7.8.0
├─ @babel/plugin-syntax-numeric-separator@7.10.4
│  └─ @babel/helper-plugin-utils@^7.10.4
├─ @babel/plugin-syntax-object-rest-spread@7.8.3
│  └─ @babel/helper-plugin-utils@^7.8.0
├─ @babel/plugin-syntax-optional-catch-binding@7.8.3
│  └─ @babel/helper-plugin-utils@^7.8.0
├─ @babel/plugin-syntax-optional-chaining@7.8.3
│  └─ @babel/helper-plugin-utils@^7.8.0
├─ @babel/plugin-syntax-top-level-await@7.12.13
│  └─ @babel/helper-plugin-utils@^7.12.13
├─ @babel/plugin-transform-arrow-functions@7.13.0
│  └─ @babel/helper-plugin-utils@^7.13.0
├─ @babel/plugin-transform-async-to-generator@7.13.0
│  ├─ @babel/helper-module-imports@^7.12.13
│  ├─ @babel/helper-plugin-utils@^7.13.0
│  └─ @babel/helper-remap-async-to-generator@^7.13.0
├─ @babel/plugin-transform-block-scoped-functions@7.12.13
│  └─ @babel/helper-plugin-utils@^7.12.13
├─ @babel/plugin-transform-block-scoping@7.12.13
│  └─ @babel/helper-plugin-utils@^7.12.13
├─ @babel/plugin-transform-classes@7.13.0
│  ├─ @babel/helper-annotate-as-pure@^7.12.13
│  ├─ @babel/helper-function-name@^7.12.13
│  ├─ @babel/helper-optimise-call-expression@^7.12.13
│  ├─ @babel/helper-plugin-utils@^7.13.0
│  ├─ @babel/helper-replace-supers@^7.13.0
│  ├─ @babel/helper-split-export-declaration@^7.12.13
│  └─ globals@^11.1.0
├─ @babel/plugin-transform-computed-properties@7.13.0
│  └─ @babel/helper-plugin-utils@^7.13.0
├─ @babel/plugin-transform-destructuring@7.13.0
│  └─ @babel/helper-plugin-utils@^7.13.0
├─ @babel/plugin-transform-dotall-regex@7.12.13
│  ├─ @babel/helper-create-regexp-features-plugin@^7.12.13
│  └─ @babel/helper-plugin-utils@^7.12.13
├─ @babel/plugin-transform-duplicate-keys@7.12.13
│  └─ @babel/helper-plugin-utils@^7.12.13
├─ @babel/plugin-transform-exponentiation-operator@7.12.13
│  ├─ @babel/helper-builder-binary-assignment-operator-visitor@^7.12.13
│  └─ @babel/helper-plugin-utils@^7.12.13
├─ @babel/plugin-transform-for-of@7.13.0
│  └─ @babel/helper-plugin-utils@^7.13.0
├─ @babel/plugin-transform-function-name@7.12.13
│  ├─ @babel/helper-function-name@^7.12.13
│  └─ @babel/helper-plugin-utils@^7.12.13
├─ @babel/plugin-transform-literals@7.12.13
│  └─ @babel/helper-plugin-utils@^7.12.13
├─ @babel/plugin-transform-member-expression-literals@7.12.13
│  └─ @babel/helper-plugin-utils@^7.12.13
├─ @babel/plugin-transform-modules-amd@7.13.0
│  ├─ @babel/helper-module-transforms@^7.13.0
│  ├─ @babel/helper-plugin-utils@^7.13.0
│  └─ babel-plugin-dynamic-import-node@^2.3.3
├─ @babel/plugin-transform-modules-commonjs@7.13.8
│  ├─ @babel/helper-module-transforms@^7.13.0
│  ├─ @babel/helper-plugin-utils@^7.13.0
│  ├─ @babel/helper-simple-access@^7.12.13
│  └─ babel-plugin-dynamic-import-node@^2.3.3
├─ @babel/plugin-transform-modules-systemjs@7.13.8
│  ├─ @babel/helper-hoist-variables@^7.13.0
│  ├─ @babel/helper-module-transforms@^7.13.0
│  ├─ @babel/helper-plugin-utils@^7.13.0
│  ├─ @babel/helper-validator-identifier@^7.12.11
│  └─ babel-plugin-dynamic-import-node@^2.3.3
├─ @babel/plugin-transform-modules-umd@7.13.0
│  ├─ @babel/helper-module-transforms@^7.13.0
│  └─ @babel/helper-plugin-utils@^7.13.0
├─ @babel/plugin-transform-named-capturing-groups-regex@7.12.13
│  └─ @babel/helper-create-regexp-features-plugin@^7.12.13
├─ @babel/plugin-transform-new-target@7.12.13
│  └─ @babel/helper-plugin-utils@^7.12.13
├─ @babel/plugin-transform-object-super@7.12.13
│  ├─ @babel/helper-plugin-utils@^7.12.13
│  └─ @babel/helper-replace-supers@^7.12.13
├─ @babel/plugin-transform-parameters@7.13.0
│  └─ @babel/helper-plugin-utils@^7.13.0
├─ @babel/plugin-transform-property-literals@7.12.13
│  └─ @babel/helper-plugin-utils@^7.12.13
├─ @babel/plugin-transform-regenerator@7.12.13
│  └─ regenerator-transform@^0.14.2
├─ @babel/plugin-transform-reserved-words@7.12.13
│  └─ @babel/helper-plugin-utils@^7.12.13
├─ @babel/plugin-transform-runtime@7.13.10
│  ├─ @babel/helper-module-imports@^7.12.13
│  ├─ @babel/helper-plugin-utils@^7.13.0
│  ├─ babel-plugin-polyfill-corejs2@^0.1.4
│  ├─ babel-plugin-polyfill-corejs3@^0.1.3
│  ├─ babel-plugin-polyfill-regenerator@^0.1.2
│  └─ semver@^6.3.0
├─ @babel/plugin-transform-shorthand-properties@7.12.13
│  └─ @babel/helper-plugin-utils@^7.12.13
├─ @babel/plugin-transform-spread@7.13.0
│  ├─ @babel/helper-plugin-utils@^7.13.0
│  └─ @babel/helper-skip-transparent-expression-wrappers@^7.12.1
├─ @babel/plugin-transform-sticky-regex@7.12.13
│  └─ @babel/helper-plugin-utils@^7.12.13
├─ @babel/plugin-transform-template-literals@7.13.0
│  └─ @babel/helper-plugin-utils@^7.13.0
├─ @babel/plugin-transform-typeof-symbol@7.12.13
│  └─ @babel/helper-plugin-utils@^7.12.13
├─ @babel/plugin-transform-unicode-escapes@7.12.13
│  └─ @babel/helper-plugin-utils@^7.12.13
├─ @babel/plugin-transform-unicode-regex@7.12.13
│  ├─ @babel/helper-create-regexp-features-plugin@^7.12.13
│  └─ @babel/helper-plugin-utils@^7.12.13
├─ @babel/preset-env@7.13.10
│  ├─ @babel/compat-data@^7.13.8
│  ├─ @babel/helper-compilation-targets@^7.13.10
│  ├─ @babel/helper-plugin-utils@^7.13.0
│  ├─ @babel/helper-validator-option@^7.12.17
│  ├─ @babel/plugin-proposal-async-generator-functions@^7.13.8
│  ├─ @babel/plugin-proposal-class-properties@^7.13.0
│  ├─ @babel/plugin-proposal-dynamic-import@^7.13.8
│  ├─ @babel/plugin-proposal-export-namespace-from@^7.12.13
│  ├─ @babel/plugin-proposal-json-strings@^7.13.8
│  ├─ @babel/plugin-proposal-logical-assignment-operators@^7.13.8
│  ├─ @babel/plugin-proposal-nullish-coalescing-operator@^7.13.8
│  ├─ @babel/plugin-proposal-numeric-separator@^7.12.13
│  ├─ @babel/plugin-proposal-object-rest-spread@^7.13.8
│  ├─ @babel/plugin-proposal-optional-catch-binding@^7.13.8
│  ├─ @babel/plugin-proposal-optional-chaining@^7.13.8
│  ├─ @babel/plugin-proposal-private-methods@^7.13.0
│  ├─ @babel/plugin-proposal-unicode-property-regex@^7.12.13
│  ├─ @babel/plugin-syntax-async-generators@^7.8.4
│  ├─ @babel/plugin-syntax-class-properties@^7.12.13
│  ├─ @babel/plugin-syntax-dynamic-import@^7.8.3
│  ├─ @babel/plugin-syntax-export-namespace-from@^7.8.3
│  ├─ @babel/plugin-syntax-json-strings@^7.8.3
│  ├─ @babel/plugin-syntax-logical-assignment-operators@^7.10.4
│  ├─ @babel/plugin-syntax-nullish-coalescing-operator@^7.8.3
│  ├─ @babel/plugin-syntax-numeric-separator@^7.10.4
│  ├─ @babel/plugin-syntax-object-rest-spread@^7.8.3
│  ├─ @babel/plugin-syntax-optional-catch-binding@^7.8.3
│  ├─ @babel/plugin-syntax-optional-chaining@^7.8.3
│  ├─ @babel/plugin-syntax-top-level-await@^7.12.13
│  ├─ @babel/plugin-transform-arrow-functions@^7.13.0
│  ├─ @babel/plugin-transform-async-to-generator@^7.13.0
│  ├─ @babel/plugin-transform-block-scoped-functions@^7.12.13
│  ├─ @babel/plugin-transform-block-scoping@^7.12.13
│  ├─ @babel/plugin-transform-classes@^7.13.0
│  ├─ @babel/plugin-transform-computed-properties@^7.13.0
│  ├─ @babel/plugin-transform-destructuring@^7.13.0
│  ├─ @babel/plugin-transform-dotall-regex@^7.12.13
│  ├─ @babel/plugin-transform-duplicate-keys@^7.12.13
│  ├─ @babel/plugin-transform-exponentiation-operator@^7.12.13
│  ├─ @babel/plugin-transform-for-of@^7.13.0
│  ├─ @babel/plugin-transform-function-name@^7.12.13
│  ├─ @babel/plugin-transform-literals@^7.12.13
│  ├─ @babel/plugin-transform-member-expression-literals@^7.12.13
│  ├─ @babel/plugin-transform-modules-amd@^7.13.0
│  ├─ @babel/plugin-transform-modules-commonjs@^7.13.8
│  ├─ @babel/plugin-transform-modules-systemjs@^7.13.8
│  ├─ @babel/plugin-transform-modules-umd@^7.13.0
│  ├─ @babel/plugin-transform-named-capturing-groups-regex@^7.12.13
│  ├─ @babel/plugin-transform-new-target@^7.12.13
│  ├─ @babel/plugin-transform-object-super@^7.12.13
│  ├─ @babel/plugin-transform-parameters@^7.13.0
│  ├─ @babel/plugin-transform-property-literals@^7.12.13
│  ├─ @babel/plugin-transform-regenerator@^7.12.13
│  ├─ @babel/plugin-transform-reserved-words@^7.12.13
│  ├─ @babel/plugin-transform-shorthand-properties@^7.12.13
│  ├─ @babel/plugin-transform-spread@^7.13.0
│  ├─ @babel/plugin-transform-sticky-regex@^7.12.13
│  ├─ @babel/plugin-transform-template-literals@^7.13.0
│  ├─ @babel/plugin-transform-typeof-symbol@^7.12.13
│  ├─ @babel/plugin-transform-unicode-escapes@^7.12.13
│  ├─ @babel/plugin-transform-unicode-regex@^7.12.13
│  ├─ @babel/preset-modules@^0.1.4
│  ├─ @babel/types@^7.13.0
│  ├─ babel-plugin-polyfill-corejs2@^0.1.4
│  ├─ babel-plugin-polyfill-corejs3@^0.1.3
│  ├─ babel-plugin-polyfill-regenerator@^0.1.2
│  ├─ core-js-compat@^3.9.0
│  └─ semver@^6.3.0
├─ @babel/preset-modules@0.1.4
│  ├─ @babel/helper-plugin-utils@^7.0.0
│  ├─ @babel/plugin-proposal-unicode-property-regex@^7.4.4
│  ├─ @babel/plugin-transform-dotall-regex@^7.4.4
│  ├─ @babel/types@^7.4.4
│  └─ esutils@^2.0.2
├─ @babel/runtime@7.13.10
│  └─ regenerator-runtime@^0.13.4
├─ @babel/template@7.12.13
│  ├─ @babel/code-frame@^7.12.13
│  ├─ @babel/parser@^7.12.13
│  └─ @babel/types@^7.12.13
├─ @babel/traverse@7.13.0
│  ├─ @babel/code-frame@^7.12.13
│  ├─ @babel/generator@^7.13.0
│  ├─ @babel/helper-function-name@^7.12.13
│  ├─ @babel/helper-split-export-declaration@^7.12.13
│  ├─ @babel/parser@^7.13.0
│  ├─ @babel/types@^7.13.0
│  ├─ debug@^4.1.0
│  ├─ debug@4.3.1
│  │  └─ ms@2.1.2
│  ├─ globals@^11.1.0
│  ├─ lodash@^4.17.19
│  └─ ms@2.1.2
├─ @babel/types@7.13.0
│  ├─ @babel/helper-validator-identifier@^7.12.11
│  ├─ lodash@^4.17.19
│  └─ to-fast-properties@^2.0.0
├─ @csstools/convert-colors@1.4.0
├─ @fullhuman/postcss-purgecss@3.1.3
│  └─ purgecss@^3.1.3
├─ @npmcli/move-file@1.1.2
│  ├─ mkdirp@^1.0.4
│  ├─ mkdirp@1.0.4
│  ├─ rimraf@^3.0.2
│  └─ rimraf@3.0.2
│     └─ glob@^7.1.3
├─ @rails/actioncable@6.1.3
├─ @rails/activestorage@6.1.3
│  └─ spark-md5@^3.0.0
├─ @rails/ujs@6.1.3
├─ @rails/webpacker@5.2.1
│  ├─ @babel/core@^7.11.1
│  ├─ @babel/plugin-proposal-class-properties@^7.10.4
│  ├─ @babel/plugin-proposal-object-rest-spread@^7.10.1
│  ├─ @babel/plugin-syntax-dynamic-import@^7.8.3
│  ├─ @babel/plugin-transform-destructuring@^7.10.1
│  ├─ @babel/plugin-transform-regenerator@^7.10.1
│  ├─ @babel/plugin-transform-runtime@^7.11.0
│  ├─ @babel/preset-env@^7.11.0
│  ├─ @babel/runtime@^7.11.2
│  ├─ babel-loader@^8.1.0
│  ├─ babel-plugin-dynamic-import-node@^2.3.3
│  ├─ babel-plugin-macros@^2.8.0
│  ├─ case-sensitive-paths-webpack-plugin@^2.3.0
│  ├─ compression-webpack-plugin@^4.0.0
│  ├─ core-js@^3.6.5
│  ├─ css-loader@^3.5.3
│  ├─ file-loader@^6.0.0
│  ├─ flatted@^3.0.4
│  ├─ glob@^7.1.6
│  ├─ js-yaml@^3.14.0
│  ├─ mini-css-extract-plugin@^0.9.0
│  ├─ node-sass@^4.14.1
│  ├─ optimize-css-assets-webpack-plugin@^5.0.3
│  ├─ path-complete-extname@^1.0.0
│  ├─ pnp-webpack-plugin@^1.6.4
│  ├─ postcss-flexbugs-fixes@^4.2.1
│  ├─ postcss-import@^12.0.1
│  ├─ postcss-loader@^3.0.0
│  ├─ postcss-preset-env@^6.7.0
│  ├─ postcss-safe-parser@^4.0.2
│  ├─ regenerator-runtime@^0.13.7
│  ├─ sass-loader@^8.0.2
│  ├─ style-loader@^1.2.1
│  ├─ terser-webpack-plugin@^4.0.0
│  ├─ webpack-assets-manifest@^3.1.1
│  ├─ webpack-cli@^3.3.12
│  ├─ webpack-sources@^1.4.3
│  └─ webpack@^4.44.1
├─ @tailwindcss/aspect-ratio@0.2.0
├─ @tailwindcss/forms@0.2.1
│  └─ mini-svg-data-uri@^1.2.3
├─ @tailwindcss/typography@0.4.0
│  ├─ lodash.castarray@^4.4.0
│  ├─ lodash.isplainobject@^4.0.6
│  ├─ lodash.merge@^4.6.2
│  └─ lodash.uniq@^4.5.0
├─ @types/glob@7.1.3
│  ├─ @types/minimatch@*
│  └─ @types/node@*
├─ @types/json-schema@7.0.7
├─ @types/minimatch@3.0.3
├─ @types/node@14.14.33
├─ @types/parse-json@4.0.0
├─ @types/q@1.5.4
├─ @vue/component-compiler-utils@3.2.0
│  ├─ consolidate@^0.15.1
│  ├─ hash-sum@^1.0.2
│  ├─ lru-cache@^4.1.2
│  ├─ merge-source-map@^1.1.0
│  ├─ postcss-selector-parser@^6.0.2
│  ├─ postcss@^7.0.14
│  ├─ prettier@^1.18.2
│  ├─ source-map@~0.6.1
│  └─ vue-template-es2015-compiler@^1.9.0
├─ @webassemblyjs/ast@1.9.0
│  ├─ @webassemblyjs/helper-module-context@1.9.0
│  ├─ @webassemblyjs/helper-wasm-bytecode@1.9.0
│  └─ @webassemblyjs/wast-parser@1.9.0
├─ @webassemblyjs/floating-point-hex-parser@1.9.0
├─ @webassemblyjs/helper-api-error@1.9.0
├─ @webassemblyjs/helper-buffer@1.9.0
├─ @webassemblyjs/helper-code-frame@1.9.0
│  └─ @webassemblyjs/wast-printer@1.9.0
├─ @webassemblyjs/helper-fsm@1.9.0
├─ @webassemblyjs/helper-module-context@1.9.0
│  └─ @webassemblyjs/ast@1.9.0
├─ @webassemblyjs/helper-wasm-bytecode@1.9.0
├─ @webassemblyjs/helper-wasm-section@1.9.0
│  ├─ @webassemblyjs/ast@1.9.0
│  ├─ @webassemblyjs/helper-buffer@1.9.0
│  ├─ @webassemblyjs/helper-wasm-bytecode@1.9.0
│  └─ @webassemblyjs/wasm-gen@1.9.0
├─ @webassemblyjs/ieee754@1.9.0
│  └─ @xtuc/ieee754@^1.2.0
├─ @webassemblyjs/leb128@1.9.0
│  └─ @xtuc/long@4.2.2
├─ @webassemblyjs/utf8@1.9.0
├─ @webassemblyjs/wasm-edit@1.9.0
│  ├─ @webassemblyjs/ast@1.9.0
│  ├─ @webassemblyjs/helper-buffer@1.9.0
│  ├─ @webassemblyjs/helper-wasm-bytecode@1.9.0
│  ├─ @webassemblyjs/helper-wasm-section@1.9.0
│  ├─ @webassemblyjs/wasm-gen@1.9.0
│  ├─ @webassemblyjs/wasm-opt@1.9.0
│  ├─ @webassemblyjs/wasm-parser@1.9.0
│  └─ @webassemblyjs/wast-printer@1.9.0
├─ @webassemblyjs/wasm-gen@1.9.0
│  ├─ @webassemblyjs/ast@1.9.0
│  ├─ @webassemblyjs/helper-wasm-bytecode@1.9.0
│  ├─ @webassemblyjs/ieee754@1.9.0
│  ├─ @webassemblyjs/leb128@1.9.0
│  └─ @webassemblyjs/utf8@1.9.0
├─ @webassemblyjs/wasm-opt@1.9.0
│  ├─ @webassemblyjs/ast@1.9.0
│  ├─ @webassemblyjs/helper-buffer@1.9.0
│  ├─ @webassemblyjs/wasm-gen@1.9.0
│  └─ @webassemblyjs/wasm-parser@1.9.0
├─ @webassemblyjs/wasm-parser@1.9.0
│  ├─ @webassemblyjs/ast@1.9.0
│  ├─ @webassemblyjs/helper-api-error@1.9.0
│  ├─ @webassemblyjs/helper-wasm-bytecode@1.9.0
│  ├─ @webassemblyjs/ieee754@1.9.0
│  ├─ @webassemblyjs/leb128@1.9.0
│  └─ @webassemblyjs/utf8@1.9.0
├─ @webassemblyjs/wast-parser@1.9.0
│  ├─ @webassemblyjs/ast@1.9.0
│  ├─ @webassemblyjs/floating-point-hex-parser@1.9.0
│  ├─ @webassemblyjs/helper-api-error@1.9.0
│  ├─ @webassemblyjs/helper-code-frame@1.9.0
│  ├─ @webassemblyjs/helper-fsm@1.9.0
│  └─ @xtuc/long@4.2.2
├─ @webassemblyjs/wast-printer@1.9.0
│  ├─ @webassemblyjs/ast@1.9.0
│  ├─ @webassemblyjs/wast-parser@1.9.0
│  └─ @xtuc/long@4.2.2
├─ @xtuc/ieee754@1.2.0
├─ @xtuc/long@4.2.2
├─ abbrev@1.1.1
├─ accepts@1.3.7
│  ├─ mime-types@~2.1.24
│  └─ negotiator@0.6.2
├─ acorn-node@1.8.2
│  ├─ acorn-walk@^7.0.0
│  ├─ acorn@^7.0.0
│  ├─ acorn@7.4.1
│  └─ xtend@^4.0.2
├─ acorn-walk@7.2.0
├─ acorn@6.4.2
├─ aggregate-error@3.1.0
│  ├─ clean-stack@^2.0.0
│  └─ indent-string@^4.0.0
├─ ajv-errors@1.0.1
├─ ajv-keywords@3.5.2
├─ ajv@6.12.6
│  ├─ fast-deep-equal@^3.1.1
│  ├─ fast-json-stable-stringify@^2.0.0
│  ├─ json-schema-traverse@^0.4.1
│  └─ uri-js@^4.2.2
├─ alphanum-sort@1.0.2
├─ amdefine@1.0.1
├─ ansi-colors@3.2.4
├─ ansi-html@0.0.7
├─ ansi-regex@2.1.1
├─ ansi-styles@3.2.1
│  └─ color-convert@^1.9.0
├─ anymatch@2.0.0
│  ├─ micromatch@^3.1.4
│  ├─ normalize-path@^2.1.1
│  └─ normalize-path@2.1.1
│     └─ remove-trailing-separator@^1.0.1
├─ aproba@1.2.0
├─ are-we-there-yet@1.1.5
│  ├─ delegates@^1.0.0
│  └─ readable-stream@^2.0.6
├─ argparse@1.0.10
│  └─ sprintf-js@~1.0.2
├─ arr-diff@4.0.0
├─ arr-flatten@1.1.0
├─ arr-union@3.1.0
├─ array-find-index@1.0.2
├─ array-flatten@1.1.1
├─ array-union@1.0.2
│  └─ array-uniq@^1.0.1
├─ array-uniq@1.0.3
├─ array-unique@0.3.2
├─ asn1.js@5.4.1
│  ├─ bn.js@^4.0.0
│  ├─ inherits@^2.0.1
│  ├─ minimalistic-assert@^1.0.0
│  └─ safer-buffer@^2.1.0
├─ asn1@0.2.4
│  └─ safer-buffer@~2.1.0
├─ assert-plus@1.0.0
├─ assert@1.5.0
│  ├─ inherits@2.0.1
│  ├─ object-assign@^4.1.1
│  ├─ util@0.10.3
│  └─ util@0.10.3
│     └─ inherits@2.0.1
├─ assign-symbols@1.0.0
├─ async-each@1.0.3
├─ async-foreach@0.1.3
├─ async-limiter@1.0.1
├─ async@2.6.3
│  └─ lodash@^4.17.14
├─ asynckit@0.4.0
├─ at-least-node@1.0.0
├─ atob@2.1.2
├─ autoprefixer@9.8.6
│  ├─ browserslist@^4.12.0
│  ├─ caniuse-lite@^1.0.30001109
│  ├─ colorette@^1.2.1
│  ├─ normalize-range@^0.1.2
│  ├─ num2fraction@^1.2.2
│  ├─ postcss-value-parser@^4.1.0
│  ├─ postcss-value-parser@4.1.0
│  └─ postcss@^7.0.32
├─ aws-sign2@0.7.0
├─ aws4@1.11.0
├─ babel-loader@8.2.2
│  ├─ find-cache-dir@^3.3.1
│  ├─ loader-utils@^1.4.0
│  ├─ make-dir@^3.1.0
│  ├─ schema-utils@^2.6.5
│  └─ schema-utils@2.7.1
│     ├─ @types/json-schema@^7.0.5
│     ├─ ajv-keywords@^3.5.2
│     └─ ajv@^6.12.4
├─ babel-plugin-dynamic-import-node@2.3.3
│  └─ object.assign@^4.1.0
├─ babel-plugin-macros@2.8.0
│  ├─ @babel/runtime@^7.7.2
│  ├─ cosmiconfig@^6.0.0
│  ├─ cosmiconfig@6.0.0
│  │  ├─ @types/parse-json@^4.0.0
│  │  ├─ import-fresh@^3.1.0
│  │  ├─ parse-json@^5.0.0
│  │  ├─ path-type@^4.0.0
│  │  └─ yaml@^1.7.2
│  ├─ import-fresh@3.3.0
│  │  ├─ parent-module@^1.0.0
│  │  └─ resolve-from@^4.0.0
│  ├─ parse-json@5.2.0
│  │  ├─ @babel/code-frame@^7.0.0
│  │  ├─ error-ex@^1.3.1
│  │  ├─ json-parse-even-better-errors@^2.3.0
│  │  └─ lines-and-columns@^1.1.6
│  ├─ resolve-from@4.0.0
│  └─ resolve@^1.12.0
├─ babel-plugin-polyfill-corejs2@0.1.10
│  ├─ @babel/compat-data@^7.13.0
│  ├─ @babel/helper-define-polyfill-provider@^0.1.5
│  └─ semver@^6.1.1
├─ babel-plugin-polyfill-corejs3@0.1.7
│  ├─ @babel/helper-define-polyfill-provider@^0.1.5
│  └─ core-js-compat@^3.8.1
├─ babel-plugin-polyfill-regenerator@0.1.6
│  └─ @babel/helper-define-polyfill-provider@^0.1.5
├─ balanced-match@1.0.0
├─ base@0.11.2
│  ├─ cache-base@^1.0.1
│  ├─ class-utils@^0.3.5
│  ├─ component-emitter@^1.2.1
│  ├─ define-property@^1.0.0
│  ├─ define-property@1.0.0
│  │  └─ is-descriptor@^1.0.0
│  ├─ isobject@^3.0.1
│  ├─ mixin-deep@^1.2.0
│  └─ pascalcase@^0.1.1
├─ base64-js@1.5.1
├─ batch@0.6.1
├─ bcrypt-pbkdf@1.0.2
│  └─ tweetnacl@^0.14.3
├─ big.js@5.2.2
├─ binary-extensions@1.13.1
├─ bindings@1.5.0
│  └─ file-uri-to-path@1.0.0
├─ block-stream@0.0.9
│  └─ inherits@~2.0.0
├─ bluebird@3.7.2
├─ bn.js@4.12.0
├─ body-parser@1.19.0
│  ├─ bytes@3.1.0
│  ├─ content-type@~1.0.4
│  ├─ debug@2.6.9
│  ├─ depd@~1.1.2
│  ├─ http-errors@1.7.2
│  ├─ iconv-lite@0.4.24
│  ├─ on-finished@~2.3.0
│  ├─ qs@6.7.0
│  ├─ raw-body@2.4.0
│  └─ type-is@~1.6.17
├─ body-scroll-lock@3.1.5
├─ bonjour@3.5.0
│  ├─ array-flatten@^2.1.0
│  ├─ array-flatten@2.1.2
│  ├─ deep-equal@^1.0.1
│  ├─ dns-equal@^1.0.0
│  ├─ dns-txt@^2.0.2
│  ├─ multicast-dns-service-types@^1.1.0
│  └─ multicast-dns@^6.0.1
├─ boolbase@1.0.0
├─ brace-expansion@1.1.11
│  ├─ balanced-match@^1.0.0
│  └─ concat-map@0.0.1
├─ braces@2.3.2
│  ├─ arr-flatten@^1.1.0
│  ├─ array-unique@^0.3.2
│  ├─ extend-shallow@^2.0.1
│  ├─ fill-range@^4.0.0
│  ├─ isobject@^3.0.1
│  ├─ repeat-element@^1.1.2
│  ├─ snapdragon-node@^2.0.1
│  ├─ snapdragon@^0.8.1
│  ├─ split-string@^3.0.2
│  └─ to-regex@^3.0.1
├─ brorand@1.1.0
├─ browserify-aes@1.2.0
│  ├─ buffer-xor@^1.0.3
│  ├─ cipher-base@^1.0.0
│  ├─ create-hash@^1.1.0
│  ├─ evp_bytestokey@^1.0.3
│  ├─ inherits@^2.0.1
│  └─ safe-buffer@^5.0.1
├─ browserify-cipher@1.0.1
│  ├─ browserify-aes@^1.0.4
│  ├─ browserify-des@^1.0.0
│  └─ evp_bytestokey@^1.0.0
├─ browserify-des@1.0.2
│  ├─ cipher-base@^1.0.1
│  ├─ des.js@^1.0.0
│  ├─ inherits@^2.0.1
│  └─ safe-buffer@^5.1.2
├─ browserify-rsa@4.1.0
│  ├─ bn.js@^5.0.0
│  ├─ bn.js@5.2.0
│  └─ randombytes@^2.0.1
├─ browserify-sign@4.2.1
│  ├─ bn.js@^5.1.1
│  ├─ bn.js@5.2.0
│  ├─ browserify-rsa@^4.0.1
│  ├─ create-hash@^1.2.0
│  ├─ create-hmac@^1.1.7
│  ├─ elliptic@^6.5.3
│  ├─ inherits@^2.0.4
│  ├─ parse-asn1@^5.1.5
│  ├─ readable-stream@^3.6.0
│  ├─ readable-stream@3.6.0
│  │  ├─ inherits@^2.0.3
│  │  ├─ string_decoder@^1.1.1
│  │  └─ util-deprecate@^1.0.1
│  └─ safe-buffer@^5.2.0
├─ browserify-zlib@0.2.0
│  └─ pako@~1.0.5
├─ browserslist@4.16.3
│  ├─ caniuse-lite@^1.0.30001181
│  ├─ colorette@^1.2.1
│  ├─ electron-to-chromium@^1.3.649
│  ├─ escalade@^3.1.1
│  └─ node-releases@^1.1.70
├─ buffer-from@1.1.1
├─ buffer-indexof@1.1.1
├─ buffer-xor@1.0.3
├─ buffer@4.9.2
│  ├─ base64-js@^1.0.2
│  ├─ ieee754@^1.1.4
│  └─ isarray@^1.0.0
├─ builtin-status-codes@3.0.0
├─ bytes@3.1.0
├─ cacache@15.0.5
│  ├─ @npmcli/move-file@^1.0.1
│  ├─ chownr@^2.0.0
│  ├─ fs-minipass@^2.0.0
│  ├─ glob@^7.1.4
│  ├─ infer-owner@^1.0.4
│  ├─ lru-cache@^6.0.0
│  ├─ lru-cache@6.0.0
│  │  └─ yallist@^4.0.0
│  ├─ minipass-collect@^1.0.2
│  ├─ minipass-flush@^1.0.5
│  ├─ minipass-pipeline@^1.2.2
│  ├─ minipass@^3.1.1
│  ├─ mkdirp@^1.0.3
│  ├─ mkdirp@1.0.4
│  ├─ p-map@^4.0.0
│  ├─ promise-inflight@^1.0.1
│  ├─ rimraf@^3.0.2
│  ├─ rimraf@3.0.2
│  │  └─ glob@^7.1.3
│  ├─ ssri@^8.0.0
│  ├─ tar@^6.0.2
│  └─ unique-filename@^1.1.1
├─ cache-base@1.0.1
│  ├─ collection-visit@^1.0.0
│  ├─ component-emitter@^1.2.1
│  ├─ get-value@^2.0.6
│  ├─ has-value@^1.0.0
│  ├─ isobject@^3.0.1
│  ├─ set-value@^2.0.0
│  ├─ to-object-path@^0.3.0
│  ├─ union-value@^1.0.0
│  └─ unset-value@^1.0.0
├─ call-bind@1.0.2
│  ├─ function-bind@^1.1.1
│  └─ get-intrinsic@^1.0.2
├─ caller-callsite@2.0.0
│  └─ callsites@^2.0.0
├─ caller-path@2.0.0
│  └─ caller-callsite@^2.0.0
├─ callsites@2.0.0
├─ camelcase-css@2.0.1
├─ camelcase-keys@2.1.0
│  ├─ camelcase@^2.0.0
│  ├─ camelcase@2.1.1
│  └─ map-obj@^1.0.0
├─ camelcase@5.3.1
├─ caniuse-api@3.0.0
│  ├─ browserslist@^4.0.0
│  ├─ caniuse-lite@^1.0.0
│  ├─ lodash.memoize@^4.1.2
│  └─ lodash.uniq@^4.5.0
├─ caniuse-lite@1.0.30001198
├─ case-sensitive-paths-webpack-plugin@2.4.0
├─ caseless@0.12.0
├─ chalk@2.4.2
│  ├─ ansi-styles@^3.2.1
│  ├─ escape-string-regexp@^1.0.5
│  ├─ supports-color@^5.3.0
│  └─ supports-color@5.5.0
│     └─ has-flag@^3.0.0
├─ chokidar@2.1.8
│  ├─ anymatch@^2.0.0
│  ├─ async-each@^1.0.1
│  ├─ braces@^2.3.2
│  ├─ fsevents@^1.2.7
│  ├─ glob-parent@^3.1.0
│  ├─ inherits@^2.0.3
│  ├─ is-binary-path@^1.0.0
│  ├─ is-glob@^4.0.0
│  ├─ normalize-path@^3.0.0
│  ├─ path-is-absolute@^1.0.0
│  ├─ readdirp@^2.2.1
│  └─ upath@^1.1.1
├─ chownr@2.0.0
├─ chrome-trace-event@1.0.2
│  └─ tslib@^1.9.0
├─ cipher-base@1.0.4
│  ├─ inherits@^2.0.1
│  └─ safe-buffer@^5.0.1
├─ class-utils@0.3.6
│  ├─ arr-union@^3.1.0
│  ├─ define-property@^0.2.5
│  ├─ isobject@^3.0.0
│  └─ static-extend@^0.1.1
├─ clean-stack@2.2.0
├─ cliui@5.0.0
│  ├─ ansi-regex@4.1.0
│  ├─ string-width@^3.1.0
│  ├─ strip-ansi@^5.2.0
│  ├─ strip-ansi@5.2.0
│  │  └─ ansi-regex@^4.1.0
│  └─ wrap-ansi@^5.1.0
├─ clone-deep@4.0.1
│  ├─ is-plain-object@^2.0.4
│  ├─ kind-of@^6.0.2
│  └─ shallow-clone@^3.0.0
├─ coa@2.0.2
│  ├─ @types/q@^1.5.1
│  ├─ chalk@^2.4.1
│  └─ q@^1.1.2
├─ code-point-at@1.1.0
├─ collection-visit@1.0.0
│  ├─ map-visit@^1.0.0
│  └─ object-visit@^1.0.0
├─ color-convert@1.9.3
│  ├─ color-name@1.1.3
│  └─ color-name@1.1.3
├─ color-name@1.1.4
├─ color-string@1.5.5
│  ├─ color-name@^1.0.0
│  └─ simple-swizzle@^0.2.2
├─ color@3.1.3
│  ├─ color-convert@^1.9.1
│  └─ color-string@^1.5.4
├─ colorette@1.2.2
├─ combined-stream@1.0.8
│  └─ delayed-stream@~1.0.0
├─ commander@2.20.3
├─ commondir@1.0.1
├─ component-emitter@1.3.0
├─ compressible@2.0.18
│  └─ mime-db@>= 1.43.0 < 2
├─ compression-webpack-plugin@4.0.1
│  ├─ cacache@^15.0.5
│  ├─ find-cache-dir@^3.3.1
│  ├─ schema-utils@^2.7.0
│  ├─ schema-utils@2.7.1
│  │  ├─ @types/json-schema@^7.0.5
│  │  ├─ ajv-keywords@^3.5.2
│  │  └─ ajv@^6.12.4
│  ├─ serialize-javascript@^4.0.0
│  └─ webpack-sources@^1.4.3
├─ compression@1.7.4
│  ├─ accepts@~1.3.5
│  ├─ bytes@3.0.0
│  ├─ bytes@3.0.0
│  ├─ compressible@~2.0.16
│  ├─ debug@2.6.9
│  ├─ on-headers@~1.0.2
│  ├─ safe-buffer@5.1.2
│  ├─ safe-buffer@5.1.2
│  └─ vary@~1.1.2
├─ concat-map@0.0.1
├─ concat-stream@1.6.2
│  ├─ buffer-from@^1.0.0
│  ├─ inherits@^2.0.3
│  ├─ readable-stream@^2.2.2
│  └─ typedarray@^0.0.6
├─ connect-history-api-fallback@1.6.0
├─ console-browserify@1.2.0
├─ console-control-strings@1.1.0
├─ consolidate@0.15.1
│  └─ bluebird@^3.1.1
├─ constants-browserify@1.0.0
├─ content-disposition@0.5.3
│  ├─ safe-buffer@5.1.2
│  └─ safe-buffer@5.1.2
├─ content-type@1.0.4
├─ convert-source-map@1.7.0
│  ├─ safe-buffer@~5.1.1
│  └─ safe-buffer@5.1.2
├─ cookie-signature@1.0.6
├─ cookie@0.4.0
├─ copy-concurrently@1.0.5
│  ├─ aproba@^1.1.1
│  ├─ fs-write-stream-atomic@^1.0.8
│  ├─ iferr@^0.1.5
│  ├─ mkdirp@^0.5.1
│  ├─ rimraf@^2.5.4
│  └─ run-queue@^1.0.0
├─ copy-descriptor@0.1.1
├─ core-js-compat@3.9.1
│  ├─ browserslist@^4.16.3
│  ├─ semver@7.0.0
│  └─ semver@7.0.0
├─ core-js@3.9.1
├─ core-util-is@1.0.2
├─ cosmiconfig@5.2.1
│  ├─ import-fresh@^2.0.0
│  ├─ is-directory@^0.3.1
│  ├─ js-yaml@^3.13.1
│  └─ parse-json@^4.0.0
├─ create-ecdh@4.0.4
│  ├─ bn.js@^4.1.0
│  └─ elliptic@^6.5.3
├─ create-hash@1.2.0
│  ├─ cipher-base@^1.0.1
│  ├─ inherits@^2.0.1
│  ├─ md5.js@^1.3.4
│  ├─ ripemd160@^2.0.1
│  └─ sha.js@^2.4.0
├─ create-hmac@1.1.7
│  ├─ cipher-base@^1.0.3
│  ├─ create-hash@^1.1.0
│  ├─ inherits@^2.0.1
│  ├─ ripemd160@^2.0.0
│  ├─ safe-buffer@^5.0.1
│  └─ sha.js@^2.4.8
├─ cross-spawn@6.0.5
│  ├─ nice-try@^1.0.4
│  ├─ path-key@^2.0.1
│  ├─ semver@^5.5.0
│  ├─ semver@5.7.1
│  ├─ shebang-command@^1.2.0
│  └─ which@^1.2.9
├─ crypto-browserify@3.12.0
│  ├─ browserify-cipher@^1.0.0
│  ├─ browserify-sign@^4.0.0
│  ├─ create-ecdh@^4.0.0
│  ├─ create-hash@^1.1.0
│  ├─ create-hmac@^1.1.0
│  ├─ diffie-hellman@^5.0.0
│  ├─ inherits@^2.0.1
│  ├─ pbkdf2@^3.0.3
│  ├─ public-encrypt@^4.0.0
│  ├─ randombytes@^2.0.0
│  └─ randomfill@^1.0.3
├─ css-blank-pseudo@0.1.4
│  └─ postcss@^7.0.5
├─ css-color-names@0.0.4
├─ css-declaration-sorter@4.0.1
│  ├─ postcss@^7.0.1
│  └─ timsort@^0.3.0
├─ css-has-pseudo@0.10.0
│  ├─ cssesc@2.0.0
│  ├─ postcss-selector-parser@^5.0.0-rc.4
│  ├─ postcss-selector-parser@5.0.0
│  │  ├─ cssesc@^2.0.0
│  │  ├─ indexes-of@^1.0.1
│  │  └─ uniq@^1.0.1
│  └─ postcss@^7.0.6
├─ css-loader@3.6.0
│  ├─ camelcase@^5.3.1
│  ├─ cssesc@^3.0.0
│  ├─ icss-utils@^4.1.1
│  ├─ loader-utils@^1.2.3
│  ├─ normalize-path@^3.0.0
│  ├─ postcss-modules-extract-imports@^2.0.0
│  ├─ postcss-modules-local-by-default@^3.0.2
│  ├─ postcss-modules-scope@^2.2.0
│  ├─ postcss-modules-values@^3.0.0
│  ├─ postcss-value-parser@^4.1.0
│  ├─ postcss-value-parser@4.1.0
│  ├─ postcss@^7.0.32
│  ├─ schema-utils@^2.7.0
│  ├─ schema-utils@2.7.1
│  │  ├─ @types/json-schema@^7.0.5
│  │  ├─ ajv-keywords@^3.5.2
│  │  └─ ajv@^6.12.4
│  └─ semver@^6.3.0
├─ css-prefers-color-scheme@3.1.1
│  └─ postcss@^7.0.5
├─ css-select-base-adapter@0.1.1
├─ css-select@2.1.0
│  ├─ boolbase@^1.0.0
│  ├─ css-what@^3.2.1
│  ├─ domutils@^1.7.0
│  └─ nth-check@^1.0.2
├─ css-tree@1.0.0-alpha.37
│  ├─ mdn-data@2.0.4
│  └─ source-map@^0.6.1
├─ css-unit-converter@1.1.2
├─ css-what@3.4.2
├─ cssdb@4.4.0
├─ cssesc@3.0.0
├─ cssnano-preset-default@4.0.7
│  ├─ css-declaration-sorter@^4.0.1
│  ├─ cssnano-util-raw-cache@^4.0.1
│  ├─ postcss-calc@^7.0.1
│  ├─ postcss-colormin@^4.0.3
│  ├─ postcss-convert-values@^4.0.1
│  ├─ postcss-discard-comments@^4.0.2
│  ├─ postcss-discard-duplicates@^4.0.2
│  ├─ postcss-discard-empty@^4.0.1
│  ├─ postcss-discard-overridden@^4.0.1
│  ├─ postcss-merge-longhand@^4.0.11
│  ├─ postcss-merge-rules@^4.0.3
│  ├─ postcss-minify-font-values@^4.0.2
│  ├─ postcss-minify-gradients@^4.0.2
│  ├─ postcss-minify-params@^4.0.2
│  ├─ postcss-minify-selectors@^4.0.2
│  ├─ postcss-normalize-charset@^4.0.1
│  ├─ postcss-normalize-display-values@^4.0.2
│  ├─ postcss-normalize-positions@^4.0.2
│  ├─ postcss-normalize-repeat-style@^4.0.2
│  ├─ postcss-normalize-string@^4.0.2
│  ├─ postcss-normalize-timing-functions@^4.0.2
│  ├─ postcss-normalize-unicode@^4.0.1
│  ├─ postcss-normalize-url@^4.0.1
│  ├─ postcss-normalize-whitespace@^4.0.2
│  ├─ postcss-ordered-values@^4.1.2
│  ├─ postcss-reduce-initial@^4.0.3
│  ├─ postcss-reduce-transforms@^4.0.2
│  ├─ postcss-svgo@^4.0.2
│  ├─ postcss-unique-selectors@^4.0.1
│  └─ postcss@^7.0.0
├─ cssnano-util-get-arguments@4.0.0
├─ cssnano-util-get-match@4.0.0
├─ cssnano-util-raw-cache@4.0.1
│  └─ postcss@^7.0.0
├─ cssnano-util-same-parent@4.0.1
├─ cssnano@4.1.10
│  ├─ cosmiconfig@^5.0.0
│  ├─ cssnano-preset-default@^4.0.7
│  ├─ is-resolvable@^1.0.0
│  └─ postcss@^7.0.0
├─ csso@4.2.0
│  ├─ css-tree@^1.1.2
│  ├─ css-tree@1.1.2
│  │  ├─ mdn-data@2.0.14
│  │  └─ source-map@^0.6.1
│  └─ mdn-data@2.0.14
├─ currently-unhandled@0.4.1
│  └─ array-find-index@^1.0.1
├─ cyclist@1.0.1
├─ dashdash@1.14.1
│  └─ assert-plus@^1.0.0
├─ de-indent@1.0.2
├─ debug@2.6.9
│  └─ ms@2.0.0
├─ decamelize@1.2.0
├─ decode-uri-component@0.2.0
├─ deep-equal@1.1.1
│  ├─ is-arguments@^1.0.4
│  ├─ is-date-object@^1.0.1
│  ├─ is-regex@^1.0.4
│  ├─ object-is@^1.0.1
│  ├─ object-keys@^1.1.1
│  └─ regexp.prototype.flags@^1.2.0
├─ default-gateway@4.2.0
│  ├─ execa@^1.0.0
│  └─ ip-regex@^2.1.0
├─ define-properties@1.1.3
│  └─ object-keys@^1.0.12
├─ define-property@0.2.5
│  ├─ is-accessor-descriptor@0.1.6
│  │  ├─ kind-of@^3.0.2
│  │  └─ kind-of@3.2.2
│  │     └─ is-buffer@^1.1.5
│  ├─ is-data-descriptor@0.1.4
│  │  ├─ kind-of@^3.0.2
│  │  └─ kind-of@3.2.2
│  │     └─ is-buffer@^1.1.5
│  ├─ is-descriptor@^0.1.0
│  ├─ is-descriptor@0.1.6
│  │  ├─ is-accessor-descriptor@^0.1.6
│  │  ├─ is-data-descriptor@^0.1.4
│  │  └─ kind-of@^5.0.0
│  └─ kind-of@5.1.0
├─ defined@1.0.0
├─ del@4.1.1
│  ├─ @types/glob@^7.1.1
│  ├─ globby@^6.1.0
│  ├─ is-path-cwd@^2.0.0
│  ├─ is-path-in-cwd@^2.0.0
│  ├─ p-map@^2.0.0
│  ├─ p-map@2.1.0
│  ├─ pify@^4.0.1
│  ├─ pify@4.0.1
│  └─ rimraf@^2.6.3
├─ delayed-stream@1.0.0
├─ delegates@1.0.0
├─ depd@1.1.2
├─ des.js@1.0.1
│  ├─ inherits@^2.0.1
│  └─ minimalistic-assert@^1.0.0
├─ destroy@1.0.4
├─ detect-file@1.0.0
├─ detect-node@2.0.4
├─ detective@5.2.0
│  ├─ acorn-node@^1.6.1
│  ├─ defined@^1.0.0
│  └─ minimist@^1.1.1
├─ didyoumean@1.2.1
├─ diffie-hellman@5.0.3
│  ├─ bn.js@^4.1.0
│  ├─ miller-rabin@^4.0.0
│  └─ randombytes@^2.0.0
├─ dns-equal@1.0.0
├─ dns-packet@1.3.1
│  ├─ ip@^1.1.0
│  └─ safe-buffer@^5.0.1
├─ dns-txt@2.0.2
│  └─ buffer-indexof@^1.0.0
├─ dom-serializer@0.2.2
│  ├─ domelementtype@^2.0.1
│  ├─ domelementtype@2.1.0
│  └─ entities@^2.0.0
├─ domain-browser@1.2.0
├─ domelementtype@1.3.1
├─ domutils@1.7.0
│  ├─ dom-serializer@0
│  └─ domelementtype@1
├─ dot-prop@5.3.0
│  └─ is-obj@^2.0.0
├─ duplexify@3.7.1
│  ├─ end-of-stream@^1.0.0
│  ├─ inherits@^2.0.1
│  ├─ readable-stream@^2.0.0
│  └─ stream-shift@^1.0.0
├─ ecc-jsbn@0.1.2
│  ├─ jsbn@~0.1.0
│  └─ safer-buffer@^2.1.0
├─ ee-first@1.1.1
├─ electron-to-chromium@1.3.684
├─ elliptic@6.5.4
│  ├─ bn.js@^4.11.9
│  ├─ brorand@^1.1.0
│  ├─ hash.js@^1.0.0
│  ├─ hmac-drbg@^1.0.1
│  ├─ inherits@^2.0.4
│  ├─ minimalistic-assert@^1.0.1
│  └─ minimalistic-crypto-utils@^1.0.1
├─ emoji-regex@7.0.3
├─ emojis-list@3.0.0
├─ encodeurl@1.0.2
├─ end-of-stream@1.4.4
│  └─ once@^1.4.0
├─ enhanced-resolve@4.5.0
│  ├─ graceful-fs@^4.1.2
│  ├─ memory-fs@^0.5.0
│  ├─ memory-fs@0.5.0
│  │  ├─ errno@^0.1.3
│  │  └─ readable-stream@^2.0.1
│  └─ tapable@^1.0.0
├─ entities@2.2.0
├─ errno@0.1.8
│  └─ prr@~1.0.1
├─ error-ex@1.3.2
│  └─ is-arrayish@^0.2.1
├─ es-abstract@1.18.0
│  ├─ call-bind@^1.0.2
│  ├─ es-to-primitive@^1.2.1
│  ├─ function-bind@^1.1.1
│  ├─ get-intrinsic@^1.1.1
│  ├─ has-symbols@^1.0.2
│  ├─ has@^1.0.3
│  ├─ is-callable@^1.2.3
│  ├─ is-negative-zero@^2.0.1
│  ├─ is-regex@^1.1.2
│  ├─ is-string@^1.0.5
│  ├─ object-inspect@^1.9.0
│  ├─ object-keys@^1.1.1
│  ├─ object.assign@^4.1.2
│  ├─ string.prototype.trimend@^1.0.4
│  ├─ string.prototype.trimstart@^1.0.4
│  └─ unbox-primitive@^1.0.0
├─ es-to-primitive@1.2.1
│  ├─ is-callable@^1.1.4
│  ├─ is-date-object@^1.0.1
│  └─ is-symbol@^1.0.2
├─ escalade@3.1.1
├─ escape-html@1.0.3
├─ escape-string-regexp@1.0.5
├─ eslint-scope@4.0.3
│  ├─ esrecurse@^4.1.0
│  └─ estraverse@^4.1.1
├─ esprima@4.0.1
├─ esrecurse@4.3.0
│  ├─ estraverse@^5.2.0
│  └─ estraverse@5.2.0
├─ estraverse@4.3.0
├─ esutils@2.0.3
├─ etag@1.8.1
├─ eventemitter3@4.0.7
├─ events@3.3.0
├─ eventsource@1.0.7
│  └─ original@^1.0.0
├─ evp_bytestokey@1.0.3
│  ├─ md5.js@^1.3.4
│  └─ safe-buffer@^5.1.1
├─ execa@1.0.0
│  ├─ cross-spawn@^6.0.0
│  ├─ get-stream@^4.0.0
│  ├─ is-stream@^1.1.0
│  ├─ npm-run-path@^2.0.0
│  ├─ p-finally@^1.0.0
│  ├─ signal-exit@^3.0.0
│  └─ strip-eof@^1.0.0
├─ expand-brackets@2.1.4
│  ├─ debug@^2.3.3
│  ├─ define-property@^0.2.5
│  ├─ extend-shallow@^2.0.1
│  ├─ posix-character-classes@^0.1.0
│  ├─ regex-not@^1.0.0
│  ├─ snapdragon@^0.8.1
│  └─ to-regex@^3.0.1
├─ expand-tilde@2.0.2
│  └─ homedir-polyfill@^1.0.1
├─ express@4.17.1
│  ├─ accepts@~1.3.7
│  ├─ array-flatten@1.1.1
│  ├─ body-parser@1.19.0
│  ├─ content-disposition@0.5.3
│  ├─ content-type@~1.0.4
│  ├─ cookie-signature@1.0.6
│  ├─ cookie@0.4.0
│  ├─ debug@2.6.9
│  ├─ depd@~1.1.2
│  ├─ encodeurl@~1.0.2
│  ├─ escape-html@~1.0.3
│  ├─ etag@~1.8.1
│  ├─ finalhandler@~1.1.2
│  ├─ fresh@0.5.2
│  ├─ merge-descriptors@1.0.1
│  ├─ methods@~1.1.2
│  ├─ on-finished@~2.3.0
│  ├─ parseurl@~1.3.3
│  ├─ path-to-regexp@0.1.7
│  ├─ proxy-addr@~2.0.5
│  ├─ qs@6.7.0
│  ├─ range-parser@~1.2.1
│  ├─ safe-buffer@5.1.2
│  ├─ safe-buffer@5.1.2
│  ├─ send@0.17.1
│  ├─ serve-static@1.14.1
│  ├─ setprototypeof@1.1.1
│  ├─ statuses@~1.5.0
│  ├─ type-is@~1.6.18
│  ├─ utils-merge@1.0.1
│  └─ vary@~1.1.2
├─ extend-shallow@2.0.1
│  └─ is-extendable@^0.1.0
├─ extend@3.0.2
├─ extglob@2.0.4
│  ├─ array-unique@^0.3.2
│  ├─ define-property@^1.0.0
│  ├─ define-property@1.0.0
│  │  └─ is-descriptor@^1.0.0
│  ├─ expand-brackets@^2.1.4
│  ├─ extend-shallow@^2.0.1
│  ├─ fragment-cache@^0.2.1
│  ├─ regex-not@^1.0.0
│  ├─ snapdragon@^0.8.1
│  └─ to-regex@^3.0.1
├─ extsprintf@1.3.0
├─ fast-deep-equal@3.1.3
├─ fast-json-stable-stringify@2.1.0
├─ faye-websocket@0.11.3
│  └─ websocket-driver@>=0.5.1
├─ figgy-pudding@3.5.2
├─ file-loader@6.2.0
│  ├─ loader-utils@^2.0.0
│  ├─ loader-utils@2.0.0
│  │  ├─ big.js@^5.2.2
│  │  ├─ emojis-list@^3.0.0
│  │  └─ json5@^2.1.2
│  ├─ schema-utils@^3.0.0
│  └─ schema-utils@3.0.0
│     ├─ @types/json-schema@^7.0.6
│     ├─ ajv-keywords@^3.5.2
│     └─ ajv@^6.12.5
├─ file-uri-to-path@1.0.0
├─ fill-range@4.0.0
│  ├─ extend-shallow@^2.0.1
│  ├─ is-number@^3.0.0
│  ├─ repeat-string@^1.6.1
│  └─ to-regex-range@^2.1.0
├─ finalhandler@1.1.2
│  ├─ debug@2.6.9
│  ├─ encodeurl@~1.0.2
│  ├─ escape-html@~1.0.3
│  ├─ on-finished@~2.3.0
│  ├─ parseurl@~1.3.3
│  ├─ statuses@~1.5.0
│  └─ unpipe@~1.0.0
├─ find-cache-dir@3.3.1
│  ├─ commondir@^1.0.1
│  ├─ find-up@4.1.0
│  │  ├─ locate-path@^5.0.0
│  │  └─ path-exists@^4.0.0
│  ├─ locate-path@5.0.0
│  │  └─ p-locate@^4.1.0
│  ├─ make-dir@^3.0.2
│  ├─ p-locate@4.1.0
│  │  └─ p-limit@^2.2.0
│  ├─ path-exists@4.0.0
│  ├─ pkg-dir@^4.1.0
│  └─ pkg-dir@4.2.0
│     └─ find-up@^4.0.0
├─ find-up@3.0.0
│  └─ locate-path@^3.0.0
├─ findup-sync@3.0.0
│  ├─ detect-file@^1.0.0
│  ├─ is-glob@^4.0.0
│  ├─ micromatch@^3.0.4
│  └─ resolve-dir@^1.0.1
├─ flatted@3.1.1
├─ flatten@1.0.3
├─ flush-write-stream@1.1.1
│  ├─ inherits@^2.0.3
│  └─ readable-stream@^2.3.6
├─ follow-redirects@1.13.3
├─ for-in@1.0.2
├─ forever-agent@0.6.1
├─ form-data@2.3.3
│  ├─ asynckit@^0.4.0
│  ├─ combined-stream@^1.0.6
│  └─ mime-types@^2.1.12
├─ forwarded@0.1.2
├─ fragment-cache@0.2.1
│  └─ map-cache@^0.2.2
├─ fresh@0.5.2
├─ from2@2.3.0
│  ├─ inherits@^2.0.1
│  └─ readable-stream@^2.0.0
├─ fs-extra@9.1.0
│  ├─ at-least-node@^1.0.0
│  ├─ graceful-fs@^4.2.0
│  ├─ jsonfile@^6.0.1
│  └─ universalify@^2.0.0
├─ fs-minipass@2.1.0
│  └─ minipass@^3.0.0
├─ fs-write-stream-atomic@1.0.10
│  ├─ graceful-fs@^4.1.2
│  ├─ iferr@^0.1.5
│  ├─ imurmurhash@^0.1.4
│  └─ readable-stream@1 || 2
├─ fs.realpath@1.0.0
├─ fsevents@1.2.13
│  ├─ bindings@^1.5.0
│  └─ nan@^2.12.1
├─ fstream@1.0.12
│  ├─ graceful-fs@^4.1.2
│  ├─ inherits@~2.0.0
│  ├─ mkdirp@>=0.5 0
│  └─ rimraf@2
├─ function-bind@1.1.1
├─ gauge@2.7.4
│  ├─ aproba@^1.0.3
│  ├─ console-control-strings@^1.0.0
│  ├─ has-unicode@^2.0.0
│  ├─ is-fullwidth-code-point@1.0.0
│  │  └─ number-is-nan@^1.0.0
│  ├─ object-assign@^4.1.0
│  ├─ signal-exit@^3.0.0
│  ├─ string-width@^1.0.1
│  ├─ string-width@1.0.2
│  │  ├─ code-point-at@^1.0.0
│  │  ├─ is-fullwidth-code-point@^1.0.0
│  │  └─ strip-ansi@^3.0.0
│  ├─ strip-ansi@^3.0.1
│  └─ wide-align@^1.1.0
├─ gaze@1.1.3
│  └─ globule@^1.0.0
├─ gensync@1.0.0-beta.2
├─ get-caller-file@2.0.5
├─ get-intrinsic@1.1.1
│  ├─ function-bind@^1.1.1
│  ├─ has-symbols@^1.0.1
│  └─ has@^1.0.3
├─ get-stdin@4.0.1
├─ get-stream@4.1.0
│  └─ pump@^3.0.0
├─ get-value@2.0.6
├─ getpass@0.1.7
│  └─ assert-plus@^1.0.0
├─ glob-parent@3.1.0
│  ├─ is-glob@^3.1.0
│  ├─ is-glob@3.1.0
│  │  └─ is-extglob@^2.1.0
│  └─ path-dirname@^1.0.0
├─ glob@7.1.6
│  ├─ fs.realpath@^1.0.0
│  ├─ inflight@^1.0.4
│  ├─ inherits@2
│  ├─ minimatch@^3.0.4
│  ├─ once@^1.3.0
│  └─ path-is-absolute@^1.0.0
├─ global-modules@2.0.0
│  └─ global-prefix@^3.0.0
├─ global-prefix@3.0.0
│  ├─ ini@^1.3.5
│  ├─ kind-of@^6.0.2
│  └─ which@^1.3.1
├─ globals@11.12.0
├─ globby@6.1.0
│  ├─ array-union@^1.0.1
│  ├─ glob@^7.0.3
│  ├─ object-assign@^4.0.1
│  ├─ pify@^2.0.0
│  └─ pinkie-promise@^2.0.0
├─ globule@1.3.2
│  ├─ glob@~7.1.1
│  ├─ lodash@~4.17.10
│  └─ minimatch@~3.0.2
├─ graceful-fs@4.2.6
├─ handle-thing@2.0.1
├─ har-schema@2.0.0
├─ har-validator@5.1.5
│  ├─ ajv@^6.12.3
│  └─ har-schema@^2.0.0
├─ has-ansi@2.0.0
│  └─ ansi-regex@^2.0.0
├─ has-bigints@1.0.1
├─ has-flag@3.0.0
├─ has-symbols@1.0.2
├─ has-unicode@2.0.1
├─ has-value@1.0.0
│  ├─ get-value@^2.0.6
│  ├─ has-values@^1.0.0
│  └─ isobject@^3.0.0
├─ has-values@1.0.0
│  ├─ is-number@^3.0.0
│  ├─ kind-of@^4.0.0
│  └─ kind-of@4.0.0
│     └─ is-buffer@^1.1.5
├─ has@1.0.3
│  └─ function-bind@^1.1.1
├─ hash-base@3.1.0
│  ├─ inherits@^2.0.4
│  ├─ readable-stream@^3.6.0
│  ├─ readable-stream@3.6.0
│  │  ├─ inherits@^2.0.3
│  │  ├─ string_decoder@^1.1.1
│  │  └─ util-deprecate@^1.0.1
│  └─ safe-buffer@^5.2.0
├─ hash-sum@1.0.2
├─ hash.js@1.1.7
│  ├─ inherits@^2.0.3
│  └─ minimalistic-assert@^1.0.1
├─ he@1.2.0
├─ hex-color-regex@1.1.0
├─ hmac-drbg@1.0.1
│  ├─ hash.js@^1.0.3
│  ├─ minimalistic-assert@^1.0.0
│  └─ minimalistic-crypto-utils@^1.0.1
├─ homedir-polyfill@1.0.3
│  └─ parse-passwd@^1.0.0
├─ hosted-git-info@2.8.8
├─ hpack.js@2.1.6
│  ├─ inherits@^2.0.1
│  ├─ obuf@^1.0.0
│  ├─ readable-stream@^2.0.1
│  └─ wbuf@^1.1.0
├─ hsl-regex@1.0.0
├─ hsla-regex@1.0.0
├─ html-comment-regex@1.1.2
├─ html-entities@1.4.0
├─ html-tags@3.1.0
├─ http-deceiver@1.2.7
├─ http-errors@1.7.2
│  ├─ depd@~1.1.2
│  ├─ inherits@2.0.3
│  ├─ inherits@2.0.3
│  ├─ setprototypeof@1.1.1
│  ├─ statuses@>= 1.5.0 < 2
│  └─ toidentifier@1.0.0
├─ http-parser-js@0.5.3
├─ http-proxy-middleware@0.19.1
│  ├─ http-proxy@^1.17.0
│  ├─ is-glob@^4.0.0
│  ├─ lodash@^4.17.11
│  └─ micromatch@^3.1.10
├─ http-proxy@1.18.1
│  ├─ eventemitter3@^4.0.0
│  ├─ follow-redirects@^1.0.0
│  └─ requires-port@^1.0.0
├─ http-signature@1.2.0
│  ├─ assert-plus@^1.0.0
│  ├─ jsprim@^1.2.2
│  └─ sshpk@^1.7.0
├─ https-browserify@1.0.0
├─ iconv-lite@0.4.24
│  └─ safer-buffer@>= 2.1.2 < 3
├─ icss-utils@4.1.1
│  └─ postcss@^7.0.14
├─ ieee754@1.2.1
├─ iferr@0.1.5
├─ import-cwd@2.1.0
│  └─ import-from@^2.1.0
├─ import-fresh@2.0.0
│  ├─ caller-path@^2.0.0
│  └─ resolve-from@^3.0.0
├─ import-from@2.1.0
│  └─ resolve-from@^3.0.0
├─ import-local@2.0.0
│  ├─ pkg-dir@^3.0.0
│  └─ resolve-cwd@^2.0.0
├─ imurmurhash@0.1.4
├─ in-publish@2.0.1
├─ indent-string@4.0.0
├─ indexes-of@1.0.1
├─ infer-owner@1.0.4
├─ inflight@1.0.6
│  ├─ once@^1.3.0
│  └─ wrappy@1
├─ inherits@2.0.4
├─ ini@1.3.8
├─ internal-ip@4.3.0
│  ├─ default-gateway@^4.2.0
│  └─ ipaddr.js@^1.9.0
├─ interpret@1.4.0
├─ ip-regex@2.1.0
├─ ip@1.1.5
├─ ipaddr.js@1.9.1
├─ is-absolute-url@3.0.3
├─ is-accessor-descriptor@1.0.0
│  └─ kind-of@^6.0.0
├─ is-arguments@1.1.0
│  └─ call-bind@^1.0.0
├─ is-arrayish@0.2.1
├─ is-bigint@1.0.1
├─ is-binary-path@1.0.1
│  └─ binary-extensions@^1.0.0
├─ is-boolean-object@1.1.0
│  └─ call-bind@^1.0.0
├─ is-buffer@1.1.6
├─ is-callable@1.2.3
├─ is-color-stop@1.1.0
│  ├─ css-color-names@^0.0.4
│  ├─ 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
├─ is-core-module@2.2.0
│  └─ has@^1.0.3
├─ is-data-descriptor@1.0.0
│  └─ kind-of@^6.0.0
├─ is-date-object@1.0.2
├─ is-descriptor@1.0.2
│  ├─ is-accessor-descriptor@^1.0.0
│  ├─ is-data-descriptor@^1.0.0
│  └─ kind-of@^6.0.2
├─ is-directory@0.3.1
├─ is-extendable@0.1.1
├─ is-extglob@2.1.1
├─ is-finite@1.1.0
├─ is-fullwidth-code-point@2.0.0
├─ is-glob@4.0.1
│  └─ is-extglob@^2.1.1
├─ is-negative-zero@2.0.1
├─ is-number-object@1.0.4
├─ is-number@3.0.0
│  ├─ kind-of@^3.0.2
│  └─ kind-of@3.2.2
│     └─ is-buffer@^1.1.5
├─ is-obj@2.0.0
├─ is-path-cwd@2.2.0
├─ is-path-in-cwd@2.1.0
│  └─ is-path-inside@^2.1.0
├─ is-path-inside@2.1.0
│  └─ path-is-inside@^1.0.2
├─ is-plain-obj@1.1.0
├─ is-plain-object@2.0.4
│  └─ isobject@^3.0.1
├─ is-regex@1.1.2
│  ├─ call-bind@^1.0.2
│  └─ has-symbols@^1.0.1
├─ is-resolvable@1.1.0
├─ is-stream@1.1.0
├─ is-string@1.0.5
├─ is-svg@3.0.0
│  └─ html-comment-regex@^1.1.0
├─ is-symbol@1.0.3
│  └─ has-symbols@^1.0.1
├─ is-typedarray@1.0.0
├─ is-utf8@0.2.1
├─ is-windows@1.0.2
├─ is-wsl@1.1.0
├─ isarray@1.0.0
├─ isexe@2.0.0
├─ isobject@3.0.1
├─ isstream@0.1.2
├─ jest-worker@26.6.2
│  ├─ @types/node@*
│  ├─ has-flag@4.0.0
│  ├─ merge-stream@^2.0.0
│  ├─ supports-color@^7.0.0
│  └─ supports-color@7.2.0
│     └─ has-flag@^4.0.0
├─ js-base64@2.6.4
├─ js-tokens@4.0.0
├─ js-yaml@3.14.1
│  ├─ argparse@^1.0.7
│  └─ esprima@^4.0.0
├─ jsbn@0.1.1
├─ jsesc@2.5.2
├─ json-parse-better-errors@1.0.2
├─ json-parse-even-better-errors@2.3.1
├─ json-schema-traverse@0.4.1
├─ json-schema@0.2.3
├─ json-stringify-safe@5.0.1
├─ json3@3.3.3
├─ json5@2.2.0
│  └─ minimist@^1.2.5
├─ jsonfile@6.1.0
│  ├─ graceful-fs@^4.1.6
│  └─ universalify@^2.0.0
├─ jsprim@1.4.1
│  ├─ assert-plus@1.0.0
│  ├─ extsprintf@1.3.0
│  ├─ json-schema@0.2.3
│  └─ verror@1.10.0
├─ killable@1.0.1
├─ kind-of@6.0.3
├─ last-call-webpack-plugin@3.0.0
│  ├─ lodash@^4.17.5
│  └─ webpack-sources@^1.1.0
├─ lines-and-columns@1.1.6
├─ load-json-file@1.1.0
│  ├─ graceful-fs@^4.1.2
│  ├─ parse-json@^2.2.0
│  ├─ parse-json@2.2.0
│  │  └─ error-ex@^1.2.0
│  ├─ pify@^2.0.0
│  ├─ pinkie-promise@^2.0.0
│  └─ strip-bom@^2.0.0
├─ loader-runner@2.4.0
├─ loader-utils@1.4.0
│  ├─ big.js@^5.2.2
│  ├─ emojis-list@^3.0.0
│  ├─ json5@^1.0.1
│  └─ json5@1.0.1
│     └─ minimist@^1.2.0
├─ locate-path@3.0.0
│  ├─ p-locate@^3.0.0
│  └─ path-exists@^3.0.0
├─ lodash._reinterpolate@3.0.0
├─ lodash.castarray@4.4.0
├─ lodash.clonedeep@4.5.0
├─ lodash.debounce@4.0.8
├─ lodash.get@4.4.2
├─ lodash.has@4.5.2
├─ lodash.intersection@4.4.0
├─ lodash.isequal@4.5.0
├─ lodash.isplainobject@4.0.6
├─ lodash.kebabcase@4.1.1
├─ lodash.map@4.6.0
├─ lodash.mapvalues@4.6.0
├─ lodash.memoize@4.1.2
├─ lodash.merge@4.6.2
├─ lodash.pick@4.4.0
├─ lodash.range@3.2.0
├─ lodash.template@4.5.0
│  ├─ lodash._reinterpolate@^3.0.0
│  └─ lodash.templatesettings@^4.0.0
├─ lodash.templatesettings@4.2.0
│  └─ lodash._reinterpolate@^3.0.0
├─ lodash.toarray@4.4.0
├─ lodash.uniq@4.5.0
├─ lodash@4.17.21
├─ loglevel@1.7.1
├─ loud-rejection@1.6.0
│  ├─ currently-unhandled@^0.4.1
│  └─ signal-exit@^3.0.0
├─ lru-cache@4.1.5
│  ├─ pseudomap@^1.0.2
│  ├─ yallist@^2.1.2
│  └─ yallist@2.1.2
├─ make-dir@3.1.0
│  └─ semver@^6.0.0
├─ map-cache@0.2.2
├─ map-obj@1.0.1
├─ map-visit@1.0.0
│  └─ object-visit@^1.0.0
├─ md5.js@1.3.5
│  ├─ hash-base@^3.0.0
│  ├─ inherits@^2.0.1
│  └─ safe-buffer@^5.1.2
├─ mdn-data@2.0.4
├─ media-typer@0.3.0
├─ memory-fs@0.4.1
│  ├─ errno@^0.1.3
│  └─ readable-stream@^2.0.1
├─ meow@3.7.0
│  ├─ camelcase-keys@^2.0.0
│  ├─ decamelize@^1.1.2
│  ├─ loud-rejection@^1.0.0
│  ├─ map-obj@^1.0.1
│  ├─ minimist@^1.1.3
│  ├─ normalize-package-data@^2.3.4
│  ├─ object-assign@^4.0.1
│  ├─ read-pkg-up@^1.0.1
│  ├─ redent@^1.0.0
│  └─ trim-newlines@^1.0.0
├─ merge-descriptors@1.0.1
├─ merge-source-map@1.1.0
│  └─ source-map@^0.6.1
├─ merge-stream@2.0.0
├─ methods@1.1.2
├─ micromatch@3.1.10
│  ├─ arr-diff@^4.0.0
│  ├─ array-unique@^0.3.2
│  ├─ braces@^2.3.1
│  ├─ define-property@^2.0.2
│  ├─ define-property@2.0.2
│  │  ├─ is-descriptor@^1.0.2
│  │  └─ isobject@^3.0.1
│  ├─ extend-shallow@^3.0.2
│  ├─ extend-shallow@3.0.2
│  │  ├─ assign-symbols@^1.0.0
│  │  └─ is-extendable@^1.0.1
│  ├─ extglob@^2.0.4
│  ├─ fragment-cache@^0.2.1
│  ├─ is-extendable@1.0.1
│  │  └─ is-plain-object@^2.0.4
│  ├─ kind-of@^6.0.2
│  ├─ nanomatch@^1.2.9
│  ├─ object.pick@^1.3.0
│  ├─ regex-not@^1.0.0
│  ├─ snapdragon@^0.8.1
│  └─ to-regex@^3.0.2
├─ miller-rabin@4.0.1
│  ├─ bn.js@^4.0.0
│  └─ brorand@^1.0.1
├─ mime-db@1.46.0
├─ mime-types@2.1.29
│  └─ mime-db@1.46.0
├─ mime@2.5.2
├─ mini-css-extract-plugin@0.9.0
│  ├─ loader-utils@^1.1.0
│  ├─ normalize-url@1.9.1
│  ├─ schema-utils@^1.0.0
│  └─ webpack-sources@^1.1.0
├─ mini-svg-data-uri@1.2.3
├─ minimalistic-assert@1.0.1
├─ minimalistic-crypto-utils@1.0.1
├─ minimatch@3.0.4
│  └─ brace-expansion@^1.1.7
├─ minimist@1.2.5
├─ minipass-collect@1.0.2
│  └─ minipass@^3.0.0
├─ minipass-flush@1.0.5
│  └─ minipass@^3.0.0
├─ minipass-pipeline@1.2.4
│  └─ minipass@^3.0.0
├─ minipass@3.1.3
│  └─ yallist@^4.0.0
├─ minizlib@2.1.2
│  ├─ minipass@^3.0.0
│  └─ yallist@^4.0.0
├─ mississippi@3.0.0
│  ├─ concat-stream@^1.5.0
│  ├─ duplexify@^3.4.2
│  ├─ end-of-stream@^1.1.0
│  ├─ flush-write-stream@^1.0.0
│  ├─ from2@^2.1.0
│  ├─ parallel-transform@^1.1.0
│  ├─ pump@^3.0.0
│  ├─ pumpify@^1.3.3
│  ├─ stream-each@^1.1.0
│  └─ through2@^2.0.0
├─ mixin-deep@1.3.2
│  ├─ for-in@^1.0.2
│  ├─ is-extendable@^1.0.1
│  └─ is-extendable@1.0.1
│     └─ is-plain-object@^2.0.4
├─ mkdirp@0.5.5
│  └─ minimist@^1.2.5
├─ modern-normalize@1.0.0
├─ move-concurrently@1.0.1
│  ├─ aproba@^1.1.1
│  ├─ copy-concurrently@^1.0.0
│  ├─ fs-write-stream-atomic@^1.0.8
│  ├─ mkdirp@^0.5.1
│  ├─ rimraf@^2.5.4
│  └─ run-queue@^1.0.3
├─ ms@2.0.0
├─ multicast-dns-service-types@1.1.0
├─ multicast-dns@6.2.3
│  ├─ dns-packet@^1.3.1
│  └─ thunky@^1.0.2
├─ nan@2.14.2
├─ nanoid@3.1.20
├─ nanomatch@1.2.13
│  ├─ arr-diff@^4.0.0
│  ├─ array-unique@^0.3.2
│  ├─ define-property@^2.0.2
│  ├─ define-property@2.0.2
│  │  ├─ is-descriptor@^1.0.2
│  │  └─ isobject@^3.0.1
│  ├─ extend-shallow@^3.0.2
│  ├─ extend-shallow@3.0.2
│  │  ├─ assign-symbols@^1.0.0
│  │  └─ is-extendable@^1.0.1
│  ├─ fragment-cache@^0.2.1
│  ├─ is-extendable@1.0.1
│  │  └─ is-plain-object@^2.0.4
│  ├─ is-windows@^1.0.2
│  ├─ kind-of@^6.0.2
│  ├─ object.pick@^1.3.0
│  ├─ regex-not@^1.0.0
│  ├─ snapdragon@^0.8.1
│  └─ to-regex@^3.0.1
├─ negotiator@0.6.2
├─ neo-async@2.6.2
├─ nice-try@1.0.5
├─ node-emoji@1.10.0
│  └─ lodash.toarray@^4.4.0
├─ node-forge@0.10.0
├─ node-gyp@3.8.0
│  ├─ fstream@^1.0.0
│  ├─ glob@^7.0.3
│  ├─ graceful-fs@^4.1.2
│  ├─ mkdirp@^0.5.0
│  ├─ nopt@2 || 3
│  ├─ npmlog@0 || 1 || 2 || 3 || 4
│  ├─ osenv@0
│  ├─ request@^2.87.0
│  ├─ rimraf@2
│  ├─ semver@~5.3.0
│  ├─ semver@5.3.0
│  ├─ tar@^2.0.0
│  ├─ tar@2.2.2
│  │  ├─ block-stream@*
│  │  ├─ fstream@^1.0.12
│  │  └─ inherits@2
│  └─ which@1
├─ node-libs-browser@2.2.1
│  ├─ assert@^1.1.1
│  ├─ browserify-zlib@^0.2.0
│  ├─ buffer@^4.3.0
│  ├─ console-browserify@^1.1.0
│  ├─ constants-browserify@^1.0.0
│  ├─ crypto-browserify@^3.11.0
│  ├─ domain-browser@^1.1.1
│  ├─ 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.2.4
│  ├─ punycode@1.4.1
│  ├─ querystring-es3@^0.2.0
│  ├─ readable-stream@^2.3.3
│  ├─ stream-browserify@^2.0.1
│  ├─ stream-http@^2.7.2
│  ├─ string_decoder@^1.0.0
│  ├─ timers-browserify@^2.0.4
│  ├─ tty-browserify@0.0.0
│  ├─ url@^0.11.0
│  ├─ util@^0.11.0
│  └─ vm-browserify@^1.0.1
├─ node-releases@1.1.71
├─ node-sass@4.14.1
│  ├─ ansi-styles@2.2.1
│  ├─ async-foreach@^0.1.3
│  ├─ chalk@^1.1.1
│  ├─ chalk@1.1.3
│  │  ├─ ansi-styles@^2.2.1
│  │  ├─ escape-string-regexp@^1.0.2
│  │  ├─ has-ansi@^2.0.0
│  │  ├─ strip-ansi@^3.0.0
│  │  └─ supports-color@^2.0.0
│  ├─ cross-spawn@^3.0.0
│  ├─ cross-spawn@3.0.1
│  │  ├─ lru-cache@^4.0.1
│  │  └─ which@^1.2.9
│  ├─ gaze@^1.0.0
│  ├─ get-stdin@^4.0.1
│  ├─ glob@^7.0.3
│  ├─ in-publish@^2.0.0
│  ├─ lodash@^4.17.15
│  ├─ meow@^3.7.0
│  ├─ mkdirp@^0.5.1
│  ├─ nan@^2.13.2
│  ├─ node-gyp@^3.8.0
│  ├─ npmlog@^4.0.0
│  ├─ request@^2.88.0
│  ├─ sass-graph@2.2.5
│  ├─ stdout-stream@^1.4.0
│  ├─ supports-color@2.0.0
│  └─ true-case-path@^1.0.2
├─ nopt@3.0.6
│  └─ abbrev@1
├─ normalize-package-data@2.5.0
│  ├─ hosted-git-info@^2.1.4
│  ├─ resolve@^1.10.0
│  ├─ semver@2 || 3 || 4 || 5
│  ├─ semver@5.7.1
│  └─ validate-npm-package-license@^3.0.1
├─ normalize-path@3.0.0
├─ normalize-range@0.1.2
├─ normalize-url@1.9.1
│  ├─ object-assign@^4.0.1
│  ├─ prepend-http@^1.0.0
│  ├─ query-string@^4.1.0
│  └─ sort-keys@^1.0.0
├─ npm-run-path@2.0.2
│  └─ path-key@^2.0.0
├─ npmlog@4.1.2
│  ├─ are-we-there-yet@~1.1.2
│  ├─ console-control-strings@~1.1.0
│  ├─ gauge@~2.7.3
│  └─ set-blocking@~2.0.0
├─ nth-check@1.0.2
│  └─ boolbase@~1.0.0
├─ num2fraction@1.2.2
├─ number-is-nan@1.0.1
├─ oauth-sign@0.9.0
├─ object-assign@4.1.1
├─ object-copy@0.1.0
│  ├─ copy-descriptor@^0.1.0
│  ├─ define-property@^0.2.5
│  ├─ kind-of@^3.0.3
│  └─ kind-of@3.2.2
│     └─ is-buffer@^1.1.5
├─ object-hash@2.1.1
├─ object-inspect@1.9.0
├─ object-is@1.1.5
│  ├─ call-bind@^1.0.2
│  └─ define-properties@^1.1.3
├─ object-keys@1.1.1
├─ object-visit@1.0.1
│  └─ isobject@^3.0.0
├─ object.assign@4.1.2
│  ├─ call-bind@^1.0.0
│  ├─ define-properties@^1.1.3
│  ├─ has-symbols@^1.0.1
│  └─ object-keys@^1.1.1
├─ object.getownpropertydescriptors@2.1.2
│  ├─ call-bind@^1.0.2
│  ├─ define-properties@^1.1.3
│  └─ es-abstract@^1.18.0-next.2
├─ object.pick@1.3.0
│  └─ isobject@^3.0.1
├─ object.values@1.1.3
│  ├─ call-bind@^1.0.2
│  ├─ define-properties@^1.1.3
│  ├─ es-abstract@^1.18.0-next.2
│  └─ has@^1.0.3
├─ obuf@1.1.2
├─ on-finished@2.3.0
│  └─ ee-first@1.1.1
├─ on-headers@1.0.2
├─ once@1.4.0
│  └─ wrappy@1
├─ opn@5.5.0
│  └─ is-wsl@^1.1.0
├─ optimize-css-assets-webpack-plugin@5.0.4
│  ├─ cssnano@^4.1.10
│  └─ last-call-webpack-plugin@^3.0.0
├─ original@1.0.2
│  └─ url-parse@^1.4.3
├─ os-browserify@0.3.0
├─ os-homedir@1.0.2
├─ os-tmpdir@1.0.2
├─ osenv@0.1.5
│  ├─ os-homedir@^1.0.0
│  └─ os-tmpdir@^1.0.0
├─ p-finally@1.0.0
├─ p-limit@2.3.0
│  └─ p-try@^2.0.0
├─ p-locate@3.0.0
│  └─ p-limit@^2.0.0
├─ p-map@4.0.0
│  └─ aggregate-error@^3.0.0
├─ p-retry@3.0.1
│  └─ retry@^0.12.0
├─ p-try@2.2.0
├─ pako@1.0.11
├─ parallel-transform@1.2.0
│  ├─ cyclist@^1.0.1
│  ├─ inherits@^2.0.3
│  └─ readable-stream@^2.1.5
├─ parent-module@1.0.1
│  ├─ callsites@^3.0.0
│  └─ callsites@3.1.0
├─ parse-asn1@5.1.6
│  ├─ asn1.js@^5.2.0
│  ├─ browserify-aes@^1.0.0
│  ├─ evp_bytestokey@^1.0.0
│  ├─ pbkdf2@^3.0.3
│  └─ safe-buffer@^5.1.1
├─ parse-json@4.0.0
│  ├─ error-ex@^1.3.1
│  └─ json-parse-better-errors@^1.0.1
├─ parse-passwd@1.0.0
├─ parseurl@1.3.3
├─ pascalcase@0.1.1
├─ path-browserify@0.0.1
├─ path-complete-extname@1.0.0
├─ path-dirname@1.0.2
├─ path-exists@3.0.0
├─ path-is-absolute@1.0.1
├─ path-is-inside@1.0.2
├─ path-key@2.0.1
├─ path-parse@1.0.6
├─ path-to-regexp@0.1.7
├─ path-type@4.0.0
├─ pbkdf2@3.1.1
│  ├─ create-hash@^1.1.2
│  ├─ create-hmac@^1.1.4
│  ├─ ripemd160@^2.0.1
│  ├─ safe-buffer@^5.0.1
│  └─ sha.js@^2.4.8
├─ performance-now@2.1.0
├─ picomatch@2.2.2
├─ pify@2.3.0
├─ pinkie-promise@2.0.1
│  └─ pinkie@^2.0.0
├─ pinkie@2.0.4
├─ pkg-dir@3.0.0
│  └─ find-up@^3.0.0
├─ pnp-webpack-plugin@1.6.4
│  └─ ts-pnp@^1.1.6
├─ portfinder@1.0.28
│  ├─ async@^2.6.2
│  ├─ debug@^3.1.1
│  ├─ debug@3.2.7
│  │  └─ ms@^2.1.1
│  ├─ mkdirp@^0.5.5
│  └─ ms@2.1.3
├─ posix-character-classes@0.1.1
├─ postcss-attribute-case-insensitive@4.0.2
│  ├─ postcss-selector-parser@^6.0.2
│  └─ postcss@^7.0.2
├─ postcss-calc@7.0.5
│  ├─ postcss-selector-parser@^6.0.2
│  ├─ postcss-value-parser@^4.0.2
│  ├─ postcss-value-parser@4.1.0
│  └─ postcss@^7.0.27
├─ postcss-color-functional-notation@2.0.1
│  ├─ postcss-values-parser@^2.0.0
│  └─ postcss@^7.0.2
├─ postcss-color-gray@5.0.0
│  ├─ @csstools/convert-colors@^1.4.0
│  ├─ postcss-values-parser@^2.0.0
│  └─ postcss@^7.0.5
├─ postcss-color-hex-alpha@5.0.3
│  ├─ postcss-values-parser@^2.0.1
│  └─ postcss@^7.0.14
├─ postcss-color-mod-function@3.0.3
│  ├─ @csstools/convert-colors@^1.4.0
│  ├─ postcss-values-parser@^2.0.0
│  └─ postcss@^7.0.2
├─ postcss-color-rebeccapurple@4.0.1
│  ├─ postcss-values-parser@^2.0.0
│  └─ postcss@^7.0.2
├─ postcss-colormin@4.0.3
│  ├─ browserslist@^4.0.0
│  ├─ color@^3.0.0
│  ├─ has@^1.0.0
│  ├─ postcss-value-parser@^3.0.0
│  └─ postcss@^7.0.0
├─ postcss-convert-values@4.0.1
│  ├─ postcss-value-parser@^3.0.0
│  └─ postcss@^7.0.0
├─ postcss-custom-media@7.0.8
│  └─ postcss@^7.0.14
├─ postcss-custom-properties@8.0.11
│  ├─ postcss-values-parser@^2.0.1
│  └─ postcss@^7.0.17
├─ postcss-custom-selectors@5.1.2
│  ├─ cssesc@2.0.0
│  ├─ postcss-selector-parser@^5.0.0-rc.3
│  ├─ postcss-selector-parser@5.0.0
│  │  ├─ cssesc@^2.0.0
│  │  ├─ indexes-of@^1.0.1
│  │  └─ uniq@^1.0.1
│  └─ postcss@^7.0.2
├─ postcss-dir-pseudo-class@5.0.0
│  ├─ cssesc@2.0.0
│  ├─ postcss-selector-parser@^5.0.0-rc.3
│  ├─ postcss-selector-parser@5.0.0
│  │  ├─ cssesc@^2.0.0
│  │  ├─ indexes-of@^1.0.1
│  │  └─ uniq@^1.0.1
│  └─ postcss@^7.0.2
├─ postcss-discard-comments@4.0.2
│  └─ postcss@^7.0.0
├─ postcss-discard-duplicates@4.0.2
│  └─ postcss@^7.0.0
├─ postcss-discard-empty@4.0.1
│  └─ postcss@^7.0.0
├─ postcss-discard-overridden@4.0.1
│  └─ postcss@^7.0.0
├─ postcss-double-position-gradients@1.0.0
│  ├─ postcss-values-parser@^2.0.0
│  └─ postcss@^7.0.5
├─ postcss-env-function@2.0.2
│  ├─ postcss-values-parser@^2.0.0
│  └─ postcss@^7.0.2
├─ postcss-flexbugs-fixes@4.2.1
│  └─ postcss@^7.0.26
├─ postcss-focus-visible@4.0.0
│  └─ postcss@^7.0.2
├─ postcss-focus-within@3.0.0
│  └─ postcss@^7.0.2
├─ postcss-font-variant@4.0.1
│  └─ postcss@^7.0.2
├─ postcss-functions@3.0.0
│  ├─ glob@^7.1.2
│  ├─ object-assign@^4.1.1
│  ├─ postcss-value-parser@^3.3.0
│  ├─ postcss@^6.0.9
│  ├─ postcss@6.0.23
│  │  ├─ chalk@^2.4.1
│  │  ├─ source-map@^0.6.1
│  │  └─ supports-color@^5.4.0
│  └─ supports-color@5.5.0
│     └─ has-flag@^3.0.0
├─ postcss-gap-properties@2.0.0
│  └─ postcss@^7.0.2
├─ postcss-image-set-function@3.0.1
│  ├─ postcss-values-parser@^2.0.0
│  └─ postcss@^7.0.2
├─ postcss-import@12.0.1
│  ├─ postcss-value-parser@^3.2.3
│  ├─ postcss@^7.0.1
│  ├─ read-cache@^1.0.0
│  └─ resolve@^1.1.7
├─ postcss-initial@3.0.2
│  ├─ lodash.template@^4.5.0
│  └─ postcss@^7.0.2
├─ postcss-js@2.0.3
│  ├─ camelcase-css@^2.0.1
│  └─ postcss@^7.0.18
├─ postcss-lab-function@2.0.1
│  ├─ @csstools/convert-colors@^1.4.0
│  ├─ postcss-values-parser@^2.0.0
│  └─ postcss@^7.0.2
├─ postcss-load-config@2.1.2
│  ├─ cosmiconfig@^5.0.0
│  └─ import-cwd@^2.0.0
├─ postcss-loader@3.0.0
│  ├─ loader-utils@^1.1.0
│  ├─ postcss-load-config@^2.0.0
│  ├─ postcss@^7.0.0
│  └─ schema-utils@^1.0.0
├─ postcss-logical@3.0.0
│  └─ postcss@^7.0.2
├─ postcss-media-minmax@4.0.0
│  └─ postcss@^7.0.2
├─ postcss-merge-longhand@4.0.11
│  ├─ css-color-names@0.0.4
│  ├─ postcss-value-parser@^3.0.0
│  ├─ postcss@^7.0.0
│  └─ stylehacks@^4.0.0
├─ postcss-merge-rules@4.0.3
│  ├─ browserslist@^4.0.0
│  ├─ caniuse-api@^3.0.0
│  ├─ cssnano-util-same-parent@^4.0.0
│  ├─ postcss-selector-parser@^3.0.0
│  ├─ postcss-selector-parser@3.1.2
│  │  ├─ dot-prop@^5.2.0
│  │  ├─ indexes-of@^1.0.1
│  │  └─ uniq@^1.0.1
│  ├─ postcss@^7.0.0
│  └─ vendors@^1.0.0
├─ postcss-minify-font-values@4.0.2
│  ├─ postcss-value-parser@^3.0.0
│  └─ postcss@^7.0.0
├─ postcss-minify-gradients@4.0.2
│  ├─ cssnano-util-get-arguments@^4.0.0
│  ├─ is-color-stop@^1.0.0
│  ├─ postcss-value-parser@^3.0.0
│  └─ postcss@^7.0.0
├─ postcss-minify-params@4.0.2
│  ├─ alphanum-sort@^1.0.0
│  ├─ browserslist@^4.0.0
│  ├─ cssnano-util-get-arguments@^4.0.0
│  ├─ postcss-value-parser@^3.0.0
│  ├─ postcss@^7.0.0
│  └─ uniqs@^2.0.0
├─ postcss-minify-selectors@4.0.2
│  ├─ alphanum-sort@^1.0.0
│  ├─ has@^1.0.0
│  ├─ postcss-selector-parser@^3.0.0
│  ├─ postcss-selector-parser@3.1.2
│  │  ├─ dot-prop@^5.2.0
│  │  ├─ indexes-of@^1.0.1
│  │  └─ uniq@^1.0.1
│  └─ postcss@^7.0.0
├─ postcss-modules-extract-imports@2.0.0
│  └─ postcss@^7.0.5
├─ postcss-modules-local-by-default@3.0.3
│  ├─ icss-utils@^4.1.1
│  ├─ postcss-selector-parser@^6.0.2
│  ├─ postcss-value-parser@^4.1.0
│  ├─ postcss-value-parser@4.1.0
│  └─ postcss@^7.0.32
├─ postcss-modules-scope@2.2.0
│  ├─ postcss-selector-parser@^6.0.0
│  └─ postcss@^7.0.6
├─ postcss-modules-values@3.0.0
│  ├─ icss-utils@^4.0.0
│  └─ postcss@^7.0.6
├─ postcss-nested@4.2.3
│  ├─ postcss-selector-parser@^6.0.2
│  └─ postcss@^7.0.32
├─ postcss-nesting@7.0.1
│  └─ postcss@^7.0.2
├─ postcss-normalize-charset@4.0.1
│  └─ postcss@^7.0.0
├─ postcss-normalize-display-values@4.0.2
│  ├─ cssnano-util-get-match@^4.0.0
│  ├─ postcss-value-parser@^3.0.0
│  └─ postcss@^7.0.0
├─ postcss-normalize-positions@4.0.2
│  ├─ cssnano-util-get-arguments@^4.0.0
│  ├─ has@^1.0.0
│  ├─ postcss-value-parser@^3.0.0
│  └─ postcss@^7.0.0
├─ postcss-normalize-repeat-style@4.0.2
│  ├─ cssnano-util-get-arguments@^4.0.0
│  ├─ cssnano-util-get-match@^4.0.0
│  ├─ postcss-value-parser@^3.0.0
│  └─ postcss@^7.0.0
├─ postcss-normalize-string@4.0.2
│  ├─ has@^1.0.0
│  ├─ postcss-value-parser@^3.0.0
│  └─ postcss@^7.0.0
├─ postcss-normalize-timing-functions@4.0.2
│  ├─ cssnano-util-get-match@^4.0.0
│  ├─ postcss-value-parser@^3.0.0
│  └─ postcss@^7.0.0
├─ postcss-normalize-unicode@4.0.1
│  ├─ browserslist@^4.0.0
│  ├─ postcss-value-parser@^3.0.0
│  └─ postcss@^7.0.0
├─ postcss-normalize-url@4.0.1
│  ├─ is-absolute-url@^2.0.0
│  ├─ is-absolute-url@2.1.0
│  ├─ normalize-url@^3.0.0
│  ├─ normalize-url@3.3.0
│  ├─ postcss-value-parser@^3.0.0
│  └─ postcss@^7.0.0
├─ postcss-normalize-whitespace@4.0.2
│  ├─ postcss-value-parser@^3.0.0
│  └─ postcss@^7.0.0
├─ postcss-ordered-values@4.1.2
│  ├─ cssnano-util-get-arguments@^4.0.0
│  ├─ postcss-value-parser@^3.0.0
│  └─ postcss@^7.0.0
├─ postcss-overflow-shorthand@2.0.0
│  └─ postcss@^7.0.2
├─ postcss-page-break@2.0.0
│  └─ postcss@^7.0.2
├─ postcss-place@4.0.1
│  ├─ postcss-values-parser@^2.0.0
│  └─ postcss@^7.0.2
├─ postcss-preset-env@6.7.0
│  ├─ autoprefixer@^9.6.1
│  ├─ browserslist@^4.6.4
│  ├─ caniuse-lite@^1.0.30000981
│  ├─ css-blank-pseudo@^0.1.4
│  ├─ css-has-pseudo@^0.10.0
│  ├─ css-prefers-color-scheme@^3.1.1
│  ├─ cssdb@^4.4.0
│  ├─ postcss-attribute-case-insensitive@^4.0.1
│  ├─ postcss-color-functional-notation@^2.0.1
│  ├─ postcss-color-gray@^5.0.0
│  ├─ postcss-color-hex-alpha@^5.0.3
│  ├─ postcss-color-mod-function@^3.0.3
│  ├─ postcss-color-rebeccapurple@^4.0.1
│  ├─ postcss-custom-media@^7.0.8
│  ├─ postcss-custom-properties@^8.0.11
│  ├─ postcss-custom-selectors@^5.1.2
│  ├─ postcss-dir-pseudo-class@^5.0.0
│  ├─ postcss-double-position-gradients@^1.0.0
│  ├─ postcss-env-function@^2.0.2
│  ├─ postcss-focus-visible@^4.0.0
│  ├─ postcss-focus-within@^3.0.0
│  ├─ postcss-font-variant@^4.0.0
│  ├─ postcss-gap-properties@^2.0.0
│  ├─ postcss-image-set-function@^3.0.1
│  ├─ postcss-initial@^3.0.0
│  ├─ postcss-lab-function@^2.0.1
│  ├─ postcss-logical@^3.0.0
│  ├─ postcss-media-minmax@^4.0.0
│  ├─ postcss-nesting@^7.0.0
│  ├─ postcss-overflow-shorthand@^2.0.0
│  ├─ postcss-page-break@^2.0.0
│  ├─ postcss-place@^4.0.1
│  ├─ postcss-pseudo-class-any-link@^6.0.0
│  ├─ postcss-replace-overflow-wrap@^3.0.0
│  ├─ postcss-selector-matches@^4.0.0
│  ├─ postcss-selector-not@^4.0.0
│  └─ postcss@^7.0.17
├─ postcss-pseudo-class-any-link@6.0.0
│  ├─ cssesc@2.0.0
│  ├─ postcss-selector-parser@^5.0.0-rc.3
│  ├─ postcss-selector-parser@5.0.0
│  │  ├─ cssesc@^2.0.0
│  │  ├─ indexes-of@^1.0.1
│  │  └─ uniq@^1.0.1
│  └─ postcss@^7.0.2
├─ postcss-reduce-initial@4.0.3
│  ├─ browserslist@^4.0.0
│  ├─ caniuse-api@^3.0.0
│  ├─ has@^1.0.0
│  └─ postcss@^7.0.0
├─ postcss-reduce-transforms@4.0.2
│  ├─ cssnano-util-get-match@^4.0.0
│  ├─ has@^1.0.0
│  ├─ postcss-value-parser@^3.0.0
│  └─ postcss@^7.0.0
├─ postcss-replace-overflow-wrap@3.0.0
│  └─ postcss@^7.0.2
├─ postcss-safe-parser@4.0.2
│  └─ postcss@^7.0.26
├─ postcss-selector-matches@4.0.0
│  ├─ balanced-match@^1.0.0
│  └─ postcss@^7.0.2
├─ postcss-selector-not@4.0.1
│  ├─ balanced-match@^1.0.0
│  └─ postcss@^7.0.2
├─ postcss-selector-parser@6.0.4
│  ├─ cssesc@^3.0.0
│  ├─ indexes-of@^1.0.1
│  ├─ uniq@^1.0.1
│  └─ util-deprecate@^1.0.2
├─ postcss-svgo@4.0.2
│  ├─ is-svg@^3.0.0
│  ├─ postcss-value-parser@^3.0.0
│  ├─ postcss@^7.0.0
│  └─ svgo@^1.0.0
├─ postcss-unique-selectors@4.0.1
│  ├─ alphanum-sort@^1.0.0
│  ├─ postcss@^7.0.0
│  └─ uniqs@^2.0.0
├─ postcss-value-parser@3.3.1
├─ postcss-values-parser@2.0.1
│  ├─ flatten@^1.0.2
│  ├─ indexes-of@^1.0.1
│  └─ uniq@^1.0.1
├─ postcss@7.0.35
│  ├─ chalk@^2.4.2
│  ├─ source-map@^0.6.1
│  └─ supports-color@^6.1.0
├─ prepend-http@1.0.4
├─ prettier@1.19.1
├─ pretty-hrtime@1.0.3
├─ process-nextick-args@2.0.1
├─ process@0.11.10
├─ promise-inflight@1.0.1
├─ proxy-addr@2.0.6
│  ├─ forwarded@~0.1.2
│  └─ ipaddr.js@1.9.1
├─ prr@1.0.1
├─ pseudomap@1.0.2
├─ psl@1.8.0
├─ public-encrypt@4.0.3
│  ├─ bn.js@^4.1.0
│  ├─ browserify-rsa@^4.0.0
│  ├─ create-hash@^1.1.0
│  ├─ parse-asn1@^5.0.0
│  ├─ randombytes@^2.0.1
│  └─ safe-buffer@^5.1.2
├─ pump@3.0.0
│  ├─ end-of-stream@^1.1.0
│  └─ once@^1.3.1
├─ pumpify@1.5.1
│  ├─ duplexify@^3.6.0
│  ├─ inherits@^2.0.3
│  ├─ pump@^2.0.0
│  └─ pump@2.0.1
│     ├─ end-of-stream@^1.1.0
│     └─ once@^1.3.1
├─ punycode@2.1.1
├─ purgecss@3.1.3
│  ├─ commander@^6.0.0
│  ├─ commander@6.2.1
│  ├─ glob@^7.0.0
│  ├─ postcss-selector-parser@^6.0.2
│  ├─ postcss@^8.2.1
│  └─ postcss@8.2.8
│     ├─ colorette@^1.2.2
│     ├─ nanoid@^3.1.20
│     └─ source-map@^0.6.1
├─ q@1.5.1
├─ qs@6.7.0
├─ query-string@4.3.4
│  ├─ object-assign@^4.1.0
│  └─ strict-uri-encode@^1.0.0
├─ querystring-es3@0.2.1
├─ querystring@0.2.0
├─ querystringify@2.2.0
├─ randombytes@2.1.0
│  └─ safe-buffer@^5.1.0
├─ randomfill@1.0.4
│  ├─ randombytes@^2.0.5
│  └─ safe-buffer@^5.1.0
├─ range-parser@1.2.1
├─ raw-body@2.4.0
│  ├─ bytes@3.1.0
│  ├─ http-errors@1.7.2
│  ├─ iconv-lite@0.4.24
│  └─ unpipe@1.0.0
├─ read-cache@1.0.0
│  └─ pify@^2.3.0
├─ read-pkg-up@1.0.1
│  ├─ find-up@^1.0.0
│  ├─ find-up@1.1.2
│  │  ├─ path-exists@^2.0.0
│  │  └─ pinkie-promise@^2.0.0
│  ├─ path-exists@2.1.0
│  │  └─ pinkie-promise@^2.0.0
│  └─ read-pkg@^1.0.0
├─ read-pkg@1.1.0
│  ├─ load-json-file@^1.0.0
│  ├─ normalize-package-data@^2.3.2
│  ├─ path-type@^1.0.0
│  └─ path-type@1.1.0
│     ├─ graceful-fs@^4.1.2
│     ├─ pify@^2.0.0
│     └─ pinkie-promise@^2.0.0
├─ readable-stream@2.3.7
│  ├─ core-util-is@~1.0.0
│  ├─ inherits@~2.0.3
│  ├─ isarray@~1.0.0
│  ├─ process-nextick-args@~2.0.0
│  ├─ safe-buffer@~5.1.1
│  ├─ safe-buffer@5.1.2
│  ├─ string_decoder@~1.1.1
│  ├─ string_decoder@1.1.1
│  │  └─ safe-buffer@~5.1.0
│  └─ util-deprecate@~1.0.1
├─ readdirp@2.2.1
│  ├─ graceful-fs@^4.1.11
│  ├─ micromatch@^3.1.10
│  └─ readable-stream@^2.0.2
├─ redent@1.0.0
│  ├─ indent-string@^2.1.0
│  ├─ indent-string@2.1.0
│  │  └─ repeating@^2.0.0
│  └─ strip-indent@^1.0.1
├─ reduce-css-calc@2.1.8
│  ├─ css-unit-converter@^1.1.1
│  └─ postcss-value-parser@^3.3.0
├─ regenerate-unicode-properties@8.2.0
│  └─ regenerate@^1.4.0
├─ regenerate@1.4.2
├─ regenerator-runtime@0.13.7
├─ regenerator-transform@0.14.5
│  └─ @babel/runtime@^7.8.4
├─ regex-not@1.0.2
│  ├─ extend-shallow@^3.0.2
│  ├─ extend-shallow@3.0.2
│  │  ├─ assign-symbols@^1.0.0
│  │  └─ is-extendable@^1.0.1
│  ├─ is-extendable@1.0.1
│  │  └─ is-plain-object@^2.0.4
│  └─ safe-regex@^1.1.0
├─ regexp.prototype.flags@1.3.1
│  ├─ call-bind@^1.0.2
│  └─ define-properties@^1.1.3
├─ regexpu-core@4.7.1
│  ├─ regenerate-unicode-properties@^8.2.0
│  ├─ regenerate@^1.4.0
│  ├─ regjsgen@^0.5.1
│  ├─ regjsparser@^0.6.4
│  ├─ unicode-match-property-ecmascript@^1.0.4
│  └─ unicode-match-property-value-ecmascript@^1.2.0
├─ regjsgen@0.5.2
├─ regjsparser@0.6.7
│  ├─ jsesc@~0.5.0
│  └─ jsesc@0.5.0
├─ remove-trailing-separator@1.1.0
├─ repeat-element@1.1.3
├─ repeat-string@1.6.1
├─ repeating@2.0.1
│  └─ is-finite@^1.0.0
├─ request@2.88.2
│  ├─ aws-sign2@~0.7.0
│  ├─ aws4@^1.8.0
│  ├─ caseless@~0.12.0
│  ├─ combined-stream@~1.0.6
│  ├─ extend@~3.0.2
│  ├─ forever-agent@~0.6.1
│  ├─ form-data@~2.3.2
│  ├─ har-validator@~5.1.3
│  ├─ http-signature@~1.2.0
│  ├─ is-typedarray@~1.0.0
│  ├─ isstream@~0.1.2
│  ├─ json-stringify-safe@~5.0.1
│  ├─ mime-types@~2.1.19
│  ├─ oauth-sign@~0.9.0
│  ├─ performance-now@^2.1.0
│  ├─ qs@~6.5.2
│  ├─ qs@6.5.2
│  ├─ safe-buffer@^5.1.2
│  ├─ tough-cookie@~2.5.0
│  ├─ tunnel-agent@^0.6.0
│  └─ uuid@^3.3.2
├─ require-directory@2.1.1
├─ require-main-filename@2.0.0
├─ requires-port@1.0.0
├─ resolve-cwd@2.0.0
│  └─ resolve-from@^3.0.0
├─ resolve-dir@1.0.1
│  ├─ expand-tilde@^2.0.0
│  ├─ global-modules@^1.0.0
│  ├─ global-modules@1.0.0
│  │  ├─ global-prefix@^1.0.1
│  │  ├─ is-windows@^1.0.1
│  │  └─ resolve-dir@^1.0.0
│  └─ global-prefix@1.0.2
│     ├─ expand-tilde@^2.0.2
│     ├─ homedir-polyfill@^1.0.1
│     ├─ ini@^1.3.4
│     ├─ is-windows@^1.0.1
│     └─ which@^1.2.14
├─ resolve-from@3.0.0
├─ resolve-url@0.2.1
├─ resolve@1.20.0
│  ├─ is-core-module@^2.2.0
│  └─ path-parse@^1.0.6
├─ ret@0.1.15
├─ retry@0.12.0
├─ rgb-regex@1.0.1
├─ rgba-regex@1.0.0
├─ rimraf@2.7.1
│  └─ glob@^7.1.3
├─ ripemd160@2.0.2
│  ├─ hash-base@^3.0.0
│  └─ inherits@^2.0.1
├─ run-queue@1.0.3
│  └─ aproba@^1.1.1
├─ safe-buffer@5.2.1
├─ safe-regex@1.1.0
│  └─ ret@~0.1.10
├─ safer-buffer@2.1.2
├─ sass-graph@2.2.5
│  ├─ glob@^7.0.0
│  ├─ lodash@^4.0.0
│  ├─ scss-tokenizer@^0.2.3
│  └─ yargs@^13.3.2
├─ sass-loader@8.0.2
│  ├─ clone-deep@^4.0.1
│  ├─ loader-utils@^1.2.3
│  ├─ neo-async@^2.6.1
│  ├─ schema-utils@^2.6.1
│  ├─ schema-utils@2.7.1
│  │  ├─ @types/json-schema@^7.0.5
│  │  ├─ ajv-keywords@^3.5.2
│  │  └─ ajv@^6.12.4
│  └─ semver@^6.3.0
├─ sax@1.2.4
├─ schema-utils@1.0.0
│  ├─ ajv-errors@^1.0.0
│  ├─ ajv-keywords@^3.1.0
│  └─ ajv@^6.1.0
├─ scss-tokenizer@0.2.3
│  ├─ js-base64@^2.1.8
│  ├─ source-map@^0.4.2
│  └─ source-map@0.4.4
│     └─ amdefine@>=0.0.4
├─ select-hose@2.0.0
├─ selfsigned@1.10.8
│  └─ node-forge@^0.10.0
├─ semver@6.3.0
├─ send@0.17.1
│  ├─ debug@2.6.9
│  ├─ depd@~1.1.2
│  ├─ destroy@~1.0.4
│  ├─ encodeurl@~1.0.2
│  ├─ escape-html@~1.0.3
│  ├─ etag@~1.8.1
│  ├─ fresh@0.5.2
│  ├─ http-errors@~1.7.2
│  ├─ http-errors@1.7.3
│  │  ├─ depd@~1.1.2
│  │  ├─ inherits@2.0.4
│  │  ├─ setprototypeof@1.1.1
│  │  ├─ statuses@>= 1.5.0 < 2
│  │  └─ toidentifier@1.0.0
│  ├─ mime@1.6.0
│  ├─ mime@1.6.0
│  ├─ ms@2.1.1
│  ├─ ms@2.1.1
│  ├─ on-finished@~2.3.0
│  ├─ range-parser@~1.2.1
│  └─ statuses@~1.5.0
├─ serialize-javascript@4.0.0
│  └─ randombytes@^2.1.0
├─ serve-index@1.9.1
│  ├─ accepts@~1.3.4
│  ├─ batch@0.6.1
│  ├─ debug@2.6.9
│  ├─ escape-html@~1.0.3
│  ├─ http-errors@~1.6.2
│  ├─ http-errors@1.6.3
│  │  ├─ depd@~1.1.2
│  │  ├─ inherits@2.0.3
│  │  ├─ setprototypeof@1.1.0
│  │  └─ statuses@>= 1.4.0 < 2
│  ├─ inherits@2.0.3
│  ├─ mime-types@~2.1.17
│  ├─ parseurl@~1.3.2
│  └─ setprototypeof@1.1.0
├─ serve-static@1.14.1
│  ├─ encodeurl@~1.0.2
│  ├─ escape-html@~1.0.3
│  ├─ parseurl@~1.3.3
│  └─ send@0.17.1
├─ set-blocking@2.0.0
├─ set-value@2.0.1
│  ├─ extend-shallow@^2.0.1
│  ├─ is-extendable@^0.1.1
│  ├─ is-plain-object@^2.0.3
│  └─ split-string@^3.0.1
├─ setimmediate@1.0.5
├─ setprototypeof@1.1.1
├─ sha.js@2.4.11
│  ├─ inherits@^2.0.1
│  └─ safe-buffer@^5.0.1
├─ shallow-clone@3.0.1
│  └─ kind-of@^6.0.2
├─ shebang-command@1.2.0
│  └─ shebang-regex@^1.0.0
├─ shebang-regex@1.0.0
├─ signal-exit@3.0.3
├─ simple-swizzle@0.2.2
│  ├─ is-arrayish@^0.3.1
│  └─ is-arrayish@0.3.2
├─ snapdragon-node@2.1.1
│  ├─ define-property@^1.0.0
│  ├─ define-property@1.0.0
│  │  └─ is-descriptor@^1.0.0
│  ├─ isobject@^3.0.0
│  └─ snapdragon-util@^3.0.1
├─ snapdragon-util@3.0.1
│  ├─ kind-of@^3.2.0
│  └─ kind-of@3.2.2
│     └─ is-buffer@^1.1.5
├─ snapdragon@0.8.2
│  ├─ base@^0.11.1
│  ├─ debug@^2.2.0
│  ├─ define-property@^0.2.5
│  ├─ extend-shallow@^2.0.1
│  ├─ map-cache@^0.2.2
│  ├─ source-map-resolve@^0.5.0
│  ├─ source-map@^0.5.6
│  ├─ source-map@0.5.7
│  └─ use@^3.1.0
├─ sockjs-client@1.5.0
│  ├─ debug@^3.2.6
│  ├─ debug@3.2.7
│  │  └─ ms@^2.1.1
│  ├─ eventsource@^1.0.7
│  ├─ faye-websocket@^0.11.3
│  ├─ inherits@^2.0.4
│  ├─ json3@^3.3.3
│  ├─ ms@2.1.3
│  └─ url-parse@^1.4.7
├─ sockjs@0.3.21
│  ├─ faye-websocket@^0.11.3
│  ├─ uuid@^3.4.0
│  └─ websocket-driver@^0.7.4
├─ sort-keys@1.1.2
│  └─ is-plain-obj@^1.0.0
├─ source-list-map@2.0.1
├─ source-map-resolve@0.5.3
│  ├─ 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
├─ source-map-support@0.5.19
│  ├─ buffer-from@^1.0.0
│  └─ source-map@^0.6.0
├─ source-map-url@0.4.1
├─ source-map@0.6.1
├─ spark-md5@3.0.1
├─ spdx-correct@3.1.1
│  ├─ spdx-expression-parse@^3.0.0
│  └─ spdx-license-ids@^3.0.0
├─ spdx-exceptions@2.3.0
├─ spdx-expression-parse@3.0.1
│  ├─ spdx-exceptions@^2.1.0
│  └─ spdx-license-ids@^3.0.0
├─ spdx-license-ids@3.0.7
├─ spdy-transport@3.0.0
│  ├─ debug@^4.1.0
│  ├─ debug@4.3.1
│  │  └─ ms@2.1.2
│  ├─ detect-node@^2.0.4
│  ├─ hpack.js@^2.1.6
│  ├─ ms@2.1.2
│  ├─ obuf@^1.1.2
│  ├─ readable-stream@^3.0.6
│  ├─ readable-stream@3.6.0
│  │  ├─ inherits@^2.0.3
│  │  ├─ string_decoder@^1.1.1
│  │  └─ util-deprecate@^1.0.1
│  └─ wbuf@^1.7.3
├─ spdy@4.0.2
│  ├─ debug@^4.1.0
│  ├─ debug@4.3.1
│  │  └─ ms@2.1.2
│  ├─ handle-thing@^2.0.0
│  ├─ http-deceiver@^1.2.7
│  ├─ ms@2.1.2
│  ├─ select-hose@^2.0.0
│  └─ spdy-transport@^3.0.0
├─ split-string@3.1.0
│  ├─ extend-shallow@^3.0.0
│  ├─ extend-shallow@3.0.2
│  │  ├─ assign-symbols@^1.0.0
│  │  └─ is-extendable@^1.0.1
│  └─ is-extendable@1.0.1
│     └─ is-plain-object@^2.0.4
├─ sprintf-js@1.0.3
├─ sshpk@1.16.1
│  ├─ asn1@~0.2.3
│  ├─ assert-plus@^1.0.0
│  ├─ bcrypt-pbkdf@^1.0.0
│  ├─ dashdash@^1.12.0
│  ├─ ecc-jsbn@~0.1.1
│  ├─ getpass@^0.1.1
│  ├─ jsbn@~0.1.0
│  ├─ safer-buffer@^2.0.2
│  └─ tweetnacl@~0.14.0
├─ ssri@8.0.1
│  └─ minipass@^3.1.1
├─ stable@0.1.8
├─ static-extend@0.1.2
│  ├─ define-property@^0.2.5
│  └─ object-copy@^0.1.0
├─ statuses@1.5.0
├─ stdout-stream@1.4.1
│  └─ readable-stream@^2.0.1
├─ stream-browserify@2.0.2
│  ├─ inherits@~2.0.1
│  └─ readable-stream@^2.0.2
├─ stream-each@1.2.3
│  ├─ end-of-stream@^1.1.0
│  └─ stream-shift@^1.0.0
├─ stream-http@2.8.3
│  ├─ builtin-status-codes@^3.0.0
│  ├─ inherits@^2.0.1
│  ├─ readable-stream@^2.3.6
│  ├─ to-arraybuffer@^1.0.0
│  └─ xtend@^4.0.0
├─ stream-shift@1.0.1
├─ strict-uri-encode@1.1.0
├─ string_decoder@1.3.0
│  └─ safe-buffer@~5.2.0
├─ string-width@3.1.0
│  ├─ ansi-regex@4.1.0
│  ├─ emoji-regex@^7.0.1
│  ├─ is-fullwidth-code-point@^2.0.0
│  ├─ strip-ansi@^5.1.0
│  └─ strip-ansi@5.2.0
│     └─ ansi-regex@^4.1.0
├─ string.prototype.trimend@1.0.4
│  ├─ call-bind@^1.0.2
│  └─ define-properties@^1.1.3
├─ string.prototype.trimstart@1.0.4
│  ├─ call-bind@^1.0.2
│  └─ define-properties@^1.1.3
├─ strip-ansi@3.0.1
│  └─ ansi-regex@^2.0.0
├─ strip-bom@2.0.0
│  └─ is-utf8@^0.2.0
├─ strip-eof@1.0.0
├─ strip-indent@1.0.1
│  └─ get-stdin@^4.0.1
├─ style-loader@1.3.0
│  ├─ loader-utils@^2.0.0
│  ├─ loader-utils@2.0.0
│  │  ├─ big.js@^5.2.2
│  │  ├─ emojis-list@^3.0.0
│  │  └─ json5@^2.1.2
│  ├─ schema-utils@^2.7.0
│  └─ schema-utils@2.7.1
│     ├─ @types/json-schema@^7.0.5
│     ├─ ajv-keywords@^3.5.2
│     └─ ajv@^6.12.4
├─ stylehacks@4.0.3
│  ├─ browserslist@^4.0.0
│  ├─ postcss-selector-parser@^3.0.0
│  ├─ postcss-selector-parser@3.1.2
│  │  ├─ dot-prop@^5.2.0
│  │  ├─ indexes-of@^1.0.1
│  │  └─ uniq@^1.0.1
│  └─ postcss@^7.0.0
├─ supports-color@6.1.0
│  └─ has-flag@^3.0.0
├─ svgo@1.3.2
│  ├─ chalk@^2.4.1
│  ├─ coa@^2.0.2
│  ├─ css-select-base-adapter@^0.1.1
│  ├─ css-select@^2.0.0
│  ├─ css-tree@1.0.0-alpha.37
│  ├─ csso@^4.0.2
│  ├─ js-yaml@^3.13.1
│  ├─ mkdirp@~0.5.1
│  ├─ object.values@^1.1.0
│  ├─ sax@~1.2.4
│  ├─ stable@^0.1.8
│  ├─ unquote@~1.1.1
│  └─ util.promisify@~1.0.0
├─ tailwindcss@2.0.3
│  ├─ @fullhuman/postcss-purgecss@^3.1.3
│  ├─ ansi-styles@4.3.0
│  │  └─ color-convert@^2.0.1
│  ├─ autoprefixer@^9
│  ├─ bytes@^3.0.0
│  ├─ chalk@^4.1.0
│  ├─ chalk@4.1.0
│  │  ├─ ansi-styles@^4.1.0
│  │  └─ supports-color@^7.1.0
│  ├─ color-convert@2.0.1
│  │  └─ color-name@~1.1.4
│  ├─ color@^3.1.3
│  ├─ detective@^5.2.0
│  ├─ didyoumean@^1.2.1
│  ├─ fs-extra@^9.1.0
│  ├─ has-flag@4.0.0
│  ├─ html-tags@^3.1.0
│  ├─ lodash@^4.17.20
│  ├─ modern-normalize@^1.0.0
│  ├─ node-emoji@^1.8.1
│  ├─ object-hash@^2.1.1
│  ├─ postcss-functions@^3
│  ├─ postcss-js@^2
│  ├─ postcss-nested@^4
│  ├─ postcss-selector-parser@^6.0.4
│  ├─ postcss-value-parser@^4.1.0
│  ├─ postcss-value-parser@4.1.0
│  ├─ postcss@^7
│  ├─ pretty-hrtime@^1.0.3
│  ├─ reduce-css-calc@^2.1.8
│  ├─ resolve@^1.19.0
│  └─ supports-color@7.2.0
│     └─ has-flag@^4.0.0
├─ tapable@1.1.3
├─ tar@6.1.0
│  ├─ chownr@^2.0.0
│  ├─ fs-minipass@^2.0.0
│  ├─ minipass@^3.0.0
│  ├─ minizlib@^2.1.1
│  ├─ mkdirp@^1.0.3
│  ├─ mkdirp@1.0.4
│  └─ yallist@^4.0.0
├─ terser-webpack-plugin@4.2.3
│  ├─ cacache@^15.0.5
│  ├─ find-cache-dir@^3.3.1
│  ├─ jest-worker@^26.5.0
│  ├─ p-limit@^3.0.2
│  ├─ p-limit@3.1.0
│  │  └─ yocto-queue@^0.1.0
│  ├─ schema-utils@^3.0.0
│  ├─ schema-utils@3.0.0
│  │  ├─ @types/json-schema@^7.0.6
│  │  ├─ ajv-keywords@^3.5.2
│  │  └─ ajv@^6.12.5
│  ├─ serialize-javascript@^5.0.1
│  ├─ serialize-javascript@5.0.1
│  │  └─ randombytes@^2.1.0
│  ├─ source-map@^0.6.1
│  ├─ terser@^5.3.4
│  └─ webpack-sources@^1.4.3
├─ terser@5.6.0
│  ├─ commander@^2.20.0
│  ├─ source-map-support@~0.5.19
│  ├─ source-map@~0.7.2
│  └─ source-map@0.7.3
├─ through2@2.0.5
│  ├─ readable-stream@~2.3.6
│  └─ xtend@~4.0.1
├─ thunky@1.1.0
├─ timers-browserify@2.0.12
│  └─ setimmediate@^1.0.4
├─ timsort@0.3.0
├─ to-arraybuffer@1.0.1
├─ to-fast-properties@2.0.0
├─ to-object-path@0.3.0
│  ├─ kind-of@^3.0.2
│  └─ kind-of@3.2.2
│     └─ is-buffer@^1.1.5
├─ to-regex-range@2.1.1
│  ├─ is-number@^3.0.0
│  └─ repeat-string@^1.6.1
├─ to-regex@3.0.2
│  ├─ define-property@^2.0.2
│  ├─ define-property@2.0.2
│  │  ├─ is-descriptor@^1.0.2
│  │  └─ isobject@^3.0.1
│  ├─ extend-shallow@^3.0.2
│  ├─ extend-shallow@3.0.2
│  │  ├─ assign-symbols@^1.0.0
│  │  └─ is-extendable@^1.0.1
│  ├─ is-extendable@1.0.1
│  │  └─ is-plain-object@^2.0.4
│  ├─ regex-not@^1.0.2
│  └─ safe-regex@^1.1.0
├─ toidentifier@1.0.0
├─ tough-cookie@2.5.0
│  ├─ psl@^1.1.28
│  └─ punycode@^2.1.1
├─ trim-newlines@1.0.0
├─ true-case-path@1.0.3
│  └─ glob@^7.1.2
├─ ts-pnp@1.2.0
├─ tslib@1.14.1
├─ tty-browserify@0.0.0
├─ tunnel-agent@0.6.0
│  └─ safe-buffer@^5.0.1
├─ turbolinks@5.2.0
├─ tweetnacl@0.14.5
├─ type-is@1.6.18
│  ├─ media-typer@0.3.0
│  └─ mime-types@~2.1.24
├─ typedarray@0.0.6
├─ unbox-primitive@1.0.0
│  ├─ function-bind@^1.1.1
│  ├─ has-bigints@^1.0.0
│  ├─ has-symbols@^1.0.0
│  └─ which-boxed-primitive@^1.0.1
├─ unicode-canonical-property-names-ecmascript@1.0.4
├─ unicode-match-property-ecmascript@1.0.4
│  ├─ unicode-canonical-property-names-ecmascript@^1.0.4
│  └─ unicode-property-aliases-ecmascript@^1.0.4
├─ unicode-match-property-value-ecmascript@1.2.0
├─ unicode-property-aliases-ecmascript@1.1.0
├─ union-value@1.0.1
│  ├─ arr-union@^3.1.0
│  ├─ get-value@^2.0.6
│  ├─ is-extendable@^0.1.1
│  └─ set-value@^2.0.1
├─ uniq@1.0.1
├─ uniqs@2.0.0
├─ unique-filename@1.1.1
│  └─ unique-slug@^2.0.0
├─ unique-slug@2.0.2
│  └─ imurmurhash@^0.1.4
├─ universalify@2.0.0
├─ unpipe@1.0.0
├─ unquote@1.1.1
├─ unset-value@1.0.0
│  ├─ has-value@^0.3.1
│  ├─ has-value@0.3.1
│  │  ├─ get-value@^2.0.3
│  │  ├─ has-values@^0.1.4
│  │  ├─ isobject@^2.0.0
│  │  └─ isobject@2.1.0
│  │     └─ isarray@1.0.0
│  ├─ has-values@0.1.4
│  └─ isobject@^3.0.0
├─ upath@1.2.0
├─ uri-js@4.4.1
│  └─ punycode@^2.1.0
├─ urix@0.1.0
├─ url-parse@1.5.1
│  ├─ querystringify@^2.1.1
│  └─ requires-port@^1.0.0
├─ url@0.11.0
│  ├─ punycode@1.3.2
│  ├─ punycode@1.3.2
│  └─ querystring@0.2.0
├─ use@3.1.1
├─ util-deprecate@1.0.2
├─ util.promisify@1.0.1
│  ├─ define-properties@^1.1.3
│  ├─ es-abstract@^1.17.2
│  ├─ has-symbols@^1.0.1
│  └─ object.getownpropertydescriptors@^2.1.0
├─ util@0.11.1
│  ├─ inherits@2.0.3
│  └─ inherits@2.0.3
├─ utils-merge@1.0.1
├─ uuid@3.4.0
├─ v8-compile-cache@2.3.0
├─ validate-npm-package-license@3.0.4
│  ├─ spdx-correct@^3.0.0
│  └─ spdx-expression-parse@^3.0.0
├─ vary@1.1.2
├─ vendors@1.0.4
├─ verror@1.10.0
│  ├─ assert-plus@^1.0.0
│  ├─ core-util-is@1.0.2
│  ├─ extsprintf@^1.2.0
│  └─ extsprintf@1.4.0
├─ vm-browserify@1.1.2
├─ vue-hot-reload-api@2.3.4
├─ vue-loader@15.9.6
│  ├─ @vue/component-compiler-utils@^3.1.0
│  ├─ hash-sum@^1.0.2
│  ├─ loader-utils@^1.1.0
│  ├─ vue-hot-reload-api@^2.3.0
│  └─ vue-style-loader@^4.1.0
├─ vue-style-loader@4.1.3
│  ├─ hash-sum@^1.0.2
│  └─ loader-utils@^1.0.2
├─ vue-tailwind@2.1.3
│  ├─ body-scroll-lock@^3.1.5
│  ├─ lodash.clonedeep@^4.5.0
│  ├─ lodash.get@^4.4.2
│  ├─ lodash.intersection@^4.4.0
│  ├─ lodash.isequal@^4.5.0
│  ├─ lodash.kebabcase@^4.1.1
│  ├─ lodash.map@^4.6.0
│  ├─ lodash.mapvalues@^4.6.0
│  ├─ lodash.merge@^4.6.2
│  ├─ lodash.pick@^4.4.0
│  ├─ lodash.range@^3.2.0
│  ├─ postcss@^7
│  ├─ tailwindcss@npm:@tailwindcss/postcss7-compat
│  └─ vue@^2.6
├─ vue-template-compiler@2.6.12
│  ├─ de-indent@^1.0.2
│  └─ he@^1.1.0
├─ vue-template-es2015-compiler@1.9.1
├─ vue-turbolinks@2.2.1
├─ vue@2.6.12
├─ watchpack-chokidar2@2.0.1
│  └─ chokidar@^2.1.8
├─ watchpack@1.7.5
│  ├─ anymatch@3.1.1
│  │  ├─ normalize-path@^3.0.0
│  │  └─ picomatch@^2.0.4
│  ├─ binary-extensions@2.2.0
│  ├─ braces@3.0.2
│  │  └─ fill-range@^7.0.1
│  ├─ chokidar@^3.4.1
│  ├─ chokidar@3.5.1
│  │  ├─ anymatch@~3.1.1
│  │  ├─ braces@~3.0.2
│  │  ├─ fsevents@~2.3.1
│  │  ├─ glob-parent@~5.1.0
│  │  ├─ is-binary-path@~2.1.0
│  │  ├─ is-glob@~4.0.1
│  │  ├─ normalize-path@~3.0.0
│  │  └─ readdirp@~3.5.0
│  ├─ fill-range@7.0.1
│  │  └─ to-regex-range@^5.0.1
│  ├─ fsevents@2.3.2
│  ├─ glob-parent@5.1.2
│  │  └─ is-glob@^4.0.1
│  ├─ graceful-fs@^4.1.2
│  ├─ is-binary-path@2.1.0
│  │  └─ binary-extensions@^2.0.0
│  ├─ is-number@7.0.0
│  ├─ neo-async@^2.5.0
│  ├─ readdirp@3.5.0
│  │  └─ picomatch@^2.2.1
│  ├─ to-regex-range@5.0.1
│  │  └─ is-number@^7.0.0
│  └─ watchpack-chokidar2@^2.0.1
├─ wbuf@1.7.3
│  └─ minimalistic-assert@^1.0.0
├─ webpack-assets-manifest@3.1.1
│  ├─ chalk@^2.0
│  ├─ lodash.get@^4.0
│  ├─ lodash.has@^4.0
│  ├─ mkdirp@^0.5
│  ├─ schema-utils@^1.0.0
│  ├─ tapable@^1.0.0
│  └─ webpack-sources@^1.0.0
├─ webpack-cli@3.3.12
│  ├─ chalk@^2.4.2
│  ├─ cross-spawn@^6.0.5
│  ├─ enhanced-resolve@^4.1.1
│  ├─ findup-sync@^3.0.0
│  ├─ global-modules@^2.0.0
│  ├─ import-local@^2.0.0
│  ├─ interpret@^1.4.0
│  ├─ loader-utils@^1.4.0
│  ├─ supports-color@^6.1.0
│  ├─ v8-compile-cache@^2.1.1
│  └─ yargs@^13.3.2
├─ webpack-dev-middleware@3.7.3
│  ├─ memory-fs@^0.4.1
│  ├─ mime@^2.4.4
│  ├─ mkdirp@^0.5.1
│  ├─ range-parser@^1.2.1
│  └─ webpack-log@^2.0.0
├─ webpack-dev-server@3.11.2
│  ├─ ansi-html@0.0.7
│  ├─ bonjour@^3.5.0
│  ├─ chokidar@^2.1.8
│  ├─ compression@^1.7.4
│  ├─ connect-history-api-fallback@^1.6.0
│  ├─ debug@^4.1.1
│  ├─ debug@4.3.1
│  │  └─ ms@2.1.2
│  ├─ del@^4.1.1
│  ├─ express@^4.17.1
│  ├─ html-entities@^1.3.1
│  ├─ http-proxy-middleware@0.19.1
│  ├─ import-local@^2.0.0
│  ├─ internal-ip@^4.3.0
│  ├─ ip@^1.1.5
│  ├─ is-absolute-url@^3.0.3
│  ├─ killable@^1.0.1
│  ├─ loglevel@^1.6.8
│  ├─ ms@2.1.2
│  ├─ opn@^5.5.0
│  ├─ p-retry@^3.0.1
│  ├─ portfinder@^1.0.26
│  ├─ schema-utils@^1.0.0
│  ├─ selfsigned@^1.10.8
│  ├─ semver@^6.3.0
│  ├─ serve-index@^1.9.1
│  ├─ sockjs-client@^1.5.0
│  ├─ sockjs@^0.3.21
│  ├─ spdy@^4.0.2
│  ├─ strip-ansi@^3.0.1
│  ├─ supports-color@^6.1.0
│  ├─ url@^0.11.0
│  ├─ webpack-dev-middleware@^3.7.2
│  ├─ webpack-log@^2.0.0
│  ├─ ws@^6.2.1
│  └─ yargs@^13.3.2
├─ webpack-log@2.0.0
│  ├─ ansi-colors@^3.0.0
│  └─ uuid@^3.3.2
├─ webpack-sources@1.4.3
│  ├─ source-list-map@^2.0.0
│  └─ source-map@~0.6.1
├─ webpack@4.46.0
│  ├─ @webassemblyjs/ast@1.9.0
│  ├─ @webassemblyjs/helper-module-context@1.9.0
│  ├─ @webassemblyjs/wasm-edit@1.9.0
│  ├─ @webassemblyjs/wasm-parser@1.9.0
│  ├─ acorn@^6.4.1
│  ├─ ajv-keywords@^3.4.1
│  ├─ ajv@^6.10.2
│  ├─ cacache@12.0.4
│  │  ├─ bluebird@^3.5.5
│  │  ├─ chownr@^1.1.1
│  │  ├─ figgy-pudding@^3.5.1
│  │  ├─ glob@^7.1.4
│  │  ├─ graceful-fs@^4.1.15
│  │  ├─ infer-owner@^1.0.3
│  │  ├─ lru-cache@^5.1.1
│  │  ├─ mississippi@^3.0.0
│  │  ├─ mkdirp@^0.5.1
│  │  ├─ move-concurrently@^1.0.1
│  │  ├─ promise-inflight@^1.0.1
│  │  ├─ rimraf@^2.6.3
│  │  ├─ ssri@^6.0.1
│  │  ├─ unique-filename@^1.1.1
│  │  └─ y18n@^4.0.0
│  ├─ chownr@1.1.4
│  ├─ chrome-trace-event@^1.0.2
│  ├─ enhanced-resolve@^4.5.0
│  ├─ eslint-scope@^4.0.3
│  ├─ find-cache-dir@2.1.0
│  │  ├─ commondir@^1.0.1
│  │  ├─ make-dir@^2.0.0
│  │  └─ pkg-dir@^3.0.0
│  ├─ json-parse-better-errors@^1.0.2
│  ├─ loader-runner@^2.4.0
│  ├─ loader-utils@^1.2.3
│  ├─ lru-cache@5.1.1
│  │  └─ yallist@^3.0.2
│  ├─ make-dir@2.1.0
│  │  ├─ pify@^4.0.1
│  │  └─ semver@^5.6.0
│  ├─ memory-fs@^0.4.1
│  ├─ micromatch@^3.1.10
│  ├─ mkdirp@^0.5.3
│  ├─ neo-async@^2.6.1
│  ├─ node-libs-browser@^2.2.1
│  ├─ pify@4.0.1
│  ├─ schema-utils@^1.0.0
│  ├─ semver@5.7.1
│  ├─ ssri@6.0.1
│  │  └─ figgy-pudding@^3.5.1
│  ├─ tapable@^1.1.3
│  ├─ terser-webpack-plugin@^1.4.3
│  ├─ terser-webpack-plugin@1.4.5
│  │  ├─ cacache@^12.0.2
│  │  ├─ find-cache-dir@^2.1.0
│  │  ├─ is-wsl@^1.1.0
│  │  ├─ schema-utils@^1.0.0
│  │  ├─ serialize-javascript@^4.0.0
│  │  ├─ source-map@^0.6.1
│  │  ├─ terser@^4.1.2
│  │  ├─ webpack-sources@^1.4.0
│  │  └─ worker-farm@^1.7.0
│  ├─ terser@4.8.0
│  │  ├─ commander@^2.20.0
│  │  ├─ source-map-support@~0.5.12
│  │  └─ source-map@~0.6.1
│  ├─ watchpack@^1.7.4
│  ├─ webpack-sources@^1.4.1
│  └─ yallist@3.1.1
├─ websocket-driver@0.7.4
│  ├─ http-parser-js@>=0.5.1
│  ├─ safe-buffer@>=5.1.0
│  └─ websocket-extensions@>=0.1.1
├─ websocket-extensions@0.1.4
├─ which-boxed-primitive@1.0.2
│  ├─ is-bigint@^1.0.1
│  ├─ is-boolean-object@^1.1.0
│  ├─ is-number-object@^1.0.4
│  ├─ is-string@^1.0.5
│  └─ is-symbol@^1.0.3
├─ which-module@2.0.0
├─ which@1.3.1
│  └─ isexe@^2.0.0
├─ wide-align@1.1.3
│  ├─ ansi-regex@3.0.0
│  ├─ string-width@^1.0.2 || 2
│  ├─ string-width@2.1.1
│  │  ├─ is-fullwidth-code-point@^2.0.0
│  │  └─ strip-ansi@^4.0.0
│  └─ strip-ansi@4.0.0
│     └─ ansi-regex@^3.0.0
├─ worker-farm@1.7.0
│  └─ errno@~0.1.7
├─ wrap-ansi@5.1.0
│  ├─ ansi-regex@4.1.0
│  ├─ ansi-styles@^3.2.0
│  ├─ string-width@^3.0.0
│  ├─ strip-ansi@^5.0.0
│  └─ strip-ansi@5.2.0
│     └─ ansi-regex@^4.1.0
├─ wrappy@1.0.2
├─ ws@6.2.1
│  └─ async-limiter@~1.0.0
├─ xtend@4.0.2
├─ y18n@4.0.1
├─ yallist@4.0.0
├─ yaml@1.10.0
├─ yargs-parser@13.1.2
│  ├─ camelcase@^5.0.0
│  └─ decamelize@^1.2.0
├─ yargs@13.3.2
│  ├─ cliui@^5.0.0
│  ├─ find-up@^3.0.0
│  ├─ get-caller-file@^2.0.1
│  ├─ require-directory@^2.1.1
│  ├─ require-main-filename@^2.0.0
│  ├─ set-blocking@^2.0.0
│  ├─ string-width@^3.0.0
│  ├─ which-module@^2.0.0
│  ├─ y18n@^4.0.0
│  └─ yargs-parser@^13.1.2
└─ yocto-queue@0.1.0
Done in 0.64s.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment