NativeScript / nativescript-cli

Command-line interface for building NativeScript apps
https://www.npmjs.com/package/nativescript
Apache License 2.0
1.04k stars 196 forks source link

App doesn't build after ns clean #5513

Open JohanBeumer opened 3 years ago

JohanBeumer commented 3 years ago

Environment

  "dependencies": {
    "@angular/animations": "~11.2.7",
    "@angular/common": "~11.2.7",
    "@angular/compiler": "~11.2.7",
    "@angular/core": "~11.2.7",
    "@angular/forms": "~11.2.7",
    "@angular/platform-browser": "~11.2.7",
    "@angular/platform-browser-dynamic": "~11.2.7",
    "@angular/router": "~11.2.7",
    "@nativescript/angular": "~11.8.0",
    "@nativescript/core": "~8.0.0",
    "@nativescript/theme": "~3.0.1",
    "reflect-metadata": "~0.1.13",
    "rxjs": "^6.6.7",
    "zone.js": "~0.11.4"
  },
  "devDependencies": {
    "@angular/compiler-cli": "~11.2.7",
    "@nativescript/android": "8.0.0",
    "@nativescript/ios": "8.0.0",
    "@nativescript/webpack": "5.0.0-beta.2",
    "@ngtools/webpack": "~11.2.6",
    "typescript": "~4.0.0"
  }

Describe the bug After cleaning the project with ns clean and starting the app again, webpack aborts with the message :

