Skip to content

Instantly share code, notes, and snippets.

@wdiechmann
Last active March 10, 2021 15:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wdiechmann/c179eb88bb4c769b89719215bcda2cd1 to your computer and use it in GitHub Desktop.
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