ns debug ios
Searching for devices...
Copying template files...
Platform ios successfully added. v8.0.0
Preparing project...
Compiling @angular/core : module as esm2015
Compiling @angular/animations : module as esm2015
Compiling @angular/animations/browser : module as esm2015
Compiling @angular/common : module as esm2015
Compiling @angular/platform-browser : module as esm2015
Compiling @angular/router : module as esm2015
Compiling @angular/forms : module as esm2015
Compiling @angular/platform-browser/animations : module as esm2015
Compiling @angular/common/http : module as esm2015
Compiling @nativescript/angular : module as esm2015
webpack is watching the files...
./foo/node_modules/@nativescript/webpack/node_modules/webpack/lib/NormalModuleFactory.js:703
                throw new Error(
                      ^
Error: NormalModuleFactory.beforeResolve (angular-compiler) is no longer a waterfall hook, but a bailing hook instead. Do not return the passed object, but modify it instead. Returning false will ignore the request and results in no module created.
    at ./foo/node_modules/@nativescript/webpack/node_modules/webpack/lib/NormalModuleFactory.js:703:11
    at eval (eval at create (./foo/node_modules/tapable/lib/HookCodeFactory.js:33:10), <anonymous>:14:1)
Executing webpack failed with exit code 1.

To Reproduce

  1. ns create foo --template @nativescript/template-blank-ng
  2. cd foo
  3. ns debug ios
  4. ctrl-c
  5. ns clean
  6. npm i
  7. ns debug ios

The same goes for Android

Expected behavior The app starts as expected

gyan-nsf commented 3 years ago

same here

janoshrubos commented 3 years ago

i've tried to reproduce the issue, but it works well for me on android and ios too.

there is a newer version @nativescript/webpack (5.0.0-beta.5) available in the most recently published @nativescript/template-blank-ng.

i hope that solves your problem!

JohanBeumer commented 3 years ago

Thanks for the suggestion @janoshrubos. I created a new app with the latest template, but unfortunately it gives me the same error. The template uses "@nativescript/webpack": "beta" which is @nativescript/webpack@5.0.0-beta.6 at the moment I think.

Some system information : npm -v : 7.7.6 node -v : v15.11.0 ns info : ✔ Getting NativeScript components versions information... ✔ Component nativescript has 8.0.1 version and is up to date. ✔ Component @nativescript/core has 8.0.1 version and is up to date. ✖ Component @nativescript/ios is not installed. ✔ Component @nativescript/android has 8.0.0 version and is up to date.

I first tried to run the app on Android but that fails with the error stated in the bug description. If I then try to run the app for iOS I get the following error :

ns run ios    
Searching for devices...
Copying template files...
Platform ios successfully added. v8.0.0
Preparing project...
Error: Cannot find module 'babel-register'
Require stack:
- ./foo/node_modules/dotenv-webpack/index.js
- ./foo/node_modules/@nativescript/webpack/dist/helpers/dotEnv.js
- ./foo/node_modules/@nativescript/webpack/dist/configuration/base.js
- ./foo/node_modules/@nativescript/webpack/dist/configuration/index.js
- ./foo/node_modules/@nativescript/webpack/dist/index.js
- ./foo/webpack.config.js
- ./foo/node_modules/@nativescript/webpack/dist/bin/index.js
    at Function.Module._resolveFilename (node:internal/modules/cjs/loader:924:15)
    at Function.Module._load (node:internal/modules/cjs/loader:769:27)
    at Module.require (node:internal/modules/cjs/loader:996:19)
    at require (node:internal/modules/cjs/helpers:92:18)
    at Object.<anonymous> (./foo/node_modules/dotenv-webpack/index.js:8:5)
    at Module._compile (node:internal/modules/cjs/loader:1092:14)
    at Object.Module._extensions..js (node:internal/modules/cjs/loader:1121:10)
    at Module.load (node:internal/modules/cjs/loader:972:32)
    at Function.Module._load (node:internal/modules/cjs/loader:813:14)
    at Module.require (node:internal/modules/cjs/loader:996:19) {
  code: 'MODULE_NOT_FOUND',
  requireStack: [
    './foo/node_modules/dotenv-webpack/index.js',
    './foo/node_modules/@nativescript/webpack/dist/helpers/dotEnv.js',
    './foo/node_modules/@nativescript/webpack/dist/configuration/base.js',
    './foo/node_modules/@nativescript/webpack/dist/configuration/index.js',
    './foo/node_modules/@nativescript/webpack/dist/index.js',
    './foo/webpack.config.js',
    './foo/node_modules/@nativescript/webpack/dist/bin/index.js'
  ]
}
No configuration!
Executing webpack failed with exit code 0.

It says it can't find babel-register. Is that something that gets installed/should be getting installed under the hood? It is not used in the template app.

@rigor789 is there more info you would like to be able to say something about the error I'm getting?

rigor789 commented 3 years ago

@JohanBeumer it's a transitive dependency of (I believe) DotEnv, so interesting that it's not installed. Can you try ns clean and then npm install --legacy-peer-deps=true and run again? Wonder if it has to do with the peer deps, or something else. Another thing worth trying is to downgrade npm to 6.x (though 7.x should be working).

JohanBeumer commented 3 years ago

@rigor789 when I use npm install --legacy-peer-deps=true everything works just fine after ns clean. So it looks like it has something to do with peer deps. Is that a bad thing?

plackowski commented 3 years ago

The same (ns clean etc not working).

codemonkey00 commented 2 years ago

I'm getting this same error with ns build android and ns run android. I tried to run ns clean then npm install --legacy-peer-deps=true but I still get the same error. ng build is working to build the Angular 11 site, but can't build for android.
Has anyone found a fix for this?

    C:\Projects\GIT\myproject\node_modules\@nativescript\webpack\node_modules\webpack\lib\NormalModuleFactory.js:802
                                    throw new Error(
                                          ^
    Error: NormalModuleFactory.beforeResolve (angular-compiler) is no longer a waterfall hook, but a bailing hook instead. 
Do not return the passed object, but modify it instead. Returning false will ignore the request and results in no module created.
        at     C:\Projects\GIT\myproject\node_modules\@nativescript\webpack\node_modules\webpack\lib\NormalModuleFactory.js:802:11
        at eval (eval at create (C:\Projects\GIT\myproject\node_modules\tapable\lib\HookCodeFactory.js:33:10), <anonymous>:14:1)
    Executing webpack failed with exit code 1.

package.json

  "dependencies": {
    "@angular/animations": "11.2.14",
    "@angular/cdk": "11.2.13",
    "@angular/cli": "11.2.14",
    "@angular/common": "11.2.14",
    "@angular/compiler": "11.2.14",
    "@angular/compiler-cli": "11.2.14",
    "@angular/core": "11.2.14",
    "@angular/flex-layout": "11.0.0-beta.33",
    "@angular/forms": "11.2.14",
    "@angular/language-service": "11.2.14",
    "@angular/material": "11.2.13",
    "@angular/platform-browser": "11.2.14",
    "@angular/platform-browser-dynamic": "11.2.14",
    "@angular/platform-server": "11.2.14",
    "@angular/router": "11.2.14",
    "@exalif/ngx-breadcrumbs": "9.2.0",
    "@nativescript/angular": "11.8.1",
    "@nativescript/core": "8.0.8",
    "@nativescript/theme": "3.0.1",
    "@popperjs/core": "2.9.3",
    "bootstrap": "4.6.0",
    "core-js": "3.16.4",
    "font-awesome": "4.7.0",
    "jquery": "3.6.0",
    "ngx-bootstrap": "7.1.0",
    "rxjs": "7.3.0",
    "typescript": "4.1.6",
    "zone.js": "0.11.4"
  },
  "devDependencies": {
    "@angular-devkit/build-angular": "0.1102.13",
    "@angular/compiler-cli": "11.2.14",
    "@nativescript/android": "8.0.0",
    "@nativescript/schematics": "11.2.0",
    "@nativescript/tslint-rules": "0.0.5",
    "@nativescript/webpack": "5.0.0-rc.6",
    "@ngtools/webpack": "11.2.14",
  }
rigor789 commented 2 years ago

@codemonkey00 can you share the output of npm ls --depth=10?

codemonkey00 commented 2 years ago

@rigor789

npm ls --depth=10

+-- @angular-devkit/build-angular@0.1102.13
| +-- @angular-devkit/architect@0.1102.13
| | +-- @angular-devkit/core@11.2.13 deduped
| | `-- rxjs@6.6.3 deduped
| +-- @angular-devkit/build-optimizer@0.1102.13
| | +-- loader-utils@2.0.0 deduped
| | +-- source-map@0.7.3 deduped
| | +-- tslib@2.1.0
| | +-- typescript@4.1.5
| | `-- webpack-sources@2.2.0 deduped
| +-- @angular-devkit/build-webpack@0.1102.13
| | +-- @angular-devkit/architect@0.1102.13
| | | +-- @angular-devkit/core@11.2.13 deduped
| | | `-- rxjs@6.6.3 deduped
| | +-- @angular-devkit/core@11.2.13
| | | +-- ajv@6.12.6 deduped
| | | +-- fast-json-stable-stringify@2.1.0 deduped
| | | +-- magic-string@0.25.7 deduped
| | | +-- rxjs@6.6.3 deduped
| | | `-- source-map@0.7.3 deduped
| | `-- rxjs@6.6.3
| |   `-- tslib@1.14.1
| +-- @angular-devkit/core@11.2.13
| | +-- ajv@6.12.6
| | | +-- fast-deep-equal@3.1.3
| | | +-- fast-json-stable-stringify@2.1.0 deduped
| | | +-- json-schema-traverse@0.4.1
| | | `-- uri-js@4.4.1
| | |   `-- punycode@2.1.1
| | +-- fast-json-stable-stringify@2.1.0
| | +-- magic-string@0.25.7 deduped
| | +-- rxjs@6.6.3 deduped
| | `-- source-map@0.7.3 deduped
| +-- @babel/core@7.12.10
| | +-- @babel/code-frame@7.14.5 deduped
| | +-- @babel/generator@7.12.11 deduped
| | +-- @babel/helper-module-transforms@7.15.0
| | | +-- @babel/helper-module-imports@7.14.5 deduped
| | | +-- @babel/helper-replace-supers@7.15.0
| | | | +-- @babel/helper-member-expression-to-functions@7.15.0
| | | | | `-- @babel/types@7.15.0 deduped
| | | | +-- @babel/helper-optimise-call-expression@7.14.5 deduped
| | | | +-- @babel/traverse@7.15.0 deduped
| | | | `-- @babel/types@7.15.0 deduped
| | | +-- @babel/helper-simple-access@7.14.8
| | | | `-- @babel/types@7.15.0 deduped
| | | +-- @babel/helper-split-export-declaration@7.14.5
| | | | `-- @babel/types@7.15.0 deduped
| | | +-- @babel/helper-validator-identifier@7.14.9 deduped
| | | +-- @babel/template@7.14.5 deduped
| | | +-- @babel/traverse@7.15.0 deduped
| | | `-- @babel/types@7.15.0 deduped
| | +-- @babel/helpers@7.15.3
| | | +-- @babel/template@7.14.5 deduped
| | | +-- @babel/traverse@7.15.0 deduped
| | | `-- @babel/types@7.15.0 deduped
| | +-- @babel/parser@7.15.3
| | +-- @babel/template@7.12.7 deduped
| | +-- @babel/traverse@7.15.0
| | | +-- @babel/code-frame@7.14.5 deduped
| | | +-- @babel/generator@7.15.0 deduped
| | | +-- @babel/helper-function-name@7.14.5
| | | | +-- @babel/helper-get-function-arity@7.14.5
| | | | | `-- @babel/types@7.15.0 deduped
| | | | +-- @babel/template@7.14.5 deduped
| | | | `-- @babel/types@7.15.0 deduped
| | | +-- @babel/helper-hoist-variables@7.14.5
| | | | `-- @babel/types@7.15.0 deduped
| | | +-- @babel/helper-split-export-declaration@7.14.5 deduped
| | | +-- @babel/parser@7.15.3 deduped
| | | +-- @babel/types@7.15.0 deduped
| | | +-- debug@4.3.1 deduped
| | | `-- globals@11.12.0
| | +-- @babel/types@7.15.0 deduped
| | +-- convert-source-map@1.8.0 deduped
| | +-- debug@4.3.1 deduped
| | +-- gensync@1.0.0-beta.2
| | +-- json5@2.2.0
| | | `-- minimist@1.2.5 deduped
| | +-- lodash@4.17.21 deduped
| | +-- semver@5.7.1
| | `-- source-map@0.5.7
| +-- @babel/generator@7.12.11
| | +-- @babel/types@7.15.0 deduped
| | +-- jsesc@2.5.2
| | `-- source-map@0.5.7
| +-- @babel/plugin-transform-async-to-generator@7.12.1
| | +-- @babel/helper-module-imports@7.14.5
| | | `-- @babel/types@7.15.0 deduped
| | +-- @babel/helper-plugin-utils@7.14.5
| | `-- @babel/helper-remap-async-to-generator@7.14.5
| |   +-- @babel/helper-annotate-as-pure@7.14.5
| |   | `-- @babel/types@7.15.0 deduped
| |   +-- @babel/helper-wrap-function@7.14.5
| |   | +-- @babel/helper-function-name@7.14.5 deduped
| |   | +-- @babel/template@7.14.5 deduped
| |   | +-- @babel/traverse@7.15.0 deduped
| |   | `-- @babel/types@7.15.0 deduped
| |   `-- @babel/types@7.15.0 deduped
| +-- @babel/plugin-transform-runtime@7.12.10
| | +-- @babel/helper-module-imports@7.14.5 deduped
| | +-- @babel/helper-plugin-utils@7.14.5 deduped
| | `-- semver@5.7.1
| +-- @babel/preset-env@7.12.11
| | +-- @babel/compat-data@7.15.0
| | +-- @babel/helper-compilation-targets@7.15.0
| | | +-- @babel/compat-data@7.15.0 deduped
| | | +-- @babel/helper-validator-option@7.14.5 deduped
| | | +-- browserslist@4.16.8 deduped
| | | `-- semver@6.3.0
| | +-- @babel/helper-module-imports@7.14.5 deduped
| | +-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/helper-validator-option@7.14.5
| | +-- @babel/plugin-proposal-async-generator-functions@7.14.9
| | | +-- @babel/helper-plugin-utils@7.14.5 deduped
| | | +-- @babel/helper-remap-async-to-generator@7.14.5 deduped
| | | `-- @babel/plugin-syntax-async-generators@7.8.4 deduped
| | +-- @babel/plugin-proposal-class-properties@7.14.5
| | | +-- @babel/helper-create-class-features-plugin@7.15.0
| | | | +-- @babel/helper-annotate-as-pure@7.14.5 deduped
| | | | +-- @babel/helper-function-name@7.14.5 deduped
| | | | +-- @babel/helper-member-expression-to-functions@7.15.0 deduped
| | | | +-- @babel/helper-optimise-call-expression@7.14.5 deduped
| | | | +-- @babel/helper-replace-supers@7.15.0 deduped
| | | | `-- @babel/helper-split-export-declaration@7.14.5 deduped
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-proposal-dynamic-import@7.14.5
| | | +-- @babel/helper-plugin-utils@7.14.5 deduped
| | | `-- @babel/plugin-syntax-dynamic-import@7.8.3 deduped
| | +-- @babel/plugin-proposal-export-namespace-from@7.14.5
| | | +-- @babel/helper-plugin-utils@7.14.5 deduped
| | | `-- @babel/plugin-syntax-export-namespace-from@7.8.3 deduped
| | +-- @babel/plugin-proposal-json-strings@7.14.5
| | | +-- @babel/helper-plugin-utils@7.14.5 deduped
| | | `-- @babel/plugin-syntax-json-strings@7.8.3 deduped
| | +-- @babel/plugin-proposal-logical-assignment-operators@7.14.5
| | | +-- @babel/helper-plugin-utils@7.14.5 deduped
| | | `-- @babel/plugin-syntax-logical-assignment-operators@7.10.4 deduped
| | +-- @babel/plugin-proposal-nullish-coalescing-operator@7.14.5
| | | +-- @babel/helper-plugin-utils@7.14.5 deduped
| | | `-- @babel/plugin-syntax-nullish-coalescing-operator@7.8.3 deduped
| | +-- @babel/plugin-proposal-numeric-separator@7.14.5
| | | +-- @babel/helper-plugin-utils@7.14.5 deduped
| | | `-- @babel/plugin-syntax-numeric-separator@7.10.4 deduped
| | +-- @babel/plugin-proposal-object-rest-spread@7.14.7
| | | +-- @babel/compat-data@7.15.0 deduped
| | | +-- @babel/helper-compilation-targets@7.15.0 deduped
| | | +-- @babel/helper-plugin-utils@7.14.5 deduped
| | | +-- @babel/plugin-syntax-object-rest-spread@7.8.3 deduped
| | | `-- @babel/plugin-transform-parameters@7.14.5 deduped
| | +-- @babel/plugin-proposal-optional-catch-binding@7.14.5
| | | +-- @babel/helper-plugin-utils@7.14.5 deduped
| | | `-- @babel/plugin-syntax-optional-catch-binding@7.8.3 deduped
| | +-- @babel/plugin-proposal-optional-chaining@7.14.5
| | | +-- @babel/helper-plugin-utils@7.14.5 deduped
| | | +-- @babel/helper-skip-transparent-expression-wrappers@7.14.5
| | | | `-- @babel/types@7.15.0 deduped
| | | `-- @babel/plugin-syntax-optional-chaining@7.8.3 deduped
| | +-- @babel/plugin-proposal-private-methods@7.14.5
| | | +-- @babel/helper-create-class-features-plugin@7.15.0 deduped
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-proposal-unicode-property-regex@7.14.5
| | | +-- @babel/helper-create-regexp-features-plugin@7.14.5
| | | | +-- @babel/helper-annotate-as-pure@7.14.5 deduped
| | | | `-- regexpu-core@4.7.1
| | | |   +-- regenerate@1.4.2
| | | |   +-- regenerate-unicode-properties@8.2.0
| | | |   | `-- regenerate@1.4.2 deduped
| | | |   +-- regjsgen@0.5.2
| | | |   +-- regjsparser@0.6.9
| | | |   | `-- jsesc@0.5.0
| | | |   +-- unicode-match-property-ecmascript@1.0.4
| | | |   | +-- unicode-canonical-property-names-ecmascript@1.0.4
| | | |   | `-- unicode-property-aliases-ecmascript@1.1.0
| | | |   `-- unicode-match-property-value-ecmascript@1.2.0
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-syntax-async-generators@7.8.4
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-syntax-class-properties@7.12.13
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-syntax-dynamic-import@7.8.3
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-syntax-export-namespace-from@7.8.3
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-syntax-json-strings@7.8.3
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-syntax-logical-assignment-operators@7.10.4
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-syntax-nullish-coalescing-operator@7.8.3
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-syntax-numeric-separator@7.10.4
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-syntax-object-rest-spread@7.8.3
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-syntax-optional-catch-binding@7.8.3
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-syntax-optional-chaining@7.8.3
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-syntax-top-level-await@7.14.5
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-transform-arrow-functions@7.14.5
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-transform-async-to-generator@7.12.1 deduped
| | +-- @babel/plugin-transform-block-scoped-functions@7.14.5
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-transform-block-scoping@7.15.3
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-transform-classes@7.14.9
| | | +-- @babel/helper-annotate-as-pure@7.14.5 deduped
| | | +-- @babel/helper-function-name@7.14.5 deduped
| | | +-- @babel/helper-optimise-call-expression@7.14.5
| | | | `-- @babel/types@7.15.0 deduped
| | | +-- @babel/helper-plugin-utils@7.14.5 deduped
| | | +-- @babel/helper-replace-supers@7.15.0 deduped
| | | +-- @babel/helper-split-export-declaration@7.14.5 deduped
| | | `-- globals@11.12.0 deduped
| | +-- @babel/plugin-transform-computed-properties@7.14.5
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-transform-destructuring@7.14.7
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-transform-dotall-regex@7.14.5
| | | +-- @babel/helper-create-regexp-features-plugin@7.14.5 deduped
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-transform-duplicate-keys@7.14.5
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-transform-exponentiation-operator@7.14.5
| | | +-- @babel/helper-builder-binary-assignment-operator-visitor@7.14.5
| | | | +-- @babel/helper-explode-assignable-expression@7.14.5
| | | | | `-- @babel/types@7.15.0 deduped
| | | | `-- @babel/types@7.15.0 deduped
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-transform-for-of@7.14.5
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-transform-function-name@7.14.5
| | | +-- @babel/helper-function-name@7.14.5 deduped
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-transform-literals@7.14.5
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-transform-member-expression-literals@7.14.5
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-transform-modules-amd@7.14.5
| | | +-- @babel/helper-module-transforms@7.15.0 deduped
| | | +-- @babel/helper-plugin-utils@7.14.5 deduped
| | | `-- babel-plugin-dynamic-import-node@2.3.3
| | |   `-- object.assign@4.1.2
| | |     +-- call-bind@1.0.2
| | |     | +-- function-bind@1.1.1 deduped
| | |     | `-- get-intrinsic@1.1.1
| | |     |   +-- function-bind@1.1.1 deduped
| | |     |   +-- has@1.0.3 deduped
| | |     |   `-- has-symbols@1.0.2 deduped
| | |     +-- define-properties@1.1.3
| | |     | `-- object-keys@1.1.1 deduped
| | |     +-- has-symbols@1.0.2
| | |     `-- object-keys@1.1.1 deduped
| | +-- @babel/plugin-transform-modules-commonjs@7.15.0
| | | +-- @babel/helper-module-transforms@7.15.0 deduped
| | | +-- @babel/helper-plugin-utils@7.14.5 deduped
| | | +-- @babel/helper-simple-access@7.14.8 deduped
| | | `-- babel-plugin-dynamic-import-node@2.3.3 deduped
| | +-- @babel/plugin-transform-modules-systemjs@7.14.5
| | | +-- @babel/helper-hoist-variables@7.14.5 deduped
| | | +-- @babel/helper-module-transforms@7.15.0 deduped
| | | +-- @babel/helper-plugin-utils@7.14.5 deduped
| | | +-- @babel/helper-validator-identifier@7.14.9 deduped
| | | `-- babel-plugin-dynamic-import-node@2.3.3 deduped
| | +-- @babel/plugin-transform-modules-umd@7.14.5
| | | +-- @babel/helper-module-transforms@7.15.0 deduped
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-transform-named-capturing-groups-regex@7.14.9
| | | `-- @babel/helper-create-regexp-features-plugin@7.14.5 deduped
| | +-- @babel/plugin-transform-new-target@7.14.5
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-transform-object-super@7.14.5
| | | +-- @babel/helper-plugin-utils@7.14.5 deduped
| | | `-- @babel/helper-replace-supers@7.15.0 deduped
| | +-- @babel/plugin-transform-parameters@7.14.5
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-transform-property-literals@7.14.5
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-transform-regenerator@7.14.5
| | | `-- regenerator-transform@0.14.5
| | |   `-- @babel/runtime@7.12.5 deduped
| | +-- @babel/plugin-transform-reserved-words@7.14.5
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-transform-shorthand-properties@7.14.5
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-transform-spread@7.14.6
| | | +-- @babel/helper-plugin-utils@7.14.5 deduped
| | | `-- @babel/helper-skip-transparent-expression-wrappers@7.14.5 deduped
| | +-- @babel/plugin-transform-sticky-regex@7.14.5
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-transform-template-literals@7.14.5
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-transform-typeof-symbol@7.14.5
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-transform-unicode-escapes@7.14.5
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/plugin-transform-unicode-regex@7.14.5
| | | +-- @babel/helper-create-regexp-features-plugin@7.14.5 deduped
| | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | +-- @babel/preset-modules@0.1.4
| | | +-- @babel/helper-plugin-utils@7.14.5 deduped
| | | +-- @babel/plugin-proposal-unicode-property-regex@7.14.5 deduped
| | | +-- @babel/plugin-transform-dotall-regex@7.14.5 deduped
| | | +-- @babel/types@7.15.0 deduped
| | | `-- esutils@2.0.3
| | +-- @babel/types@7.15.0 deduped
| | +-- core-js-compat@3.16.4
| | | +-- browserslist@4.16.8 deduped
| | | `-- semver@7.0.0
| | `-- semver@5.7.1
| +-- @babel/runtime@7.12.5
| | `-- regenerator-runtime@0.13.7 deduped
| +-- @babel/template@7.12.7
| | +-- @babel/code-frame@7.14.5 deduped
| | +-- @babel/parser@7.15.3 deduped
| | `-- @babel/types@7.15.0 deduped
| +-- @discoveryjs/json-ext@0.5.2
| +-- @jsdevtools/coverage-istanbul-loader@3.0.5
| | +-- convert-source-map@1.8.0 deduped
| | +-- istanbul-lib-instrument@4.0.3
| | | +-- @babel/core@7.15.0 deduped
| | | +-- @istanbuljs/schema@0.1.3
| | | +-- istanbul-lib-coverage@3.0.0 deduped
| | | `-- semver@6.3.0
| | +-- loader-utils@2.0.0 deduped
| | +-- merge-source-map@1.1.0
| | | `-- source-map@0.6.1
| | `-- schema-utils@2.7.1
| |   +-- @types/json-schema@7.0.9 deduped
| |   +-- ajv@6.12.6 deduped
| |   `-- ajv-keywords@3.5.2 deduped
| +-- @ngtools/webpack@11.2.13
| | +-- @angular-devkit/core@11.2.13 deduped
| | +-- enhanced-resolve@5.7.0 deduped
| | `-- webpack-sources@2.2.0 deduped
| +-- ansi-colors@4.1.1
| +-- autoprefixer@10.2.4
| | +-- browserslist@4.16.8 deduped
| | +-- caniuse-lite@1.0.30001252 deduped
| | +-- colorette@1.3.0
| | +-- fraction.js@4.1.1
| | +-- normalize-range@0.1.2
| | `-- postcss-value-parser@4.1.0
| +-- babel-loader@8.2.2
| | +-- find-cache-dir@3.3.1 deduped
| | +-- loader-utils@1.4.0
| | | +-- big.js@5.2.2 deduped
| | | +-- emojis-list@3.0.0 deduped
| | | `-- json5@1.0.1
| | |   `-- minimist@1.2.5 deduped
| | +-- make-dir@3.1.0
| | | `-- semver@6.3.0
| | `-- schema-utils@2.7.1 deduped
| +-- browserslist@4.16.8
| | +-- caniuse-lite@1.0.30001252 deduped
| | +-- colorette@1.3.0 deduped
| | +-- electron-to-chromium@1.3.826
| | +-- escalade@3.1.1
| | `-- node-releases@1.1.75
| +-- cacache@15.0.5
| | +-- @npmcli/move-file@1.1.2
| | | +-- mkdirp@1.0.4 deduped
| | | `-- rimraf@3.0.2 deduped
| | +-- chownr@2.0.0
| | +-- fs-minipass@2.1.0
| | | `-- minipass@3.1.3 deduped
| | +-- glob@7.1.6 deduped
| | +-- infer-owner@1.0.4
| | +-- lru-cache@6.0.0
| | | `-- yallist@4.0.0
| | +-- minipass@3.1.3
| | | `-- yallist@4.0.0 deduped
| | +-- minipass-collect@1.0.2
| | | `-- minipass@3.1.3 deduped
| | +-- minipass-flush@1.0.5
| | | `-- minipass@3.1.3 deduped
| | +-- minipass-pipeline@1.2.4
| | | `-- minipass@3.1.3 deduped
| | +-- mkdirp@1.0.4
| | +-- p-map@4.0.0
| | | `-- aggregate-error@3.1.0
| | |   +-- clean-stack@2.2.0
| | |   `-- indent-string@4.0.0
| | +-- promise-inflight@1.0.1
| | +-- rimraf@3.0.2 deduped
| | +-- ssri@8.0.1
| | | `-- minipass@3.1.3 deduped
| | +-- tar@6.1.11
| | | +-- chownr@2.0.0 deduped
| | | +-- fs-minipass@2.1.0 deduped
| | | +-- minipass@3.1.3 deduped
| | | +-- minizlib@2.1.2
| | | | +-- minipass@3.1.3 deduped
| | | | `-- yallist@4.0.0 deduped
| | | +-- mkdirp@1.0.4 deduped
| | | `-- yallist@4.0.0 deduped
| | `-- unique-filename@1.1.1
| |   `-- unique-slug@2.0.2
| |     `-- imurmurhash@0.1.4
| +-- caniuse-lite@1.0.30001252
| +-- circular-dependency-plugin@5.2.2
| +-- copy-webpack-plugin@6.3.2
| | +-- cacache@15.3.0
| | | +-- @npmcli/fs@1.0.0
| | | | +-- @gar/promisify@1.1.2
| | | | `-- semver@7.3.5
| | | |   `-- lru-cache@6.0.0 deduped
| | | +-- @npmcli/move-file@1.1.2 deduped
| | | +-- chownr@2.0.0 deduped
| | | +-- fs-minipass@2.1.0 deduped
| | | +-- glob@7.1.7 deduped
| | | +-- infer-owner@1.0.4 deduped
| | | +-- lru-cache@6.0.0 deduped
| | | +-- minipass@3.1.3 deduped
| | | +-- minipass-collect@1.0.2 deduped
| | | +-- minipass-flush@1.0.5 deduped
| | | +-- minipass-pipeline@1.2.4 deduped
| | | +-- mkdirp@1.0.4 deduped
| | | +-- p-map@4.0.0 deduped
| | | +-- promise-inflight@1.0.1 deduped
| | | +-- rimraf@3.0.2 deduped
| | | +-- ssri@8.0.1 deduped
| | | +-- tar@6.1.11 deduped
| | | `-- unique-filename@1.1.1 deduped
| | +-- fast-glob@3.2.7
| | | +-- @nodelib/fs.stat@2.0.5
| | | +-- @nodelib/fs.walk@1.2.8
| | | | +-- @nodelib/fs.scandir@2.1.5
| | | | | +-- @nodelib/fs.stat@2.0.5 deduped
| | | | | `-- run-parallel@1.2.0
| | | | |   `-- queue-microtask@1.2.3
| | | | `-- fastq@1.12.0
| | | |   `-- reusify@1.0.4
| | | +-- glob-parent@5.1.2 deduped
| | | +-- merge2@1.4.1 deduped
| | | `-- micromatch@4.0.4 deduped
| | +-- find-cache-dir@3.3.1 deduped
| | +-- glob-parent@5.1.2
| | | `-- is-glob@4.0.1 deduped
| | +-- globby@11.0.4
| | | +-- array-union@2.1.0
| | | +-- dir-glob@3.0.1
| | | | `-- path-type@4.0.0 deduped
| | | +-- fast-glob@3.2.7 deduped
| | | +-- ignore@5.1.8
| | | +-- merge2@1.4.1
| | | `-- slash@3.0.0 deduped
| | +-- loader-utils@2.0.0 deduped
| | +-- normalize-path@3.0.0
| | +-- p-limit@3.1.0
| | | `-- yocto-queue@0.1.0
| | +-- schema-utils@3.1.1
| | | +-- @types/json-schema@7.0.9 deduped
| | | +-- ajv@6.12.6 deduped
| | | `-- ajv-keywords@3.5.2 deduped
| | +-- serialize-javascript@5.0.1
| | | `-- randombytes@2.1.0 deduped
| | `-- webpack-sources@1.4.3
| |   +-- source-list-map@2.0.1 deduped
| |   `-- source-map@0.6.1
| +-- core-js@3.8.3
| +-- critters@0.0.7
| | +-- chalk@4.1.2 deduped
| | +-- css@3.0.0 deduped
| | +-- parse5@6.0.1
| | +-- parse5-htmlparser2-tree-adapter@6.0.1
| | | `-- parse5@6.0.1
| | `-- pretty-bytes@5.6.0
| +-- css-loader@5.0.1
| | +-- camelcase@6.2.0
| | +-- cssesc@3.0.0
| | +-- icss-utils@5.1.0
| | +-- loader-utils@2.0.0 deduped
| | +-- postcss@8.2.14 deduped
| | +-- postcss-modules-extract-imports@3.0.0
| | +-- postcss-modules-local-by-default@4.0.0
| | | +-- icss-utils@5.1.0 deduped
| | | +-- postcss-selector-parser@6.0.6
| | | | +-- cssesc@3.0.0 deduped
| | | | `-- util-deprecate@1.0.2
| | | `-- postcss-value-parser@4.1.0
| | +-- postcss-modules-scope@3.0.0
| | | `-- postcss-selector-parser@6.0.6 deduped
| | +-- postcss-modules-values@4.0.0
| | | `-- icss-utils@5.1.0 deduped
| | +-- postcss-value-parser@4.1.0
| | +-- schema-utils@3.1.1
| | | +-- @types/json-schema@7.0.9 deduped
| | | +-- ajv@6.12.6 deduped
| | | `-- ajv-keywords@3.5.2 deduped
| | `-- semver@7.3.4 deduped
| +-- cssnano@5.0.2
| | +-- cosmiconfig@7.0.1
| | | +-- @types/parse-json@4.0.0
| | | +-- import-fresh@3.3.0
| | | | +-- parent-module@1.0.1
| | | | | `-- callsites@3.1.0 deduped
| | | | `-- resolve-from@4.0.0
| | | +-- parse-json@5.2.0
| | | | +-- @babel/code-frame@7.14.5 deduped
| | | | +-- error-ex@1.3.2
| | | | | `-- is-arrayish@0.2.1
| | | | +-- json-parse-even-better-errors@2.3.1 deduped
| | | | `-- lines-and-columns@1.1.6
| | | +-- path-type@4.0.0
| | | `-- yaml@1.10.2
| | +-- cssnano-preset-default@5.1.4
| | | +-- css-declaration-sorter@6.1.1
| | | | `-- timsort@0.3.0
| | | +-- cssnano-utils@2.0.1
| | | +-- UNMET PEER DEPENDENCY postcss@^8.2.15
| | | +-- postcss-calc@8.0.0
| | | | +-- postcss-selector-parser@6.0.6 deduped
| | | | `-- postcss-value-parser@4.1.0
| | | +-- postcss-colormin@5.2.0
| | | | +-- browserslist@4.16.8 deduped
| | | | +-- caniuse-api@3.0.0
| | | | | +-- browserslist@4.16.8 deduped
| | | | | +-- caniuse-lite@1.0.30001252 deduped
| | | | | +-- lodash.memoize@4.1.2
| | | | | `-- lodash.uniq@4.5.0
| | | | +-- colord@2.7.0
| | | | `-- postcss-value-parser@4.1.0
| | | +-- postcss-convert-values@5.0.1
| | | | `-- postcss-value-parser@4.1.0
| | | +-- postcss-discard-comments@5.0.1
| | | +-- postcss-discard-duplicates@5.0.1
| | | +-- postcss-discard-empty@5.0.1
| | | +-- postcss-discard-overridden@5.0.1
| | | +-- postcss-merge-longhand@5.0.2
| | | | +-- css-color-names@1.0.1
| | | | +-- UNMET PEER DEPENDENCY postcss@^8.2.15
| | | | +-- postcss-value-parser@4.1.0
| | | | `-- stylehacks@5.0.1
| | | |   +-- browserslist@4.16.8 deduped
| | | |   `-- postcss-selector-parser@6.0.6 deduped
| | | +-- postcss-merge-rules@5.0.2
| | | | +-- browserslist@4.16.8 deduped
| | | | +-- caniuse-api@3.0.0 deduped
| | | | +-- cssnano-utils@2.0.1 deduped
| | | | +-- UNMET PEER DEPENDENCY postcss@^8.2.15
| | | | +-- postcss-selector-parser@6.0.6 deduped
| | | | `-- vendors@1.0.4
| | | +-- postcss-minify-font-values@5.0.1
| | | | `-- postcss-value-parser@4.1.0
| | | +-- postcss-minify-gradients@5.0.2
| | | | +-- colord@2.7.0 deduped
| | | | +-- cssnano-utils@2.0.1 deduped
| | | | +-- UNMET PEER DEPENDENCY postcss@^8.2.15
| | | | `-- postcss-value-parser@4.1.0
| | | +-- postcss-minify-params@5.0.1
| | | | +-- alphanum-sort@1.0.2
| | | | +-- browserslist@4.16.8 deduped
| | | | +-- cssnano-utils@2.0.1 deduped
| | | | +-- UNMET PEER DEPENDENCY postcss@^8.2.15
| | | | +-- postcss-value-parser@4.1.0
| | | | `-- uniqs@2.0.0
| | | +-- postcss-minify-selectors@5.1.0
| | | | +-- alphanum-sort@1.0.2 deduped
| | | | `-- postcss-selector-parser@6.0.6 deduped
| | | +-- postcss-normalize-charset@5.0.1
| | | +-- postcss-normalize-display-values@5.0.1
| | | | +-- cssnano-utils@2.0.1 deduped
| | | | +-- UNMET PEER DEPENDENCY postcss@^8.2.15
| | | | `-- postcss-value-parser@4.1.0
| | | +-- postcss-normalize-positions@5.0.1
| | | | `-- postcss-value-parser@4.1.0
| | | +-- postcss-normalize-repeat-style@5.0.1
| | | | +-- cssnano-utils@2.0.1 deduped
| | | | +-- UNMET PEER DEPENDENCY postcss@^8.2.15
| | | | `-- postcss-value-parser@4.1.0
| | | +-- postcss-normalize-string@5.0.1
| | | | `-- postcss-value-parser@4.1.0
| | | +-- postcss-normalize-timing-functions@5.0.1
| | | | +-- cssnano-utils@2.0.1 deduped
| | | | +-- UNMET PEER DEPENDENCY postcss@^8.2.15
| | | | `-- postcss-value-parser@4.1.0
| | | +-- postcss-normalize-unicode@5.0.1
| | | | +-- browserslist@4.16.8 deduped
| | | | `-- postcss-value-parser@4.1.0
| | | +-- postcss-normalize-url@5.0.2
| | | | +-- is-absolute-url@3.0.3 deduped
| | | | +-- normalize-url@6.1.0
| | | | `-- postcss-value-parser@4.1.0
| | | +-- postcss-normalize-whitespace@5.0.1
| | | | `-- postcss-value-parser@4.1.0
| | | +-- postcss-ordered-values@5.0.2
| | | | +-- cssnano-utils@2.0.1 deduped
| | | | +-- UNMET PEER DEPENDENCY postcss@^8.2.15
| | | | `-- postcss-value-parser@4.1.0
| | | +-- postcss-reduce-initial@5.0.1
| | | | +-- browserslist@4.16.8 deduped
| | | | `-- caniuse-api@3.0.0 deduped
| | | +-- postcss-reduce-transforms@5.0.1
| | | | +-- cssnano-utils@2.0.1 deduped
| | | | +-- UNMET PEER DEPENDENCY postcss@^8.2.15
| | | | `-- postcss-value-parser@4.1.0
| | | +-- postcss-svgo@5.0.2
| | | | +-- postcss-value-parser@4.1.0
| | | | `-- svgo@2.5.0
| | | |   +-- @trysound/sax@0.1.1
| | | |   +-- colorette@1.3.0 deduped
| | | |   +-- commander@7.2.0
| | | |   +-- css-select@4.1.3
| | | |   | +-- boolbase@1.0.0
| | | |   | +-- css-what@5.0.1
| | | |   | +-- domhandler@4.2.2
| | | |   | | `-- domelementtype@2.2.0
| | | |   | +-- domutils@2.8.0
| | | |   | | +-- dom-serializer@1.3.2
| | | |   | | | +-- domelementtype@2.2.0 deduped
| | | |   | | | +-- domhandler@4.2.2 deduped
| | | |   | | | `-- entities@2.2.0
| | | |   | | +-- domelementtype@2.2.0 deduped
| | | |   | | `-- domhandler@4.2.2 deduped
| | | |   | `-- nth-check@2.0.0
| | | |   |   `-- boolbase@1.0.0 deduped
| | | |   +-- css-tree@1.1.3 deduped
| | | |   +-- csso@4.2.0
| | | |   | `-- css-tree@1.1.3 deduped
| | | |   `-- stable@0.1.8
| | | `-- postcss-unique-selectors@5.0.1
| | |   +-- alphanum-sort@1.0.2 deduped
| | |   +-- postcss-selector-parser@6.0.6 deduped
| | |   `-- uniqs@2.0.0 deduped
| | +-- is-resolvable@1.1.0
| | `-- UNMET PEER DEPENDENCY postcss@^8.2.15
| +-- file-loader@6.2.0
| | +-- loader-utils@2.0.0 deduped
| | `-- schema-utils@3.1.1
| |   +-- @types/json-schema@7.0.9 deduped
| |   +-- ajv@6.12.6 deduped
| |   `-- ajv-keywords@3.5.2 deduped
| +-- find-cache-dir@3.3.1
| | +-- commondir@1.0.1
| | +-- make-dir@3.1.0 deduped
| | `-- pkg-dir@4.2.0
| |   `-- find-up@4.1.0 deduped
| +-- glob@7.1.6
| | +-- fs.realpath@1.0.0
| | +-- inflight@1.0.6
| | | +-- once@1.4.0 deduped
| | | `-- wrappy@1.0.2
| | +-- inherits@2.0.4
| | +-- minimatch@3.0.4 deduped
| | +-- once@1.4.0
| | | `-- wrappy@1.0.2 deduped
| | `-- path-is-absolute@1.0.1
| +-- https-proxy-agent@5.0.0
| | +-- agent-base@6.0.2
| | | `-- debug@4.3.1 deduped
| | `-- debug@4.3.1 deduped
| +-- inquirer@7.3.3
| | +-- ansi-escapes@4.3.2
| | | `-- type-fest@0.21.3
| | +-- chalk@4.1.2 deduped
| | +-- cli-cursor@3.1.0
| | | `-- restore-cursor@3.1.0
| | |   +-- onetime@5.1.2 deduped
| | |   `-- signal-exit@3.0.3 deduped
| | +-- cli-width@3.0.0
| | +-- external-editor@3.1.0
| | | +-- chardet@0.7.0
| | | +-- iconv-lite@0.4.24
| | | | `-- safer-buffer@2.1.2 deduped
| | | `-- tmp@0.0.33
| | |   `-- os-tmpdir@1.0.2 deduped
| | +-- figures@3.2.0
| | | `-- escape-string-regexp@1.0.5 deduped
| | +-- lodash@4.17.21 deduped
| | +-- mute-stream@0.0.8
| | +-- run-async@2.4.1
| | +-- rxjs@6.6.7
| | | `-- tslib@1.14.1
| | +-- string-width@4.2.2
| | | +-- emoji-regex@8.0.0
| | | +-- is-fullwidth-code-point@3.0.0
| | | `-- strip-ansi@6.0.0 deduped
| | +-- strip-ansi@6.0.0
| | | `-- ansi-regex@5.0.0 deduped
| | `-- through@2.3.8
| +-- jest-worker@26.6.2
| | +-- @types/node@16.7.7 deduped
| | +-- merge-stream@2.0.0
| | `-- supports-color@7.2.0
| |   `-- has-flag@4.0.0
| +-- karma-source-map-support@1.4.0
| | `-- source-map-support@0.5.19
| |   +-- buffer-from@1.1.2 deduped
| |   `-- source-map@0.6.1
| +-- less@4.1.1
| | +-- copy-anything@2.0.3
| | | `-- is-what@3.14.1
| | +-- errno@0.1.8
| | | `-- prr@1.0.1
| | +-- graceful-fs@4.2.8 deduped
| | +-- image-size@0.5.5
| | +-- make-dir@2.1.0
| | | +-- pify@4.0.1
| | | `-- semver@5.7.1
| | +-- mime@1.6.0
| | +-- needle@2.9.0
| | | +-- debug@3.2.7
| | | | `-- ms@2.1.2 deduped
| | | +-- iconv-lite@0.4.24
| | | | `-- safer-buffer@2.1.2 deduped
| | | `-- sax@1.2.4 deduped
| | +-- parse-node-version@1.0.1
| | +-- source-map@0.6.1
| | `-- tslib@1.14.1
| +-- less-loader@7.3.0
| | +-- klona@2.0.4
| | +-- loader-utils@2.0.0 deduped
| | `-- schema-utils@3.1.1
| |   +-- @types/json-schema@7.0.9 deduped
| |   +-- ajv@6.12.6 deduped
| |   `-- ajv-keywords@3.5.2 deduped
| +-- license-webpack-plugin@2.3.11
| | +-- @types/webpack-sources@0.1.9
| | | +-- @types/node@16.7.7 deduped
| | | +-- @types/source-list-map@0.1.2
| | | `-- source-map@0.6.1
| | `-- webpack-sources@1.4.3
| |   +-- source-list-map@2.0.1 deduped
| |   `-- source-map@0.6.1
| +-- loader-utils@2.0.0
| | +-- big.js@5.2.2
| | +-- emojis-list@3.0.0
| | `-- json5@2.2.0 deduped
| +-- mini-css-extract-plugin@1.3.5
| | +-- loader-utils@2.0.0 deduped
| | +-- schema-utils@3.1.1
| | | +-- @types/json-schema@7.0.9 deduped
| | | +-- ajv@6.12.6 deduped
| | | `-- ajv-keywords@3.5.2 deduped
| | `-- webpack-sources@1.4.3
| |   +-- source-list-map@2.0.1 deduped
| |   `-- source-map@0.6.1
| +-- minimatch@3.0.4
| | `-- brace-expansion@1.1.11
| |   +-- balanced-match@1.0.2
| |   `-- concat-map@0.0.1
| +-- open@7.4.0
| | +-- is-docker@2.2.1
| | `-- is-wsl@2.2.0
| |   `-- is-docker@2.2.1 deduped
| +-- ora@5.3.0
| | +-- bl@4.1.0
| | | +-- buffer@5.7.1
| | | | +-- base64-js@1.5.1 deduped
| | | | `-- ieee754@1.2.1
| | | +-- inherits@2.0.4 deduped
| | | `-- readable-stream@3.6.0
| | |   +-- inherits@2.0.4 deduped
| | |   +-- string_decoder@1.3.0 deduped
| | |   `-- util-deprecate@1.0.2 deduped
| | +-- chalk@4.1.2 deduped
| | +-- cli-cursor@3.1.0 deduped
| | +-- cli-spinners@2.6.0
| | +-- is-interactive@1.0.0
| | +-- log-symbols@4.1.0
| | | +-- chalk@4.1.2 deduped
| | | `-- is-unicode-supported@0.1.0
| | +-- strip-ansi@6.0.0 deduped
| | `-- wcwidth@1.0.1
| |   `-- defaults@1.0.3
| |     `-- clone@1.0.4
| +-- parse5-html-rewriting-stream@6.0.1
| | +-- parse5@6.0.1
| | `-- parse5-sax-parser@6.0.1
| |   `-- parse5@6.0.1
| +-- pnp-webpack-plugin@1.6.4
| | `-- ts-pnp@1.2.0
| +-- postcss@8.2.14
| | +-- colorette@1.3.0 deduped
| | +-- nanoid@3.1.25
| | `-- source-map@0.6.1
| +-- postcss-import@14.0.0
| | +-- postcss-value-parser@4.1.0
| | +-- read-cache@1.0.0
| | | `-- pify@2.3.0
| | `-- resolve@1.19.0 deduped
| +-- postcss-loader@4.2.0
| | +-- cosmiconfig@7.0.1 deduped
| | +-- klona@2.0.4 deduped
| | +-- loader-utils@2.0.0 deduped
| | +-- schema-utils@3.1.1
| | | +-- @types/json-schema@7.0.9 deduped
| | | +-- ajv@6.12.6 deduped
| | | `-- ajv-keywords@3.5.2 deduped
| | `-- semver@7.3.4 deduped
| +-- raw-loader@4.0.2
| | +-- loader-utils@2.0.0 deduped
| | `-- schema-utils@3.1.1
| |   +-- @types/json-schema@7.0.9 deduped
| |   +-- ajv@6.12.6 deduped
| |   `-- ajv-keywords@3.5.2 deduped
| +-- regenerator-runtime@0.13.7
| +-- resolve-url-loader@4.0.0
| | +-- adjust-sourcemap-loader@4.0.0
| | | +-- loader-utils@2.0.0 deduped
| | | `-- regex-parser@2.2.11
| | +-- convert-source-map@1.8.0 deduped
| | +-- loader-utils@2.0.0 deduped
| | +-- postcss@7.0.36
| | | +-- chalk@2.4.2
| | | | +-- ansi-styles@3.2.1
| | | | | `-- color-convert@1.9.3
| | | | |   `-- color-name@1.1.3
| | | | +-- escape-string-regexp@1.0.5 deduped
| | | | `-- supports-color@5.5.0
| | | |   `-- has-flag@3.0.0 deduped
| | | +-- source-map@0.6.1 deduped
| | | `-- supports-color@6.1.0
| | |   `-- has-flag@3.0.0
| | `-- source-map@0.6.1
| +-- rimraf@3.0.2
| | `-- glob@7.1.7 deduped
| +-- rollup@2.38.4
| | `-- UNMET OPTIONAL DEPENDENCY fsevents@2.3.2
| +-- rxjs@6.6.3
| | `-- tslib@1.14.1
| +-- sass@1.32.6
| | `-- chokidar@3.5.2 deduped
| +-- sass-loader@10.1.1
| | +-- klona@2.0.4 deduped
| | +-- loader-utils@2.0.0 deduped
| | +-- neo-async@2.6.2
| | +-- schema-utils@3.1.1
| | | +-- @types/json-schema@7.0.9 deduped
| | | +-- ajv@6.12.6 deduped
| | | `-- ajv-keywords@3.5.2 deduped
| | `-- semver@7.3.4 deduped
| +-- semver@7.3.4
| | `-- lru-cache@6.0.0 deduped
| +-- source-map@0.7.3
| +-- source-map-loader@1.1.3
| | +-- abab@2.0.5
| | +-- iconv-lite@0.6.3
| | | `-- safer-buffer@2.1.2 deduped
| | +-- loader-utils@2.0.0 deduped
| | +-- schema-utils@3.1.1
| | | +-- @types/json-schema@7.0.9 deduped
| | | +-- ajv@6.12.6 deduped
| | | `-- ajv-keywords@3.5.2 deduped
| | +-- source-map@0.6.1
| | `-- whatwg-mimetype@2.3.0
| +-- source-map-support@0.5.19
| | +-- buffer-from@1.1.2
| | `-- source-map@0.6.1
| +-- speed-measure-webpack-plugin@1.4.2
| | `-- chalk@4.1.2 deduped
| +-- style-loader@2.0.0
| | +-- loader-utils@2.0.0 deduped
| | `-- schema-utils@3.1.1
| |   +-- @types/json-schema@7.0.9 deduped
| |   +-- ajv@6.12.6 deduped
| |   `-- ajv-keywords@3.5.2 deduped
| +-- stylus@0.54.8
| | +-- css-parse@2.0.0
| | | `-- css@2.2.4
| | |   +-- inherits@2.0.4 deduped
| | |   +-- source-map@0.6.1
| | |   +-- source-map-resolve@0.5.3
| | |   | +-- atob@2.1.2 deduped
| | |   | +-- decode-uri-component@0.2.0 deduped
| | |   | +-- resolve-url@0.2.1
| | |   | +-- source-map-url@0.4.1
| | |   | `-- urix@0.1.0 deduped
| | |   `-- urix@0.1.0
| | +-- debug@3.1.0
| | | `-- ms@2.0.0
| | +-- glob@7.1.7 deduped
| | +-- mkdirp@1.0.4 deduped
| | +-- safer-buffer@2.1.2
| | +-- sax@1.2.4 deduped
| | +-- semver@6.3.0
| | `-- source-map@0.7.3 deduped
| +-- stylus-loader@4.3.3
| | +-- fast-glob@3.2.7 deduped
| | +-- klona@2.0.4 deduped
| | +-- loader-utils@2.0.0 deduped
| | +-- normalize-path@3.0.0 deduped
| | `-- schema-utils@3.1.1
| |   +-- @types/json-schema@7.0.9 deduped
| |   +-- ajv@6.12.6 deduped
| |   `-- ajv-keywords@3.5.2 deduped
| +-- terser@5.5.1
| | +-- commander@2.20.3 deduped
| | +-- source-map@0.7.3 deduped
| | `-- source-map-support@0.5.19
| |   +-- buffer-from@1.1.2 deduped
| |   `-- source-map@0.6.1
| +-- terser-webpack-plugin@4.2.3
| | +-- cacache@15.3.0 deduped
| | +-- find-cache-dir@3.3.1 deduped
| | +-- jest-worker@26.6.2 deduped
| | +-- p-limit@3.1.0
| | | `-- yocto-queue@0.1.0 deduped
| | +-- schema-utils@3.1.1
| | | +-- @types/json-schema@7.0.9 deduped
| | | +-- ajv@6.12.6 deduped
| | | `-- ajv-keywords@3.5.2 deduped
| | +-- serialize-javascript@5.0.1
| | | `-- randombytes@2.1.0 deduped
| | +-- source-map@0.6.1
| | +-- terser@5.5.1 deduped
| | `-- webpack-sources@1.4.3
| |   +-- source-list-map@2.0.1 deduped
| |   `-- source-map@0.6.1 deduped
| +-- text-table@0.2.0
| +-- tree-kill@1.2.2
| +-- webpack@4.44.2
| | +-- @webassemblyjs/ast@1.9.0
| | | +-- @webassemblyjs/helper-module-context@1.9.0 deduped
| | | +-- @webassemblyjs/helper-wasm-bytecode@1.9.0
| | | `-- @webassemblyjs/wast-parser@1.9.0
| | |   +-- @webassemblyjs/ast@1.9.0 deduped
| | |   +-- @webassemblyjs/floating-point-hex-parser@1.9.0
| | |   +-- @webassemblyjs/helper-api-error@1.9.0 deduped
| | |   +-- @webassemblyjs/helper-code-frame@1.9.0
| | |   | `-- @webassemblyjs/wast-printer@1.9.0 deduped
| | |   +-- @webassemblyjs/helper-fsm@1.9.0
| | |   `-- @xtuc/long@4.2.2
| | +-- @webassemblyjs/helper-module-context@1.9.0
| | | `-- @webassemblyjs/ast@1.9.0 deduped
| | +-- @webassemblyjs/wasm-edit@1.9.0
| | | +-- @webassemblyjs/ast@1.9.0 deduped
| | | +-- @webassemblyjs/helper-buffer@1.9.0
| | | +-- @webassemblyjs/helper-wasm-bytecode@1.9.0 deduped
| | | +-- @webassemblyjs/helper-wasm-section@1.9.0
| | | | +-- @webassemblyjs/ast@1.9.0 deduped
| | | | +-- @webassemblyjs/helper-buffer@1.9.0 deduped
| | | | +-- @webassemblyjs/helper-wasm-bytecode@1.9.0 deduped
| | | | `-- @webassemblyjs/wasm-gen@1.9.0 deduped
| | | +-- @webassemblyjs/wasm-gen@1.9.0
| | | | +-- @webassemblyjs/ast@1.9.0 deduped
| | | | +-- @webassemblyjs/helper-wasm-bytecode@1.9.0 deduped
| | | | +-- @webassemblyjs/ieee754@1.9.0 deduped
| | | | +-- @webassemblyjs/leb128@1.9.0 deduped
| | | | `-- @webassemblyjs/utf8@1.9.0 deduped
| | | +-- @webassemblyjs/wasm-opt@1.9.0
| | | | +-- @webassemblyjs/ast@1.9.0 deduped
| | | | +-- @webassemblyjs/helper-buffer@1.9.0 deduped
| | | | +-- @webassemblyjs/wasm-gen@1.9.0 deduped
| | | | `-- @webassemblyjs/wasm-parser@1.9.0 deduped
| | | +-- @webassemblyjs/wasm-parser@1.9.0 deduped
| | | `-- @webassemblyjs/wast-printer@1.9.0
| | |   +-- @webassemblyjs/ast@1.9.0 deduped
| | |   +-- @webassemblyjs/wast-parser@1.9.0 deduped
| | |   `-- @xtuc/long@4.2.2 deduped
| | +-- @webassemblyjs/wasm-parser@1.9.0
| | | +-- @webassemblyjs/ast@1.9.0 deduped
| | | +-- @webassemblyjs/helper-api-error@1.9.0
| | | +-- @webassemblyjs/helper-wasm-bytecode@1.9.0 deduped
| | | +-- @webassemblyjs/ieee754@1.9.0
| | | | `-- @xtuc/ieee754@1.2.0
| | | +-- @webassemblyjs/leb128@1.9.0
| | | | `-- @xtuc/long@4.2.2 deduped
| | | `-- @webassemblyjs/utf8@1.9.0
| | +-- acorn@6.4.2
| | +-- ajv@6.12.6 deduped
| | +-- ajv-keywords@3.5.2
| | +-- chrome-trace-event@1.0.3
| | +-- enhanced-resolve@4.5.0
| | | +-- graceful-fs@4.2.8 deduped
| | | +-- memory-fs@0.5.0
| | | | +-- errno@0.1.8 deduped
| | | | `-- readable-stream@2.3.7
| | | |   +-- core-util-is@1.0.3 deduped
| | | |   +-- inherits@2.0.4 deduped
| | | |   +-- isarray@1.0.0 deduped
| | | |   +-- process-nextick-args@2.0.1 deduped
| | | |   +-- safe-buffer@5.1.2
| | | |   +-- string_decoder@1.1.1
| | | |   | `-- safe-buffer@5.1.2 deduped
| | | |   `-- util-deprecate@1.0.2 deduped
| | | `-- tapable@1.1.3 deduped
| | +-- eslint-scope@4.0.3
| | | +-- esrecurse@4.3.0
| | | | `-- estraverse@5.2.0
| | | `-- estraverse@4.3.0
| | +-- json-parse-better-errors@1.0.2
| | +-- loader-runner@2.4.0
| | +-- loader-utils@1.4.0
| | | +-- big.js@5.2.2 deduped
| | | +-- emojis-list@3.0.0 deduped
| | | `-- json5@1.0.1
| | |   `-- minimist@1.2.5 deduped
| | +-- memory-fs@0.4.1
| | | +-- errno@0.1.8 deduped
| | | `-- readable-stream@2.3.7
| | |   +-- core-util-is@1.0.3
| | |   +-- inherits@2.0.4 deduped
| | |   +-- isarray@1.0.0
| | |   +-- process-nextick-args@2.0.1
| | |   +-- safe-buffer@5.1.2
| | |   +-- string_decoder@1.1.1
| | |   | `-- safe-buffer@5.1.2 deduped
| | |   `-- util-deprecate@1.0.2 deduped
| | +-- micromatch@3.1.10
| | | +-- arr-diff@4.0.0
| | | +-- array-unique@0.3.2
| | | +-- braces@2.3.2
| | | | +-- arr-flatten@1.1.0
| | | | +-- array-unique@0.3.2 deduped
| | | | +-- extend-shallow@2.0.1
| | | | | `-- is-extendable@0.1.1 deduped
| | | | +-- fill-range@4.0.0
| | | | | +-- extend-shallow@2.0.1
| | | | | | `-- is-extendable@0.1.1 deduped
| | | | | +-- is-number@3.0.0
| | | | | | `-- kind-of@3.2.2
| | | | | |   `-- is-buffer@1.1.6 deduped
| | | | | +-- repeat-string@1.6.1
| | | | | `-- to-regex-range@2.1.1
| | | | |   +-- is-number@3.0.0 deduped
| | | | |   `-- repeat-string@1.6.1 deduped
| | | | +-- isobject@3.0.1 deduped
| | | | +-- repeat-element@1.1.4
| | | | +-- snapdragon@0.8.2 deduped
| | | | +-- snapdragon-node@2.1.1
| | | | | +-- define-property@1.0.0
| | | | | | `-- is-descriptor@1.0.2
| | | | | |   +-- is-accessor-descriptor@1.0.0
| | | | | |   | `-- kind-of@6.0.3 deduped
| | | | | |   +-- is-data-descriptor@1.0.0
| | | | | |   | `-- kind-of@6.0.3 deduped
| | | | | |   `-- kind-of@6.0.3 deduped
| | | | | +-- isobject@3.0.1 deduped
| | | | | `-- snapdragon-util@3.0.1
| | | | |   `-- kind-of@3.2.2
| | | | |     `-- is-buffer@1.1.6
| | | | +-- split-string@3.1.0
| | | | | `-- extend-shallow@3.0.2 deduped
| | | | `-- to-regex@3.0.2 deduped
| | | +-- define-property@2.0.2
| | | | +-- is-descriptor@1.0.2
| | | | | +-- is-accessor-descriptor@1.0.0
| | | | | | `-- kind-of@6.0.3 deduped
| | | | | +-- is-data-descriptor@1.0.0
| | | | | | `-- kind-of@6.0.3 deduped
| | | | | `-- kind-of@6.0.3 deduped
| | | | `-- isobject@3.0.1
| | | +-- extend-shallow@3.0.2
| | | | +-- assign-symbols@1.0.0
| | | | `-- is-extendable@1.0.1
| | | |   `-- is-plain-object@2.0.4 deduped
| | | +-- extglob@2.0.4
| | | | +-- array-unique@0.3.2 deduped
| | | | +-- define-property@1.0.0
| | | | | `-- is-descriptor@1.0.2
| | | | |   +-- is-accessor-descriptor@1.0.0
| | | | |   | `-- kind-of@6.0.3 deduped
| | | | |   +-- is-data-descriptor@1.0.0
| | | | |   | `-- kind-of@6.0.3 deduped
| | | | |   `-- kind-of@6.0.3 deduped
| | | | +-- expand-brackets@2.1.4
| | | | | +-- debug@2.6.9
| | | | | | `-- ms@2.0.0
| | | | | +-- define-property@0.2.5
| | | | | | `-- is-descriptor@0.1.6 deduped
| | | | | +-- extend-shallow@2.0.1
| | | | | | `-- is-extendable@0.1.1 deduped
| | | | | +-- posix-character-classes@0.1.1
| | | | | +-- regex-not@1.0.2 deduped
| | | | | +-- snapdragon@0.8.2 deduped
| | | | | `-- to-regex@3.0.2 deduped
| | | | +-- extend-shallow@2.0.1
| | | | | `-- is-extendable@0.1.1
| | | | +-- fragment-cache@0.2.1 deduped
| | | | +-- regex-not@1.0.2 deduped
| | | | +-- snapdragon@0.8.2 deduped
| | | | `-- to-regex@3.0.2 deduped
| | | +-- fragment-cache@0.2.1
| | | | `-- map-cache@0.2.2
| | | +-- kind-of@6.0.3
| | | +-- nanomatch@1.2.13
| | | | +-- arr-diff@4.0.0 deduped
| | | | +-- array-unique@0.3.2 deduped
| | | | +-- define-property@2.0.2 deduped
| | | | +-- extend-shallow@3.0.2 deduped
| | | | +-- fragment-cache@0.2.1 deduped
| | | | +-- is-windows@1.0.2
| | | | +-- kind-of@6.0.3 deduped
| | | | +-- object.pick@1.3.0 deduped
| | | | +-- regex-not@1.0.2 deduped
| | | | +-- snapdragon@0.8.2 deduped
| | | | `-- to-regex@3.0.2 deduped
| | | +-- object.pick@1.3.0
| | | | `-- isobject@3.0.1 deduped
| | | +-- regex-not@1.0.2
| | | | +-- extend-shallow@3.0.2 deduped
| | | | `-- safe-regex@1.1.0
| | | |   `-- ret@0.1.15
| | | +-- snapdragon@0.8.2
| | | | +-- base@0.11.2
| | | | | +-- cache-base@1.0.1
| | | | | | +-- collection-visit@1.0.0
| | | | | | | +-- map-visit@1.0.0
| | | | | | | | `-- object-visit@1.0.1 deduped
| | | | | | | `-- object-visit@1.0.1
| | | | | | |   `-- isobject@3.0.1 deduped
| | | | | | +-- component-emitter@1.3.0 deduped
| | | | | | +-- get-value@2.0.6
| | | | | | +-- has-value@1.0.0
| | | | | | | +-- get-value@2.0.6 deduped
| | | | | | | +-- has-values@1.0.0
| | | | | | | | +-- is-number@3.0.0
| | | | | | | | | `-- kind-of@3.2.2
| | | | | | | | |   `-- is-buffer@1.1.6 deduped
| | | | | | | | `-- kind-of@4.0.0
| | | | | | | |   `-- is-buffer@1.1.6 deduped
| | | | | | | `-- isobject@3.0.1 deduped
| | | | | | +-- isobject@3.0.1 deduped
| | | | | | +-- set-value@2.0.1
| | | | | | | +-- extend-shallow@2.0.1
| | | | | | | | `-- is-extendable@0.1.1 deduped
| | | | | | | +-- is-extendable@0.1.1 deduped
| | | | | | | +-- is-plain-object@2.0.4 deduped
| | | | | | | `-- split-string@3.1.0 deduped
| | | | | | +-- to-object-path@0.3.0
| | | | | | | `-- kind-of@3.2.2
| | | | | | |   `-- is-buffer@1.1.6 deduped
| | | | | | +-- union-value@1.0.1
| | | | | | | +-- arr-union@3.1.0 deduped
| | | | | | | +-- get-value@2.0.6 deduped
| | | | | | | +-- is-extendable@0.1.1 deduped
| | | | | | | `-- set-value@2.0.1 deduped
| | | | | | `-- unset-value@1.0.0
| | | | | |   +-- has-value@0.3.1
| | | | | |   | +-- get-value@2.0.6 deduped
| | | | | |   | +-- has-values@0.1.4
| | | | | |   | `-- isobject@2.1.0
| | | | | |   |   `-- isarray@1.0.0 deduped
| | | | | |   `-- isobject@3.0.1 deduped
| | | | | +-- class-utils@0.3.6
| | | | | | +-- arr-union@3.1.0
| | | | | | +-- define-property@0.2.5
| | | | | | | `-- is-descriptor@0.1.6 deduped
| | | | | | +-- isobject@3.0.1 deduped
| | | | | | `-- static-extend@0.1.2
| | | | | |   +-- define-property@0.2.5
| | | | | |   | `-- is-descriptor@0.1.6 deduped
| | | | | |   `-- object-copy@0.1.0
| | | | | |     +-- copy-descriptor@0.1.1
| | | | | |     +-- define-property@0.2.5
| | | | | |     | `-- is-descriptor@0.1.6 deduped
| | | | | |     `-- kind-of@3.2.2
| | | | | |       `-- is-buffer@1.1.6 deduped
| | | | | +-- component-emitter@1.3.0 deduped
| | | | | +-- define-property@1.0.0
| | | | | | `-- is-descriptor@1.0.2
| | | | | |   +-- is-accessor-descriptor@1.0.0
| | | | | |   | `-- kind-of@6.0.3 deduped
| | | | | |   +-- is-data-descriptor@1.0.0
| | | | | |   | `-- kind-of@6.0.3 deduped
| | | | | |   `-- kind-of@6.0.3 deduped
| | | | | +-- isobject@3.0.1 deduped
| | | | | +-- mixin-deep@1.3.2
| | | | | | +-- for-in@1.0.2
| | | | | | `-- is-extendable@1.0.1
| | | | | |   `-- is-plain-object@2.0.4 deduped
| | | | | `-- pascalcase@0.1.1
| | | | +-- debug@2.6.9
| | | | | `-- ms@2.0.0
| | | | +-- define-property@0.2.5
| | | | | `-- is-descriptor@0.1.6
| | | | |   +-- is-accessor-descriptor@0.1.6
| | | | |   | `-- kind-of@3.2.2
| | | | |   |   `-- is-buffer@1.1.6 deduped
| | | | |   +-- is-data-descriptor@0.1.4
| | | | |   | `-- kind-of@3.2.2
| | | | |   |   `-- is-buffer@1.1.6 deduped
| | | | |   `-- kind-of@5.1.0
| | | | +-- extend-shallow@2.0.1
| | | | | `-- is-extendable@0.1.1 deduped
| | | | +-- map-cache@0.2.2 deduped
| | | | +-- source-map@0.5.7
| | | | +-- source-map-resolve@0.5.3
| | | | | +-- atob@2.1.2 deduped
| | | | | +-- decode-uri-component@0.2.0 deduped
| | | | | +-- resolve-url@0.2.1 deduped
| | | | | +-- source-map-url@0.4.1 deduped
| | | | | `-- urix@0.1.0 deduped
| | | | `-- use@3.1.1
| | | `-- to-regex@3.0.2
| | |   +-- define-property@2.0.2 deduped
| | |   +-- extend-shallow@3.0.2 deduped
| | |   +-- regex-not@1.0.2 deduped
| | |   `-- safe-regex@1.1.0 deduped
| | +-- mkdirp@0.5.5
| | | `-- minimist@1.2.5 deduped
| | +-- neo-async@2.6.2 deduped
| | +-- node-libs-browser@2.2.1
| | | +-- assert@1.5.0
| | | | +-- object-assign@4.1.1 deduped
| | | | `-- util@0.10.3
| | | |   `-- inherits@2.0.1
| | | +-- browserify-zlib@0.2.0
| | | | `-- pako@1.0.11 deduped
| | | +-- buffer@4.9.2
| | | | +-- base64-js@1.5.1 deduped
| | | | +-- ieee754@1.2.1 deduped
| | | | `-- isarray@1.0.0 deduped
| | | +-- console-browserify@1.2.0
| | | +-- constants-browserify@1.0.0
| | | +-- crypto-browserify@3.12.0
| | | | +-- browserify-cipher@1.0.1
| | | | | +-- browserify-aes@1.2.0
| | | | | | +-- buffer-xor@1.0.3
| | | | | | +-- cipher-base@1.0.4 deduped
| | | | | | +-- create-hash@1.2.0 deduped
| | | | | | +-- evp_bytestokey@1.0.3 deduped
| | | | | | +-- inherits@2.0.4 deduped
| | | | | | `-- safe-buffer@5.2.1 deduped
| | | | | +-- browserify-des@1.0.2
| | | | | | +-- cipher-base@1.0.4 deduped
| | | | | | +-- des.js@1.0.1
| | | | | | | +-- inherits@2.0.4 deduped
| | | | | | | `-- minimalistic-assert@1.0.1 deduped
| | | | | | +-- inherits@2.0.4 deduped
| | | | | | `-- safe-buffer@5.2.1 deduped
| | | | | `-- evp_bytestokey@1.0.3
| | | | |   +-- md5.js@1.3.5 deduped
| | | | |   `-- safe-buffer@5.2.1 deduped
| | | | +-- browserify-sign@4.2.1
| | | | | +-- bn.js@5.2.0
| | | | | +-- browserify-rsa@4.1.0
| | | | | | +-- bn.js@5.2.0 deduped
| | | | | | `-- randombytes@2.1.0 deduped
| | | | | +-- create-hash@1.2.0 deduped
| | | | | +-- create-hmac@1.1.7 deduped
| | | | | +-- elliptic@6.5.4
| | | | | | +-- bn.js@4.12.0
| | | | | | +-- brorand@1.1.0
| | | | | | +-- hash.js@1.1.7
| | | | | | | +-- inherits@2.0.4 deduped
| | | | | | | `-- minimalistic-assert@1.0.1 deduped
| | | | | | +-- hmac-drbg@1.0.1
| | | | | | | +-- hash.js@1.1.7 deduped
| | | | | | | +-- minimalistic-assert@1.0.1 deduped
| | | | | | | `-- minimalistic-crypto-utils@1.0.1 deduped
| | | | | | +-- inherits@2.0.4 deduped
| | | | | | +-- minimalistic-assert@1.0.1 deduped
| | | | | | `-- minimalistic-crypto-utils@1.0.1
| | | | | +-- inherits@2.0.4 deduped
| | | | | +-- parse-asn1@5.1.6
| | | | | | +-- asn1.js@5.4.1
| | | | | | | +-- bn.js@4.12.0
| | | | | | | +-- inherits@2.0.4 deduped
| | | | | | | +-- minimalistic-assert@1.0.1 deduped
| | | | | | | `-- safer-buffer@2.1.2 deduped
| | | | | | +-- browserify-aes@1.2.0 deduped
| | | | | | +-- evp_bytestokey@1.0.3 deduped
| | | | | | +-- pbkdf2@3.1.2 deduped
| | | | | | `-- safe-buffer@5.2.1 deduped
| | | | | +-- readable-stream@3.6.0 deduped
| | | | | `-- safe-buffer@5.2.1 deduped
| | | | +-- create-ecdh@4.0.4
| | | | | +-- bn.js@4.12.0
| | | | | `-- elliptic@6.5.4 deduped
| | | | +-- create-hash@1.2.0
| | | | | +-- cipher-base@1.0.4
| | | | | | +-- inherits@2.0.4 deduped
| | | | | | `-- safe-buffer@5.2.1 deduped
| | | | | +-- inherits@2.0.4 deduped
| | | | | +-- md5.js@1.3.5
| | | | | | +-- hash-base@3.1.0
| | | | | | | +-- inherits@2.0.4 deduped
| | | | | | | +-- readable-stream@3.6.0 deduped
| | | | | | | `-- safe-buffer@5.2.1 deduped
| | | | | | +-- inherits@2.0.4 deduped
| | | | | | `-- safe-buffer@5.2.1 deduped
| | | | | +-- ripemd160@2.0.2
| | | | | | +-- hash-base@3.1.0 deduped
| | | | | | `-- inherits@2.0.4 deduped
| | | | | `-- sha.js@2.4.11
| | | | |   +-- inherits@2.0.4 deduped
| | | | |   `-- safe-buffer@5.2.1 deduped
| | | | +-- create-hmac@1.1.7
| | | | | +-- cipher-base@1.0.4 deduped
| | | | | +-- create-hash@1.2.0 deduped
| | | | | +-- inherits@2.0.4 deduped
| | | | | +-- ripemd160@2.0.2 deduped
| | | | | +-- safe-buffer@5.2.1 deduped
| | | | | `-- sha.js@2.4.11 deduped
| | | | +-- diffie-hellman@5.0.3
| | | | | +-- bn.js@4.12.0
| | | | | +-- miller-rabin@4.0.1
| | | | | | +-- bn.js@4.12.0
| | | | | | `-- brorand@1.1.0 deduped
| | | | | `-- randombytes@2.1.0 deduped
| | | | +-- inherits@2.0.4 deduped
| | | | +-- pbkdf2@3.1.2
| | | | | +-- create-hash@1.2.0 deduped
| | | | | +-- create-hmac@1.1.7 deduped
| | | | | +-- ripemd160@2.0.2 deduped
| | | | | +-- safe-buffer@5.2.1 deduped
| | | | | `-- sha.js@2.4.11 deduped
| | | | +-- public-encrypt@4.0.3
| | | | | +-- bn.js@4.12.0
| | | | | +-- browserify-rsa@4.1.0 deduped
| | | | | +-- create-hash@1.2.0 deduped
| | | | | +-- parse-asn1@5.1.6 deduped
| | | | | +-- randombytes@2.1.0 deduped
| | | | | `-- safe-buffer@5.2.1 deduped
| | | | +-- randombytes@2.1.0 deduped
| | | | `-- randomfill@1.0.4
| | | |   +-- randombytes@2.1.0 deduped
| | | |   `-- safe-buffer@5.2.1 deduped
| | | +-- domain-browser@1.2.0
| | | +-- events@3.3.0 deduped
| | | +-- https-browserify@1.0.0
| | | +-- os-browserify@0.3.0
| | | +-- path-browserify@0.0.1
| | | +-- process@0.11.10
| | | +-- punycode@1.4.1
| | | +-- querystring-es3@0.2.1
| | | +-- readable-stream@2.3.7
| | | | +-- core-util-is@1.0.3 deduped
| | | | +-- inherits@2.0.4 deduped
| | | | +-- isarray@1.0.0 deduped
| | | | +-- process-nextick-args@2.0.1 deduped
| | | | +-- safe-buffer@5.1.2
| | | | +-- string_decoder@1.1.1
| | | | | `-- safe-buffer@5.1.2 deduped
| | | | `-- util-deprecate@1.0.2 deduped
| | | +-- stream-browserify@2.0.2
| | | | +-- inherits@2.0.4 deduped
| | | | `-- readable-stream@2.3.7
| | | |   +-- core-util-is@1.0.3 deduped
| | | |   +-- inherits@2.0.4 deduped
| | | |   +-- isarray@1.0.0 deduped
| | | |   +-- process-nextick-args@2.0.1 deduped
| | | |   +-- safe-buffer@5.1.2
| | | |   +-- string_decoder@1.1.1
| | | |   | `-- safe-buffer@5.1.2 deduped
| | | |   `-- util-deprecate@1.0.2 deduped
| | | +-- stream-http@2.8.3
| | | | +-- builtin-status-codes@3.0.0
| | | | +-- inherits@2.0.4 deduped
| | | | +-- readable-stream@2.3.7
| | | | | +-- core-util-is@1.0.3 deduped
| | | | | +-- inherits@2.0.4 deduped
| | | | | +-- isarray@1.0.0 deduped
| | | | | +-- process-nextick-args@2.0.1 deduped
| | | | | +-- safe-buffer@5.1.2
| | | | | +-- string_decoder@1.1.1
| | | | | | `-- safe-buffer@5.1.2 deduped
| | | | | `-- util-deprecate@1.0.2 deduped
| | | | +-- to-arraybuffer@1.0.1
| | | | `-- xtend@4.0.2
| | | +-- string_decoder@1.3.0
| | | | `-- safe-buffer@5.2.1 deduped
| | | +-- timers-browserify@2.0.12
| | | | `-- setimmediate@1.0.5
| | | +-- tty-browserify@0.0.0
| | | +-- url@0.11.0 deduped
| | | +-- util@0.11.1
| | | | `-- inherits@2.0.3
| | | `-- vm-browserify@1.1.2
| | +-- schema-utils@1.0.0
| | | +-- ajv@6.12.6 deduped
| | | +-- ajv-errors@1.0.1
| | | `-- ajv-keywords@3.5.2 deduped
| | +-- tapable@1.1.3
| | +-- terser-webpack-plugin@1.4.5
| | | +-- cacache@12.0.4
| | | | +-- bluebird@3.7.2
| | | | +-- chownr@1.1.4
| | | | +-- figgy-pudding@3.5.2
| | | | +-- glob@7.1.7 deduped
| | | | +-- graceful-fs@4.2.8 deduped
| | | | +-- infer-owner@1.0.4 deduped
| | | | +-- lru-cache@5.1.1
| | | | | `-- yallist@3.1.1
| | | | +-- mississippi@3.0.0
| | | | | +-- concat-stream@1.6.2
| | | | | | +-- buffer-from@1.1.2 deduped
| | | | | | +-- inherits@2.0.4 deduped
| | | | | | +-- readable-stream@2.3.7
| | | | | | | +-- core-util-is@1.0.3 deduped
| | | | | | | +-- inherits@2.0.4 deduped
| | | | | | | +-- isarray@1.0.0 deduped
| | | | | | | +-- process-nextick-args@2.0.1 deduped
| | | | | | | +-- safe-buffer@5.1.2
| | | | | | | +-- string_decoder@1.1.1
| | | | | | | | `-- safe-buffer@5.1.2 deduped
| | | | | | | `-- util-deprecate@1.0.2 deduped
| | | | | | `-- typedarray@0.0.6
| | | | | +-- duplexify@3.7.1
| | | | | | +-- end-of-stream@1.4.4 deduped
| | | | | | +-- inherits@2.0.4 deduped
| | | | | | +-- readable-stream@2.3.7
| | | | | | | +-- core-util-is@1.0.3 deduped
| | | | | | | +-- inherits@2.0.4 deduped
| | | | | | | +-- isarray@1.0.0 deduped
| | | | | | | +-- process-nextick-args@2.0.1 deduped
| | | | | | | +-- safe-buffer@5.1.2
| | | | | | | +-- string_decoder@1.1.1
| | | | | | | | `-- safe-buffer@5.1.2 deduped
| | | | | | | `-- util-deprecate@1.0.2 deduped
| | | | | | `-- stream-shift@1.0.1
| | | | | +-- end-of-stream@1.4.4
| | | | | | `-- once@1.4.0 deduped
| | | | | +-- flush-write-stream@1.1.1
| | | | | | +-- inherits@2.0.4 deduped
| | | | | | `-- readable-stream@2.3.7
| | | | | |   +-- core-util-is@1.0.3 deduped
| | | | | |   +-- inherits@2.0.4 deduped
| | | | | |   +-- isarray@1.0.0 deduped
| | | | | |   +-- process-nextick-args@2.0.1 deduped
| | | | | |   +-- safe-buffer@5.1.2
| | | | | |   +-- string_decoder@1.1.1
| | | | | |   | `-- safe-buffer@5.1.2 deduped
| | | | | |   `-- util-deprecate@1.0.2 deduped
| | | | | +-- from2@2.3.0
| | | | | | +-- inherits@2.0.4 deduped
| | | | | | `-- readable-stream@2.3.7
| | | | | |   +-- core-util-is@1.0.3 deduped
| | | | | |   +-- inherits@2.0.4 deduped
| | | | | |   +-- isarray@1.0.0 deduped
| | | | | |   +-- process-nextick-args@2.0.1 deduped
| | | | | |   +-- safe-buffer@5.1.2
| | | | | |   +-- string_decoder@1.1.1
| | | | | |   | `-- safe-buffer@5.1.2 deduped
| | | | | |   `-- util-deprecate@1.0.2 deduped
| | | | | +-- parallel-transform@1.2.0
| | | | | | +-- cyclist@1.0.1
| | | | | | +-- inherits@2.0.4 deduped
| | | | | | `-- readable-stream@2.3.7
| | | | | |   +-- core-util-is@1.0.3 deduped
| | | | | |   +-- inherits@2.0.4 deduped
| | | | | |   +-- isarray@1.0.0 deduped
| | | | | |   +-- process-nextick-args@2.0.1 deduped
| | | | | |   +-- safe-buffer@5.1.2
| | | | | |   +-- string_decoder@1.1.1
| | | | | |   | `-- safe-buffer@5.1.2 deduped
| | | | | |   `-- util-deprecate@1.0.2 deduped
| | | | | +-- pump@3.0.0
| | | | | | +-- end-of-stream@1.4.4 deduped
| | | | | | `-- once@1.4.0 deduped
| | | | | +-- pumpify@1.5.1
| | | | | | +-- duplexify@3.7.1 deduped
| | | | | | +-- inherits@2.0.4 deduped
| | | | | | `-- pump@2.0.1
| | | | | |   +-- end-of-stream@1.4.4 deduped
| | | | | |   `-- once@1.4.0 deduped
| | | | | +-- stream-each@1.2.3
| | | | | | +-- end-of-stream@1.4.4 deduped
| | | | | | `-- stream-shift@1.0.1 deduped
| | | | | `-- through2@2.0.5
| | | | |   +-- readable-stream@2.3.7
| | | | |   | +-- core-util-is@1.0.3 deduped
| | | | |   | +-- inherits@2.0.4 deduped
| | | | |   | +-- isarray@1.0.0 deduped
| | | | |   | +-- process-nextick-args@2.0.1 deduped
| | | | |   | +-- safe-buffer@5.1.2
| | | | |   | +-- string_decoder@1.1.1
| | | | |   | | `-- safe-buffer@5.1.2 deduped
| | | | |   | `-- util-deprecate@1.0.2 deduped
| | | | |   `-- xtend@4.0.2 deduped
| | | | +-- mkdirp@0.5.5 deduped
| | | | +-- move-concurrently@1.0.1
| | | | | +-- aproba@1.2.0
| | | | | +-- copy-concurrently@1.0.5
| | | | | | +-- aproba@1.2.0 deduped
| | | | | | +-- fs-write-stream-atomic@1.0.10 deduped
| | | | | | +-- iferr@0.1.5
| | | | | | +-- mkdirp@0.5.5
| | | | | | | `-- minimist@1.2.5 deduped
| | | | | | +-- rimraf@2.7.1
| | | | | | | `-- glob@7.1.7 deduped
| | | | | | `-- run-queue@1.0.3 deduped
| | | | | +-- fs-write-stream-atomic@1.0.10
| | | | | | +-- graceful-fs@4.2.8 deduped
| | | | | | +-- iferr@0.1.5 deduped
| | | | | | +-- imurmurhash@0.1.4 deduped
| | | | | | `-- readable-stream@2.3.7
| | | | | |   +-- core-util-is@1.0.3 deduped
| | | | | |   +-- inherits@2.0.4 deduped
| | | | | |   +-- isarray@1.0.0 deduped
| | | | | |   +-- process-nextick-args@2.0.1 deduped
| | | | | |   +-- safe-buffer@5.1.2
| | | | | |   +-- string_decoder@1.1.1
| | | | | |   | `-- safe-buffer@5.1.2 deduped
| | | | | |   `-- util-deprecate@1.0.2 deduped
| | | | | +-- mkdirp@0.5.5
| | | | | | `-- minimist@1.2.5 deduped
| | | | | +-- rimraf@2.7.1
| | | | | | `-- glob@7.1.7 deduped
| | | | | `-- run-queue@1.0.3
| | | | |   `-- aproba@1.2.0 deduped
| | | | +-- promise-inflight@1.0.1 deduped
| | | | +-- rimraf@2.7.1
| | | | | `-- glob@7.1.7 deduped
| | | | +-- ssri@6.0.2
| | | | | `-- figgy-pudding@3.5.2 deduped
| | | | +-- unique-filename@1.1.1 deduped
| | | | `-- y18n@4.0.3
| | | +-- find-cache-dir@2.1.0
| | | | +-- commondir@1.0.1 deduped
| | | | +-- make-dir@2.1.0
| | | | | +-- pify@4.0.1
| | | | | `-- semver@5.7.1
| | | | `-- pkg-dir@3.0.0
| | | |   `-- find-up@3.0.0
| | | |     `-- locate-path@3.0.0
| | | |       +-- p-locate@3.0.0
| | | |       | `-- p-limit@2.3.0 deduped
| | | |       `-- path-exists@3.0.0
| | | +-- is-wsl@1.1.0
| | | +-- schema-utils@1.0.0 deduped
| | | +-- serialize-javascript@4.0.0 deduped
| | | +-- source-map@0.6.1
| | | +-- terser@4.8.0
| | | | +-- commander@2.20.3 deduped
| | | | +-- source-map@0.6.1 deduped
| | | | `-- source-map-support@0.5.19
| | | |   +-- buffer-from@1.1.2 deduped
| | | |   `-- source-map@0.6.1 deduped
| | | +-- webpack-sources@1.4.3 deduped
| | | `-- worker-farm@1.7.0
| | |   `-- errno@0.1.8 deduped
| | +-- watchpack@1.7.5
| | | +-- chokidar@3.5.2 deduped
| | | +-- graceful-fs@4.2.8 deduped
| | | +-- neo-async@2.6.2 deduped
| | | `-- watchpack-chokidar2@2.0.1
| | |   `-- chokidar@2.1.8
| | |     +-- anymatch@2.0.0
| | |     | +-- micromatch@3.1.10
| | |     | | +-- arr-diff@4.0.0 deduped
| | |     | | +-- array-unique@0.3.2 deduped
| | |     | | +-- braces@2.3.2 deduped
| | |     | | +-- define-property@2.0.2 deduped
| | |     | | +-- extend-shallow@3.0.2 deduped
| | |     | | +-- extglob@2.0.4 deduped
| | |     | | +-- fragment-cache@0.2.1 deduped
| | |     | | +-- kind-of@6.0.3 deduped
| | |     | | +-- nanomatch@1.2.13 deduped
| | |     | | +-- object.pick@1.3.0 deduped
| | |     | | +-- regex-not@1.0.2 deduped
| | |     | | +-- snapdragon@0.8.2 deduped
| | |     | | `-- to-regex@3.0.2 deduped
| | |     | `-- normalize-path@2.1.1
| | |     |   `-- remove-trailing-separator@1.1.0 deduped
| | |     +-- async-each@1.0.3 deduped
| | |     +-- braces@2.3.2
| | |     | +-- arr-flatten@1.1.0 deduped
| | |     | +-- array-unique@0.3.2 deduped
| | |     | +-- extend-shallow@2.0.1
| | |     | | `-- is-extendable@0.1.1 deduped
| | |     | +-- fill-range@4.0.0
| | |     | | +-- extend-shallow@2.0.1
| | |     | | | `-- is-extendable@0.1.1 deduped
| | |     | | +-- is-number@3.0.0
| | |     | | | `-- kind-of@3.2.2
| | |     | | |   `-- is-buffer@1.1.6 deduped
| | |     | | +-- repeat-string@1.6.1 deduped
| | |     | | `-- to-regex-range@2.1.1
| | |     | |   +-- is-number@3.0.0 deduped
| | |     | |   `-- repeat-string@1.6.1 deduped
| | |     | +-- isobject@3.0.1 deduped
| | |     | +-- repeat-element@1.1.4 deduped
| | |     | +-- snapdragon@0.8.2 deduped
| | |     | +-- snapdragon-node@2.1.1 deduped
| | |     | +-- split-string@3.1.0 deduped
| | |     | `-- to-regex@3.0.2 deduped
| | |     +-- UNMET OPTIONAL DEPENDENCY fsevents@1.2.13
| | |     +-- glob-parent@3.1.0
| | |     | +-- is-glob@3.1.0
| | |     | | `-- is-extglob@2.1.1 deduped
| | |     | `-- path-dirname@1.0.2 deduped
| | |     +-- inherits@2.0.4 deduped
| | |     +-- is-binary-path@1.0.1
| | |     | `-- binary-extensions@1.13.1
| | |     +-- is-glob@4.0.1 deduped
| | |     +-- normalize-path@3.0.0 deduped
| | |     +-- path-is-absolute@1.0.1 deduped
| | |     +-- readdirp@2.2.1
| | |     | +-- graceful-fs@4.2.8 deduped
| | |     | +-- micromatch@3.1.10 deduped
| | |     | `-- readable-stream@2.3.7
| | |     |   +-- core-util-is@1.0.3 deduped
| | |     |   +-- inherits@2.0.4 deduped
| | |     |   +-- isarray@1.0.0 deduped
| | |     |   +-- process-nextick-args@2.0.1 deduped
| | |     |   +-- safe-buffer@5.1.2
| | |     |   +-- string_decoder@1.1.1
| | |     |   | `-- safe-buffer@5.1.2 deduped
| | |     |   `-- util-deprecate@1.0.2 deduped
| | |     `-- upath@1.2.0 deduped
| | `-- webpack-sources@1.4.3
| |   +-- source-list-map@2.0.1 deduped
| |   `-- source-map@0.6.1 deduped
| +-- webpack-dev-middleware@3.7.2
| | +-- memory-fs@0.4.1 deduped
| | +-- mime@2.5.2
| | +-- mkdirp@0.5.5
| | | `-- minimist@1.2.5 deduped
| | +-- range-parser@1.2.1 deduped
| | `-- webpack-log@2.0.0
| |   +-- ansi-colors@3.2.4
| |   `-- uuid@3.4.0
| +-- webpack-dev-server@3.11.2
| | +-- ansi-html@0.0.7
| | +-- bonjour@3.5.0
| | | +-- array-flatten@2.1.2
| | | +-- deep-equal@1.1.1
| | | | +-- is-arguments@1.1.1
| | | | | +-- call-bind@1.0.2 deduped
| | | | | `-- has-tostringtag@1.0.0
| | | | |   `-- has-symbols@1.0.2 deduped
| | | | +-- is-date-object@1.0.5
| | | | | `-- has-tostringtag@1.0.0 deduped
| | | | +-- is-regex@1.1.4
| | | | | +-- call-bind@1.0.2 deduped
| | | | | `-- has-tostringtag@1.0.0 deduped
| | | | +-- object-is@1.1.5
| | | | | +-- call-bind@1.0.2 deduped
| | | | | `-- define-properties@1.1.3 deduped
| | | | +-- object-keys@1.1.1
| | | | `-- regexp.prototype.flags@1.3.1
| | | |   +-- call-bind@1.0.2 deduped
| | | |   `-- define-properties@1.1.3 deduped
| | | +-- dns-equal@1.0.0
| | | +-- dns-txt@2.0.2
| | | | `-- buffer-indexof@1.1.1
| | | +-- multicast-dns@6.2.3
| | | | +-- dns-packet@1.3.4
| | | | | +-- ip@1.1.5 deduped
| | | | | `-- safe-buffer@5.2.1 deduped
| | | | `-- thunky@1.1.0
| | | `-- multicast-dns-service-types@1.1.0
| | +-- chokidar@2.1.8
| | | +-- anymatch@2.0.0
| | | | +-- micromatch@3.1.10
| | | | | +-- arr-diff@4.0.0 deduped
| | | | | +-- array-unique@0.3.2 deduped
| | | | | +-- braces@2.3.2 deduped
| | | | | +-- define-property@2.0.2 deduped
| | | | | +-- extend-shallow@3.0.2 deduped
| | | | | +-- extglob@2.0.4 deduped
| | | | | +-- fragment-cache@0.2.1 deduped
| | | | | +-- kind-of@6.0.3 deduped
| | | | | +-- nanomatch@1.2.13 deduped
| | | | | +-- object.pick@1.3.0 deduped
| | | | | +-- regex-not@1.0.2 deduped
| | | | | +-- snapdragon@0.8.2 deduped
| | | | | `-- to-regex@3.0.2 deduped
| | | | `-- normalize-path@2.1.1
| | | |   `-- remove-trailing-separator@1.1.0
| | | +-- async-each@1.0.3
| | | +-- braces@2.3.2
| | | | +-- arr-flatten@1.1.0 deduped
| | | | +-- array-unique@0.3.2 deduped
| | | | +-- extend-shallow@2.0.1
| | | | | `-- is-extendable@0.1.1 deduped
| | | | +-- fill-range@4.0.0
| | | | | +-- extend-shallow@2.0.1
| | | | | | `-- is-extendable@0.1.1 deduped
| | | | | +-- is-number@3.0.0
| | | | | | `-- kind-of@3.2.2
| | | | | |   `-- is-buffer@1.1.6 deduped
| | | | | +-- repeat-string@1.6.1 deduped
| | | | | `-- to-regex-range@2.1.1
| | | | |   +-- is-number@3.0.0 deduped
| | | | |   `-- repeat-string@1.6.1 deduped
| | | | +-- isobject@3.0.1 deduped
| | | | +-- repeat-element@1.1.4 deduped
| | | | +-- snapdragon@0.8.2 deduped
| | | | +-- snapdragon-node@2.1.1 deduped
| | | | +-- split-string@3.1.0 deduped
| | | | `-- to-regex@3.0.2 deduped
| | | +-- UNMET OPTIONAL DEPENDENCY fsevents@1.2.13
| | | +-- glob-parent@3.1.0
| | | | +-- is-glob@3.1.0
| | | | | `-- is-extglob@2.1.1 deduped
| | | | `-- path-dirname@1.0.2
| | | +-- inherits@2.0.4 deduped
| | | +-- is-binary-path@1.0.1
| | | | `-- binary-extensions@1.13.1
| | | +-- is-glob@4.0.1 deduped
| | | +-- normalize-path@3.0.0 deduped
| | | +-- path-is-absolute@1.0.1 deduped
| | | +-- readdirp@2.2.1
| | | | +-- graceful-fs@4.2.8 deduped
| | | | +-- micromatch@3.1.10 deduped
| | | | `-- readable-stream@2.3.7
| | | |   +-- core-util-is@1.0.3 deduped
| | | |   +-- inherits@2.0.4 deduped
| | | |   +-- isarray@1.0.0 deduped
| | | |   +-- process-nextick-args@2.0.1 deduped
| | | |   +-- safe-buffer@5.1.2
| | | |   +-- string_decoder@1.1.1
| | | |   | `-- safe-buffer@5.1.2 deduped
| | | |   `-- util-deprecate@1.0.2 deduped
| | | `-- upath@1.2.0
| | +-- compression@1.7.4
| | | +-- accepts@1.3.7 deduped
| | | +-- bytes@3.0.0
| | | +-- compressible@2.0.18
| | | | `-- mime-db@1.49.0 deduped
| | | +-- debug@2.6.9
| | | | `-- ms@2.0.0
| | | +-- on-headers@1.0.2
| | | +-- safe-buffer@5.1.2
| | | `-- vary@1.1.2 deduped
| | +-- connect-history-api-fallback@1.6.0
| | +-- debug@4.3.1 deduped
| | +-- del@4.1.1
| | | +-- @types/glob@7.1.4
| | | | +-- @types/minimatch@3.0.5
| | | | `-- @types/node@16.7.7 deduped
| | | +-- globby@6.1.0
| | | | +-- array-union@1.0.2
| | | | | `-- array-uniq@1.0.3
| | | | +-- glob@7.1.7 deduped
| | | | +-- object-assign@4.1.1 deduped
| | | | +-- pify@2.3.0
| | | | `-- pinkie-promise@2.0.1 deduped
| | | +-- is-path-cwd@2.2.0
| | | +-- is-path-in-cwd@2.1.0
| | | | `-- is-path-inside@2.1.0
| | | |   `-- path-is-inside@1.0.2
| | | +-- p-map@2.1.0
| | | +-- pify@4.0.1
| | | `-- rimraf@2.7.1
| | |   `-- glob@7.1.7 deduped
| | +-- express@4.17.1
| | | +-- accepts@1.3.7 deduped
| | | +-- array-flatten@1.1.1
| | | +-- body-parser@1.19.0 deduped
| | | +-- content-disposition@0.5.3
| | | | `-- safe-buffer@5.1.2
| | | +-- content-type@1.0.4 deduped
| | | +-- cookie@0.4.0
| | | +-- cookie-signature@1.0.6
| | | +-- debug@2.6.9
| | | | `-- ms@2.0.0
| | | +-- depd@1.1.2 deduped
| | | +-- encodeurl@1.0.2
| | | +-- escape-html@1.0.3
| | | +-- etag@1.8.1
| | | +-- finalhandler@1.1.2 deduped
| | | +-- fresh@0.5.2
| | | +-- merge-descriptors@1.0.1
| | | +-- methods@1.1.2
| | | +-- on-finished@2.3.0 deduped
| | | +-- parseurl@1.3.3 deduped
| | | +-- path-to-regexp@0.1.7
| | | +-- proxy-addr@2.0.7
| | | | +-- forwarded@0.2.0
| | | | `-- ipaddr.js@1.9.1 deduped
| | | +-- qs@6.7.0
| | | +-- range-parser@1.2.1 deduped
| | | +-- safe-buffer@5.1.2
| | | +-- send@0.17.1
| | | | +-- debug@2.6.9
| | | | | `-- ms@2.0.0
| | | | +-- depd@1.1.2 deduped
| | | | +-- destroy@1.0.4
| | | | +-- encodeurl@1.0.2 deduped
| | | | +-- escape-html@1.0.3 deduped
| | | | +-- etag@1.8.1 deduped
| | | | +-- fresh@0.5.2 deduped
| | | | +-- http-errors@1.7.2 deduped
| | | | +-- mime@1.6.0 deduped
| | | | +-- ms@2.1.1
| | | | +-- on-finished@2.3.0 deduped
| | | | +-- range-parser@1.2.1 deduped
| | | | `-- statuses@1.5.0 deduped
| | | +-- serve-static@1.14.1
| | | | +-- encodeurl@1.0.2 deduped
| | | | +-- escape-html@1.0.3 deduped
| | | | +-- parseurl@1.3.3 deduped
| | | | `-- send@0.17.1 deduped
| | | +-- setprototypeof@1.1.1
| | | +-- statuses@1.5.0
| | | +-- type-is@1.6.18 deduped
| | | +-- utils-merge@1.0.1 deduped
| | | `-- vary@1.1.2 deduped
| | +-- html-entities@1.4.0
| | +-- http-proxy-middleware@0.19.1
| | | +-- http-proxy@1.18.1 deduped
| | | +-- is-glob@4.0.1 deduped
| | | +-- lodash@4.17.21 deduped
| | | `-- micromatch@3.1.10
| | |   +-- arr-diff@4.0.0 deduped
| | |   +-- array-unique@0.3.2 deduped
| | |   +-- braces@2.3.2
| | |   | +-- arr-flatten@1.1.0 deduped
| | |   | +-- array-unique@0.3.2 deduped
| | |   | +-- extend-shallow@2.0.1
| | |   | | `-- is-extendable@0.1.1 deduped
| | |   | +-- fill-range@4.0.0
| | |   | | +-- extend-shallow@2.0.1
| | |   | | | `-- is-extendable@0.1.1 deduped
| | |   | | +-- is-number@3.0.0
| | |   | | | `-- kind-of@3.2.2
| | |   | | |   `-- is-buffer@1.1.6 deduped
| | |   | | +-- repeat-string@1.6.1 deduped
| | |   | | `-- to-regex-range@2.1.1
| | |   | |   +-- is-number@3.0.0 deduped
| | |   | |   `-- repeat-string@1.6.1 deduped
| | |   | +-- isobject@3.0.1 deduped
| | |   | +-- repeat-element@1.1.4 deduped
| | |   | +-- snapdragon@0.8.2 deduped
| | |   | +-- snapdragon-node@2.1.1 deduped
| | |   | +-- split-string@3.1.0 deduped
| | |   | `-- to-regex@3.0.2 deduped
| | |   +-- define-property@2.0.2 deduped
| | |   +-- extend-shallow@3.0.2 deduped
| | |   +-- extglob@2.0.4 deduped
| | |   +-- fragment-cache@0.2.1 deduped
| | |   +-- kind-of@6.0.3 deduped
| | |   +-- nanomatch@1.2.13 deduped
| | |   +-- object.pick@1.3.0 deduped
| | |   +-- regex-not@1.0.2 deduped
| | |   +-- snapdragon@0.8.2 deduped
| | |   `-- to-regex@3.0.2 deduped
| | +-- import-local@2.0.0
| | | +-- pkg-dir@3.0.0
| | | | `-- find-up@3.0.0
| | | |   `-- locate-path@3.0.0
| | | |     +-- p-locate@3.0.0
| | | |     | `-- p-limit@2.3.0 deduped
| | | |     `-- path-exists@3.0.0
| | | `-- resolve-cwd@2.0.0
| | |   `-- resolve-from@3.0.0
| | +-- internal-ip@4.3.0
| | | +-- default-gateway@4.2.0
| | | | +-- execa@1.0.0
| | | | | +-- cross-spawn@6.0.5
| | | | | | +-- nice-try@1.0.5
| | | | | | +-- path-key@2.0.1
| | | | | | +-- semver@5.7.1
| | | | | | +-- shebang-command@1.2.0
| | | | | | | `-- shebang-regex@1.0.0
| | | | | | `-- which@1.3.1
| | | | | |   `-- isexe@2.0.0 deduped
| | | | | +-- get-stream@4.1.0
| | | | | | `-- pump@3.0.0 deduped
| | | | | +-- is-stream@1.1.0
| | | | | +-- npm-run-path@2.0.2
| | | | | | `-- path-key@2.0.1 deduped
| | | | | +-- p-finally@1.0.0
| | | | | +-- signal-exit@3.0.3 deduped
| | | | | `-- strip-eof@1.0.0
| | | | `-- ip-regex@2.1.0
| | | `-- ipaddr.js@1.9.1
| | +-- ip@1.1.5
| | +-- is-absolute-url@3.0.3
| | +-- killable@1.0.1
| | +-- loglevel@1.7.1
| | +-- opn@5.5.0
| | | `-- is-wsl@1.1.0
| | +-- p-retry@3.0.1
| | | `-- retry@0.12.0
| | +-- portfinder@1.0.28
| | | +-- async@2.6.3
| | | | `-- lodash@4.17.21 deduped
| | | +-- debug@3.2.7
| | | | `-- ms@2.1.2 deduped
| | | `-- mkdirp@0.5.5
| | |   `-- minimist@1.2.5 deduped
| | +-- schema-utils@1.0.0
| | | +-- ajv@6.12.6 deduped
| | | +-- ajv-errors@1.0.1 deduped
| | | `-- ajv-keywords@3.5.2 deduped
| | +-- selfsigned@1.10.11
| | | `-- node-forge@0.10.0
| | +-- semver@6.3.0
| | +-- serve-index@1.9.1
| | | +-- accepts@1.3.7 deduped
| | | +-- batch@0.6.1
| | | +-- debug@2.6.9
| | | | `-- ms@2.0.0
| | | +-- escape-html@1.0.3 deduped
| | | +-- http-errors@1.6.3
| | | | +-- depd@1.1.2 deduped
| | | | +-- inherits@2.0.3
| | | | +-- setprototypeof@1.1.0
| | | | `-- statuses@1.5.0 deduped
| | | +-- mime-types@2.1.32 deduped
| | | `-- parseurl@1.3.3 deduped
| | +-- sockjs@0.3.21
| | | +-- faye-websocket@0.11.4
| | | | `-- websocket-driver@0.7.4 deduped
| | | +-- uuid@3.4.0
| | | `-- websocket-driver@0.7.4
| | |   +-- http-parser-js@0.5.3
| | |   +-- safe-buffer@5.2.1 deduped
| | |   `-- websocket-extensions@0.1.4
| | +-- sockjs-client@1.5.2
| | | +-- debug@3.2.7
| | | | `-- ms@2.1.2 deduped
| | | +-- eventsource@1.1.0
| | | | `-- original@1.0.2
| | | |   `-- url-parse@1.5.3 deduped
| | | +-- faye-websocket@0.11.4 deduped
| | | +-- inherits@2.0.4 deduped
| | | +-- json3@3.3.3
| | | `-- url-parse@1.5.3
| | |   +-- querystringify@2.2.0
| | |   `-- requires-port@1.0.0 deduped
| | +-- spdy@4.0.2
| | | +-- debug@4.3.1 deduped
| | | +-- handle-thing@2.0.1
| | | +-- http-deceiver@1.2.7
| | | +-- select-hose@2.0.0
| | | `-- spdy-transport@3.0.0
| | |   +-- debug@4.3.1 deduped
| | |   +-- detect-node@2.1.0
| | |   +-- hpack.js@2.1.6
| | |   | +-- inherits@2.0.4 deduped
| | |   | +-- obuf@1.1.2 deduped
| | |   | +-- readable-stream@2.3.7
| | |   | | +-- core-util-is@1.0.3 deduped
| | |   | | +-- inherits@2.0.4 deduped
| | |   | | +-- isarray@1.0.0 deduped
| | |   | | +-- process-nextick-args@2.0.1 deduped
| | |   | | +-- safe-buffer@5.1.2
| | |   | | +-- string_decoder@1.1.1
| | |   | | | `-- safe-buffer@5.1.2 deduped
| | |   | | `-- util-deprecate@1.0.2 deduped
| | |   | `-- wbuf@1.7.3 deduped
| | |   +-- obuf@1.1.2
| | |   +-- readable-stream@3.6.0 deduped
| | |   `-- wbuf@1.7.3
| | |     `-- minimalistic-assert@1.0.1
| | +-- strip-ansi@3.0.1
| | | `-- ansi-regex@2.1.1
| | +-- supports-color@6.1.0
| | | `-- has-flag@3.0.0
| | +-- url@0.11.0
| | | +-- punycode@1.3.2
| | | `-- querystring@0.2.0
| | +-- webpack-dev-middleware@3.7.2 deduped
| | +-- webpack-log@2.0.0 deduped
| | +-- ws@6.2.2
| | | `-- async-limiter@1.0.1
| | `-- yargs@13.3.2
| |   +-- cliui@5.0.0
| |   | +-- string-width@3.1.0 deduped
| |   | +-- strip-ansi@5.2.0
| |   | | `-- ansi-regex@4.1.0
| |   | `-- wrap-ansi@5.1.0
| |   |   +-- ansi-styles@3.2.1
| |   |   | `-- color-convert@1.9.3
| |   |   |   `-- color-name@1.1.3
| |   |   +-- string-width@3.1.0 deduped
| |   |   `-- strip-ansi@5.2.0
| |   |     `-- ansi-regex@4.1.0
| |   +-- find-up@3.0.0
| |   | `-- locate-path@3.0.0
| |   |   +-- p-locate@3.0.0
| |   |   | `-- p-limit@2.3.0 deduped
| |   |   `-- path-exists@3.0.0
| |   +-- get-caller-file@2.0.5 deduped
| |   +-- require-directory@2.1.1 deduped
| |   +-- require-main-filename@2.0.0 deduped
| |   +-- set-blocking@2.0.0 deduped
| |   +-- string-width@3.1.0
| |   | +-- emoji-regex@7.0.3
| |   | +-- is-fullwidth-code-point@2.0.0
| |   | `-- strip-ansi@5.2.0
| |   |   `-- ansi-regex@4.1.0
| |   +-- which-module@2.0.0 deduped
| |   +-- y18n@4.0.3
| |   `-- yargs-parser@13.1.2
| |     +-- camelcase@5.3.1 deduped
| |     `-- decamelize@1.2.0 deduped
| +-- webpack-merge@5.7.3
| | +-- clone-deep@4.0.1
| | | +-- is-plain-object@2.0.4
| | | | `-- isobject@3.0.1 deduped
| | | +-- kind-of@6.0.3 deduped
| | | `-- shallow-clone@3.0.1
| | |   `-- kind-of@6.0.3 deduped
| | `-- wildcard@2.0.0
| +-- webpack-sources@2.2.0
| | +-- source-list-map@2.0.1
| | `-- source-map@0.6.1
| +-- webpack-subresource-integrity@1.5.2
| | `-- webpack-sources@1.4.3
| |   +-- source-list-map@2.0.1 deduped
| |   `-- source-map@0.6.1
| `-- worker-plugin@5.0.0
|   `-- loader-utils@1.4.0
|     +-- big.js@5.2.2 deduped
|     +-- emojis-list@3.0.0 deduped
|     `-- json5@1.0.1
|       `-- minimist@1.2.5 deduped
+-- UNMET PEER DEPENDENCY @angular/animations@11.2.14
| `-- tslib@2.3.1
+-- UNMET PEER DEPENDENCY @angular/cdk@11.2.13
| +-- parse5@5.1.1
| `-- tslib@2.3.1 deduped
+-- @angular/cli@11.2.14
| +-- @angular-devkit/architect@0.1102.14
| | +-- @angular-devkit/core@11.2.14 deduped
| | `-- rxjs@6.6.3
| |   `-- tslib@1.14.1
| +-- @angular-devkit/core@11.2.14
| | +-- ajv@6.12.6 deduped
| | +-- fast-json-stable-stringify@2.1.0 deduped
| | +-- magic-string@0.25.7 deduped
| | +-- rxjs@6.6.3
| | | `-- tslib@1.14.1
| | `-- source-map@0.7.3 deduped
| +-- @angular-devkit/schematics@11.2.14
| | +-- @angular-devkit/core@11.2.14 deduped
| | +-- ora@5.3.0 deduped
| | `-- rxjs@6.6.3
| |   `-- tslib@1.14.1
| +-- @schematics/angular@11.2.14
| | +-- @angular-devkit/core@11.2.14 deduped
| | +-- @angular-devkit/schematics@11.2.14 deduped
| | `-- jsonc-parser@3.0.0 deduped
| +-- @schematics/update@0.1102.14
| | +-- @angular-devkit/core@11.2.14 deduped
| | +-- @angular-devkit/schematics@11.2.14 deduped
| | +-- @yarnpkg/lockfile@1.1.0 deduped
| | +-- ini@2.0.0 deduped
| | +-- npm-package-arg@8.1.0 deduped
| | +-- pacote@11.2.4 deduped
| | +-- semver@7.3.4 deduped
| | `-- semver-intersect@1.4.0
| |   `-- semver@5.7.1
| +-- @yarnpkg/lockfile@1.1.0
| +-- ansi-colors@4.1.1 deduped
| +-- debug@4.3.1
| | `-- ms@2.1.2
| +-- ini@2.0.0
| +-- inquirer@7.3.3 deduped
| +-- jsonc-parser@3.0.0
| +-- npm-package-arg@8.1.0
| | +-- hosted-git-info@3.0.8
| | | `-- lru-cache@6.0.0 deduped
| | +-- semver@7.3.4 deduped
| | `-- validate-npm-package-name@3.0.0
| |   `-- builtins@1.0.3
| +-- npm-pick-manifest@6.1.0
| | +-- npm-install-checks@4.0.0
| | | `-- semver@7.3.4 deduped
| | +-- npm-package-arg@8.1.0 deduped
| | `-- semver@7.3.4 deduped
| +-- open@7.4.0 deduped
| +-- ora@5.3.0 deduped
| +-- pacote@11.2.4
| | +-- @npmcli/git@2.1.0
| | | +-- @npmcli/promise-spawn@1.3.2 deduped
| | | +-- lru-cache@6.0.0 deduped
| | | +-- mkdirp@1.0.4 deduped
| | | +-- npm-pick-manifest@6.1.1
| | | | +-- npm-install-checks@4.0.0 deduped
| | | | +-- npm-normalize-package-bin@1.0.1 deduped
| | | | +-- npm-package-arg@8.1.5
| | | | | +-- hosted-git-info@4.0.2
| | | | | | `-- lru-cache@6.0.0 deduped
| | | | | +-- semver@7.3.5 deduped
| | | | | `-- validate-npm-package-name@3.0.0 deduped
| | | | `-- semver@7.3.5 deduped
| | | +-- promise-inflight@1.0.1 deduped
| | | +-- promise-retry@2.0.1
| | | | +-- err-code@2.0.3
| | | | `-- retry@0.12.0 deduped
| | | +-- semver@7.3.5
| | | | `-- lru-cache@6.0.0 deduped
| | | `-- which@2.0.2
| | |   `-- isexe@2.0.0 deduped
| | +-- @npmcli/installed-package-contents@1.0.7
| | | +-- npm-bundled@1.1.2
| | | | `-- npm-normalize-package-bin@1.0.1 deduped
| | | `-- npm-normalize-package-bin@1.0.1
| | +-- @npmcli/promise-spawn@1.3.2
| | | `-- infer-owner@1.0.4 deduped
| | +-- @npmcli/run-script@1.8.6
| | | +-- @npmcli/node-gyp@1.0.2
| | | +-- @npmcli/promise-spawn@1.3.2 deduped
| | | +-- node-gyp@7.1.2
| | | | +-- env-paths@2.2.1
| | | | +-- glob@7.1.7 deduped
| | | | +-- graceful-fs@4.2.8 deduped
| | | | +-- nopt@5.0.0
| | | | | `-- abbrev@1.1.1
| | | | +-- npmlog@4.1.2
| | | | | +-- are-we-there-yet@1.1.5
| | | | | | +-- delegates@1.0.0
| | | | | | `-- readable-stream@2.3.7
| | | | | |   +-- core-util-is@1.0.3 deduped
| | | | | |   +-- inherits@2.0.4 deduped
| | | | | |   +-- isarray@1.0.0 deduped
| | | | | |   +-- process-nextick-args@2.0.1 deduped
| | | | | |   +-- safe-buffer@5.1.2
| | | | | |   +-- string_decoder@1.1.1
| | | | | |   | `-- safe-buffer@5.1.2 deduped
| | | | | |   `-- util-deprecate@1.0.2 deduped
| | | | | +-- console-control-strings@1.1.0
| | | | | +-- gauge@2.7.4
| | | | | | +-- aproba@1.2.0 deduped
| | | | | | +-- console-control-strings@1.1.0 deduped
| | | | | | +-- has-unicode@2.0.1
| | | | | | +-- object-assign@4.1.1 deduped
| | | | | | +-- signal-exit@3.0.3 deduped
| | | | | | +-- string-width@1.0.2
| | | | | | | +-- code-point-at@1.1.0
| | | | | | | +-- is-fullwidth-code-point@1.0.0
| | | | | | | | `-- number-is-nan@1.0.1
| | | | | | | `-- strip-ansi@3.0.1
| | | | | | |   `-- ansi-regex@2.1.1
| | | | | | +-- strip-ansi@3.0.1
| | | | | | | `-- ansi-regex@2.1.1
| | | | | | `-- wide-align@1.1.3
| | | | | |   `-- string-width@1.0.2 deduped
| | | | | `-- set-blocking@2.0.0 deduped
| | | | +-- request@2.88.2 deduped
| | | | +-- rimraf@3.0.2 deduped
| | | | +-- semver@7.3.4 deduped
| | | | +-- tar@6.1.11 deduped
| | | | `-- which@2.0.2 deduped
| | | `-- read-package-json-fast@2.0.3
| | |   +-- json-parse-even-better-errors@2.3.1 deduped
| | |   `-- npm-normalize-package-bin@1.0.1 deduped
| | +-- cacache@15.3.0 deduped
| | +-- chownr@2.0.0 deduped
| | +-- fs-minipass@2.1.0 deduped
| | +-- infer-owner@1.0.4 deduped
| | +-- minipass@3.1.3 deduped
| | +-- mkdirp@1.0.4 deduped
| | +-- npm-package-arg@8.1.0 deduped
| | +-- npm-packlist@2.2.2
| | | +-- glob@7.1.7 deduped
| | | +-- ignore-walk@3.0.4
| | | | `-- minimatch@3.0.4 deduped
| | | +-- npm-bundled@1.1.2 deduped
| | | `-- npm-normalize-package-bin@1.0.1 deduped
| | +-- npm-pick-manifest@6.1.0 deduped
| | +-- npm-registry-fetch@9.0.0
| | | +-- @npmcli/ci-detect@1.3.0
| | | +-- lru-cache@6.0.0 deduped
| | | +-- make-fetch-happen@8.0.14
| | | | +-- agentkeepalive@4.1.4
| | | | | +-- debug@4.3.1 deduped
| | | | | +-- depd@1.1.2 deduped
| | | | | `-- humanize-ms@1.2.1
| | | | |   `-- ms@2.1.2 deduped
| | | | +-- cacache@15.3.0 deduped
| | | | +-- http-cache-semantics@4.1.0
| | | | +-- http-proxy-agent@4.0.1
| | | | | +-- @tootallnate/once@1.1.2
| | | | | +-- agent-base@6.0.2 deduped
| | | | | `-- debug@4.3.1 deduped
| | | | +-- https-proxy-agent@5.0.0 deduped
| | | | +-- is-lambda@1.0.1
| | | | +-- lru-cache@6.0.0 deduped
| | | | +-- minipass@3.1.3 deduped
| | | | +-- minipass-collect@1.0.2 deduped
| | | | +-- minipass-fetch@1.4.1 deduped
| | | | +-- minipass-flush@1.0.5 deduped
| | | | +-- minipass-pipeline@1.2.4 deduped
| | | | +-- promise-retry@2.0.1
| | | | | +-- err-code@2.0.3 deduped
| | | | | `-- retry@0.12.0 deduped
| | | | +-- socks-proxy-agent@5.0.1
| | | | | +-- agent-base@6.0.2 deduped
| | | | | +-- debug@4.3.1 deduped
| | | | | `-- socks@2.6.1
| | | | |   +-- ip@1.1.5 deduped
| | | | |   `-- smart-buffer@4.2.0
| | | | `-- ssri@8.0.1 deduped
| | | +-- minipass@3.1.3 deduped
| | | +-- minipass-fetch@1.4.1
| | | | +-- encoding@0.1.13
| | | | | `-- iconv-lite@0.6.3 deduped
| | | | +-- minipass@3.1.3 deduped
| | | | +-- minipass-sized@1.0.3
| | | | | `-- minipass@3.1.3 deduped
| | | | `-- minizlib@2.1.2 deduped
| | | +-- minipass-json-stream@1.0.1
| | | | +-- jsonparse@1.3.1
| | | | `-- minipass@3.1.3 deduped
| | | +-- minizlib@2.1.2 deduped
| | | `-- npm-package-arg@8.1.0 deduped
| | +-- promise-retry@1.1.1
| | | +-- err-code@1.1.2
| | | `-- retry@0.10.1
| | +-- read-package-json-fast@1.2.2
| | | +-- json-parse-even-better-errors@2.3.1
| | | `-- npm-normalize-package-bin@1.0.1 deduped
| | +-- rimraf@3.0.2 deduped
| | +-- ssri@8.0.1 deduped
| | `-- tar@6.1.11 deduped
| +-- resolve@1.19.0
| | +-- is-core-module@2.6.0
| | | `-- has@1.0.3
| | |   `-- function-bind@1.1.1
| | `-- path-parse@1.0.7
| +-- rimraf@3.0.2 deduped
| +-- semver@7.3.4 deduped
| +-- symbol-observable@3.0.0
| +-- universal-analytics@0.4.23
| | +-- debug@4.3.1 deduped
| | +-- request@2.88.2
| | | +-- aws-sign2@0.7.0
| | | +-- aws4@1.11.0
| | | +-- caseless@0.12.0
| | | +-- combined-stream@1.0.8
| | | | `-- delayed-stream@1.0.0
| | | +-- extend@3.0.2 deduped
| | | +-- forever-agent@0.6.1
| | | +-- form-data@2.3.3
| | | | +-- asynckit@0.4.0
| | | | +-- combined-stream@1.0.8 deduped
| | | | `-- mime-types@2.1.32 deduped
| | | +-- har-validator@5.1.5
| | | | +-- ajv@6.12.6 deduped
| | | | `-- har-schema@2.0.0
| | | +-- http-signature@1.2.0
| | | | +-- assert-plus@1.0.0
| | | | +-- jsprim@1.4.1
| | | | | +-- assert-plus@1.0.0 deduped
| | | | | +-- extsprintf@1.3.0
| | | | | +-- json-schema@0.2.3
| | | | | `-- verror@1.10.0
| | | | |   +-- assert-plus@1.0.0 deduped
| | | | |   +-- core-util-is@1.0.2
| | | | |   `-- extsprintf@1.3.0 deduped
| | | | `-- sshpk@1.16.1
| | | |   +-- asn1@0.2.4
| | | |   | `-- safer-buffer@2.1.2 deduped
| | | |   +-- assert-plus@1.0.0 deduped
| | | |   +-- bcrypt-pbkdf@1.0.2
| | | |   | `-- tweetnacl@0.14.5 deduped
| | | |   +-- dashdash@1.14.1
| | | |   | `-- assert-plus@1.0.0 deduped
| | | |   +-- ecc-jsbn@0.1.2
| | | |   | +-- jsbn@0.1.1 deduped
| | | |   | `-- safer-buffer@2.1.2 deduped
| | | |   +-- getpass@0.1.7
| | | |   | `-- assert-plus@1.0.0 deduped
| | | |   +-- jsbn@0.1.1
| | | |   +-- safer-buffer@2.1.2 deduped
| | | |   `-- tweetnacl@0.14.5
| | | +-- is-typedarray@1.0.0
| | | +-- isstream@0.1.2
| | | +-- json-stringify-safe@5.0.1
| | | +-- mime-types@2.1.32 deduped
| | | +-- oauth-sign@0.9.0
| | | +-- performance-now@2.1.0
| | | +-- qs@6.5.2
| | | +-- safe-buffer@5.2.1
| | | +-- tough-cookie@2.5.0
| | | | +-- psl@1.8.0
| | | | `-- punycode@2.1.1 deduped
| | | +-- tunnel-agent@0.6.0
| | | | `-- safe-buffer@5.2.1 deduped
| | | `-- uuid@3.4.0
| | `-- uuid@3.4.0
| `-- uuid@8.3.2
+-- UNMET PEER DEPENDENCY @angular/common@11.2.14
| `-- tslib@2.3.1 deduped
+-- @angular/compiler@11.2.14
| `-- tslib@2.3.1 deduped
+-- @angular/compiler-cli@11.2.14
| +-- @babel/core@7.15.0
| | +-- @babel/code-frame@7.14.5 deduped
| | +-- @babel/generator@7.15.0
| | | +-- @babel/types@7.15.0 deduped
| | | +-- jsesc@2.5.2 deduped
| | | `-- source-map@0.5.7
| | +-- @babel/helper-compilation-targets@7.15.0 deduped
| | +-- @babel/helper-module-transforms@7.15.0 deduped
| | +-- @babel/helpers@7.15.3 deduped
| | +-- @babel/parser@7.15.3 deduped
| | +-- @babel/template@7.14.5
| | | +-- @babel/code-frame@7.14.5 deduped
| | | +-- @babel/parser@7.15.3 deduped
| | | `-- @babel/types@7.15.0 deduped
| | +-- @babel/traverse@7.15.0 deduped
| | +-- @babel/types@7.15.0 deduped
| | +-- convert-source-map@1.8.0 deduped
| | +-- debug@4.3.1 deduped
| | +-- gensync@1.0.0-beta.2 deduped
| | +-- json5@2.2.0 deduped
| | +-- semver@6.3.0
| | `-- source-map@0.5.7
| +-- @babel/types@7.15.0
| | +-- @babel/helper-validator-identifier@7.14.9
| | `-- to-fast-properties@2.0.0
| +-- canonical-path@1.0.0
| +-- chokidar@3.5.2
| | +-- anymatch@3.1.2
| | | +-- normalize-path@3.0.0 deduped
| | | `-- picomatch@2.3.0 deduped
| | +-- braces@3.0.2 deduped
| | +-- UNMET OPTIONAL DEPENDENCY fsevents@2.3.2
| | +-- glob-parent@5.1.2 deduped
| | +-- is-binary-path@2.1.0
| | | `-- binary-extensions@2.2.0
| | +-- is-glob@4.0.1
| | | `-- is-extglob@2.1.1
| | +-- normalize-path@3.0.0 deduped
| | `-- readdirp@3.6.0
| |   `-- picomatch@2.3.0 deduped
| +-- convert-source-map@1.8.0
| | `-- safe-buffer@5.1.2
| +-- dependency-graph@0.7.2
| +-- fs-extra@4.0.2
| | +-- graceful-fs@4.2.8 deduped
| | +-- jsonfile@4.0.0
| | | `-- graceful-fs@4.2.8 deduped
| | `-- universalify@0.1.2
| +-- magic-string@0.25.7
| | `-- sourcemap-codec@1.4.8 deduped
| +-- minimist@1.2.5
| +-- reflect-metadata@0.1.13
| +-- semver@6.3.0
| +-- source-map@0.6.1
| +-- sourcemap-codec@1.4.8
| +-- tslib@2.3.1 deduped
| `-- yargs@16.2.0
|   +-- cliui@7.0.4
|   | +-- string-width@4.2.2
|   | | +-- emoji-regex@8.0.0 deduped
|   | | +-- is-fullwidth-code-point@3.0.0
|   | | `-- strip-ansi@6.0.0 deduped
|   | +-- strip-ansi@6.0.0 deduped
|   | `-- wrap-ansi@7.0.0
|   |   +-- ansi-styles@4.3.0 deduped
|   |   +-- string-width@4.2.2
|   |   | +-- emoji-regex@8.0.0 deduped
|   |   | +-- is-fullwidth-code-point@3.0.0
|   |   | `-- strip-ansi@6.0.0 deduped
|   |   `-- strip-ansi@6.0.0 deduped
|   +-- escalade@3.1.1 deduped
|   +-- get-caller-file@2.0.5
|   +-- require-directory@2.1.1
|   +-- string-width@4.2.2
|   | +-- emoji-regex@8.0.0 deduped
|   | +-- is-fullwidth-code-point@3.0.0
|   | `-- strip-ansi@6.0.0 deduped
|   +-- y18n@5.0.8
|   `-- yargs-parser@20.2.9
+-- UNMET PEER DEPENDENCY @angular/core@11.2.14
| `-- tslib@2.3.1 deduped
+-- @angular/flex-layout@11.0.0-beta.33
| `-- tslib@2.3.1 deduped
+-- UNMET PEER DEPENDENCY @angular/forms@11.2.14
| `-- tslib@2.3.1 deduped
+-- @angular/language-service@11.2.14
+-- @angular/material@11.2.13
| `-- tslib@2.3.1 deduped
+-- UNMET PEER DEPENDENCY @angular/platform-browser@11.2.14
| `-- tslib@2.3.1 deduped
+-- UNMET PEER DEPENDENCY @angular/platform-browser-dynamic@11.2.14
| `-- tslib@2.3.1 deduped
+-- @angular/platform-server@11.2.14
| +-- domino@2.1.6
| +-- tslib@2.3.1 deduped
| `-- xhr2@0.2.1
+-- @angular/router@11.2.14
| `-- tslib@2.3.1 deduped
+-- @exalif/ngx-breadcrumbs@9.2.0
| `-- tslib@2.3.1 deduped
+-- @nativescript/android@8.0.0
+-- @nativescript/angular@11.8.1
| +-- @nativescript/zone-js@1.0.1
| +-- nativescript-intl@4.0.2
| `-- tslib@2.3.1 deduped
+-- @nativescript/core@8.0.8
| +-- @nativescript/hook@2.0.0
| | +-- glob@7.1.7 deduped
| | `-- mkdirp@1.0.4 deduped
| +-- css-tree@1.1.3
| | +-- mdn-data@2.0.14
| | `-- source-map@0.6.1
| +-- reduce-css-calc@2.1.8
| | +-- css-unit-converter@1.1.2
| | `-- postcss-value-parser@3.3.1
| `-- tslib@2.0.3
+-- @nativescript/schematics@11.2.0
| +-- @angular-devkit/core@11.2.14 deduped
| +-- @angular-devkit/schematics@11.2.14 deduped
| +-- @nativescript/tslint-rules@0.0.5 deduped
| +-- @phenomnomnominal/tsquery@4.1.1
| | `-- esquery@1.4.0
| |   `-- estraverse@5.2.0
| +-- @schematics/angular@11.2.14 deduped
| +-- strip-json-comments@3.1.1
| +-- UNMET PEER DEPENDENCY tslint@^5.16.0
| `-- UNMET PEER DEPENDENCY typescript@^3.4.0
+-- @nativescript/theme@3.0.1
+-- @nativescript/tslint-rules@0.0.5
| +-- @phenomnomnominal/tsquery@3.0.0
| | `-- esquery@1.4.0 deduped
| `-- UNMET PEER DEPENDENCY typescript@^3
+-- @nativescript/webpack@5.0.0-rc.6
| +-- @babel/core@7.15.0 deduped
| +-- @pmmmwh/react-refresh-webpack-plugin@0.4.3
| | +-- ansi-html@0.0.7 deduped
| | +-- error-stack-parser@2.0.6
| | | `-- stackframe@1.2.0
| | +-- html-entities@1.4.0 deduped
| | +-- native-url@0.2.6
| | | `-- querystring@0.2.0 deduped
| | +-- schema-utils@2.7.1 deduped
| | `-- source-map@0.7.3 deduped
| +-- UNMET PEER DEPENDENCY acorn@8.4.1
| +-- acorn-stage3@4.0.0
| | +-- acorn-class-fields@0.3.7
| | | `-- acorn-private-class-elements@0.2.7
| | +-- acorn-private-methods@0.3.3
| | | `-- acorn-private-class-elements@0.2.7 deduped
| | `-- acorn-static-class-features@0.2.4
| |   `-- acorn-private-class-elements@0.2.7 deduped
| +-- babel-loader@8.2.2 deduped
| +-- chalk@4.1.2
| | +-- ansi-styles@4.3.0
| | | `-- color-convert@2.0.1
| | |   `-- color-name@1.1.4
| | `-- supports-color@7.2.0 deduped
| +-- cli-highlight@2.1.11
| | +-- chalk@4.1.2 deduped
| | +-- highlight.js@10.7.3
| | +-- mz@2.7.0
| | | +-- any-promise@1.3.0
| | | +-- object-assign@4.1.1 deduped
| | | `-- thenify-all@1.6.0
| | |   `-- thenify@3.3.1
| | |     `-- any-promise@1.3.0 deduped
| | +-- parse5@5.1.1 deduped
| | +-- parse5-htmlparser2-tree-adapter@6.0.1 deduped
| | `-- yargs@16.2.0 deduped
| +-- commander@7.2.0
| +-- copy-webpack-plugin@9.0.1
| | +-- fast-glob@3.2.7 deduped
| | +-- glob-parent@6.0.1
| | | `-- is-glob@4.0.1 deduped
| | +-- globby@11.0.4
| | | +-- array-union@2.1.0
| | | +-- dir-glob@3.0.1 deduped
| | | +-- fast-glob@3.2.7 deduped
| | | +-- ignore@5.1.8 deduped
| | | +-- merge2@1.4.1 deduped
| | | `-- slash@3.0.0 deduped
| | +-- normalize-path@3.0.0 deduped
| | +-- p-limit@3.1.0
| | | `-- yocto-queue@0.1.0 deduped
| | +-- schema-utils@3.1.1
| | | +-- @types/json-schema@7.0.9 deduped
| | | +-- ajv@6.12.6 deduped
| | | `-- ajv-keywords@3.5.2 deduped
| | `-- serialize-javascript@6.0.0
| |   `-- randombytes@2.1.0 deduped
| +-- css@3.0.0
| | +-- inherits@2.0.4 deduped
| | +-- source-map@0.6.1
| | `-- source-map-resolve@0.6.0
| |   +-- atob@2.1.2
| |   `-- decode-uri-component@0.2.0
| +-- css-loader@5.0.1 deduped
| +-- dotenv-webpack@7.0.3
| | `-- dotenv-defaults@2.0.2
| |   `-- dotenv@8.6.0
| +-- fork-ts-checker-webpack-plugin@6.3.2
| | +-- @babel/code-frame@7.14.5 deduped
| | +-- @types/json-schema@7.0.9
| | +-- chalk@4.1.2 deduped
| | +-- chokidar@3.5.2 deduped
| | +-- cosmiconfig@6.0.0
| | | +-- @types/parse-json@4.0.0 deduped
| | | +-- import-fresh@3.3.0 deduped
| | | +-- parse-json@5.2.0 deduped
| | | +-- path-type@4.0.0 deduped
| | | `-- yaml@1.10.2 deduped
| | +-- deepmerge@4.2.2
| | +-- fs-extra@9.1.0
| | | +-- at-least-node@1.0.0
| | | +-- graceful-fs@4.2.8 deduped
| | | +-- jsonfile@6.1.0
| | | | +-- graceful-fs@4.2.8 deduped
| | | | `-- universalify@2.0.0 deduped
| | | `-- universalify@2.0.0
| | +-- glob@7.1.7 deduped
| | +-- memfs@3.2.3
| | | `-- fs-monkey@1.0.3
| | +-- minimatch@3.0.4 deduped
| | +-- schema-utils@2.7.0
| | | +-- @types/json-schema@7.0.9 deduped
| | | +-- ajv@6.12.6 deduped
| | | `-- ajv-keywords@3.5.2 deduped
| | +-- semver@7.3.4 deduped
| | `-- tapable@1.1.3
| +-- loader-utils@2.0.0 deduped
| +-- lodash.get@4.4.2
| +-- micromatch@4.0.4
| | +-- braces@3.0.2 deduped
| | `-- picomatch@2.3.0
| +-- postcss@8.2.14 deduped
| +-- postcss-import@14.0.0 deduped
| +-- postcss-loader@5.3.0
| | +-- cosmiconfig@7.0.1 deduped
| | +-- klona@2.0.4 deduped
| | `-- semver@7.3.4 deduped
| +-- raw-loader@4.0.2 deduped
| +-- react-refresh@0.8.3
| +-- sass@1.32.6 deduped
| +-- sass-loader@12.1.0
| | +-- klona@2.0.4 deduped
| | `-- neo-async@2.6.2 deduped
| +-- sax@1.2.4
| +-- source-map@0.7.3 deduped
| +-- terser-webpack-plugin@5.2.0
| | +-- jest-worker@27.1.0
| | | +-- @types/node@16.7.7 deduped
| | | +-- merge-stream@2.0.0 deduped
| | | `-- supports-color@8.1.1
| | |   `-- has-flag@4.0.0 deduped
| | +-- p-limit@3.1.0 deduped
| | +-- schema-utils@3.1.1 deduped
| | +-- serialize-javascript@6.0.0 deduped
| | +-- source-map@0.6.1
| | `-- terser@5.7.2
| |   +-- commander@2.20.3
| |   +-- source-map@0.7.3 deduped
| |   `-- source-map-support@0.5.19
| |     +-- buffer-from@1.1.2 deduped
| |     `-- source-map@0.6.1
| +-- ts-dedent@2.2.0
| +-- ts-loader@9.2.5
| | +-- chalk@4.1.2 deduped
| | +-- enhanced-resolve@5.7.0 deduped
| | +-- micromatch@4.0.4 deduped
| | `-- semver@7.3.4 deduped
| +-- vue-loader@15.9.8
| | +-- @vue/component-compiler-utils@3.2.2
| | | +-- consolidate@0.15.1
| | | | `-- bluebird@3.7.2 deduped
| | | +-- hash-sum@1.0.2 deduped
| | | +-- lru-cache@4.1.5
| | | | +-- pseudomap@1.0.2
| | | | `-- yallist@2.1.2
| | | +-- merge-source-map@1.1.0 deduped
| | | +-- postcss@7.0.36
| | | | +-- chalk@2.4.2
| | | | | +-- ansi-styles@3.2.1
| | | | | | `-- color-convert@1.9.3
| | | | | |   `-- color-name@1.1.3
| | | | | +-- escape-string-regexp@1.0.5 deduped
| | | | | `-- supports-color@5.5.0
| | | | |   `-- has-flag@3.0.0 deduped
| | | | +-- source-map@0.6.1 deduped
| | | | `-- supports-color@6.1.0
| | | |   `-- has-flag@3.0.0
| | | +-- postcss-selector-parser@6.0.6 deduped
| | | +-- prettier@1.19.1
| | | +-- source-map@0.6.1
| | | `-- vue-template-es2015-compiler@1.9.1
| | +-- hash-sum@1.0.2
| | +-- loader-utils@1.4.0
| | | +-- big.js@5.2.2 deduped
| | | +-- emojis-list@3.0.0 deduped
| | | `-- json5@1.0.1
| | |   `-- minimist@1.2.5 deduped
| | +-- vue-hot-reload-api@2.3.4
| | `-- vue-style-loader@4.1.3
| |   +-- hash-sum@1.0.2 deduped
| |   `-- loader-utils@1.4.0
| |     +-- big.js@5.2.2 deduped
| |     +-- emojis-list@3.0.0 deduped
| |     `-- json5@1.0.1
| |       `-- minimist@1.2.5 deduped
| +-- UNMET PEER DEPENDENCY webpack@5.50.0
| | +-- @types/eslint-scope@3.7.1
| | | +-- @types/eslint@7.28.0
| | | | +-- @types/estree@0.0.50 deduped
| | | | `-- @types/json-schema@7.0.9 deduped
| | | `-- @types/estree@0.0.50 deduped
| | +-- @types/estree@0.0.50
| | +-- @webassemblyjs/ast@1.11.1
| | | +-- @webassemblyjs/helper-numbers@1.11.1
| | | | +-- @webassemblyjs/floating-point-hex-parser@1.11.1
| | | | +-- @webassemblyjs/helper-api-error@1.11.1
| | | | `-- @xtuc/long@4.2.2 deduped
| | | `-- @webassemblyjs/helper-wasm-bytecode@1.11.1
| | +-- @webassemblyjs/wasm-edit@1.11.1
| | | +-- @webassemblyjs/ast@1.11.1 deduped
| | | +-- @webassemblyjs/helper-buffer@1.11.1
| | | +-- @webassemblyjs/helper-wasm-bytecode@1.11.1 deduped
| | | +-- @webassemblyjs/helper-wasm-section@1.11.1
| | | | +-- @webassemblyjs/ast@1.11.1 deduped
| | | | +-- @webassemblyjs/helper-buffer@1.11.1 deduped
| | | | +-- @webassemblyjs/helper-wasm-bytecode@1.11.1 deduped
| | | | `-- @webassemblyjs/wasm-gen@1.11.1 deduped
| | | +-- @webassemblyjs/wasm-gen@1.11.1
| | | | +-- @webassemblyjs/ast@1.11.1 deduped
| | | | +-- @webassemblyjs/helper-wasm-bytecode@1.11.1 deduped
| | | | +-- @webassemblyjs/ieee754@1.11.1 deduped
| | | | +-- @webassemblyjs/leb128@1.11.1 deduped
| | | | `-- @webassemblyjs/utf8@1.11.1 deduped
| | | +-- @webassemblyjs/wasm-opt@1.11.1
| | | | +-- @webassemblyjs/ast@1.11.1 deduped
| | | | +-- @webassemblyjs/helper-buffer@1.11.1 deduped
| | | | +-- @webassemblyjs/wasm-gen@1.11.1 deduped
| | | | `-- @webassemblyjs/wasm-parser@1.11.1 deduped
| | | +-- @webassemblyjs/wasm-parser@1.11.1 deduped
| | | `-- @webassemblyjs/wast-printer@1.11.1
| | |   +-- @webassemblyjs/ast@1.11.1 deduped
| | |   `-- @xtuc/long@4.2.2 deduped
| | +-- @webassemblyjs/wasm-parser@1.11.1
| | | +-- @webassemblyjs/ast@1.11.1 deduped
| | | +-- @webassemblyjs/helper-api-error@1.11.1
| | | +-- @webassemblyjs/helper-wasm-bytecode@1.11.1 deduped
| | | +-- @webassemblyjs/ieee754@1.11.1
| | | | `-- @xtuc/ieee754@1.2.0 deduped
| | | +-- @webassemblyjs/leb128@1.11.1
| | | | `-- @xtuc/long@4.2.2 deduped
| | | `-- @webassemblyjs/utf8@1.11.1
| | +-- UNMET PEER DEPENDENCY acorn@8.4.1 deduped
| | +-- acorn-import-assertions@1.7.6
| | +-- browserslist@4.16.8 deduped
| | +-- chrome-trace-event@1.0.3 deduped
| | +-- enhanced-resolve@5.8.2
| | | +-- graceful-fs@4.2.8 deduped
| | | `-- tapable@2.2.0 deduped
| | +-- es-module-lexer@0.7.1
| | +-- eslint-scope@5.1.1
| | | +-- esrecurse@4.3.0 deduped
| | | `-- estraverse@4.3.0 deduped
| | +-- events@3.3.0
| | +-- glob-to-regexp@0.4.1
| | +-- graceful-fs@4.2.8 deduped
| | +-- json-parse-better-errors@1.0.2 deduped
| | +-- loader-runner@4.2.0
| | +-- mime-types@2.1.32
| | | `-- mime-db@1.49.0
| | +-- neo-async@2.6.2 deduped
| | +-- schema-utils@3.1.1 deduped
| | +-- tapable@2.2.0
| | +-- terser-webpack-plugin@5.2.0 deduped
| | +-- watchpack@2.2.0
| | | +-- glob-to-regexp@0.4.1 deduped
| | | `-- graceful-fs@4.2.8 deduped
| | `-- webpack-sources@3.2.0
| +-- webpack-bundle-analyzer@4.4.2
| | +-- acorn@8.4.1
| | +-- acorn-walk@8.1.1 deduped
| | +-- chalk@4.1.2 deduped
| | +-- commander@6.2.1
| | +-- gzip-size@6.0.0
| | | `-- duplexer@0.1.2
| | +-- lodash@4.17.21 deduped
| | +-- opener@1.5.2
| | +-- sirv@1.0.17
| | | +-- @polka/url@1.0.0-next.20
| | | +-- mime@2.5.2
| | | `-- totalist@1.1.0
| | `-- ws@7.5.4
| +-- webpack-chain@6.5.1
| | +-- deepmerge@1.5.2
| | `-- javascript-stringify@2.1.0
| +-- webpack-cli@4.8.0
| | +-- @discoveryjs/json-ext@0.5.2 deduped
| | +-- @webpack-cli/configtest@1.0.4
| | +-- @webpack-cli/info@1.3.0
| | | `-- envinfo@7.8.1
| | +-- @webpack-cli/serve@1.5.2
| | +-- colorette@1.3.0 deduped
| | +-- commander@7.2.0
| | +-- execa@5.1.1
| | | +-- cross-spawn@7.0.3
| | | | +-- path-key@3.1.1
| | | | +-- shebang-command@2.0.0
| | | | | `-- shebang-regex@3.0.0
| | | | `-- which@2.0.2 deduped
| | | +-- get-stream@6.0.1
| | | +-- human-signals@2.1.0
| | | +-- is-stream@2.0.1
| | | +-- merge-stream@2.0.0 deduped
| | | +-- npm-run-path@4.0.1
| | | | `-- path-key@3.1.1 deduped
| | | +-- onetime@5.1.2
| | | | `-- mimic-fn@2.1.0
| | | +-- signal-exit@3.0.3
| | | `-- strip-final-newline@2.0.0
| | +-- fastest-levenshtein@1.0.12
| | +-- import-local@3.0.2
| | | +-- pkg-dir@4.2.0 deduped
| | | `-- resolve-cwd@3.0.0
| | |   `-- resolve-from@5.0.0
| | +-- interpret@2.2.0
| | +-- rechoir@0.7.1
| | | `-- resolve@1.19.0 deduped
| | +-- v8-compile-cache@2.3.0
| | `-- webpack-merge@5.7.3 deduped
| +-- webpack-merge@5.7.3 deduped
| `-- webpack-virtual-modules@0.4.3
+-- @ng-idle/core@11.0.3
| `-- tslib@2.3.1 deduped
+-- @ng-idle/keepalive@11.0.3
| `-- tslib@2.3.1 deduped
+-- @ngtools/webpack@11.2.14
| +-- @angular-devkit/core@11.2.14 deduped
| +-- enhanced-resolve@5.7.0
| | +-- graceful-fs@4.2.8 deduped
| | `-- tapable@2.2.0 deduped
| `-- webpack-sources@2.2.0 deduped
+-- @popperjs/core@2.9.3
+-- @swimlane/ngx-charts@19.0.1
| +-- @types/d3-shape@2.1.3
| | `-- @types/d3-path@2.0.1
| +-- d3-array@2.12.1
| | `-- internmap@1.0.1
| +-- d3-brush@2.1.0
| | +-- d3-dispatch@2.0.0
| | +-- d3-drag@2.0.0
| | | +-- d3-dispatch@2.0.0 deduped
| | | `-- d3-selection@2.0.0 deduped
| | +-- d3-interpolate@2.0.1 deduped
| | +-- d3-selection@2.0.0 deduped
| | `-- d3-transition@2.0.0 deduped
| +-- d3-color@2.0.0
| +-- d3-format@2.0.0
| +-- d3-hierarchy@2.0.0
| +-- d3-interpolate@2.0.1
| | `-- d3-color@2.0.0 deduped
| +-- d3-scale@3.3.0
| | +-- d3-array@2.12.1 deduped
| | +-- d3-format@2.0.0 deduped
| | +-- d3-interpolate@2.0.1 deduped
| | +-- d3-time@2.1.1
| | | `-- d3-array@2.12.1 deduped
| | `-- d3-time-format@3.0.0 deduped
| +-- d3-selection@2.0.0
| +-- d3-shape@2.1.0
| | `-- d3-path@2.0.0
| +-- d3-time-format@3.0.0
| | `-- d3-time@2.1.1 deduped
| +-- d3-transition@2.0.0
| | +-- d3-color@2.0.0 deduped
| | +-- d3-dispatch@2.0.0 deduped
| | +-- d3-ease@2.0.0
| | +-- d3-interpolate@2.0.1 deduped
| | `-- d3-timer@2.0.0
| `-- tslib@2.3.1 deduped
+-- @types/google.analytics@0.0.42
+-- @types/jasmine@3.8.2
+-- @types/jasminewd2@2.0.10
| `-- @types/jasmine@3.8.2 deduped
+-- @types/jest@26.0.20
| +-- jest-diff@26.6.2
| | +-- chalk@4.1.2 deduped
| | +-- diff-sequences@26.6.2
| | +-- jest-get-type@26.3.0
| | `-- pretty-format@26.6.2 deduped
| `-- pretty-format@26.6.2
|   +-- @jest/types@26.6.2
|   | +-- @types/istanbul-lib-coverage@2.0.3
|   | +-- @types/istanbul-reports@3.0.1
|   | | `-- @types/istanbul-lib-report@3.0.0
|   | |   `-- @types/istanbul-lib-coverage@2.0.3 deduped
|   | +-- @types/node@16.7.7 deduped
|   | +-- @types/yargs@15.0.14
|   | | `-- @types/yargs-parser@20.2.1
|   | `-- chalk@4.1.2 deduped
|   +-- ansi-regex@5.0.0
|   +-- ansi-styles@4.3.0 deduped
|   `-- react-is@17.0.2
+-- @types/jquery@3.5.6
| `-- @types/sizzle@2.3.3
+-- @types/node@16.7.7
+-- angular-calendar@0.29.0-beta.10
| +-- @scarf/scarf@1.1.1
| +-- angular-draggable-droppable@4.6.0
| | +-- @mattlewis92/dom-autoscroller@2.4.2 deduped
| | `-- tslib@1.14.1 deduped
| +-- angular-resizable-element@3.4.0
| | `-- tslib@1.14.1 deduped
| +-- calendar-utils@0.8.5 deduped
| +-- positioning@2.0.1 deduped
| `-- tslib@1.14.1
+-- angular-draggable-droppable@5.0.0
| +-- @mattlewis92/dom-autoscroller@2.4.2
| `-- tslib@2.3.1 deduped
+-- angular-resizable-element@4.0.0
| `-- tslib@2.3.1 deduped
+-- angular2-toaster@11.0.1
| `-- tslib@2.3.1 deduped
+-- bootstrap@4.6.0
+-- calendar-utils@0.8.5
+-- classlist.js@1.1.20150312
+-- codelyzer@6.0.2
| +-- @angular/compiler@9.0.0
| +-- @angular/core@9.0.0
| +-- app-root-path@3.0.0
| +-- aria-query@3.0.0
| | +-- ast-types-flow@0.0.7
| | `-- commander@2.20.3 deduped
| +-- axobject-query@2.0.2
| | `-- ast-types-flow@0.0.7 deduped
| +-- css-selector-tokenizer@0.7.3
| | +-- cssesc@3.0.0 deduped
| | `-- fastparse@1.1.2
| +-- cssauron@1.4.0
| | `-- through@2.3.8 deduped
| +-- damerau-levenshtein@1.0.7
| +-- rxjs@6.6.7
| | `-- tslib@1.14.1 deduped
| +-- semver-dsl@1.0.1
| | `-- semver@5.7.1
| +-- source-map@0.5.7
| +-- sprintf-js@1.1.2
| +-- tslib@1.14.1
| `-- zone.js@0.10.3
+-- core-js@3.16.4
+-- cors@2.8.5
| +-- object-assign@4.1.1
| `-- vary@1.1.2
+-- date-fns@2.23.0
+-- font-awesome@4.7.0
+-- jasmine-core@3.9.0
+-- jasmine-spec-reporter@7.0.0
| `-- colors@1.4.0
+-- jest@27.1.0
| +-- @jest/core@27.1.0
| | +-- @jest/console@27.1.0
| | | +-- @jest/types@27.1.0
| | | | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | | +-- @types/istanbul-reports@3.0.1 deduped
| | | | +-- @types/node@16.7.7 deduped
| | | | +-- @types/yargs@16.0.4
| | | | | `-- @types/yargs-parser@20.2.1 deduped
| | | | `-- chalk@4.1.2 deduped
| | | +-- @types/node@16.7.7 deduped
| | | +-- chalk@4.1.2 deduped
| | | +-- jest-message-util@27.1.0 deduped
| | | +-- jest-util@27.1.0 deduped
| | | `-- slash@3.0.0 deduped
| | +-- @jest/reporters@27.1.0
| | | +-- @bcoe/v8-coverage@0.2.3
| | | +-- @jest/console@27.1.0 deduped
| | | +-- @jest/test-result@27.1.0 deduped
| | | +-- @jest/transform@27.1.0 deduped
| | | +-- @jest/types@27.1.0
| | | | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | | +-- @types/istanbul-reports@3.0.1 deduped
| | | | +-- @types/node@16.7.7 deduped
| | | | +-- @types/yargs@16.0.4
| | | | | `-- @types/yargs-parser@20.2.1 deduped
| | | | `-- chalk@4.1.2 deduped
| | | +-- chalk@4.1.2 deduped
| | | +-- collect-v8-coverage@1.0.1
| | | +-- exit@0.1.2 deduped
| | | +-- glob@7.1.7 deduped
| | | +-- graceful-fs@4.2.8 deduped
| | | +-- istanbul-lib-coverage@3.0.0 deduped
| | | +-- istanbul-lib-instrument@4.0.3 deduped
| | | +-- istanbul-lib-report@3.0.0 deduped
| | | +-- istanbul-lib-source-maps@4.0.0
| | | | +-- debug@4.3.1 deduped
| | | | +-- istanbul-lib-coverage@3.0.0 deduped
| | | | `-- source-map@0.6.1
| | | +-- istanbul-reports@3.0.2 deduped
| | | +-- jest-haste-map@27.1.0 deduped
| | | +-- jest-resolve@27.1.0 deduped
| | | +-- jest-util@27.1.0 deduped
| | | +-- jest-worker@27.1.0
| | | | +-- @types/node@16.7.7 deduped
| | | | +-- merge-stream@2.0.0 deduped
| | | | `-- supports-color@8.1.1
| | | |   `-- has-flag@4.0.0 deduped
| | | +-- slash@3.0.0 deduped
| | | +-- source-map@0.6.1
| | | +-- string-length@4.0.2
| | | | +-- char-regex@1.0.2
| | | | `-- strip-ansi@6.0.0 deduped
| | | +-- terminal-link@2.1.1
| | | | +-- ansi-escapes@4.3.2 deduped
| | | | `-- supports-hyperlinks@2.2.0
| | | |   +-- has-flag@4.0.0 deduped
| | | |   `-- supports-color@7.2.0 deduped
| | | `-- v8-to-istanbul@8.0.0
| | |   +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | |   +-- convert-source-map@1.8.0 deduped
| | |   `-- source-map@0.7.3 deduped
| | +-- @jest/test-result@27.1.0
| | | +-- @jest/console@27.1.0 deduped
| | | +-- @jest/types@27.1.0
| | | | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | | +-- @types/istanbul-reports@3.0.1 deduped
| | | | +-- @types/node@16.7.7 deduped
| | | | +-- @types/yargs@16.0.4
| | | | | `-- @types/yargs-parser@20.2.1 deduped
| | | | `-- chalk@4.1.2 deduped
| | | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | `-- collect-v8-coverage@1.0.1 deduped
| | +-- @jest/transform@27.1.0
| | | +-- @babel/core@7.15.0 deduped
| | | +-- @jest/types@27.1.0
| | | | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | | +-- @types/istanbul-reports@3.0.1 deduped
| | | | +-- @types/node@16.7.7 deduped
| | | | +-- @types/yargs@16.0.4
| | | | | `-- @types/yargs-parser@20.2.1 deduped
| | | | `-- chalk@4.1.2 deduped
| | | +-- babel-plugin-istanbul@6.0.0
| | | | +-- @babel/helper-plugin-utils@7.14.5 deduped
| | | | +-- @istanbuljs/load-nyc-config@1.1.0
| | | | | +-- camelcase@5.3.1 deduped
| | | | | +-- find-up@4.1.0 deduped
| | | | | +-- get-package-type@0.1.0
| | | | | +-- js-yaml@3.14.1 deduped
| | | | | `-- resolve-from@5.0.0
| | | | +-- @istanbuljs/schema@0.1.3 deduped
| | | | +-- istanbul-lib-instrument@4.0.3 deduped
| | | | `-- test-exclude@6.0.0
| | | |   +-- @istanbuljs/schema@0.1.3 deduped
| | | |   +-- glob@7.1.7 deduped
| | | |   `-- minimatch@3.0.4 deduped
| | | +-- chalk@4.1.2 deduped
| | | +-- convert-source-map@1.8.0 deduped
| | | +-- fast-json-stable-stringify@2.1.0 deduped
| | | +-- graceful-fs@4.2.8 deduped
| | | +-- jest-haste-map@27.1.0 deduped
| | | +-- jest-regex-util@27.0.6 deduped
| | | +-- jest-util@27.1.0 deduped
| | | +-- micromatch@4.0.4 deduped
| | | +-- pirates@4.0.1
| | | | `-- node-modules-regexp@1.0.0
| | | +-- slash@3.0.0 deduped
| | | +-- source-map@0.6.1
| | | `-- write-file-atomic@3.0.3
| | |   +-- imurmurhash@0.1.4 deduped
| | |   +-- is-typedarray@1.0.0 deduped
| | |   +-- signal-exit@3.0.3 deduped
| | |   `-- typedarray-to-buffer@3.1.5
| | |     `-- is-typedarray@1.0.0 deduped
| | +-- @jest/types@27.1.0
| | | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | +-- @types/istanbul-reports@3.0.1 deduped
| | | +-- @types/node@16.7.7 deduped
| | | +-- @types/yargs@16.0.4
| | | | `-- @types/yargs-parser@20.2.1 deduped
| | | `-- chalk@4.1.2 deduped
| | +-- @types/node@16.7.7 deduped
| | +-- ansi-escapes@4.3.2 deduped
| | +-- chalk@4.1.2 deduped
| | +-- emittery@0.8.1
| | +-- exit@0.1.2
| | +-- graceful-fs@4.2.8 deduped
| | +-- jest-changed-files@27.1.0
| | | +-- @jest/types@27.1.0
| | | | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | | +-- @types/istanbul-reports@3.0.1 deduped
| | | | +-- @types/node@16.7.7 deduped
| | | | +-- @types/yargs@16.0.4
| | | | | `-- @types/yargs-parser@20.2.1 deduped
| | | | `-- chalk@4.1.2 deduped
| | | +-- execa@5.1.1
| | | | +-- cross-spawn@7.0.3
| | | | | +-- path-key@3.1.1
| | | | | +-- shebang-command@2.0.0
| | | | | | `-- shebang-regex@3.0.0
| | | | | `-- which@2.0.2 deduped
| | | | +-- get-stream@6.0.1
| | | | +-- human-signals@2.1.0 deduped
| | | | +-- is-stream@2.0.1
| | | | +-- merge-stream@2.0.0 deduped
| | | | +-- npm-run-path@4.0.1
| | | | | `-- path-key@3.1.1 deduped
| | | | +-- onetime@5.1.2 deduped
| | | | +-- signal-exit@3.0.3 deduped
| | | | `-- strip-final-newline@2.0.0 deduped
| | | `-- throat@6.0.1
| | +-- jest-config@27.1.0
| | | +-- @babel/core@7.15.0 deduped
| | | +-- @jest/test-sequencer@27.1.0
| | | | +-- @jest/test-result@27.1.0 deduped
| | | | +-- graceful-fs@4.2.8 deduped
| | | | +-- jest-haste-map@27.1.0 deduped
| | | | `-- jest-runtime@27.1.0 deduped
| | | +-- @jest/types@27.1.0
| | | | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | | +-- @types/istanbul-reports@3.0.1 deduped
| | | | +-- @types/node@16.7.7 deduped
| | | | +-- @types/yargs@16.0.4
| | | | | `-- @types/yargs-parser@20.2.1 deduped
| | | | `-- chalk@4.1.2 deduped
| | | +-- babel-jest@27.1.0
| | | | +-- @jest/transform@27.1.0 deduped
| | | | +-- @jest/types@27.1.0
| | | | | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | | | +-- @types/istanbul-reports@3.0.1 deduped
| | | | | +-- @types/node@16.7.7 deduped
| | | | | +-- @types/yargs@16.0.4
| | | | | | `-- @types/yargs-parser@20.2.1 deduped
| | | | | `-- chalk@4.1.2 deduped
| | | | +-- @types/babel__core@7.1.15
| | | | | +-- @babel/parser@7.15.3 deduped
| | | | | +-- @babel/types@7.15.0 deduped
| | | | | +-- @types/babel__generator@7.6.3
| | | | | | `-- @babel/types@7.15.0 deduped
| | | | | +-- @types/babel__template@7.4.1
| | | | | | +-- @babel/parser@7.15.3 deduped
| | | | | | `-- @babel/types@7.15.0 deduped
| | | | | `-- @types/babel__traverse@7.14.2 deduped
| | | | +-- babel-plugin-istanbul@6.0.0 deduped
| | | | +-- babel-preset-jest@27.0.6
| | | | | +-- babel-plugin-jest-hoist@27.0.6
| | | | | | +-- @babel/template@7.14.5 deduped
| | | | | | +-- @babel/types@7.15.0 deduped
| | | | | | +-- @types/babel__core@7.1.15 deduped
| | | | | | `-- @types/babel__traverse@7.14.2 deduped
| | | | | `-- babel-preset-current-node-syntax@1.0.1 deduped
| | | | +-- chalk@4.1.2 deduped
| | | | +-- graceful-fs@4.2.8 deduped
| | | | `-- slash@3.0.0 deduped
| | | +-- chalk@4.1.2 deduped
| | | +-- deepmerge@4.2.2 deduped
| | | +-- glob@7.1.7 deduped
| | | +-- graceful-fs@4.2.8 deduped
| | | +-- is-ci@3.0.0
| | | | `-- ci-info@3.2.0
| | | +-- jest-circus@27.1.0
| | | | +-- @jest/environment@27.1.0 deduped
| | | | +-- @jest/test-result@27.1.0 deduped
| | | | +-- @jest/types@27.1.0
| | | | | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | | | +-- @types/istanbul-reports@3.0.1 deduped
| | | | | +-- @types/node@16.7.7 deduped
| | | | | +-- @types/yargs@16.0.4
| | | | | | `-- @types/yargs-parser@20.2.1 deduped
| | | | | `-- chalk@4.1.2 deduped
| | | | +-- @types/node@16.7.7 deduped
| | | | +-- chalk@4.1.2 deduped
| | | | +-- co@4.6.0
| | | | +-- dedent@0.7.0
| | | | +-- expect@27.1.0 deduped
| | | | +-- is-generator-fn@2.1.0
| | | | +-- jest-each@27.1.0
| | | | | +-- @jest/types@27.1.0
| | | | | | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | | | | +-- @types/istanbul-reports@3.0.1 deduped
| | | | | | +-- @types/node@16.7.7 deduped
| | | | | | +-- @types/yargs@16.0.4
| | | | | | | `-- @types/yargs-parser@20.2.1 deduped
| | | | | | `-- chalk@4.1.2 deduped
| | | | | +-- chalk@4.1.2 deduped
| | | | | +-- jest-get-type@27.0.6
| | | | | +-- jest-util@27.1.0 deduped
| | | | | `-- pretty-format@27.1.0
| | | | |   +-- @jest/types@27.1.0 deduped
| | | | |   +-- ansi-regex@5.0.0 deduped
| | | | |   +-- ansi-styles@5.2.0
| | | | |   `-- react-is@17.0.2 deduped
| | | | +-- jest-matcher-utils@27.1.0 deduped
| | | | +-- jest-message-util@27.1.0 deduped
| | | | +-- jest-runtime@27.1.0 deduped
| | | | +-- jest-snapshot@27.1.0 deduped
| | | | +-- jest-util@27.1.0 deduped
| | | | +-- pretty-format@27.1.0
| | | | | +-- @jest/types@27.1.0 deduped
| | | | | +-- ansi-regex@5.0.0 deduped
| | | | | +-- ansi-styles@5.2.0
| | | | | `-- react-is@17.0.2 deduped
| | | | +-- slash@3.0.0 deduped
| | | | +-- stack-utils@2.0.3 deduped
| | | | `-- throat@6.0.1 deduped
| | | +-- jest-environment-jsdom@27.1.0
| | | | +-- @jest/environment@27.1.0 deduped
| | | | +-- @jest/fake-timers@27.1.0 deduped
| | | | +-- @jest/types@27.1.0
| | | | | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | | | +-- @types/istanbul-reports@3.0.1 deduped
| | | | | +-- @types/node@16.7.7 deduped
| | | | | +-- @types/yargs@16.0.4
| | | | | | `-- @types/yargs-parser@20.2.1 deduped
| | | | | `-- chalk@4.1.2 deduped
| | | | +-- @types/node@16.7.7 deduped
| | | | +-- jest-mock@27.1.0 deduped
| | | | +-- jest-util@27.1.0 deduped
| | | | `-- jsdom@16.7.0
| | | |   +-- abab@2.0.5 deduped
| | | |   +-- acorn@8.4.1
| | | |   +-- acorn-globals@6.0.0
| | | |   | +-- acorn@7.4.1 deduped
| | | |   | `-- acorn-walk@7.2.0
| | | |   +-- cssom@0.4.4
| | | |   +-- cssstyle@2.3.0
| | | |   | `-- cssom@0.3.8
| | | |   +-- data-urls@2.0.0
| | | |   | +-- abab@2.0.5 deduped
| | | |   | +-- whatwg-mimetype@2.3.0 deduped
| | | |   | `-- whatwg-url@8.7.0 deduped
| | | |   +-- decimal.js@10.3.1
| | | |   +-- domexception@2.0.1
| | | |   | `-- webidl-conversions@5.0.0
| | | |   +-- escodegen@2.0.0
| | | |   | +-- esprima@4.0.1 deduped
| | | |   | +-- estraverse@5.2.0
| | | |   | +-- esutils@2.0.3 deduped
| | | |   | +-- optionator@0.8.3
| | | |   | | +-- deep-is@0.1.3
| | | |   | | +-- fast-levenshtein@2.0.6
| | | |   | | +-- levn@0.3.0
| | | |   | | | +-- prelude-ls@1.1.2 deduped
| | | |   | | | `-- type-check@0.3.2 deduped
| | | |   | | +-- prelude-ls@1.1.2
| | | |   | | +-- type-check@0.3.2
| | | |   | | | `-- prelude-ls@1.1.2 deduped
| | | |   | | `-- word-wrap@1.2.3
| | | |   | `-- source-map@0.6.1
| | | |   +-- form-data@3.0.1
| | | |   | +-- asynckit@0.4.0 deduped
| | | |   | +-- combined-stream@1.0.8 deduped
| | | |   | `-- mime-types@2.1.32 deduped
| | | |   +-- html-encoding-sniffer@2.0.1
| | | |   | `-- whatwg-encoding@1.0.5 deduped
| | | |   +-- http-proxy-agent@4.0.1 deduped
| | | |   +-- https-proxy-agent@5.0.0 deduped
| | | |   +-- is-potential-custom-element-name@1.0.1
| | | |   +-- nwsapi@2.2.0
| | | |   +-- parse5@6.0.1
| | | |   +-- saxes@5.0.1
| | | |   | `-- xmlchars@2.2.0
| | | |   +-- symbol-tree@3.2.4
| | | |   +-- tough-cookie@4.0.0
| | | |   | +-- psl@1.8.0 deduped
| | | |   | +-- punycode@2.1.1 deduped
| | | |   | `-- universalify@0.1.2 deduped
| | | |   +-- w3c-hr-time@1.0.2
| | | |   | `-- browser-process-hrtime@1.0.0
| | | |   +-- w3c-xmlserializer@2.0.0
| | | |   | `-- xml-name-validator@3.0.0 deduped
| | | |   +-- webidl-conversions@6.1.0
| | | |   +-- whatwg-encoding@1.0.5
| | | |   | `-- iconv-lite@0.4.24
| | | |   |   `-- safer-buffer@2.1.2 deduped
| | | |   +-- whatwg-mimetype@2.3.0 deduped
| | | |   +-- whatwg-url@8.7.0
| | | |   | +-- lodash@4.17.21 deduped
| | | |   | +-- tr46@2.1.0
| | | |   | | `-- punycode@2.1.1 deduped
| | | |   | `-- webidl-conversions@6.1.0 deduped
| | | |   +-- ws@7.5.4
| | | |   `-- xml-name-validator@3.0.0
| | | +-- jest-environment-node@27.1.0
| | | | +-- @jest/environment@27.1.0 deduped
| | | | +-- @jest/fake-timers@27.1.0 deduped
| | | | +-- @jest/types@27.1.0
| | | | | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | | | +-- @types/istanbul-reports@3.0.1 deduped
| | | | | +-- @types/node@16.7.7 deduped
| | | | | +-- @types/yargs@16.0.4
| | | | | | `-- @types/yargs-parser@20.2.1 deduped
| | | | | `-- chalk@4.1.2 deduped
| | | | +-- @types/node@16.7.7 deduped
| | | | +-- jest-mock@27.1.0 deduped
| | | | `-- jest-util@27.1.0 deduped
| | | +-- jest-get-type@27.0.6
| | | +-- jest-jasmine2@27.1.0
| | | | +-- @babel/traverse@7.15.0 deduped
| | | | +-- @jest/environment@27.1.0 deduped
| | | | +-- @jest/source-map@27.0.6 deduped
| | | | +-- @jest/test-result@27.1.0 deduped
| | | | +-- @jest/types@27.1.0
| | | | | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | | | +-- @types/istanbul-reports@3.0.1 deduped
| | | | | +-- @types/node@16.7.7 deduped
| | | | | +-- @types/yargs@16.0.4
| | | | | | `-- @types/yargs-parser@20.2.1 deduped
| | | | | `-- chalk@4.1.2 deduped
| | | | +-- @types/node@16.7.7 deduped
| | | | +-- chalk@4.1.2 deduped
| | | | +-- co@4.6.0 deduped
| | | | +-- expect@27.1.0 deduped
| | | | +-- is-generator-fn@2.1.0 deduped
| | | | +-- jest-each@27.1.0 deduped
| | | | +-- jest-matcher-utils@27.1.0 deduped
| | | | +-- jest-message-util@27.1.0 deduped
| | | | +-- jest-runtime@27.1.0 deduped
| | | | +-- jest-snapshot@27.1.0 deduped
| | | | +-- jest-util@27.1.0 deduped
| | | | +-- pretty-format@27.1.0
| | | | | +-- @jest/types@27.1.0 deduped
| | | | | +-- ansi-regex@5.0.0 deduped
| | | | | +-- ansi-styles@5.2.0
| | | | | `-- react-is@17.0.2 deduped
| | | | `-- throat@6.0.1 deduped
| | | +-- jest-regex-util@27.0.6 deduped
| | | +-- jest-resolve@27.1.0 deduped
| | | +-- jest-runner@27.1.0 deduped
| | | +-- jest-util@27.1.0 deduped
| | | +-- jest-validate@27.1.0 deduped
| | | +-- micromatch@4.0.4 deduped
| | | `-- pretty-format@27.1.0
| | |   +-- @jest/types@27.1.0 deduped
| | |   +-- ansi-regex@5.0.0 deduped
| | |   +-- ansi-styles@5.2.0
| | |   `-- react-is@17.0.2 deduped
| | +-- jest-haste-map@27.1.0
| | | +-- @jest/types@27.1.0
| | | | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | | +-- @types/istanbul-reports@3.0.1 deduped
| | | | +-- @types/node@16.7.7 deduped
| | | | +-- @types/yargs@16.0.4
| | | | | `-- @types/yargs-parser@20.2.1 deduped
| | | | `-- chalk@4.1.2 deduped
| | | +-- @types/graceful-fs@4.1.5
| | | | `-- @types/node@16.7.7 deduped
| | | +-- @types/node@16.7.7 deduped
| | | +-- anymatch@3.1.2 deduped
| | | +-- fb-watchman@2.0.1
| | | | `-- bser@2.1.1
| | | |   `-- node-int64@0.4.0
| | | +-- UNMET OPTIONAL DEPENDENCY fsevents@2.3.2
| | | +-- graceful-fs@4.2.8 deduped
| | | +-- jest-regex-util@27.0.6 deduped
| | | +-- jest-serializer@27.0.6
| | | | +-- @types/node@16.7.7 deduped
| | | | `-- graceful-fs@4.2.8 deduped
| | | +-- jest-util@27.1.0 deduped
| | | +-- jest-worker@27.1.0
| | | | +-- @types/node@16.7.7 deduped
| | | | +-- merge-stream@2.0.0 deduped
| | | | `-- supports-color@8.1.1
| | | |   `-- has-flag@4.0.0 deduped
| | | +-- micromatch@4.0.4 deduped
| | | `-- walker@1.0.7
| | |   `-- makeerror@1.0.11
| | |     `-- tmpl@1.0.4
| | +-- jest-message-util@27.1.0
| | | +-- @babel/code-frame@7.14.5 deduped
| | | +-- @jest/types@27.1.0
| | | | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | | +-- @types/istanbul-reports@3.0.1 deduped
| | | | +-- @types/node@16.7.7 deduped
| | | | +-- @types/yargs@16.0.4
| | | | | `-- @types/yargs-parser@20.2.1 deduped
| | | | `-- chalk@4.1.2 deduped
| | | +-- @types/stack-utils@2.0.1
| | | +-- chalk@4.1.2 deduped
| | | +-- graceful-fs@4.2.8 deduped
| | | +-- micromatch@4.0.4 deduped
| | | +-- pretty-format@27.1.0
| | | | +-- @jest/types@27.1.0 deduped
| | | | +-- ansi-regex@5.0.0 deduped
| | | | +-- ansi-styles@5.2.0
| | | | `-- react-is@17.0.2 deduped
| | | +-- slash@3.0.0 deduped
| | | `-- stack-utils@2.0.3
| | |   `-- escape-string-regexp@2.0.0
| | +-- jest-regex-util@27.0.6
| | +-- jest-resolve@27.1.0
| | | +-- @jest/types@27.1.0
| | | | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | | +-- @types/istanbul-reports@3.0.1 deduped
| | | | +-- @types/node@16.7.7 deduped
| | | | +-- @types/yargs@16.0.4
| | | | | `-- @types/yargs-parser@20.2.1 deduped
| | | | `-- chalk@4.1.2 deduped
| | | +-- chalk@4.1.2 deduped
| | | +-- escalade@3.1.1 deduped
| | | +-- graceful-fs@4.2.8 deduped
| | | +-- jest-haste-map@27.1.0 deduped
| | | +-- jest-pnp-resolver@1.2.2
| | | +-- jest-util@27.1.0 deduped
| | | +-- jest-validate@27.1.0 deduped
| | | +-- resolve@1.20.0
| | | | +-- is-core-module@2.6.0 deduped
| | | | `-- path-parse@1.0.7 deduped
| | | `-- slash@3.0.0 deduped
| | +-- jest-resolve-dependencies@27.1.0
| | | +-- @jest/types@27.1.0
| | | | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | | +-- @types/istanbul-reports@3.0.1 deduped
| | | | +-- @types/node@16.7.7 deduped
| | | | +-- @types/yargs@16.0.4
| | | | | `-- @types/yargs-parser@20.2.1 deduped
| | | | `-- chalk@4.1.2 deduped
| | | +-- jest-regex-util@27.0.6 deduped
| | | `-- jest-snapshot@27.1.0 deduped
| | +-- jest-runner@27.1.0
| | | +-- @jest/console@27.1.0 deduped
| | | +-- @jest/environment@27.1.0
| | | | +-- @jest/fake-timers@27.1.0 deduped
| | | | +-- @jest/types@27.1.0
| | | | | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | | | +-- @types/istanbul-reports@3.0.1 deduped
| | | | | +-- @types/node@16.7.7 deduped
| | | | | +-- @types/yargs@16.0.4
| | | | | | `-- @types/yargs-parser@20.2.1 deduped
| | | | | `-- chalk@4.1.2 deduped
| | | | +-- @types/node@16.7.7 deduped
| | | | `-- jest-mock@27.1.0 deduped
| | | +-- @jest/test-result@27.1.0 deduped
| | | +-- @jest/transform@27.1.0 deduped
| | | +-- @jest/types@27.1.0
| | | | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | | +-- @types/istanbul-reports@3.0.1 deduped
| | | | +-- @types/node@16.7.7 deduped
| | | | +-- @types/yargs@16.0.4
| | | | | `-- @types/yargs-parser@20.2.1 deduped
| | | | `-- chalk@4.1.2 deduped
| | | +-- @types/node@16.7.7 deduped
| | | +-- chalk@4.1.2 deduped
| | | +-- emittery@0.8.1 deduped
| | | +-- exit@0.1.2 deduped
| | | +-- graceful-fs@4.2.8 deduped
| | | +-- jest-docblock@27.0.6
| | | | `-- detect-newline@3.1.0
| | | +-- jest-environment-jsdom@27.1.0 deduped
| | | +-- jest-environment-node@27.1.0 deduped
| | | +-- jest-haste-map@27.1.0 deduped
| | | +-- jest-leak-detector@27.1.0
| | | | +-- jest-get-type@27.0.6
| | | | `-- pretty-format@27.1.0
| | | |   +-- @jest/types@27.1.0
| | | |   | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | |   | +-- @types/istanbul-reports@3.0.1 deduped
| | | |   | +-- @types/node@16.7.7 deduped
| | | |   | +-- @types/yargs@16.0.4
| | | |   | | `-- @types/yargs-parser@20.2.1 deduped
| | | |   | `-- chalk@4.1.2 deduped
| | | |   +-- ansi-regex@5.0.0 deduped
| | | |   +-- ansi-styles@5.2.0
| | | |   `-- react-is@17.0.2 deduped
| | | +-- jest-message-util@27.1.0 deduped
| | | +-- jest-resolve@27.1.0 deduped
| | | +-- jest-runtime@27.1.0 deduped
| | | +-- jest-util@27.1.0 deduped
| | | +-- jest-worker@27.1.0
| | | | +-- @types/node@16.7.7 deduped
| | | | +-- merge-stream@2.0.0 deduped
| | | | `-- supports-color@8.1.1
| | | |   `-- has-flag@4.0.0 deduped
| | | +-- source-map-support@0.5.19
| | | | +-- buffer-from@1.1.2 deduped
| | | | `-- source-map@0.6.1
| | | `-- throat@6.0.1 deduped
| | +-- jest-runtime@27.1.0
| | | +-- @jest/console@27.1.0 deduped
| | | +-- @jest/environment@27.1.0 deduped
| | | +-- @jest/fake-timers@27.1.0
| | | | +-- @jest/types@27.1.0
| | | | | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | | | +-- @types/istanbul-reports@3.0.1 deduped
| | | | | +-- @types/node@16.7.7 deduped
| | | | | +-- @types/yargs@16.0.4
| | | | | | `-- @types/yargs-parser@20.2.1 deduped
| | | | | `-- chalk@4.1.2 deduped
| | | | +-- @sinonjs/fake-timers@7.1.2
| | | | | `-- @sinonjs/commons@1.8.3
| | | | |   `-- type-detect@4.0.8
| | | | +-- @types/node@16.7.7 deduped
| | | | +-- jest-message-util@27.1.0 deduped
| | | | +-- jest-mock@27.1.0 deduped
| | | | `-- jest-util@27.1.0 deduped
| | | +-- @jest/globals@27.1.0
| | | | +-- @jest/environment@27.1.0 deduped
| | | | +-- @jest/types@27.1.0
| | | | | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | | | +-- @types/istanbul-reports@3.0.1 deduped
| | | | | +-- @types/node@16.7.7 deduped
| | | | | +-- @types/yargs@16.0.4
| | | | | | `-- @types/yargs-parser@20.2.1 deduped
| | | | | `-- chalk@4.1.2 deduped
| | | | `-- expect@27.1.0 deduped
| | | +-- @jest/source-map@27.0.6
| | | | +-- callsites@3.1.0
| | | | +-- graceful-fs@4.2.8 deduped
| | | | `-- source-map@0.6.1
| | | +-- @jest/test-result@27.1.0 deduped
| | | +-- @jest/transform@27.1.0 deduped
| | | +-- @jest/types@27.1.0
| | | | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | | +-- @types/istanbul-reports@3.0.1 deduped
| | | | +-- @types/node@16.7.7 deduped
| | | | +-- @types/yargs@16.0.4 deduped
| | | | `-- chalk@4.1.2 deduped
| | | +-- @types/yargs@16.0.4
| | | | `-- @types/yargs-parser@20.2.1 deduped
| | | +-- chalk@4.1.2 deduped
| | | +-- cjs-module-lexer@1.2.2
| | | +-- collect-v8-coverage@1.0.1 deduped
| | | +-- execa@5.1.1
| | | | +-- cross-spawn@7.0.3
| | | | | +-- path-key@3.1.1
| | | | | +-- shebang-command@2.0.0
| | | | | | `-- shebang-regex@3.0.0
| | | | | `-- which@2.0.2 deduped
| | | | +-- get-stream@6.0.1
| | | | +-- human-signals@2.1.0 deduped
| | | | +-- is-stream@2.0.1
| | | | +-- merge-stream@2.0.0 deduped
| | | | +-- npm-run-path@4.0.1
| | | | | `-- path-key@3.1.1 deduped
| | | | +-- onetime@5.1.2 deduped
| | | | +-- signal-exit@3.0.3 deduped
| | | | `-- strip-final-newline@2.0.0 deduped
| | | +-- exit@0.1.2 deduped
| | | +-- glob@7.1.7 deduped
| | | +-- graceful-fs@4.2.8 deduped
| | | +-- jest-haste-map@27.1.0 deduped
| | | +-- jest-message-util@27.1.0 deduped
| | | +-- jest-mock@27.1.0
| | | | +-- @jest/types@27.1.0
| | | | | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | | | +-- @types/istanbul-reports@3.0.1 deduped
| | | | | +-- @types/node@16.7.7 deduped
| | | | | +-- @types/yargs@16.0.4
| | | | | | `-- @types/yargs-parser@20.2.1 deduped
| | | | | `-- chalk@4.1.2 deduped
| | | | `-- @types/node@16.7.7 deduped
| | | +-- jest-regex-util@27.0.6 deduped
| | | +-- jest-resolve@27.1.0 deduped
| | | +-- jest-snapshot@27.1.0 deduped
| | | +-- jest-util@27.1.0 deduped
| | | +-- jest-validate@27.1.0 deduped
| | | +-- slash@3.0.0 deduped
| | | +-- strip-bom@4.0.0
| | | `-- yargs@16.2.0 deduped
| | +-- jest-snapshot@27.1.0
| | | +-- @babel/core@7.15.0 deduped
| | | +-- @babel/generator@7.15.0 deduped
| | | +-- @babel/parser@7.15.3 deduped
| | | +-- @babel/plugin-syntax-typescript@7.14.5
| | | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | | +-- @babel/traverse@7.15.0 deduped
| | | +-- @babel/types@7.15.0 deduped
| | | +-- @jest/transform@27.1.0 deduped
| | | +-- @jest/types@27.1.0
| | | | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | | +-- @types/istanbul-reports@3.0.1 deduped
| | | | +-- @types/node@16.7.7 deduped
| | | | +-- @types/yargs@16.0.4
| | | | | `-- @types/yargs-parser@20.2.1 deduped
| | | | `-- chalk@4.1.2 deduped
| | | +-- @types/babel__traverse@7.14.2
| | | | `-- @babel/types@7.15.0 deduped
| | | +-- @types/prettier@2.3.2
| | | +-- babel-preset-current-node-syntax@1.0.1
| | | | +-- @babel/plugin-syntax-async-generators@7.8.4 deduped
| | | | +-- @babel/plugin-syntax-bigint@7.8.3
| | | | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | | | +-- @babel/plugin-syntax-class-properties@7.12.13 deduped
| | | | +-- @babel/plugin-syntax-import-meta@7.10.4
| | | | | `-- @babel/helper-plugin-utils@7.14.5 deduped
| | | | +-- @babel/plugin-syntax-json-strings@7.8.3 deduped
| | | | +-- @babel/plugin-syntax-logical-assignment-operators@7.10.4 deduped
| | | | +-- @babel/plugin-syntax-nullish-coalescing-operator@7.8.3 deduped
| | | | +-- @babel/plugin-syntax-numeric-separator@7.10.4 deduped
| | | | +-- @babel/plugin-syntax-object-rest-spread@7.8.3 deduped
| | | | +-- @babel/plugin-syntax-optional-catch-binding@7.8.3 deduped
| | | | +-- @babel/plugin-syntax-optional-chaining@7.8.3 deduped
| | | | `-- @babel/plugin-syntax-top-level-await@7.14.5 deduped
| | | +-- chalk@4.1.2 deduped
| | | +-- expect@27.1.0
| | | | +-- @jest/types@27.1.0
| | | | | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | | | +-- @types/istanbul-reports@3.0.1 deduped
| | | | | +-- @types/node@16.7.7 deduped
| | | | | +-- @types/yargs@16.0.4
| | | | | | `-- @types/yargs-parser@20.2.1 deduped
| | | | | `-- chalk@4.1.2 deduped
| | | | +-- ansi-styles@5.2.0
| | | | +-- jest-get-type@27.0.6
| | | | +-- jest-matcher-utils@27.1.0 deduped
| | | | +-- jest-message-util@27.1.0 deduped
| | | | `-- jest-regex-util@27.0.6 deduped
| | | +-- graceful-fs@4.2.8 deduped
| | | +-- jest-diff@27.1.0
| | | | +-- chalk@4.1.2 deduped
| | | | +-- diff-sequences@27.0.6
| | | | +-- jest-get-type@27.0.6 deduped
| | | | `-- pretty-format@27.1.0 deduped
| | | +-- jest-get-type@27.0.6
| | | +-- jest-haste-map@27.1.0 deduped
| | | +-- jest-matcher-utils@27.1.0
| | | | +-- chalk@4.1.2 deduped
| | | | +-- jest-diff@27.1.0
| | | | | +-- chalk@4.1.2 deduped
| | | | | +-- diff-sequences@27.0.6
| | | | | +-- jest-get-type@27.0.6 deduped
| | | | | `-- pretty-format@27.1.0 deduped
| | | | +-- jest-get-type@27.0.6
| | | | `-- pretty-format@27.1.0
| | | |   +-- @jest/types@27.1.0
| | | |   | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | |   | +-- @types/istanbul-reports@3.0.1 deduped
| | | |   | +-- @types/node@16.7.7 deduped
| | | |   | +-- @types/yargs@16.0.4
| | | |   | | `-- @types/yargs-parser@20.2.1 deduped
| | | |   | `-- chalk@4.1.2 deduped
| | | |   +-- ansi-regex@5.0.0 deduped
| | | |   +-- ansi-styles@5.2.0
| | | |   `-- react-is@17.0.2 deduped
| | | +-- jest-message-util@27.1.0 deduped
| | | +-- jest-resolve@27.1.0 deduped
| | | +-- jest-util@27.1.0 deduped
| | | +-- natural-compare@1.4.0
| | | +-- pretty-format@27.1.0
| | | | +-- @jest/types@27.1.0 deduped
| | | | +-- ansi-regex@5.0.0 deduped
| | | | +-- ansi-styles@5.2.0
| | | | `-- react-is@17.0.2 deduped
| | | `-- semver@7.3.4 deduped
| | +-- jest-util@27.1.0
| | | +-- @jest/types@27.1.0
| | | | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | | +-- @types/istanbul-reports@3.0.1 deduped
| | | | +-- @types/node@16.7.7 deduped
| | | | +-- @types/yargs@16.0.4
| | | | | `-- @types/yargs-parser@20.2.1 deduped
| | | | `-- chalk@4.1.2 deduped
| | | +-- @types/node@16.7.7 deduped
| | | +-- chalk@4.1.2 deduped
| | | +-- graceful-fs@4.2.8 deduped
| | | +-- is-ci@3.0.0 deduped
| | | `-- picomatch@2.3.0 deduped
| | +-- jest-validate@27.1.0
| | | +-- @jest/types@27.1.0
| | | | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | | +-- @types/istanbul-reports@3.0.1 deduped
| | | | +-- @types/node@16.7.7 deduped
| | | | +-- @types/yargs@16.0.4
| | | | | `-- @types/yargs-parser@20.2.1 deduped
| | | | `-- chalk@4.1.2 deduped
| | | +-- camelcase@6.2.0
| | | +-- chalk@4.1.2 deduped
| | | +-- jest-get-type@27.0.6
| | | +-- leven@3.1.0
| | | `-- pretty-format@27.1.0
| | |   +-- @jest/types@27.1.0 deduped
| | |   +-- ansi-regex@5.0.0 deduped
| | |   +-- ansi-styles@5.2.0
| | |   `-- react-is@17.0.2 deduped
| | +-- jest-watcher@27.1.0
| | | +-- @jest/test-result@27.1.0 deduped
| | | +-- @jest/types@27.1.0
| | | | +-- @types/istanbul-lib-coverage@2.0.3 deduped
| | | | +-- @types/istanbul-reports@3.0.1 deduped
| | | | +-- @types/node@16.7.7 deduped
| | | | +-- @types/yargs@16.0.4
| | | | | `-- @types/yargs-parser@20.2.1 deduped
| | | | `-- chalk@4.1.2 deduped
| | | +-- @types/node@16.7.7 deduped
| | | +-- ansi-escapes@4.3.2 deduped
| | | +-- chalk@4.1.2 deduped
| | | +-- jest-util@27.1.0 deduped
| | | `-- string-length@4.0.2 deduped
| | +-- micromatch@4.0.4 deduped
| | +-- p-each-series@2.2.0
| | +-- rimraf@3.0.2 deduped
| | +-- slash@3.0.0
| | `-- strip-ansi@6.0.0 deduped
| +-- import-local@3.0.2
| | +-- pkg-dir@4.2.0 deduped
| | `-- resolve-cwd@3.0.0
| |   `-- resolve-from@5.0.0
| `-- jest-cli@27.1.0
|   +-- @jest/core@27.1.0 deduped
|   +-- @jest/test-result@27.1.0 deduped
|   +-- @jest/types@27.1.0
|   | +-- @types/istanbul-lib-coverage@2.0.3 deduped
|   | +-- @types/istanbul-reports@3.0.1 deduped
|   | +-- @types/node@16.7.7 deduped
|   | +-- @types/yargs@16.0.4
|   | | `-- @types/yargs-parser@20.2.1 deduped
|   | `-- chalk@4.1.2 deduped
|   +-- chalk@4.1.2 deduped
|   +-- exit@0.1.2 deduped
|   +-- graceful-fs@4.2.8 deduped
|   +-- import-local@3.0.2 deduped
|   +-- jest-config@27.1.0 deduped
|   +-- jest-util@27.1.0 deduped
|   +-- jest-validate@27.1.0 deduped
|   +-- prompts@2.4.1
|   | +-- kleur@3.0.3
|   | `-- sisteransi@1.0.5
|   `-- yargs@16.2.0 deduped
+-- jquery@3.6.0
+-- karma@6.3.4
| +-- body-parser@1.19.0
| | +-- bytes@3.1.0
| | +-- content-type@1.0.4
| | +-- debug@2.6.9
| | | `-- ms@2.0.0
| | +-- depd@1.1.2
| | +-- http-errors@1.7.2
| | | +-- depd@1.1.2 deduped
| | | +-- inherits@2.0.3
| | | +-- setprototypeof@1.1.1 deduped
| | | +-- statuses@1.5.0 deduped
| | | `-- toidentifier@1.0.0
| | +-- iconv-lite@0.4.24
| | | `-- safer-buffer@2.1.2 deduped
| | +-- on-finished@2.3.0
| | | `-- ee-first@1.1.1
| | +-- qs@6.7.0
| | +-- raw-body@2.4.0
| | | +-- bytes@3.1.0
| | | +-- http-errors@1.7.2 deduped
| | | +-- iconv-lite@0.4.24
| | | | `-- safer-buffer@2.1.2 deduped
| | | `-- unpipe@1.0.0
| | `-- type-is@1.6.18
| |   +-- media-typer@0.3.0
| |   `-- mime-types@2.1.32 deduped
| +-- braces@3.0.2
| | `-- fill-range@7.0.1
| |   `-- to-regex-range@5.0.1
| |     `-- is-number@7.0.0
| +-- chokidar@3.5.2 deduped
| +-- colors@1.4.0 deduped
| +-- connect@3.7.0
| | +-- debug@2.6.9
| | | `-- ms@2.0.0
| | +-- finalhandler@1.1.2
| | | +-- debug@2.6.9
| | | | `-- ms@2.0.0
| | | +-- encodeurl@1.0.2 deduped
| | | +-- escape-html@1.0.3 deduped
| | | +-- on-finished@2.3.0 deduped
| | | +-- parseurl@1.3.3 deduped
| | | +-- statuses@1.5.0 deduped
| | | `-- unpipe@1.0.0 deduped
| | +-- parseurl@1.3.3
| | `-- utils-merge@1.0.1
| +-- di@0.0.1
| +-- dom-serialize@2.2.1
| | +-- custom-event@1.0.1
| | +-- ent@2.2.0
| | +-- extend@3.0.2
| | `-- void-elements@2.0.1
| +-- glob@7.1.7
| | +-- fs.realpath@1.0.0 deduped
| | +-- inflight@1.0.6 deduped
| | +-- inherits@2.0.4 deduped
| | +-- minimatch@3.0.4 deduped
| | +-- once@1.4.0 deduped
| | `-- path-is-absolute@1.0.1 deduped
| +-- graceful-fs@4.2.8
| +-- http-proxy@1.18.1
| | +-- eventemitter3@4.0.7
| | +-- follow-redirects@1.14.2
| | `-- requires-port@1.0.0
| +-- isbinaryfile@4.0.8
| +-- lodash@4.17.21
| +-- log4js@6.3.0
| | +-- date-format@3.0.0
| | +-- debug@4.3.1 deduped
| | +-- flatted@2.0.2
| | +-- rfdc@1.3.0
| | `-- streamroller@2.2.4
| |   +-- date-format@2.1.0
| |   +-- debug@4.3.1 deduped
| |   `-- fs-extra@8.1.0
| |     +-- graceful-fs@4.2.8 deduped
| |     +-- jsonfile@4.0.0 deduped
| |     `-- universalify@0.1.2 deduped
| +-- mime@2.5.2
| +-- minimatch@3.0.4 deduped
| +-- qjobs@1.2.0
| +-- range-parser@1.2.1
| +-- rimraf@3.0.2 deduped
| +-- socket.io@3.1.2
| | +-- @types/cookie@0.4.1
| | +-- @types/cors@2.8.12
| | +-- @types/node@16.7.7 deduped
| | +-- accepts@1.3.7
| | | +-- mime-types@2.1.32 deduped
| | | `-- negotiator@0.6.2
| | +-- base64id@2.0.0
| | +-- debug@4.3.1 deduped
| | +-- engine.io@4.1.1
| | | +-- accepts@1.3.7 deduped
| | | +-- base64id@2.0.0 deduped
| | | +-- cookie@0.4.1
| | | +-- cors@2.8.5 deduped
| | | +-- debug@4.3.1 deduped
| | | +-- engine.io-parser@4.0.3
| | | | `-- base64-arraybuffer@0.1.4
| | | `-- ws@7.4.6
| | +-- socket.io-adapter@2.1.0
| | `-- socket.io-parser@4.0.4
| |   +-- @types/component-emitter@1.2.10
| |   +-- component-emitter@1.3.0
| |   `-- debug@4.3.1 deduped
| +-- source-map@0.6.1
| +-- tmp@0.2.1
| | `-- rimraf@3.0.2 deduped
| +-- ua-parser-js@0.7.28
| `-- yargs@16.2.0 deduped
+-- karma-chrome-launcher@3.1.0
| `-- which@1.3.1
|   `-- isexe@2.0.0
+-- karma-coverage-istanbul-reporter@3.0.2
| +-- istanbul-lib-coverage@3.0.0
| +-- istanbul-lib-report@3.0.0
| | +-- istanbul-lib-coverage@3.0.0 deduped
| | +-- make-dir@3.1.0 deduped
| | `-- supports-color@7.2.0 deduped
| +-- istanbul-lib-source-maps@3.0.6
| | +-- debug@4.3.1 deduped
| | +-- istanbul-lib-coverage@2.0.5
| | +-- make-dir@2.1.0
| | | +-- pify@4.0.1
| | | `-- semver@5.7.1
| | +-- rimraf@2.7.1
| | | `-- glob@7.1.7 deduped
| | `-- source-map@0.6.1
| +-- istanbul-reports@3.0.2
| | +-- html-escaper@2.0.2
| | `-- istanbul-lib-report@3.0.0 deduped
| `-- minimatch@3.0.4 deduped
+-- karma-jasmine@4.0.0
| `-- jasmine-core@3.9.0 deduped
+-- karma-jasmine-html-reporter@1.5.0
+-- ngx-bootstrap@7.1.0
| `-- tslib@2.3.1 deduped
+-- ngx-captcha@10.0.0
| `-- tslib@2.3.1 deduped
+-- ngx-cookie@5.0.2
| `-- tslib@2.3.1 deduped
+-- ngx-pagination@5.1.1
+-- ngx-popperjs@11.0.0
| `-- tslib@2.3.1 deduped
+-- oidc-client@1.11.5
| +-- acorn@7.4.1
| +-- base64-js@1.5.1
| +-- core-js@3.16.4 deduped
| +-- crypto-js@4.1.1
| `-- serialize-javascript@4.0.0
|   `-- randombytes@2.1.0
|     `-- safe-buffer@5.2.1 deduped
+-- UNMET PEER DEPENDENCY popper.js@^1.16.1
+-- positioning@2.0.1
+-- protractor@7.0.0
| +-- @types/q@0.0.32
| +-- @types/selenium-webdriver@3.0.19
| +-- blocking-proxy@1.0.1
| | `-- minimist@1.2.5 deduped
| +-- browserstack@1.6.1
| | `-- https-proxy-agent@2.2.4
| |   +-- agent-base@4.3.0
| |   | `-- es6-promisify@5.0.0
| |   |   `-- es6-promise@4.2.8
| |   `-- debug@3.2.7
| |     `-- ms@2.1.2 deduped
| +-- chalk@1.1.3
| | +-- ansi-styles@2.2.1
| | +-- escape-string-regexp@1.0.5
| | +-- has-ansi@2.0.0
| | | `-- ansi-regex@2.1.1
| | +-- strip-ansi@3.0.1
| | | `-- ansi-regex@2.1.1
| | `-- supports-color@2.0.0
| +-- glob@7.1.7 deduped
| +-- jasmine@2.8.0
| | +-- exit@0.1.2 deduped
| | +-- glob@7.1.7 deduped
| | `-- jasmine-core@2.8.0
| +-- jasminewd2@2.2.0
| +-- q@1.4.1
| +-- saucelabs@1.5.0
| | `-- https-proxy-agent@2.2.4
| |   +-- agent-base@4.3.0
| |   | `-- es6-promisify@5.0.0 deduped
| |   `-- debug@3.2.7
| |     `-- ms@2.1.2 deduped
| +-- selenium-webdriver@3.6.0
| | +-- jszip@3.7.1
| | | +-- lie@3.3.0
| | | | `-- immediate@3.0.6
| | | +-- pako@1.0.11
| | | +-- readable-stream@2.3.7
| | | | +-- core-util-is@1.0.3 deduped
| | | | +-- inherits@2.0.4 deduped
| | | | +-- isarray@1.0.0 deduped
| | | | +-- process-nextick-args@2.0.1 deduped
| | | | +-- safe-buffer@5.1.2
| | | | +-- string_decoder@1.1.1
| | | | | `-- safe-buffer@5.1.2 deduped
| | | | `-- util-deprecate@1.0.2 deduped
| | | `-- set-immediate-shim@1.0.1
| | +-- rimraf@2.7.1
| | | `-- glob@7.1.7 deduped
| | +-- tmp@0.0.30
| | | `-- os-tmpdir@1.0.2
| | `-- xml2js@0.4.23 deduped
| +-- source-map-support@0.4.18
| | `-- source-map@0.5.7
| +-- webdriver-js-extender@2.1.0
| | +-- @types/selenium-webdriver@3.0.19 deduped
| | `-- selenium-webdriver@3.6.0 deduped
| +-- webdriver-manager@12.1.8
| | +-- adm-zip@0.4.16
| | +-- chalk@1.1.3 deduped
| | +-- del@2.2.2
| | | +-- globby@5.0.0
| | | | +-- array-union@1.0.2 deduped
| | | | +-- arrify@1.0.1
| | | | +-- glob@7.1.7 deduped
| | | | +-- object-assign@4.1.1 deduped
| | | | +-- pify@2.3.0 deduped
| | | | `-- pinkie-promise@2.0.1 deduped
| | | +-- is-path-cwd@1.0.0
| | | +-- is-path-in-cwd@1.0.1
| | | | `-- is-path-inside@1.0.1
| | | |   `-- path-is-inside@1.0.2 deduped
| | | +-- object-assign@4.1.1 deduped
| | | +-- pify@2.3.0 deduped
| | | +-- pinkie-promise@2.0.1
| | | | `-- pinkie@2.0.4
| | | `-- rimraf@2.7.1
| | |   `-- glob@7.1.7 deduped
| | +-- glob@7.1.7 deduped
| | +-- ini@1.3.8
| | +-- minimist@1.2.5 deduped
| | +-- q@1.4.1 deduped
| | +-- request@2.88.2 deduped
| | +-- rimraf@2.7.1
| | | `-- glob@7.1.7 deduped
| | +-- semver@5.7.1
| | `-- xml2js@0.4.23
| |   +-- sax@1.2.4 deduped
| |   `-- xmlbuilder@11.0.1
| `-- yargs@15.4.1
|   +-- cliui@6.0.0
|   | +-- string-width@4.2.2 deduped
|   | +-- strip-ansi@6.0.0
|   | | `-- ansi-regex@5.0.0
|   | `-- wrap-ansi@6.2.0
|   |   +-- ansi-styles@4.3.0
|   |   | `-- color-convert@2.0.1 deduped
|   |   +-- string-width@4.2.2 deduped
|   |   `-- strip-ansi@6.0.0
|   |     `-- ansi-regex@5.0.0
|   +-- decamelize@1.2.0
|   +-- find-up@4.1.0
|   | +-- locate-path@5.0.0
|   | | `-- p-locate@4.1.0
|   | |   `-- p-limit@2.3.0
|   | |     `-- p-try@2.2.0
|   | `-- path-exists@4.0.0
|   +-- get-caller-file@2.0.5 deduped
|   +-- require-directory@2.1.1 deduped
|   +-- require-main-filename@2.0.0
|   +-- set-blocking@2.0.0
|   +-- string-width@4.2.2
|   | +-- emoji-regex@8.0.0 deduped
|   | +-- is-fullwidth-code-point@3.0.0
|   | `-- strip-ansi@6.0.0
|   |   `-- ansi-regex@5.0.0
|   +-- which-module@2.0.0
|   +-- y18n@4.0.3
|   `-- yargs-parser@18.1.3
|     +-- camelcase@5.3.1
|     `-- decamelize@1.2.0 deduped
+-- UNMET PEER DEPENDENCY rxjs@7.3.0
| `-- tslib@2.1.0
+-- signature_pad@2.3.2
+-- sweetalert2@11.1.4
+-- ts-node@10.2.1
| +-- @cspotcode/source-map-support@0.6.1
| | `-- @cspotcode/source-map-consumer@0.8.0
| +-- @tsconfig/node10@1.0.8
| +-- @tsconfig/node12@1.0.9
| +-- @tsconfig/node14@1.0.1
| +-- @tsconfig/node16@1.0.2
| +-- acorn@8.4.1
| +-- acorn-walk@8.1.1
| +-- arg@4.1.3
| +-- create-require@1.1.1
| +-- diff@4.0.2
| +-- make-error@1.3.6
| `-- yn@3.1.1
+-- UNMET PEER DEPENDENCY tslint@6.1.3
| +-- @babel/code-frame@7.14.5
| | `-- @babel/highlight@7.14.5
| |   +-- @babel/helper-validator-identifier@7.14.9 deduped
| |   +-- chalk@2.4.2
| |   | +-- ansi-styles@3.2.1
| |   | | `-- color-convert@1.9.3
| |   | |   `-- color-name@1.1.3
| |   | +-- escape-string-regexp@1.0.5 deduped
| |   | `-- supports-color@5.5.0
| |   |   `-- has-flag@3.0.0
| |   `-- js-tokens@4.0.0
| +-- builtin-modules@1.1.1
| +-- chalk@2.4.2
| | +-- ansi-styles@3.2.1
| | | `-- color-convert@1.9.3
| | |   `-- color-name@1.1.3
| | +-- escape-string-regexp@1.0.5 deduped
| | `-- supports-color@5.5.0
| |   `-- has-flag@3.0.0
| +-- commander@2.20.3
| +-- diff@4.0.2 deduped
| +-- glob@7.1.7 deduped
| +-- js-yaml@3.14.1
| | +-- argparse@1.0.10
| | | `-- sprintf-js@1.0.3
| | `-- esprima@4.0.1
| +-- minimatch@3.0.4 deduped
| +-- mkdirp@0.5.5
| | `-- minimist@1.2.5 deduped
| +-- resolve@1.19.0 deduped
| +-- semver@5.7.1
| +-- tslib@1.14.1
| `-- tsutils@2.29.0
|   `-- tslib@1.14.1
+-- UNMET PEER DEPENDENCY typescript@4.1.6
`-- zone.js@0.11.4
  `-- tslib@2.3.1 deduped

npm ERR! peer dep missing: @angular/animations@>=12.0.0, required by @swimlane/ngx-charts@19.0.1
npm ERR! peer dep missing: @angular/cdk@>=12.0.0, required by @swimlane/ngx-charts@19.0.1
npm ERR! peer dep missing: @angular/common@>=12.0.0, required by @swimlane/ngx-charts@19.0.1
npm ERR! peer dep missing: @angular/common@^12.0.0, required by ngx-captcha@10.0.0
npm ERR! peer dep missing: @angular/core@>=12.0.0, required by @swimlane/ngx-charts@19.0.1
npm ERR! peer dep missing: @angular/core@^12.0.0, required by ngx-captcha@10.0.0
npm ERR! peer dep missing: @angular/forms@>=12.0.0, required by @swimlane/ngx-charts@19.0.1
npm ERR! peer dep missing: @angular/platform-browser@>=12.0.0, required by @swimlane/ngx-charts@19.0.1
npm ERR! peer dep missing: @angular/platform-browser-dynamic@>=12.0.0, required by @swimlane/ngx-charts@19.0.1
npm ERR! peer dep missing: rxjs@^6.5.3, required by @angular/common@11.2.14
npm ERR! peer dep missing: rxjs@^6.5.3, required by @angular/core@11.2.14
npm ERR! peer dep missing: rxjs@^6.0.0, required by @angular/flex-layout@11.0.0-beta.33
npm ERR! peer dep missing: rxjs@^6.5.3, required by @angular/forms@11.2.14
npm ERR! peer dep missing: rxjs@^6.5.3, required by @angular/router@11.2.14
npm ERR! peer dep missing: rxjs@^6.3.0, required by @exalif/ngx-breadcrumbs@9.2.0
npm ERR! peer dep missing: rxjs@6.x, required by @swimlane/ngx-charts@19.0.1
npm ERR! peer dep missing: rxjs@^6.5.3, required by angular2-toaster@11.0.1
npm ERR! peer dep missing: tslint@^5.16.0, required by @nativescript/tslint-rules@0.0.5
npm ERR! peer dep missing: typescript@^3.4.0, required by @nativescript/tslint-rules@0.0.5
npm ERR! peer dep missing: popper.js@^1.16.1, required by bootstrap@4.6.0
npm ERR! peer dep missing: postcss@^8.2.15, required by cssnano-preset-default@5.1.4
npm ERR! peer dep missing: postcss@^8.2.15, required by cssnano-utils@2.0.1
npm ERR! peer dep missing: postcss@^8.2.15, required by postcss-colormin@5.2.0
npm ERR! peer dep missing: postcss@^8.2.15, required by postcss-convert-values@5.0.1
npm ERR! peer dep missing: postcss@^8.2.15, required by postcss-discard-comments@5.0.1
npm ERR! peer dep missing: postcss@^8.2.15, required by postcss-discard-duplicates@5.0.1
npm ERR! peer dep missing: postcss@^8.2.15, required by postcss-discard-empty@5.0.1
npm ERR! peer dep missing: postcss@^8.2.15, required by postcss-discard-overridden@5.0.1
npm ERR! peer dep missing: postcss@^8.2.15, required by postcss-merge-longhand@5.0.2
npm ERR! peer dep missing: postcss@^8.2.15, required by postcss-merge-rules@5.0.2
npm ERR! peer dep missing: postcss@^8.2.15, required by postcss-minify-font-values@5.0.1
npm ERR! peer dep missing: postcss@^8.2.15, required by postcss-minify-gradients@5.0.2
npm ERR! peer dep missing: postcss@^8.2.15, required by postcss-minify-params@5.0.1
npm ERR! peer dep missing: postcss@^8.2.15, required by postcss-minify-selectors@5.1.0
npm ERR! peer dep missing: postcss@^8.2.15, required by postcss-normalize-charset@5.0.1
npm ERR! peer dep missing: postcss@^8.2.15, required by postcss-normalize-display-values@5.0.1
npm ERR! peer dep missing: postcss@^8.2.15, required by postcss-normalize-positions@5.0.1
npm ERR! peer dep missing: postcss@^8.2.15, required by postcss-normalize-repeat-style@5.0.1
npm ERR! peer dep missing: postcss@^8.2.15, required by postcss-normalize-string@5.0.1
npm ERR! peer dep missing: postcss@^8.2.15, required by postcss-normalize-timing-functions@5.0.1
npm ERR! peer dep missing: postcss@^8.2.15, required by postcss-normalize-unicode@5.0.1
npm ERR! peer dep missing: postcss@^8.2.15, required by postcss-normalize-url@5.0.2
npm ERR! peer dep missing: postcss@^8.2.15, required by postcss-normalize-whitespace@5.0.1
npm ERR! peer dep missing: postcss@^8.2.15, required by postcss-ordered-values@5.0.2
npm ERR! peer dep missing: postcss@^8.2.15, required by postcss-reduce-initial@5.0.1
npm ERR! peer dep missing: postcss@^8.2.15, required by postcss-reduce-transforms@5.0.1
npm ERR! peer dep missing: postcss@^8.2.15, required by postcss-svgo@5.0.2
npm ERR! peer dep missing: postcss@^8.2.15, required by postcss-unique-selectors@5.0.1
npm ERR! peer dep missing: postcss@^8.2.15, required by stylehacks@5.0.1
npm ERR! peer dep missing: postcss@^8.2.15, required by cssnano-utils@2.0.1
npm ERR! peer dep missing: postcss@^8.2.15, required by cssnano-utils@2.0.1
npm ERR! peer dep missing: postcss@^8.2.15, required by cssnano-utils@2.0.1
npm ERR! peer dep missing: postcss@^8.2.15, required by cssnano-utils@2.0.1
npm ERR! peer dep missing: postcss@^8.2.15, required by cssnano-utils@2.0.1
npm ERR! peer dep missing: postcss@^8.2.15, required by cssnano-utils@2.0.1
npm ERR! peer dep missing: postcss@^8.2.15, required by cssnano-utils@2.0.1
npm ERR! peer dep missing: postcss@^8.2.15, required by cssnano-utils@2.0.1
npm ERR! peer dep missing: tslint@^5.16.0, required by @nativescript/tslint-rules@0.0.5
npm ERR! peer dep missing: typescript@^3.4.0, required by @nativescript/tslint-rules@0.0.5
npm ERR! peer dep missing: typescript@^3, required by @phenomnomnominal/tsquery@3.0.0
npm ERR! peer dep missing: acorn@^8, required by acorn-import-assertions@1.7.6
npm ERR! peer dep missing: webpack@^5.0.0, required by ts-loader@9.2.5
rigor789 commented 2 years ago

@codemonkey00 it's the "@angular-devkit/build-angular": "0.1102.13", dependency - it installs webpack 4.44.2, and conflicts. You should likely update that package if even required anymore (I'm not familiar with it, so not sure).

codemonkey00 commented 2 years ago

@rigor789 "@angular-devkit/build-angular": "0.1102.13" is used to run ng build in order to build my Angular website. It's an existing website that I'm trying to also build as an app with nativescript.

I did remove it to see if it would build the app. I called npm install then tried ns build android again and seems like i'm still missing something.

ns build android
Preparing project...
Error: Cannot find module 'babel-register'
Require stack:
- C:\Projects\GIT\myproject\node_modules\dotenv-webpack\index.js
- C:\Projects\GIT\myproject\node_modules\@nativescript\webpack\dist\helpers\dotEnv.js
- C:\Projects\GIT\myproject\node_modules\@nativescript\webpack\dist\configuration\base.js
- C:\Projects\GIT\myproject\node_modules\@nativescript\webpack\dist\configuration\index.js
- C:\Projects\GIT\myproject\node_modules\@nativescript\webpack\dist\index.js
- C:\Projects\GIT\myproject\webpack.config.js
- C:\Projects\GIT\myproject\node_modules\@nativescript\webpack\dist\bin\index.js
    at Function.Module._resolveFilename (node:internal/modules/cjs/loader:933:15)
    at Function.Module._load (node:internal/modules/cjs/loader:778:27)
    at Module.require (node:internal/modules/cjs/loader:1005:19)
    at require (node:internal/modules/cjs/helpers:94:18)
    at Object.<anonymous> (C:\Projects\GIT\myproject\node_modules\dotenv-webpack\index.js:8:5)
    at Module._compile (node:internal/modules/cjs/loader:1101:14)
    at Object.Module._extensions..js (node:internal/modules/cjs/loader:1153:10)
    at Module.load (node:internal/modules/cjs/loader:981:32)
    at Function.Module._load (node:internal/modules/cjs/loader:822:12)
    at Module.require (node:internal/modules/cjs/loader:1005:19) {
  code: 'MODULE_NOT_FOUND',
  requireStack: [
    'C:\\Projects\\GIT\\EME\\JFI.EME.ClientApp\\node_modules\\dotenv-webpack\\index.js',
    'C:\\Projects\\GIT\\EME\\JFI.EME.ClientApp\\node_modules\\@nativescript\\webpack\\dist\\helpers\\dotEnv.js',
    'C:\\Projects\\GIT\\EME\\JFI.EME.ClientApp\\node_modules\\@nativescript\\webpack\\dist\\configuration\\base.js',
    'C:\\Projects\\GIT\\EME\\JFI.EME.ClientApp\\node_modules\\@nativescript\\webpack\\dist\\configuration\\index.js',
    'C:\\Projects\\GIT\\EME\\JFI.EME.ClientApp\\node_modules\\@nativescript\\webpack\\d         + setting applicationId
         + applying user-defined configuration from C:\Projects\GIT\myproject\App_Resources\Android\app.gradleE.ClientApp\\node_modules\\@nativescript\\webpack\\d
         + using android X library androidx.legacy:legacy-support-v4:1.0.0
         + adding nativescript runtime package dependency: nativescript-optimized-with-inspector
         + adding aar plugin dependency: C:\Projects\GIT\myproject\node_modules\@nativescript\core\platforms\android\widgets-release.aar

Error executing Static Binding Generator: Couldn't find 'C:\Projects\GIT\myproject\platforms\android\build-tools\sbg-bindings.txt' bindings input file. Most probably there's an error in the JS Parser execution. You can run JS Parser with verbose logging by executing "node 'C:\Projects\GIT\myproject\platforms\android\build-tools\jsparser\js_parser.js' enableErrorLogging".
Command gradlew.bat failed with exit code 1
justintoth commented 2 years ago

@codemonkey00 Any luck solving this issue? I'm running into the same, after upgrading to webpack v5. Unfortunately, I can't use webpack v4 anymore because the latest version of NS requires webpack v5.

mwwebdev commented 2 years ago

Same here tried to migrate an old project to NS 8 and Webpack5. Only got errors for modules which can't be found. Tried several solutions, but nothing worked, it seems that some 3rd-Party modules not work with webpack5.

MeroVinggen commented 1 year ago

It's march of 2023, the problem is still there

rigor789 commented 1 year ago

@Mero-Plaform please share more info, we're not seeing anything like this in any of our projects

MeroVinggen commented 1 year ago

@rigor789 here is the issue I've opened: https://github.com/NativeScript/nativescript-cli/issues/5724