diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index b562099155..19e71d6b00 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -23,25 +23,20 @@
"extensions": [
// synchronize-marker:vscode-extensions:begin
// general
- "eamodio.gitlens",
"vscode-icons-team.vscode-icons",
- "vincaslt.highlight-matching-tag",
// code assist
"visualstudioexptteam.vscodeintellicode",
"angular.ng-template",
"mikael.angular-beastcode",
- "formulahendry.auto-rename-tag",
// code style + formatting
"editorconfig.editorconfig",
"esbenp.prettier-vscode",
"stylelint.vscode-stylelint",
- "csstools.postcss",
"dbaeumer.vscode-eslint",
// testing
"andys8.jest-snippets",
// documentation
- "streetsidesoftware.code-spell-checker",
- "yzhang.markdown-all-in-one"
+ "streetsidesoftware.code-spell-checker"
// synchronize-marker:vscode-extensions:end
],
"forwardPorts": [4200],
diff --git a/.dockerignore b/.dockerignore
index 72f93afb1f..f9738321ad 100644
--- a/.dockerignore
+++ b/.dockerignore
@@ -43,11 +43,22 @@
/e2e/node_modules
/e2e/reports
+# from e2e/cypress/.gitignore
+/e2e/cypress/videos
+/e2e/cypress/screenshots
+/e2e/cypress/logs
+
# from eslint-rules/.gitignore
/eslint-rules/node_modules
/eslint-rules/package-lock.json
/eslint-rules/dist
+# from projects/organization-management/src/app/exports/.gitignore
+/projects/organization-management/src/app/exports/**/lazy*
+
+# from projects/requisition-management/src/app/exports/.gitignore
+/projects/requisition-management/src/app/exports/**/lazy*
+
# from reports/.gitignore
/reports/junit.xml
/reports/unit-tests.html
@@ -63,31 +74,8 @@
/schematics/dist
/schematics/package-lock.json
-# from e2e/cypress/.gitignore
-/e2e/cypress/videos
-/e2e/cypress/screenshots
-/e2e/cypress/logs
-
-# from node_modules/eslint-plugin-ish-custom-rules/.gitignore
-/node_modules/eslint-plugin-ish-custom-rules/node_modules
-/node_modules/eslint-plugin-ish-custom-rules/package-lock.json
-/node_modules/eslint-plugin-ish-custom-rules/dist
-
-# from node_modules/intershop-schematics/.gitignore
-/node_modules/intershop-schematics/dist
-/node_modules/intershop-schematics/package-lock.json
-
-# from src/ssr/server-scripts/.gitignore
-/src/ssr/server-scripts/ecosystem-ports.json
-
-# from src/app/shell/shared/.gitignore
-/src/app/shell/shared/**/lazy*
-
-# from projects/organization-management/src/app/exports/.gitignore
-/projects/organization-management/src/app/exports/**/lazy*
-
-# from projects/requisition-management/src/app/exports/.gitignore
-/projects/requisition-management/src/app/exports/**/lazy*
+# from schematics/src/extension/files/__name@dasherize__/exports/.gitignore
+/schematics/src/extension/files/__name@dasherize__/exports/**/lazy*
# from src/app/extensions/address-doctor/exports/.gitignore
/src/app/extensions/address-doctor/exports/**/lazy*
@@ -125,8 +113,11 @@
# from src/app/extensions/wishlists/exports/.gitignore
/src/app/extensions/wishlists/exports/**/lazy*
-# from schematics/src/extension/files/__name@dasherize__/exports/.gitignore
-/schematics/src/extension/files/__name@dasherize__/exports/**/lazy*
+# from src/app/shell/shared/.gitignore
+/src/app/shell/shared/**/lazy*
+
+# from src/ssr/server-scripts/.gitignore
+/src/ssr/server-scripts/ecosystem-ports.json
# The content between these markers is generated.
# It can be synchronized using 'npm run update-dockerignore'
diff --git a/.eslintrc.json b/.eslintrc.json
index 8698ff1d3a..2aa3c1e594 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -4,14 +4,11 @@
{
"files": ["*.ts"],
"parserOptions": {
- "project": [
- "tsconfig.json",
- "e2e/cypress/tsconfig.json",
- "schematics/tsconfig.json"
- ],
+ "project": ["tsconfig.json"],
"createDefaultProgram": true
},
"extends": [
+ "plugin:@typescript-eslint/recommended",
"plugin:@angular-eslint/recommended",
"plugin:@angular-eslint/template/process-inline-templates",
"plugin:@ngrx/recommended",
@@ -26,6 +23,7 @@
"jsdoc",
"unicorn",
"unused-imports",
+ "@typescript-eslint",
"ish-custom-rules"
],
"rules": {
@@ -50,7 +48,6 @@
"@ngrx/avoid-mapping-selectors": "off",
"@ngrx/no-store-subscription": "off",
"@ngrx/prefer-effect-callback-in-block-statement": "off",
- "@ngrx/prefer-concat-latest-from": "off",
"@ngrx/prefix-selectors-with-select": "off",
"@ngrx/select-style": ["warn", "operator"],
"@typescript-eslint/ban-tslint-comment": "error",
@@ -123,7 +120,6 @@
],
"@typescript-eslint/no-empty-function": "warn",
"@typescript-eslint/no-empty-interface": "warn",
- "@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-inferrable-types": [
"warn",
{
@@ -138,7 +134,7 @@
"allowTernary": true
}
],
- "@typescript-eslint/no-var-requires": "error",
+ "@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/prefer-optional-chain": "warn",
"arrow-body-style": ["warn", "as-needed"],
"arrow-parens": ["warn", "as-needed"],
@@ -358,11 +354,6 @@
"filePattern": "^(?!.*/store/(sentry-config/sentry-config|seo/seo|core/messages/messages)\\.effects\\.ts$).*\\.effects\\.ts*$",
"message": "The usage of \"tap\" in effects, if not related to 3rd party integrations, can usually be transformed properly into RxJS stream code."
},
- {
- "name": "@typescript-eslint/experimental-utils",
- "filePattern": ".*eslint-rules/.*",
- "message": "Change to \"@typescript-eslint/utils\"."
- },
{
"importNamePattern": "^DomService$",
"name": "ish-core/utils/dom/dom.service",
@@ -403,7 +394,8 @@
"ish-custom-rules/no-testbed-with-then": "error",
"ish-custom-rules/no-var-before-return": "warn",
"ish-custom-rules/ordered-imports": "warn",
- "ish-custom-rules/private-destroy-field": "error",
+ "ish-custom-rules/private-destroy-field": "warn",
+ "ish-custom-rules/private-destroyRef-field": "error",
"ish-custom-rules/project-structure": [
"warn",
{
@@ -828,8 +820,7 @@
"rxjs-angular/prefer-takeuntil": [
"error",
{
- "checkDestroy": true,
- "checkComplete": true,
+ "alias": ["takeUntilDestroyed"],
"checkDecorators": ["Component", "Pipe", "Directive"]
}
],
@@ -858,7 +849,12 @@
"rxjs/no-unsafe-catch": "error",
"rxjs/no-unsafe-subject-next": "error",
"rxjs/no-unsafe-switchmap": "error",
- "rxjs/no-unsafe-takeuntil": "error",
+ "rxjs/no-unsafe-takeuntil": [
+ "error",
+ {
+ "alias": ["takeUntilDestroyed"]
+ }
+ ],
"unicorn/no-null": [
"warn",
{
@@ -911,15 +907,13 @@
},
{
"files": ["*.html"],
- "extends": ["plugin:@angular-eslint/template/recommended"],
+ "extends": [
+ "plugin:@angular-eslint/template/recommended",
+ "plugin:@angular-eslint/template/accessibility"
+ ],
"rules": {
- "@angular-eslint/template/accessibility-alt-text": "error",
- "@angular-eslint/template/accessibility-elements-content": "error",
- "@angular-eslint/template/accessibility-label-for": "error",
- "@angular-eslint/template/accessibility-valid-aria": "error",
- "@angular-eslint/template/click-events-have-key-events": "error",
- "@angular-eslint/template/mouse-events-have-key-events": "error",
- "@angular-eslint/template/no-positive-tabindex": "error"
+ "@angular-eslint/template/no-positive-tabindex": "error",
+ "@angular-eslint/template/prefer-self-closing-tags": "error"
}
},
{
diff --git a/.github/workflows/automated-upgrade.yml b/.github/workflows/automated-update.yml
similarity index 75%
rename from .github/workflows/automated-upgrade.yml
rename to .github/workflows/automated-update.yml
index 03a5eaa369..23cb7bf94e 100644
--- a/.github/workflows/automated-upgrade.yml
+++ b/.github/workflows/automated-update.yml
@@ -1,16 +1,16 @@
-name: AutomatedUpgrade
+name: AutomatedUpdate
on:
workflow_dispatch:
pull_request:
types: [opened, synchronize]
paths:
- - scripts/upgrade-pwa.js
+ - scripts/update-pwa.js
schedule:
- cron: '0 0 * * 1'
env:
- NODE_VERSION: 16.16.0
+ NODE_VERSION: 18.16.0
jobs:
CancelPrevious:
@@ -23,7 +23,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- AutomatedUpgrade:
+ AutomatedUpdate:
needs: [CancelPrevious]
runs-on: ubuntu-latest
continue-on-error: true
@@ -45,25 +45,25 @@ jobs:
node-version: ${{ env.NODE_VERSION }}
cache: npm
- - name: Create Upgrade Branch
+ - name: Create Update Branch
run: |
git config --global user.email "pwa@intershop.de"
git config --global user.name "GitHub CI"
- git switch -c upgrade/automated-upgrade
+ git switch -c update/automated-update
- - name: Run Upgrade Script
- run: node scripts/upgrade-pwa
+ - name: Run Update Script
+ run: node scripts/update-pwa
- name: Run Automated Fixes
run: |
npm run lint -- --fix
npm run format
git add .
- git commit -m "chore: post upgrade fixes" --allow-empty
+ git commit -m "chore: post update fixes" --allow-empty
- name: Run Tests
run: npm run test
- - name: Push Upgrade Branch
+ - name: Push Update Branch
if: always()
- run: git push --force origin upgrade/automated-upgrade
+ run: git push --force origin update/automated-update
diff --git a/.github/workflows/demo-server-up.yml b/.github/workflows/demo-server-up.yml
index 361d3ca958..ed2788c177 100644
--- a/.github/workflows/demo-server-up.yml
+++ b/.github/workflows/demo-server-up.yml
@@ -11,7 +11,7 @@ on:
#
# 2. Change these variables for your configuration:
env:
- ICM_BASE_URL: http://pwa-review.northeurope.cloudapp.azure.com:8081
+ ICM_BASE_URL: https://review.icm.intershop.de
jobs:
CancelPrevious:
diff --git a/.github/workflows/development.yml b/.github/workflows/development.yml
index bf92e05b39..efd5763c7d 100644
--- a/.github/workflows/development.yml
+++ b/.github/workflows/development.yml
@@ -14,7 +14,7 @@ on:
env:
NODE_VERSION: 18.16.0
- ICM_BASE_URL: http://pwa-review.northeurope.cloudapp.azure.com:8081
+ ICM_BASE_URL: https://review.icm.intershop.de
jobs:
CancelPrevious:
diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml
index e8220c6c7d..f517ede5bd 100644
--- a/.github/workflows/integration.yml
+++ b/.github/workflows/integration.yml
@@ -14,8 +14,8 @@ on:
env:
NODE_VERSION: 18.16.0
- NODE_OPTIONS: --max_old_space_size=8192
- ICM_BASE_URL: http://pwa-review.northeurope.cloudapp.azure.com:8081
+ NODE_OPTIONS: --max_old_space_size=10240
+ ICM_BASE_URL: https://review.icm.intershop.de
jobs:
CancelPrevious:
@@ -141,7 +141,7 @@ jobs:
node dist/$THEME/run-standalone &
- name: Cypress
- uses: cypress-io/github-action@v4
+ uses: cypress-io/github-action@v6
with:
install: false
wait-on: 'http://localhost:4200'
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index 540466138f..747bdf3d1f 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -68,7 +68,7 @@ jobs:
node-version: ${{ env.NODE_VERSION }}
cache: npm
- - uses: 1arp/create-a-file-action@0.2
+ - uses: 1arp/create-a-file-action@0.3
with:
path: '.'
file: 'script.bat'
diff --git a/.prettierignore b/.prettierignore
index d10652e700..54fb48cef2 100644
--- a/.prettierignore
+++ b/.prettierignore
@@ -22,6 +22,7 @@
*.properties
*.crt
*.key
+*.lua
.*ignore
.husky
.gitattributes
diff --git a/.stylelintrc.json b/.stylelintrc.json
index 4056063acd..54bc004406 100644
--- a/.stylelintrc.json
+++ b/.stylelintrc.json
@@ -17,6 +17,7 @@
"import-notation": "string",
"media-feature-name-no-vendor-prefix": true,
"media-feature-name-no-unknown": true,
+ "media-query-no-invalid": null,
"no-descending-specificity": null,
"no-duplicate-selectors": true,
"property-no-vendor-prefix": true,
diff --git a/.vscode/extensions.json b/.vscode/extensions.json
index 22fc752214..0507692435 100644
--- a/.vscode/extensions.json
+++ b/.vscode/extensions.json
@@ -5,27 +5,20 @@
"recommendations": [
// synchronize-marker:vscode-extensions:begin
// general
- "eamodio.gitlens",
"vscode-icons-team.vscode-icons",
- "vincaslt.highlight-matching-tag",
// code assist
"visualstudioexptteam.vscodeintellicode",
"angular.ng-template",
"mikael.angular-beastcode",
- "formulahendry.auto-rename-tag",
// code style + formatting
"editorconfig.editorconfig",
"esbenp.prettier-vscode",
"stylelint.vscode-stylelint",
- "csstools.postcss",
"dbaeumer.vscode-eslint",
// testing
"andys8.jest-snippets",
// documentation
- "streetsidesoftware.code-spell-checker",
- "yzhang.markdown-all-in-one"
+ "streetsidesoftware.code-spell-checker"
// synchronize-marker:vscode-extensions:end
- ],
- // List of extensions recommended by VS Code that should not be recommended for users of this workspace.
- "unwantedRecommendations": ["eg2.tslint"]
+ ]
}
diff --git a/.vscode/intershop.txt b/.vscode/intershop.txt
index bcdd6ede35..47b84ff553 100644
--- a/.vscode/intershop.txt
+++ b/.vscode/intershop.txt
@@ -11,9 +11,11 @@ appserver
backoffice
bar
bars
+bitnami
blocklist
breakline
categoryref
+cobrowse
colorcode
compodoc
concardis
@@ -41,6 +43,7 @@ errorpage
extralarge
fastpay
fieldgroup
+flushdb
fontawesome
foo
foobar
@@ -77,6 +80,7 @@ keyvalue
kubernetes
lessthan
logformat
+loglevel
maxlength
mergeable
minibasket
@@ -142,6 +146,7 @@ quoterequest
quoterequests
rebased
recaptcha
+rediss
refactoring
refactorings
resetted
@@ -167,6 +172,7 @@ sitekey
sku
skus
spgid
+srcache
sslmode
storefinder
stylelint
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 6283aed145..6954215c6f 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -28,10 +28,10 @@
"internalConsoleOptions": "neverOpen"
},
{
- "name": "Upgrade PWA",
+ "name": "Update PWA",
"type": "node",
"request": "launch",
- "program": "${workspaceFolder}/scripts/upgrade-pwa",
+ "program": "${workspaceFolder}/scripts/update-pwa",
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 42371cebfd..7e27669893 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -5,8 +5,8 @@
"editor.formatOnSave": true,
"editor.formatOnPaste": false,
"editor.codeActionsOnSave": {
- "source.fixAll.eslint": true,
- "source.fixAll.stylelint": true
+ "source.fixAll.eslint": "explicit",
+ "source.fixAll.stylelint": "explicit"
},
"editor.bracketPairColorization.enabled": true,
diff --git a/3rd-party-licenses.txt b/3rd-party-licenses.txt
index d823794db2..f013ebdc2a 100644
--- a/3rd-party-licenses.txt
+++ b/3rd-party-licenses.txt
@@ -1,92 +1,77 @@
"module name","licenses","copyright","repository"
"@aashutoshrathi/word-wrap@1.2.6","MIT","Copyright (c) 2014-2016, Jon Schlinkert","https://github.com/aashutoshrathi/word-wrap"
"@aduh95/viz.js@3.4.0","MIT","Copyright (c) 2014-2018 Michael Daines","https://github.com/aduh95/viz.js"
-"@ampproject/remapping@2.2.0","Apache-2.0","","https://github.com/ampproject/remapping"
-"@angular-builders/custom-webpack@15.0.0","MIT","Copyright (c) 2018 Evgeny Barabanov","https://github.com/just-jeb/angular-builders"
-"@angular-devkit/architect@0.1502.6","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
-"@angular-devkit/architect@0.1502.9","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
-"@angular-devkit/build-angular@15.2.9","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
-"@angular-devkit/build-webpack@0.1502.9","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
-"@angular-devkit/core@15.2.6","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
-"@angular-devkit/core@15.2.9","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
-"@angular-devkit/core@16.0.4","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
-"@angular-devkit/schematics@15.2.6","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
-"@angular-devkit/schematics@15.2.9","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
-"@angular-devkit/schematics@16.0.4","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
-"@angular-eslint/builder@15.2.1","MIT","Copyright (c) 2020 James Henry","https://github.com/angular-eslint/angular-eslint"
-"@angular-eslint/bundled-angular-compiler@15.2.1","MIT","Copyright (c) 2020 James Henry","https://github.com/angular-eslint/angular-eslint"
-"@angular-eslint/eslint-plugin-template@15.2.1","MIT","Copyright (c) 2020 James Henry","https://github.com/angular-eslint/angular-eslint"
-"@angular-eslint/eslint-plugin@15.2.1","MIT","Copyright (c) 2020 James Henry","https://github.com/angular-eslint/angular-eslint"
-"@angular-eslint/schematics@15.2.1","MIT","Copyright (c) 2020 James Henry","https://github.com/angular-eslint/angular-eslint"
-"@angular-eslint/template-parser@15.2.1","MIT","Copyright (c) 2020 James Henry","https://github.com/angular-eslint/angular-eslint"
-"@angular-eslint/utils@15.2.1","MIT","Copyright (c) 2020 James Henry",""
-"@angular/animations@15.2.9","MIT","","https://github.com/angular/angular"
-"@angular/cdk@15.2.9","MIT","Copyright (c) 2023 Google LLC.","https://github.com/angular/components"
-"@angular/cli@15.2.6","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
-"@angular/common@15.2.9","MIT","","https://github.com/angular/angular"
-"@angular/compiler-cli@15.2.9","MIT","","https://github.com/angular/angular"
-"@angular/compiler@15.2.9","MIT","","https://github.com/angular/angular"
-"@angular/core@15.2.9","MIT","","https://github.com/angular/angular"
-"@angular/forms@15.2.9","MIT","","https://github.com/angular/angular"
-"@angular/language-service@15.2.9","MIT","","https://github.com/angular/angular"
-"@angular/localize@15.2.9","MIT","","https://github.com/angular/angular"
-"@angular/platform-browser-dynamic@15.2.9","MIT","","https://github.com/angular/angular"
-"@angular/platform-browser@15.2.9","MIT","","https://github.com/angular/angular"
-"@angular/platform-server@15.2.9","MIT","","https://github.com/angular/angular"
-"@angular/router@15.2.9","MIT","","https://github.com/angular/angular"
-"@angular/service-worker@15.2.9","MIT","","https://github.com/angular/angular"
+"@ampproject/remapping@2.2.1","Apache-2.0","","https://github.com/ampproject/remapping"
+"@angular-builders/custom-webpack@16.0.1","MIT","Copyright (c) 2018 Evgeny Barabanov","https://github.com/just-jeb/angular-builders"
+"@angular-devkit/architect@0.1602.10","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
+"@angular-devkit/build-angular@16.2.10","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
+"@angular-devkit/build-webpack@0.1602.10","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
+"@angular-devkit/core@14.2.12","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
+"@angular-devkit/core@16.2.10","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
+"@angular-devkit/schematics@14.2.12","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
+"@angular-devkit/schematics@16.2.10","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
+"@angular-eslint/builder@16.3.1","MIT","Copyright (c) 2020 James Henry","https://github.com/angular-eslint/angular-eslint"
+"@angular-eslint/bundled-angular-compiler@16.3.1","MIT","Copyright (c) 2020 James Henry","https://github.com/angular-eslint/angular-eslint"
+"@angular-eslint/eslint-plugin-template@16.3.1","MIT","Copyright (c) 2020 James Henry","https://github.com/angular-eslint/angular-eslint"
+"@angular-eslint/eslint-plugin@16.3.1","MIT","Copyright (c) 2020 James Henry","https://github.com/angular-eslint/angular-eslint"
+"@angular-eslint/schematics@16.3.1","MIT","Copyright (c) 2020 James Henry","https://github.com/angular-eslint/angular-eslint"
+"@angular-eslint/template-parser@16.3.1","MIT","Copyright (c) 2020 James Henry","https://github.com/angular-eslint/angular-eslint"
+"@angular-eslint/utils@16.3.1","MIT","Copyright (c) 2020 James Henry",""
+"@angular/animations@16.2.12","MIT","","https://github.com/angular/angular"
+"@angular/cdk@16.2.12","MIT","Copyright (c) 2023 Google LLC.","https://github.com/angular/components"
+"@angular/cli@16.2.10","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
+"@angular/common@16.2.12","MIT","","https://github.com/angular/angular"
+"@angular/compiler-cli@16.2.12","MIT","","https://github.com/angular/angular"
+"@angular/compiler@16.2.12","MIT","","https://github.com/angular/angular"
+"@angular/core@16.2.12","MIT","","https://github.com/angular/angular"
+"@angular/forms@16.2.12","MIT","","https://github.com/angular/angular"
+"@angular/language-service@16.2.12","MIT","","https://github.com/angular/angular"
+"@angular/localize@16.2.12","MIT","","https://github.com/angular/angular"
+"@angular/platform-browser-dynamic@16.2.12","MIT","","https://github.com/angular/angular"
+"@angular/platform-browser@16.2.12","MIT","","https://github.com/angular/angular"
+"@angular/platform-server@16.2.12","MIT","","https://github.com/angular/angular"
+"@angular/router@16.2.12","MIT","","https://github.com/angular/angular"
+"@angular/service-worker@16.2.12","MIT","","https://github.com/angular/angular"
"@assemblyscript/loader@0.10.1","Apache-2.0","","https://github.com/AssemblyScript/assemblyscript"
-"@babel/code-frame@7.21.4","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/compat-data@7.22.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/core@7.19.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/core@7.20.12","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/core@7.22.1","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/generator@7.20.14","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/generator@7.22.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/helper-annotate-as-pure@7.18.6","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/helper-builder-binary-assignment-operator-visitor@7.18.9","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/helper-compilation-targets@7.22.1","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/helper-create-class-features-plugin@7.22.1","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/helper-create-regexp-features-plugin@7.22.1","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/helper-define-polyfill-provider@0.3.3","MIT","Copyright (c) 2014-present Nicolò Ribaudo and other contributors","https://github.com/babel/babel-polyfills"
-"@babel/helper-define-polyfill-provider@0.4.0","MIT","Copyright (c) 2014-present Nicolò Ribaudo and other contributors","https://github.com/babel/babel-polyfills"
-"@babel/helper-environment-visitor@7.22.1","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/helper-explode-assignable-expression@7.18.6","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/helper-function-name@7.21.0","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/helper-hoist-variables@7.18.6","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/helper-member-expression-to-functions@7.22.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/helper-module-imports@7.21.4","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/helper-module-transforms@7.22.1","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/helper-optimise-call-expression@7.18.6","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/code-frame@7.23.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/compat-data@7.23.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/core@7.22.9","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/core@7.23.2","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/core@7.23.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/generator@7.22.9","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/generator@7.23.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/helper-annotate-as-pure@7.22.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/helper-builder-binary-assignment-operator-visitor@7.22.15","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/helper-compilation-targets@7.22.15","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/helper-create-class-features-plugin@7.23.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/helper-create-regexp-features-plugin@7.22.15","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/helper-define-polyfill-provider@0.4.3","MIT","Copyright (c) 2014-present Nicolò Ribaudo and other contributors","https://github.com/babel/babel-polyfills"
+"@babel/helper-environment-visitor@7.22.20","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/helper-function-name@7.23.0","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/helper-hoist-variables@7.22.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/helper-member-expression-to-functions@7.23.0","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/helper-module-imports@7.22.15","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/helper-module-transforms@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/helper-optimise-call-expression@7.22.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/helper-plugin-utils@7.22.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/helper-remap-async-to-generator@7.18.9","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/helper-replace-supers@7.22.1","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/helper-simple-access@7.21.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/helper-skip-transparent-expression-wrappers@7.20.0","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/helper-split-export-declaration@7.18.6","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/helper-string-parser@7.21.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/helper-validator-identifier@7.19.1","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/helper-validator-option@7.21.0","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/helper-wrap-function@7.20.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/helpers@7.22.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/highlight@7.18.6","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/parser@7.22.4","MIT","Copyright (C) 2012-2014 by various contributors (see AUTHORS)","https://github.com/babel/babel"
-"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/helper-remap-async-to-generator@7.22.20","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/helper-replace-supers@7.22.20","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/helper-simple-access@7.22.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/helper-skip-transparent-expression-wrappers@7.22.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/helper-split-export-declaration@7.22.6","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/helper-string-parser@7.23.4","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/helper-validator-identifier@7.22.20","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/helper-validator-option@7.23.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/helper-wrap-function@7.22.20","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/helpers@7.23.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/highlight@7.23.4","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/parser@7.23.5","MIT","Copyright (C) 2012-2014 by various contributors (see AUTHORS)","https://github.com/babel/babel"
+"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/plugin-proposal-async-generator-functions@7.20.7","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-proposal-class-properties@7.18.6","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-proposal-class-static-block@7.21.0","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-proposal-dynamic-import@7.18.6","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-proposal-export-namespace-from@7.18.9","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-proposal-json-strings@7.18.6","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-proposal-logical-assignment-operators@7.20.7","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-proposal-nullish-coalescing-operator@7.18.6","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-proposal-numeric-separator@7.18.6","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-proposal-object-rest-spread@7.20.7","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-proposal-optional-catch-binding@7.18.6","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-proposal-optional-chaining@7.21.0","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/plugin-proposal-private-methods@7.18.6","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-proposal-private-property-in-object@7.21.0","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel-plugin-proposal-private-property-in-object"
"@babel/plugin-proposal-unicode-property-regex@7.18.6","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/plugin-syntax-async-generators@7.8.4","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-generators"
"@babel/plugin-syntax-bigint@7.8.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-bigint"
@@ -94,11 +79,11 @@
"@babel/plugin-syntax-class-static-block@7.14.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/plugin-syntax-dynamic-import@7.8.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-dynamic-import"
"@babel/plugin-syntax-export-namespace-from@7.8.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-export-namespace-from"
-"@babel/plugin-syntax-import-assertions@7.20.0","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-syntax-import-attributes@7.22.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-syntax-import-assertions@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-syntax-import-attributes@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/plugin-syntax-import-meta@7.10.4","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/plugin-syntax-json-strings@7.8.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-json-strings"
-"@babel/plugin-syntax-jsx@7.22.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-syntax-jsx@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/plugin-syntax-logical-assignment-operators@7.10.4","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/plugin-syntax-nullish-coalescing-operator@7.8.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-nullish-coalescing-operator"
"@babel/plugin-syntax-numeric-separator@7.10.4","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
@@ -107,104 +92,106 @@
"@babel/plugin-syntax-optional-chaining@7.8.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-chaining"
"@babel/plugin-syntax-private-property-in-object@7.14.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/plugin-syntax-top-level-await@7.14.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-syntax-typescript@7.22.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-syntax-typescript@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/plugin-syntax-unicode-sets-regex@7.18.6","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-arrow-functions@7.21.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-async-generator-functions@7.22.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-async-to-generator@7.20.7","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-block-scoped-functions@7.18.6","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-block-scoping@7.21.0","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-class-properties@7.22.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-class-static-block@7.22.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-classes@7.21.0","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-computed-properties@7.21.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-destructuring@7.21.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-dotall-regex@7.18.6","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-duplicate-keys@7.18.9","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-dynamic-import@7.22.1","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-exponentiation-operator@7.18.6","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-export-namespace-from@7.22.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-for-of@7.21.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-function-name@7.18.9","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-json-strings@7.22.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-literals@7.18.9","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-logical-assignment-operators@7.22.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-member-expression-literals@7.18.6","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-modules-amd@7.20.11","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-modules-commonjs@7.21.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-modules-systemjs@7.22.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-modules-umd@7.18.6","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-named-capturing-groups-regex@7.22.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-new-target@7.22.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-nullish-coalescing-operator@7.22.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-numeric-separator@7.22.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-object-rest-spread@7.22.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-object-super@7.18.6","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-optional-catch-binding@7.22.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-optional-chaining@7.22.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-parameters@7.22.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-private-methods@7.22.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-private-property-in-object@7.22.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-property-literals@7.18.6","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-regenerator@7.21.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-reserved-words@7.18.6","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-runtime@7.19.6","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-shorthand-properties@7.18.6","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-spread@7.20.7","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-sticky-regex@7.18.6","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-template-literals@7.18.9","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-typeof-symbol@7.18.9","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-unicode-escapes@7.21.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-unicode-property-regex@7.22.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-unicode-regex@7.18.6","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/plugin-transform-unicode-sets-regex@7.22.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/preset-env@7.20.2","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/preset-env@7.22.4","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/preset-modules@0.1.5","MIT","Copyright (c) 2020 Babel","https://github.com/babel/preset-modules"
+"@babel/plugin-transform-arrow-functions@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-async-generator-functions@7.23.4","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-async-to-generator@7.22.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-async-to-generator@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-block-scoped-functions@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-block-scoping@7.23.4","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-class-properties@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-class-static-block@7.23.4","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-classes@7.23.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-computed-properties@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-destructuring@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-dotall-regex@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-duplicate-keys@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-dynamic-import@7.23.4","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-exponentiation-operator@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-export-namespace-from@7.23.4","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-for-of@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-function-name@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-json-strings@7.23.4","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-literals@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-logical-assignment-operators@7.23.4","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-member-expression-literals@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-modules-amd@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-modules-commonjs@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-modules-systemjs@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-modules-umd@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-named-capturing-groups-regex@7.22.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-new-target@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-nullish-coalescing-operator@7.23.4","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-numeric-separator@7.23.4","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-object-rest-spread@7.23.4","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-object-super@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-optional-catch-binding@7.23.4","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-optional-chaining@7.23.4","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-parameters@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-private-methods@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-private-property-in-object@7.23.4","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-property-literals@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-regenerator@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-reserved-words@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-runtime@7.22.9","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-shorthand-properties@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-spread@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-sticky-regex@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-template-literals@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-typeof-symbol@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-unicode-escapes@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-unicode-property-regex@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-unicode-regex@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/plugin-transform-unicode-sets-regex@7.23.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/preset-env@7.22.9","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/preset-env@7.23.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/preset-modules@0.1.6","MIT","Copyright (c) 2020 Babel","https://github.com/babel/preset-modules"
+"@babel/preset-modules@0.1.6-no-external-plugins","MIT","Copyright (c) 2020 Babel","https://github.com/babel/preset-modules"
"@babel/regjsgen@0.8.0","MIT","Copyright 2014-2020 Benjamin Tan ","https://github.com/bnjmnt4n/regjsgen"
-"@babel/runtime@7.20.13","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/runtime@7.22.3","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/template@7.20.7","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/template@7.21.9","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/traverse@7.22.4","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
-"@babel/types@7.22.4","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/runtime@7.22.6","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/runtime@7.23.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/template@7.22.15","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/template@7.22.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/traverse@7.23.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
+"@babel/types@7.23.5","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@bcherny/json-schema-ref-parser@10.0.5-fork","MIT","Copyright (c) 2015 James Messinger","https://github.com/APIDevTools/json-schema-ref-parser"
"@bcoe/v8-coverage@0.2.3","MIT","Copyright © 2015-2017 Charles Samborski","https://github.com/demurgos/v8-coverage"
-"@commitlint/cli@17.7.1","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
-"@commitlint/config-conventional@17.7.0","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
-"@commitlint/config-validator@17.6.7","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
-"@commitlint/ensure@17.6.7","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
-"@commitlint/execute-rule@17.4.0","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
-"@commitlint/format@17.4.4","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
-"@commitlint/is-ignored@17.7.0","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
-"@commitlint/lint@17.7.0","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
-"@commitlint/load@17.7.1","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
-"@commitlint/message@17.4.2","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
-"@commitlint/parse@17.7.0","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
-"@commitlint/read@17.5.1","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
-"@commitlint/resolve-extends@17.6.7","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
-"@commitlint/rules@17.7.0","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
-"@commitlint/to-lines@17.4.0","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
-"@commitlint/top-level@17.4.0","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
-"@commitlint/types@17.4.4","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
-"@compodoc/compodoc@1.1.21","MIT","Copyright (c) 2016 Vincent Ogloblinsky","https://github.com/compodoc/compodoc"
+"@commitlint/cli@18.4.3","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
+"@commitlint/config-conventional@18.4.3","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
+"@commitlint/config-validator@18.4.3","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
+"@commitlint/ensure@18.4.3","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
+"@commitlint/execute-rule@18.4.3","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
+"@commitlint/format@18.4.3","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
+"@commitlint/is-ignored@18.4.3","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
+"@commitlint/lint@18.4.3","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
+"@commitlint/load@18.4.3","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
+"@commitlint/message@18.4.3","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
+"@commitlint/parse@18.4.3","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
+"@commitlint/read@18.4.3","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
+"@commitlint/resolve-extends@18.4.3","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
+"@commitlint/rules@18.4.3","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
+"@commitlint/to-lines@18.4.3","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
+"@commitlint/top-level@18.4.3","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
+"@commitlint/types@18.4.3","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
+"@compodoc/compodoc@1.1.23","MIT","Copyright (c) 2016 Vincent Ogloblinsky","https://github.com/compodoc/compodoc"
"@compodoc/live-server@1.2.3","MIT","Copyright (c) 2012 Tapio Vierros","https://github.com/compodoc/live-server"
"@compodoc/ngd-core@2.1.1","MIT","","https://github.com/compodoc/ngd"
"@compodoc/ngd-transformer@2.1.3","MIT","","https://github.com/compodoc/ngd"
-"@cspell/cspell-bundled-dicts@7.3.2","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
-"@cspell/cspell-json-reporter@7.3.2","MIT","Copyright (c) 2019 cspell","https://github.com/streetsidesoftware/cspell"
-"@cspell/cspell-pipe@7.3.2","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
-"@cspell/cspell-resolver@7.3.2","MIT","Copyright (c) 2023 Jason Dent","https://github.com/streetsidesoftware/cspell"
-"@cspell/cspell-service-bus@7.3.2","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
-"@cspell/cspell-types@7.3.2","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
+"@cspell/cspell-bundled-dicts@8.1.3","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
+"@cspell/cspell-json-reporter@8.1.3","MIT","Copyright (c) 2019 cspell","https://github.com/streetsidesoftware/cspell"
+"@cspell/cspell-pipe@8.1.3","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
+"@cspell/cspell-resolver@8.1.3","MIT","Copyright (c) 2023 Jason Dent","https://github.com/streetsidesoftware/cspell"
+"@cspell/cspell-service-bus@8.1.3","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
+"@cspell/cspell-types@8.1.3","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
"@cspell/dict-ada@4.0.2","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/dict-aws@4.0.0","MIT","Copyright (c) 2019 Daniel Schroeder . Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
-"@cspell/dict-bash@4.1.1","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
-"@cspell/dict-companies@3.0.21","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
-"@cspell/dict-cpp@5.0.4","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
+"@cspell/dict-bash@4.1.3","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
+"@cspell/dict-companies@3.0.28","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
+"@cspell/dict-cpp@5.0.10","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/dict-cryptocurrencies@4.0.0","MIT","Copyright (c) 2020 Shane Fontaine . Copyright (c) 2023 Street Side Software","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/dict-csharp@4.0.2","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
-"@cspell/dict-css@4.0.7","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
+"@cspell/dict-css@4.0.12","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/dict-dart@2.0.3","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/dict-data-science@1.0.11","MIT","Copyright (c) 2017-2022 Street Side Software ","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/dict-de-de@1.1.32","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
@@ -214,269 +201,280 @@
"@cspell/dict-elixir@4.0.3","MIT","Copyright (c) 2018 Todoroki (Ryo Konishi) . Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/dict-en-common-misspellings@1.0.2","MIT","Copyright (c) 2017-2022 Street Side Software ","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/dict-en-gb@1.1.33","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
-"@cspell/dict-en_us@4.3.7","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
-"@cspell/dict-filetypes@3.0.1","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
+"@cspell/dict-en_us@4.3.12","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
+"@cspell/dict-filetypes@3.0.3","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/dict-fonts@4.0.0","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/dict-fr-fr@2.2.2","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
-"@cspell/dict-fsharp@1.0.0","MIT","Copyright (c) 2017-2022 Street Side Software ","https://github.com/streetsidesoftware/cspell-dicts"
+"@cspell/dict-fsharp@1.0.1","MIT","Copyright (c) 2017-2022 Street Side Software ","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/dict-fullstack@3.1.5","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/dict-gaming-terms@1.0.4","MIT","Copyright (c) 2017-2022 Street Side Software ","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/dict-git@2.0.0","MIT","Copyright (c) 2017-2022 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
-"@cspell/dict-golang@6.0.2","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
+"@cspell/dict-golang@6.0.5","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/dict-haskell@4.0.1","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/dict-html-symbol-entities@4.0.0","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
-"@cspell/dict-html@4.0.3","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
-"@cspell/dict-java@5.0.5","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
-"@cspell/dict-k8s@1.0.1","MIT","Copyright (c) 2017-2022 Street Side Software ","https://github.com/streetsidesoftware/cspell-dicts"
+"@cspell/dict-html@4.0.5","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
+"@cspell/dict-java@5.0.6","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
+"@cspell/dict-k8s@1.0.2","MIT","Copyright (c) 2017-2022 Street Side Software ","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/dict-latex@4.0.0","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/dict-lorem-ipsum@4.0.0","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
-"@cspell/dict-lua@4.0.1","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
-"@cspell/dict-node@4.0.2","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
-"@cspell/dict-npm@5.0.8","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
-"@cspell/dict-php@4.0.2","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
-"@cspell/dict-powershell@5.0.2","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
-"@cspell/dict-public-licenses@2.0.3","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
-"@cspell/dict-python@4.1.7","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
+"@cspell/dict-lua@4.0.3","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
+"@cspell/dict-makefile@1.0.0","MIT","Copyright (c) 2023 Street Side Software ","https://github.com/streetsidesoftware/cspell-dicts"
+"@cspell/dict-node@4.0.3","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
+"@cspell/dict-npm@5.0.13","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
+"@cspell/dict-php@4.0.4","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
+"@cspell/dict-powershell@5.0.3","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
+"@cspell/dict-public-licenses@2.0.5","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
+"@cspell/dict-python@4.1.10","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/dict-r@2.0.1","MIT","Copyright (c) 2017-2020 Jason Dent , Matthew Toohey ","https://github.com/streetsidesoftware/cspell-dicts"
-"@cspell/dict-ruby@5.0.0","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
+"@cspell/dict-ruby@5.0.1","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/dict-rust@4.0.1","MIT","Copyright (c) 2017-2020 Alexander Andreev . Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/dict-scala@5.0.0","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
-"@cspell/dict-software-terms@3.2.2","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
-"@cspell/dict-sql@2.1.1","MIT","Copyright (c) 2017-2022 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
+"@cspell/dict-software-terms@3.3.12","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
+"@cspell/dict-sql@2.1.2","MIT","Copyright (c) 2017-2022 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/dict-svelte@1.0.2","MIT","Copyright (c) 2017-2022 Street Side Software ","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/dict-swift@2.0.1","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
-"@cspell/dict-typescript@3.1.1","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
+"@cspell/dict-typescript@3.1.2","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/dict-vue@3.0.0","MIT","Copyright (c) 2017-2020 Jason Dent ","https://github.com/streetsidesoftware/cspell-dicts"
-"@cspell/dynamic-import@7.3.2","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
-"@cspell/strong-weak-map@7.3.2","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
+"@cspell/dynamic-import@8.1.3","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
+"@cspell/strong-weak-map@8.1.3","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
"@cspotcode/source-map-support@0.8.1","MIT","Copyright (c) 2014 Evan Wallace","https://github.com/cspotcode/node-source-map-support"
-"@csstools/css-parser-algorithms@2.3.1","MIT","Copyright 2022 Romain Menke, Antonio Laguna ","https://github.com/csstools/postcss-plugins"
-"@csstools/css-tokenizer@2.2.0","MIT","Copyright 2022 Romain Menke, Antonio Laguna ","https://github.com/csstools/postcss-plugins"
-"@csstools/media-query-list-parser@2.1.4","MIT","Copyright 2022 Romain Menke, Antonio Laguna ","https://github.com/csstools/postcss-plugins"
+"@csstools/css-parser-algorithms@2.3.2","MIT","Copyright 2022 Romain Menke, Antonio Laguna ","https://github.com/csstools/postcss-plugins"
+"@csstools/css-tokenizer@2.2.1","MIT","Copyright 2022 Romain Menke, Antonio Laguna ","https://github.com/csstools/postcss-plugins"
+"@csstools/media-query-list-parser@2.1.5","MIT","Copyright 2022 Romain Menke, Antonio Laguna ","https://github.com/csstools/postcss-plugins"
"@csstools/selector-specificity@3.0.0","MIT-0","Copyright © CSSTools Contributors","https://github.com/csstools/postcss-plugins"
"@discoveryjs/json-ext@0.5.7","MIT","Copyright (c) 2020 Roman Dvornov ","https://github.com/discoveryjs/json-ext"
-"@es-joy/jsdoccomment@0.40.1","MIT","Copyright JS Foundation and other contributors, https://js.foundation. Copyright (c) 2021 Brett Zamir","https://github.com/es-joy/jsdoccomment"
-"@esbuild/darwin-arm64@0.17.8","MIT","","https://github.com/evanw/esbuild"
+"@es-joy/jsdoccomment@0.41.0","MIT","Copyright JS Foundation and other contributors, https://js.foundation. Copyright (c) 2021 Brett Zamir","https://github.com/es-joy/jsdoccomment"
+"@esbuild/win32-x64@0.18.17","MIT","","https://github.com/evanw/esbuild"
"@eslint-community/eslint-utils@4.4.0","MIT","Copyright (c) 2018 Toru Nagashima","https://github.com/eslint-community/eslint-utils"
-"@eslint-community/regexpp@4.8.0","MIT","Copyright (c) 2018 Toru Nagashima","https://github.com/eslint-community/regexpp"
-"@eslint/eslintrc@2.1.2","MIT","Copyright OpenJS Foundation and other contributors, ","https://github.com/eslint/eslintrc"
-"@eslint/js@8.48.0","MIT","Copyright OpenJS Foundation and other contributors, ","https://github.com/eslint/eslint"
+"@eslint-community/regexpp@4.10.0","MIT","Copyright (c) 2018 Toru Nagashima","https://github.com/eslint-community/regexpp"
+"@eslint/eslintrc@2.1.4","MIT","Copyright OpenJS Foundation and other contributors, ","https://github.com/eslint/eslintrc"
+"@eslint/js@8.55.0","MIT","Copyright OpenJS Foundation and other contributors, ","https://github.com/eslint/eslint"
"@foliojs-fork/fontkit@1.9.1","MIT","","https://github.com/foliojs-fork/fontkit"
"@foliojs-fork/linebreak@1.1.1","MIT","Copyright (c) 2014-present Devon Govett","https://github.com/foliojs-fork/linebreaker"
-"@foliojs-fork/pdfkit@0.13.0","MIT","","https://github.com/foliojs-fork/pdfkit"
+"@foliojs-fork/pdfkit@0.14.0","MIT","","https://github.com/foliojs-fork/pdfkit"
"@foliojs-fork/restructure@2.0.2","MIT","Copyright (c) 2015-present Devon Govett","https://github.com/foliojs-fork/restructure"
-"@fortawesome/angular-fontawesome@0.12.1","MIT","Copyright (c) 2018 Fonticons, Inc. and contributors","https://github.com/FortAwesome/angular-fontawesome"
-"@fortawesome/fontawesome-common-types@6.4.2","MIT","Copyright (c) 2023 Fonticons, Inc. (https://fontawesome.com). with Reserved Font Name: "Font Awesome".*","https://github.com/FortAwesome/Font-Awesome"
-"@fortawesome/fontawesome-svg-core@6.4.2","MIT","Copyright (c) 2023 Fonticons, Inc. (https://fontawesome.com). with Reserved Font Name: "Font Awesome".*","https://github.com/FortAwesome/Font-Awesome"
-"@fortawesome/free-solid-svg-icons@6.4.2","(CC-BY-4.0 AND MIT)","Copyright (c) 2023 Fonticons, Inc. (https://fontawesome.com). with Reserved Font Name: "Font Awesome".*","https://github.com/FortAwesome/Font-Awesome"
+"@fortawesome/angular-fontawesome@0.13.0","MIT","Copyright (c) 2018 Fonticons, Inc. and contributors","https://github.com/FortAwesome/angular-fontawesome"
+"@fortawesome/fontawesome-common-types@6.5.1","MIT","Copyright (c) 2023 Fonticons, Inc. (https://fontawesome.com). with Reserved Font Name: "Font Awesome".*","https://github.com/FortAwesome/Font-Awesome"
+"@fortawesome/fontawesome-svg-core@6.5.1","MIT","Copyright (c) 2023 Fonticons, Inc. (https://fontawesome.com). with Reserved Font Name: "Font Awesome".*","https://github.com/FortAwesome/Font-Awesome"
+"@fortawesome/free-solid-svg-icons@6.5.1","(CC-BY-4.0 AND MIT)","Copyright (c) 2023 Fonticons, Inc. (https://fontawesome.com). with Reserved Font Name: "Font Awesome".*","https://github.com/FortAwesome/Font-Awesome"
"@gar/promisify@1.1.3","MIT","Copyright © 2020-2022 Michael Garvin","https://github.com/wraithgar/gar-promisify"
"@googlemaps/js-api-loader@1.16.2","Apache-2.0","","https://github.com/googlemaps/js-api-loader"
-"@humanwhocodes/config-array@0.11.10","Apache-2.0","","https://github.com/humanwhocodes/config-array"
+"@humanwhocodes/config-array@0.11.13","Apache-2.0","","https://github.com/humanwhocodes/config-array"
"@humanwhocodes/module-importer@1.0.1","Apache-2.0","","https://github.com/humanwhocodes/module-importer"
-"@humanwhocodes/object-schema@1.2.1","BSD-3-Clause","Copyright (c) 2019, Human Who Codes. All rights reserved.","https://github.com/humanwhocodes/object-schema"
-"@hutson/parse-repository-url@3.0.2","Apache-2.0","","git+https://gitlab.com/hyper-expanse/open-source/parse-repository-url"
+"@humanwhocodes/object-schema@2.0.1","BSD-3-Clause","Copyright (c) 2019, Human Who Codes. All rights reserved.","https://github.com/humanwhocodes/object-schema"
+"@hutson/parse-repository-url@5.0.0","Apache-2.0","","https://github.com/hyper-expanse/parse-repository-url"
"@isaacs/cliui@8.0.2","ISC","Copyright (c) 2015, Contributors","https://github.com/yargs/cliui"
"@istanbuljs/load-nyc-config@1.1.0","ISC","Copyright (c) 2019, Contributors","https://github.com/istanbuljs/load-nyc-config"
"@istanbuljs/schema@0.1.3","MIT","Copyright (c) 2019 CFWare, LLC","https://github.com/istanbuljs/schema"
-"@jest/console@29.6.4","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
-"@jest/core@29.6.4","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
-"@jest/environment@29.6.4","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
-"@jest/expect-utils@29.6.4","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
-"@jest/expect@29.6.4","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
-"@jest/fake-timers@29.6.4","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
-"@jest/globals@29.6.4","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
-"@jest/reporters@29.6.4","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
+"@jest/console@29.7.0","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
+"@jest/core@29.7.0","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
+"@jest/environment@29.7.0","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
+"@jest/expect-utils@29.7.0","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
+"@jest/expect@29.7.0","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
+"@jest/fake-timers@29.7.0","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
+"@jest/globals@29.7.0","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
+"@jest/reporters@29.7.0","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
"@jest/schemas@29.6.3","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
"@jest/source-map@29.6.3","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
-"@jest/test-result@29.6.4","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
-"@jest/test-sequencer@29.6.4","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
-"@jest/transform@29.6.4","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
+"@jest/test-result@29.7.0","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
+"@jest/test-sequencer@29.7.0","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
+"@jest/transform@29.7.0","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
"@jest/types@29.6.3","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
-"@jridgewell/gen-mapping@0.1.1","MIT","Copyright 2022 Justin Ridgewell ","https://github.com/jridgewell/gen-mapping"
"@jridgewell/gen-mapping@0.3.3","MIT","Copyright 2022 Justin Ridgewell ","https://github.com/jridgewell/gen-mapping"
-"@jridgewell/resolve-uri@3.1.0","MIT","Copyright 2019 Justin Ridgewell ","https://github.com/jridgewell/resolve-uri"
+"@jridgewell/resolve-uri@3.1.1","MIT","Copyright 2019 Justin Ridgewell ","https://github.com/jridgewell/resolve-uri"
"@jridgewell/set-array@1.1.2","MIT","Copyright 2022 Justin Ridgewell ","https://github.com/jridgewell/set-array"
-"@jridgewell/source-map@0.3.3","MIT","Copyright 2019 Justin Ridgewell ","https://github.com/jridgewell/source-map"
-"@jridgewell/sourcemap-codec@1.4.14","MIT","Copyright (c) 2015 Rich Harris","https://github.com/jridgewell/sourcemap-codec"
+"@jridgewell/source-map@0.3.5","MIT","Copyright 2019 Justin Ridgewell ","https://github.com/jridgewell/source-map"
"@jridgewell/sourcemap-codec@1.4.15","MIT","Copyright (c) 2015 Rich Harris","https://github.com/jridgewell/sourcemap-codec"
-"@jridgewell/trace-mapping@0.3.18","MIT","Copyright 2022 Justin Ridgewell ","https://github.com/jridgewell/trace-mapping"
+"@jridgewell/trace-mapping@0.3.20","MIT","Copyright 2022 Justin Ridgewell ","https://github.com/jridgewell/trace-mapping"
"@jridgewell/trace-mapping@0.3.9","MIT","Copyright 2022 Justin Ridgewell ","https://github.com/jridgewell/trace-mapping"
"@jsdevtools/ono@7.1.3","MIT","Copyright (c) 2015 James Messinger","https://github.com/JS-DevTools/ono"
"@leichtgewicht/ip-codec@2.0.4","MIT","Copyright (c) 2021 Martin Heidegger","https://github.com/martinheidegger/ip-codec"
"@ng-bootstrap/ng-bootstrap@11.0.1","MIT","Copyright (c) 2015-2018 Angular ng-bootstrap team","https://github.com/ng-bootstrap/ng-bootstrap"
-"@ngrx/effects@15.4.0","MIT","","https://github.com/ngrx/platform"
-"@ngrx/entity@15.4.0","MIT","","https://github.com/ngrx/platform"
-"@ngrx/eslint-plugin@15.4.0","MIT","","https://github.com/ngrx/platform"
-"@ngrx/router-store@15.4.0","MIT","","https://github.com/ngrx/platform"
-"@ngrx/store-devtools@15.4.0","MIT","","https://github.com/ngrx/platform"
-"@ngrx/store@15.4.0","MIT","","https://github.com/ngrx/platform"
-"@ngtools/webpack@15.2.9","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
-"@nguniversal/builders@15.2.1","MIT","","https://github.com/angular/universal"
-"@nguniversal/common@15.2.1","MIT","","https://github.com/angular/universal"
-"@nguniversal/express-engine@15.2.1","MIT","","https://github.com/angular/universal"
-"@ngx-formly/core@6.1.4","MIT","","https://github.com/ngx-formly/ngx-formly"
-"@ngx-translate/core@14.0.0","MIT","","https://github.com/ngx-translate/core"
+"@ngrx/effects@16.3.0","MIT","Copyright (c) 2017-2023 Brandon Roberts, Mike Ryan, Victor Savkin, Rob Wormald","https://github.com/ngrx/platform"
+"@ngrx/entity@16.3.0","MIT","Copyright (c) 2017-2023 Brandon Roberts, Mike Ryan, Victor Savkin, Rob Wormald","https://github.com/ngrx/platform"
+"@ngrx/eslint-plugin@17.0.1","MIT","Copyright (c) 2017-2023 Brandon Roberts, Mike Ryan, Victor Savkin, Rob Wormald","https://github.com/ngrx/platform"
+"@ngrx/router-store@16.3.0","MIT","Copyright (c) 2017-2023 Brandon Roberts, Mike Ryan, Victor Savkin, Rob Wormald","https://github.com/ngrx/platform"
+"@ngrx/store-devtools@16.3.0","MIT","Copyright (c) 2017-2023 Brandon Roberts, Mike Ryan, Victor Savkin, Rob Wormald","https://github.com/ngrx/platform"
+"@ngrx/store@16.3.0","MIT","Copyright (c) 2017-2023 Brandon Roberts, Mike Ryan, Victor Savkin, Rob Wormald","https://github.com/ngrx/platform"
+"@ngtools/webpack@16.2.10","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
+"@nguniversal/builders@16.2.0","MIT","","https://github.com/angular/universal"
+"@nguniversal/common@16.2.0","MIT","","https://github.com/angular/universal"
+"@nguniversal/express-engine@16.2.0","MIT","","https://github.com/angular/universal"
+"@ngx-formly/core@6.2.2","MIT","","https://github.com/ngx-formly/ngx-formly"
+"@ngx-translate/core@15.0.0","Custom: LICENSE","",""
"@nodelib/fs.scandir@2.1.5","MIT","Copyright (c) Denis Malinochkin","https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.scandir"
"@nodelib/fs.stat@2.0.5","MIT","Copyright (c) Denis Malinochkin","https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.stat"
"@nodelib/fs.walk@1.2.8","MIT","Copyright (c) Denis Malinochkin","https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.walk"
"@npmcli/fs@2.1.2","ISC","Copyright npm, Inc.","https://github.com/npm/fs"
"@npmcli/fs@3.1.0","ISC","Copyright npm, Inc.","https://github.com/npm/fs"
-"@npmcli/git@4.0.4","ISC","Copyright (c) npm, Inc.","https://github.com/npm/git"
+"@npmcli/git@4.1.0","ISC","Copyright (c) npm, Inc.","https://github.com/npm/git"
"@npmcli/installed-package-contents@2.0.2","ISC","Copyright (c) npm, Inc.","https://github.com/npm/installed-package-contents"
"@npmcli/move-file@2.0.1","MIT","Copyright (c) Sindre Sorhus (https://sindresorhus.com). Copyright (c) npm, Inc.","https://github.com/npm/move-file"
"@npmcli/node-gyp@3.0.0","ISC","","https://github.com/npm/node-gyp"
"@npmcli/promise-spawn@6.0.2","ISC","Copyright (c) npm, Inc.","https://github.com/npm/promise-spawn"
-"@npmcli/run-script@6.0.0","ISC","Copyright (c) npm, Inc.","https://github.com/npm/run-script"
+"@npmcli/run-script@6.0.2","ISC","Copyright (c) npm, Inc.","https://github.com/npm/run-script"
+"@nrwl/devkit@16.5.1","MIT","Copyright (c) 2017-2023 Narwhal Technologies Inc.","https://github.com/nrwl/nx"
+"@nrwl/tao@16.5.1","MIT","Copyright (c) 2017-2023 Narwhal Technologies Inc.","https://github.com/nrwl/nx"
+"@nx/devkit@16.5.1","MIT","Copyright (c) 2017-2023 Narwhal Technologies Inc.","https://github.com/nrwl/nx"
+"@nx/nx-win32-x64-msvc@16.5.1","MIT","Copyright (c) 2017-2023 Narwhal Technologies Inc.","https://github.com/nrwl/nx"
"@opencensus/core@0.0.8","Apache-2.0","","https://github.com/census-instrumentation/opencensus-node"
"@opencensus/core@0.0.9","Apache-2.0","","https://github.com/census-instrumentation/opencensus-node"
"@opencensus/propagation-b3@0.0.8","Apache-2.0","","https://github.com/census-instrumentation/opencensus-node"
+"@opentelemetry/api@1.7.0","Apache-2.0","","https://github.com/open-telemetry/opentelemetry-js"
+"@parcel/watcher@2.0.4","MIT","Copyright (c) 2017-present Devon Govett","https://github.com/parcel-bundler/watcher"
"@phenomnomnominal/tsquery@5.0.1","MIT","Copyright (c) 2018 Craig Spence","https://github.com/phenomnomnominal/tsquery"
+"@phenomnomnominal/tsquery@6.1.3","MIT","Copyright (c) 2023 Craig Spence","https://github.com/phenomnomnominal/tsquery"
"@pkgjs/parseargs@0.11.0","MIT","","https://github.com/pkgjs/parseargs"
"@pm2/agent@2.0.3","AGPL-3.0","",""
-"@pm2/io@5.0.0","Apache*","","https://github.com/keymetrics/pm2-io-apm"
+"@pm2/io@5.0.2","Apache*","","https://github.com/keymetrics/pm2-io-apm"
"@pm2/js-api@0.6.7","Apache*","","https://github.com/keymetrics/km.js"
"@pm2/pm2-version-check@1.0.4","MIT","",""
-"@rx-angular/state@15.0.0","MIT","","https://github.com/rx-angular/rx-angular"
-"@schematics/angular@15.2.6","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
-"@schematics/angular@15.2.9","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
-"@sentry-internal/tracing@7.67.0","MIT","Copyright (c) 2020 Sentry (https://sentry.io) and individual contributors. All rights reserved.","https://github.com/getsentry/sentry-javascript"
-"@sentry/browser@7.67.0","MIT","Copyright (c) 2019 Sentry (https://sentry.io) and individual contributors. All rights reserved.","https://github.com/getsentry/sentry-javascript"
-"@sentry/core@7.67.0","MIT","Copyright (c) 2019 Sentry (https://sentry.io) and individual contributors. All rights reserved.","https://github.com/getsentry/sentry-javascript"
-"@sentry/replay@7.67.0","MIT","Copyright (c) 2022 Sentry (https://sentry.io) and individual contributors. All rights reserved.","https://github.com/getsentry/sentry-javascript"
-"@sentry/types@7.67.0","MIT","Copyright (c) 2019 Sentry (https://sentry.io) and individual contributors. All rights reserved.","https://github.com/getsentry/sentry-javascript"
-"@sentry/utils@7.67.0","MIT","Copyright (c) 2019 Sentry (https://sentry.io) and individual contributors. All rights reserved.","https://github.com/getsentry/sentry-javascript"
-"@sigstore/protobuf-specs@0.1.0","Apache-2.0","","https://github.com/sigstore/protobuf-specs"
+"@rx-angular/state@16.3.0","MIT","","https://github.com/rx-angular/rx-angular"
+"@schematics/angular@16.2.10","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
+"@sentry-internal/feedback@7.86.0","MIT","Copyright (c) 2023 Sentry (https://sentry.io) and individual contributors. All rights reserved.","https://github.com/getsentry/sentry-javascript"
+"@sentry-internal/tracing@7.86.0","MIT","Copyright (c) 2020 Sentry (https://sentry.io) and individual contributors. All rights reserved.","https://github.com/getsentry/sentry-javascript"
+"@sentry/browser@7.86.0","MIT","Copyright (c) 2019 Sentry (https://sentry.io) and individual contributors. All rights reserved.","https://github.com/getsentry/sentry-javascript"
+"@sentry/core@7.86.0","MIT","Copyright (c) 2019 Sentry (https://sentry.io) and individual contributors. All rights reserved.","https://github.com/getsentry/sentry-javascript"
+"@sentry/replay@7.86.0","MIT","Copyright (c) 2022 Sentry (https://sentry.io) and individual contributors. All rights reserved.","https://github.com/getsentry/sentry-javascript"
+"@sentry/types@7.86.0","MIT","Copyright (c) 2019 Sentry (https://sentry.io) and individual contributors. All rights reserved.","https://github.com/getsentry/sentry-javascript"
+"@sentry/utils@7.86.0","MIT","Copyright (c) 2019 Sentry (https://sentry.io) and individual contributors. All rights reserved.","https://github.com/getsentry/sentry-javascript"
+"@sigstore/bundle@1.1.0","Apache-2.0","","https://github.com/sigstore/sigstore-js"
+"@sigstore/protobuf-specs@0.2.1","Apache-2.0","","https://github.com/sigstore/protobuf-specs"
+"@sigstore/sign@1.0.0","Apache-2.0","","https://github.com/sigstore/sigstore-js"
+"@sigstore/tuf@1.0.3","Apache-2.0","","https://github.com/sigstore/sigstore-js"
"@sinclair/typebox@0.27.8","MIT","Copyright (c) 2017-2023 Haydn Paterson (sinclair) ","https://github.com/sinclairzx81/typebox"
-"@sinonjs/commons@2.0.0","BSD-3-Clause","Copyright (c) 2018, Sinon.JS. All rights reserved.","https://github.com/sinonjs/commons"
-"@sinonjs/fake-timers@10.0.2","BSD-3-Clause","Copyright (c) 2010-2014, Christian Johansen, christian@cjohansen.no. All rights reserved.","https://github.com/sinonjs/fake-timers"
+"@sinonjs/commons@3.0.0","BSD-3-Clause","Copyright (c) 2018, Sinon.JS. All rights reserved.","https://github.com/sinonjs/commons"
+"@sinonjs/fake-timers@10.3.0","BSD-3-Clause","Copyright (c) 2010-2014, Christian Johansen, christian@cjohansen.no. All rights reserved.","https://github.com/sinonjs/fake-timers"
"@socket.io/component-emitter@3.1.0","MIT","Copyright (c) 2014 Component contributors ","https://github.com/socketio/emitter"
+"@thednp/event-listener@2.0.4","MIT","Copyright (c) 2021 thednp","https://github.com/thednp/event-listener"
+"@thednp/shorty@2.0.0","MIT","Copyright (c) 2015 thednp","https://github.com/thednp/shorty"
"@tootallnate/once@1.1.2","MIT","","https://github.com/TooTallNate/once"
"@tootallnate/once@2.0.0","MIT","Copyright (c) 2020 Nathan Rajlich","https://github.com/TooTallNate/once"
"@tootallnate/quickjs-emscripten@0.23.0","MIT","","https://github.com/justjake/quickjs-emscripten"
-"@ts-morph/common@0.19.0","MIT","Copyright (c) 2017-2023 David Sherret","https://github.com/dsherret/ts-morph"
-"@ts-morph/common@0.9.2","MIT","Copyright (c) 2019 David Sherret","https://github.com/dsherret/ts-morph"
+"@ts-morph/common@0.20.0","MIT","Copyright (c) 2017-2023 David Sherret","https://github.com/dsherret/ts-morph"
+"@ts-morph/common@0.21.0","MIT","Copyright (c) 2017-2023 David Sherret","https://github.com/dsherret/ts-morph"
+"@ts-morph/common@0.22.0","MIT","Copyright (c) 2017-2023 David Sherret","https://github.com/dsherret/ts-morph"
"@tsconfig/node10@1.0.9","MIT","Copyright (c) Microsoft Corporation.","https://github.com/tsconfig/bases"
"@tsconfig/node12@1.0.11","MIT","Copyright (c) Microsoft Corporation.","https://github.com/tsconfig/bases"
"@tsconfig/node14@1.0.3","MIT","Copyright (c) Microsoft Corporation.","https://github.com/tsconfig/bases"
-"@tsconfig/node16@1.0.3","MIT","Copyright (c) Microsoft Corporation.","https://github.com/tsconfig/bases"
+"@tsconfig/node16@1.0.4","MIT","Copyright (c) Microsoft Corporation.","https://github.com/tsconfig/bases"
"@tufjs/canonical-json@1.0.0","MIT","Copyright (c) 2022 GitHub and the TUF Contributors","https://github.com/theupdateframework/tuf-js"
-"@tufjs/models@1.0.3","MIT","Copyright (c) 2022 GitHub and the TUF Contributors","https://github.com/theupdateframework/tuf-js"
-"@types/babel__core@7.20.1","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/babel__generator@7.6.4","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/babel__template@7.4.1","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/babel__traverse@7.20.1","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/body-parser@1.19.2","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/bonjour@3.5.10","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/connect-history-api-fallback@1.5.1","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/connect@3.4.35","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@tufjs/models@1.0.4","MIT","Copyright (c) 2022 GitHub and the TUF Contributors","https://github.com/theupdateframework/tuf-js"
+"@types/babel__core@7.20.5","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/babel__generator@7.6.7","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/babel__template@7.4.4","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/babel__traverse@7.20.4","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/body-parser@1.19.5","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/bonjour@3.5.13","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/connect-history-api-fallback@1.5.4","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/connect@3.4.38","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/cookie@0.4.1","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/cors@2.8.13","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/eslint-scope@3.7.4","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/eslint@8.44.2","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/estree@0.0.51","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/estree@1.0.1","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/express-http-proxy@1.6.3","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/express-serve-static-core@4.17.35","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/express@4.17.17","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/cors@2.8.17","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/eslint-scope@3.7.7","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/eslint@8.44.8","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/esquery@1.5.3","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/estree@1.0.5","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/express-http-proxy@1.6.6","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/express-serve-static-core@4.17.41","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/express@4.17.21","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/glob@7.2.0","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/google.maps@3.54.0","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/graceful-fs@4.1.6","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/grecaptcha@3.0.4","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/http-proxy@1.17.10","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/istanbul-lib-coverage@2.0.4","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/istanbul-lib-report@3.0.0","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/istanbul-reports@3.0.1","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/jest@29.5.4","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/google.maps@3.54.10","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/graceful-fs@4.1.9","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/grecaptcha@3.0.7","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/http-errors@2.0.4","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/http-proxy@1.17.14","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/istanbul-lib-coverage@2.0.6","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/istanbul-lib-report@3.0.3","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/istanbul-reports@3.0.4","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/jest@29.5.11","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/jsdom@20.0.1","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/json-schema@7.0.11","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/lodash-es@4.17.9","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/lodash@4.14.194","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/mime@1.3.2","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/mime@3.0.1","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/json-schema@7.0.15","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/lodash-es@4.17.12","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/lodash@4.14.202","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/mime@1.3.5","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/minimatch@3.0.5","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/minimist@1.2.2","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/node@18.17.14","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/node@20.4.7","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/normalize-package-data@2.4.1","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/parse-json@4.0.0","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/prettier@2.7.2","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/qs@6.9.7","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/range-parser@1.2.4","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/minimist@1.2.5","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/node-forge@1.3.10","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/node@18.19.3","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/normalize-package-data@2.4.4","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/prettier@2.7.3","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/qs@6.9.10","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/range-parser@1.2.7","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/retry@0.12.0","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/semver@7.3.13","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/send@0.17.1","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/serve-index@1.9.1","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/serve-static@1.15.1","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/sockjs@0.3.33","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/stack-utils@2.0.1","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/tough-cookie@4.0.2","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/uuid@9.0.3","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/webpack@5.28.2","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/ws@8.5.5","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/yargs-parser@21.0.0","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@types/yargs@17.0.24","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
-"@typescript-eslint/eslint-plugin@5.62.0","MIT","Copyright (c) 2019 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
-"@typescript-eslint/experimental-utils@5.59.0","MIT","Copyright (c) 2019 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
-"@typescript-eslint/parser@5.62.0","BSD-2-Clause","","https://github.com/typescript-eslint/typescript-eslint"
-"@typescript-eslint/scope-manager@5.48.2","MIT","Copyright (c) 2019 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
-"@typescript-eslint/scope-manager@5.59.0","MIT","Copyright (c) 2019 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
+"@types/semver@7.5.6","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/send@0.17.4","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/serve-index@1.9.4","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/serve-static@1.15.5","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/sockjs@0.3.36","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/stack-utils@2.0.3","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/tough-cookie@4.0.5","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/uuid@9.0.7","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/webpack@5.28.5","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/ws@8.5.10","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/yargs-parser@21.0.3","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@types/yargs@17.0.32","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
+"@typescript-eslint/eslint-plugin@6.14.0","MIT","Copyright (c) 2019 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
+"@typescript-eslint/experimental-utils@5.62.0","MIT","Copyright (c) 2019 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
+"@typescript-eslint/parser@6.14.0","BSD-2-Clause","","https://github.com/typescript-eslint/typescript-eslint"
"@typescript-eslint/scope-manager@5.62.0","MIT","Copyright (c) 2019 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
-"@typescript-eslint/type-utils@5.48.2","MIT","Copyright (c) 2021 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
+"@typescript-eslint/scope-manager@6.14.0","MIT","Copyright (c) 2019 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
"@typescript-eslint/type-utils@5.62.0","MIT","Copyright (c) 2021 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
-"@typescript-eslint/types@5.48.2","MIT","Copyright (c) 2019 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
-"@typescript-eslint/types@5.59.0","MIT","Copyright (c) 2019 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
+"@typescript-eslint/type-utils@6.14.0","MIT","Copyright (c) 2021 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
"@typescript-eslint/types@5.62.0","MIT","Copyright (c) 2019 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
-"@typescript-eslint/typescript-estree@5.48.2","BSD-2-Clause","","https://github.com/typescript-eslint/typescript-eslint"
-"@typescript-eslint/typescript-estree@5.59.0","BSD-2-Clause","","https://github.com/typescript-eslint/typescript-eslint"
+"@typescript-eslint/types@6.14.0","MIT","Copyright (c) 2019 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
"@typescript-eslint/typescript-estree@5.62.0","BSD-2-Clause","","https://github.com/typescript-eslint/typescript-eslint"
-"@typescript-eslint/utils@5.48.2","MIT","Copyright (c) 2019 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
-"@typescript-eslint/utils@5.59.0","MIT","Copyright (c) 2019 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
+"@typescript-eslint/typescript-estree@6.14.0","BSD-2-Clause","","https://github.com/typescript-eslint/typescript-eslint"
"@typescript-eslint/utils@5.62.0","MIT","Copyright (c) 2019 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
-"@typescript-eslint/visitor-keys@5.48.2","MIT","Copyright (c) 2019 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
-"@typescript-eslint/visitor-keys@5.59.0","MIT","Copyright (c) 2019 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
+"@typescript-eslint/utils@6.14.0","MIT","Copyright (c) 2019 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
"@typescript-eslint/visitor-keys@5.62.0","MIT","Copyright (c) 2019 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
-"@webassemblyjs/ast@1.11.1","MIT","Copyright (c) 2018 Sven Sauleau ","https://github.com/xtuc/webassemblyjs"
-"@webassemblyjs/floating-point-hex-parser@1.11.1","MIT","Copyright (c) 2017 Mauro Bringolf","https://github.com/xtuc/webassemblyjs"
-"@webassemblyjs/helper-api-error@1.11.1","MIT","Copyright (c) 2018 Sven Sauleau ","https://github.com/xtuc/webassemblyjs"
-"@webassemblyjs/helper-buffer@1.11.1","MIT","Copyright (c) 2018 Sven Sauleau ","https://github.com/xtuc/webassemblyjs"
-"@webassemblyjs/helper-numbers@1.11.1","MIT","Copyright (c) 2018 Sven Sauleau ","https://github.com/xtuc/webassemblyjs"
-"@webassemblyjs/helper-wasm-bytecode@1.11.1","MIT","Copyright (c) 2018 Sven Sauleau ","https://github.com/xtuc/webassemblyjs"
-"@webassemblyjs/helper-wasm-section@1.11.1","MIT","Copyright (c) 2018 Sven Sauleau ","https://github.com/xtuc/webassemblyjs"
-"@webassemblyjs/ieee754@1.11.1","MIT","Copyright (c) 2018 Sven Sauleau ","https://github.com/xtuc/webassemblyjs"
-"@webassemblyjs/leb128@1.11.1","Apache-2.0","Copyright 2012 The Obvious Corporation.. http://obvious.com/","https://github.com/xtuc/webassemblyjs"
-"@webassemblyjs/utf8@1.11.1","MIT","Copyright (c) 2018 Sven Sauleau ","https://github.com/xtuc/webassemblyjs"
-"@webassemblyjs/wasm-edit@1.11.1","MIT","Copyright (c) 2018 Sven Sauleau ","https://github.com/xtuc/webassemblyjs"
-"@webassemblyjs/wasm-gen@1.11.1","MIT","Copyright (c) 2018 Sven Sauleau ","https://github.com/xtuc/webassemblyjs"
-"@webassemblyjs/wasm-opt@1.11.1","MIT","Copyright (c) 2018 Sven Sauleau ","https://github.com/xtuc/webassemblyjs"
-"@webassemblyjs/wasm-parser@1.11.1","MIT","Copyright (c) 2018 Sven Sauleau ","https://github.com/xtuc/webassemblyjs"
-"@webassemblyjs/wast-printer@1.11.1","MIT","Copyright (c) 2018 Sven Sauleau ","https://github.com/xtuc/webassemblyjs"
+"@typescript-eslint/visitor-keys@6.14.0","MIT","Copyright (c) 2019 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
+"@ungap/structured-clone@1.2.0","ISC","Copyright (c) 2021, Andrea Giammarchi, @WebReflection","https://github.com/ungap/structured-clone"
+"@vitejs/plugin-basic-ssl@1.0.1","MIT","Copyright (c) 2019-present, Yuxi (Evan) You and contributors","https://github.com/vitejs/vite-plugin-basic-ssl"
+"@webassemblyjs/ast@1.11.6","MIT","","https://github.com/xtuc/webassemblyjs"
+"@webassemblyjs/floating-point-hex-parser@1.11.6","MIT","Copyright (c) 2017 Mauro Bringolf","https://github.com/xtuc/webassemblyjs"
+"@webassemblyjs/helper-api-error@1.11.6","MIT","","https://github.com/xtuc/webassemblyjs"
+"@webassemblyjs/helper-buffer@1.11.6","MIT","","https://github.com/xtuc/webassemblyjs"
+"@webassemblyjs/helper-numbers@1.11.6","MIT","","https://github.com/xtuc/webassemblyjs"
+"@webassemblyjs/helper-wasm-bytecode@1.11.6","MIT","","https://github.com/xtuc/webassemblyjs"
+"@webassemblyjs/helper-wasm-section@1.11.6","MIT","","https://github.com/xtuc/webassemblyjs"
+"@webassemblyjs/ieee754@1.11.6","MIT","","https://github.com/xtuc/webassemblyjs"
+"@webassemblyjs/leb128@1.11.6","Apache-2.0","Copyright 2012 The Obvious Corporation.. http://obvious.com/","https://github.com/xtuc/webassemblyjs"
+"@webassemblyjs/utf8@1.11.6","MIT","","https://github.com/xtuc/webassemblyjs"
+"@webassemblyjs/wasm-edit@1.11.6","MIT","","https://github.com/xtuc/webassemblyjs"
+"@webassemblyjs/wasm-gen@1.11.6","MIT","","https://github.com/xtuc/webassemblyjs"
+"@webassemblyjs/wasm-opt@1.11.6","MIT","","https://github.com/xtuc/webassemblyjs"
+"@webassemblyjs/wasm-parser@1.11.6","MIT","","https://github.com/xtuc/webassemblyjs"
+"@webassemblyjs/wast-printer@1.11.6","MIT","","https://github.com/xtuc/webassemblyjs"
"@wessberg/ts-evaluator@0.0.27","MIT","Copyright © 2020 [Frederik Wessberg](mailto:frederikwessberg@hotmail.com) ([@FredWessberg](https://twitter.com/FredWessberg)) ([Website](https://github.com/wessberg))","https://github.com/wessberg/ts-evaluator"
"@xtuc/ieee754@1.2.0","BSD-3-Clause","Copyright (c) 2008, Fair Oaks Labs, Inc.. All rights reserved.","https://github.com/feross/ieee754"
"@xtuc/long@4.2.2","Apache-2.0","","https://github.com/dcodeIO/long.js"
"@yarnpkg/lockfile@1.1.0","BSD-2-Clause","","https://github.com/yarnpkg/yarn/blob/master/packages/lockfile"
+"@yarnpkg/parsers@3.0.0-rc.46","BSD-2-Clause","","https://github.com/yarnpkg/berry"
+"@zkochan/js-yaml@0.0.6","MIT","Copyright (C) 2011-2015 by Vitaly Puzrin","https://github.com/nodeca/js-yaml"
"JSONStream@1.3.5","(MIT OR Apache-2.0)","Copyright (c) 2011 Dominic Tarr","https://github.com/dominictarr/JSONStream"
"abab@2.0.6","BSD-3-Clause","Copyright © 2019 W3C and Jeff Carpenter \","https://github.com/jsdom/abab"
"abbrev@1.1.1","ISC","Copyright (c) Isaac Z. Schlueter and Contributors*","https://github.com/isaacs/abbrev-js"
"accepts@1.3.8","MIT","Copyright (c) 2014 Jonathan Ong . Copyright (c) 2015 Douglas Christopher Wilson ","https://github.com/jshttp/accepts"
"acorn-globals@6.0.0","MIT","Copyright (c) 2014 Forbes Lindesay","https://github.com/ForbesLindesay/acorn-globals"
"acorn-globals@7.0.1","MIT","Copyright (c) 2014 Forbes Lindesay","https://github.com/ForbesLindesay/acorn-globals"
-"acorn-import-assertions@1.8.0","MIT","","https://github.com/xtuc/acorn-import-assertions"
+"acorn-import-assertions@1.9.0","MIT","","https://github.com/xtuc/acorn-import-assertions"
"acorn-jsx@5.3.2","MIT","Copyright (C) 2012-2017 by Ingvar Stepanyan","https://github.com/acornjs/acorn-jsx"
"acorn-node@1.8.2","Apache-2.0","Copyright 2018 Renée Kooi ","https://github.com/browserify/acorn-node"
"acorn-walk@7.2.0","MIT","Copyright (C) 2012-2018 by various contributors (see AUTHORS)","https://github.com/acornjs/acorn"
-"acorn-walk@8.2.0","MIT","Copyright (C) 2012-2020 by various contributors (see AUTHORS)","https://github.com/acornjs/acorn"
+"acorn-walk@8.3.0","MIT","Copyright (C) 2012-2020 by various contributors (see AUTHORS)","https://github.com/acornjs/acorn"
"acorn@7.4.1","MIT","Copyright (C) 2012-2018 by various contributors (see AUTHORS)","https://github.com/acornjs/acorn"
-"acorn@8.10.0","MIT","Copyright (C) 2012-2022 by various contributors (see AUTHORS)","https://github.com/acornjs/acorn"
+"acorn@8.11.2","MIT","Copyright (C) 2012-2022 by various contributors (see AUTHORS)","https://github.com/acornjs/acorn"
"add-stream@1.0.0","MIT","","https://github.com/wilsonjackson/add-stream"
"adjust-sourcemap-loader@4.0.0","MIT","Copyright (c) 2019 Ben Holloway","https://github.com/bholloway/adjust-sourcemap-loader"
"agent-base@6.0.2","MIT","Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>","https://github.com/TooTallNate/node-agent-base"
"agent-base@7.1.0","MIT","Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>","https://github.com/TooTallNate/proxy-agents"
-"agentkeepalive@4.3.0","MIT","Copyright(c) node-modules and other contributors.. Copyright(c) 2012 - 2015 fengmk2 ","https://github.com/node-modules/agentkeepalive"
+"agentkeepalive@4.5.0","MIT","Copyright(c) node-modules and other contributors.. Copyright(c) 2012 - 2015 fengmk2 ","https://github.com/node-modules/agentkeepalive"
"aggregate-error@3.1.0","MIT","Copyright (c) Sindre Sorhus (sindresorhus.com)","https://github.com/sindresorhus/aggregate-error"
"ajv-formats@2.1.1","MIT","Copyright (c) 2020 Evgeny Poberezkin","https://github.com/ajv-validator/ajv-formats"
"ajv-keywords@3.5.2","MIT","Copyright (c) 2016 Evgeny Poberezkin","https://github.com/epoberezkin/ajv-keywords"
"ajv-keywords@5.1.0","MIT","Copyright (c) 2016 Evgeny Poberezkin","https://github.com/epoberezkin/ajv-keywords"
"ajv@6.12.6","MIT","Copyright (c) 2015-2017 Evgeny Poberezkin","https://github.com/ajv-validator/ajv"
+"ajv@8.11.0","MIT","Copyright (c) 2015-2021 Evgeny Poberezkin","https://github.com/ajv-validator/ajv"
"ajv@8.12.0","MIT","Copyright (c) 2015-2021 Evgeny Poberezkin","https://github.com/ajv-validator/ajv"
"amdefine@1.0.1","BSD-3-Clause OR MIT","Copyright (c) 2011-2016, The Dojo Foundation. All rights reserved.*","https://github.com/jrburke/amdefine"
"amp-message@0.1.2","MIT","","https://github.com/visionmedia/node-amp-message"
@@ -486,7 +484,7 @@
"ansi-colors@4.1.3","MIT","Copyright (c) 2015-present, Brian Woodward.","https://github.com/doowb/ansi-colors"
"ansi-escapes@3.2.0","MIT","Copyright (c) Sindre Sorhus (sindresorhus.com)","https://github.com/sindresorhus/ansi-escapes"
"ansi-escapes@4.3.2","MIT","Copyright (c) Sindre Sorhus (https://sindresorhus.com)","https://github.com/sindresorhus/ansi-escapes"
-"ansi-escapes@5.0.0","MIT","Copyright (c) Sindre Sorhus (https://sindresorhus.com)","https://github.com/sindresorhus/ansi-escapes"
+"ansi-escapes@6.2.0","MIT","Copyright (c) Sindre Sorhus (https://sindresorhus.com)","https://github.com/sindresorhus/ansi-escapes"
"ansi-html-community@0.0.8","Apache-2.0","","https://github.com/mahdyar/ansi-html-community"
"ansi-regex@3.0.1","MIT","Copyright (c) Sindre Sorhus (sindresorhus.com)","https://github.com/chalk/ansi-regex"
"ansi-regex@4.1.1","MIT","Copyright (c) Sindre Sorhus (sindresorhus.com)","https://github.com/chalk/ansi-regex"
@@ -506,7 +504,7 @@
"arg@4.1.3","MIT","Copyright (c) 2017-2019 Zeit, Inc.","https://github.com/zeit/arg"
"argparse@1.0.10","MIT","Copyright (C) 2012 by Vitaly Puzrin","https://github.com/nodeca/argparse"
"argparse@2.0.1","Python-2.0","Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam,. The Netherlands. All rights reserved.","https://github.com/nodeca/argparse"
-"aria-query@5.1.3","Apache-2.0","Copyright 2020 A11yance","https://github.com/A11yance/aria-query"
+"aria-query@5.3.0","Apache-2.0","Copyright 2020 A11yance","https://github.com/A11yance/aria-query"
"array-buffer-byte-length@1.0.0","MIT","Copyright (c) 2023 Inspect JS","https://github.com/inspect-js/array-buffer-byte-length"
"array-differ@3.0.0","MIT","Copyright (c) Sindre Sorhus (sindresorhus.com)","https://github.com/sindresorhus/array-differ"
"array-flatten@1.1.1","MIT","Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com)","https://github.com/blakeembrey/array-flatten"
@@ -515,6 +513,7 @@
"array-ify@1.0.0","MIT","","https://github.com/stevemao/array-ify"
"array-timsort@1.0.3","MIT","Copyright (c) 2015 Marco Ziccardi","https://github.com/kaelzhang/node-array-timsort"
"array-union@2.1.0","MIT","Copyright (c) Sindre Sorhus (sindresorhus.com)","https://github.com/sindresorhus/array-union"
+"arraybuffer.prototype.slice@1.0.2","MIT","Copyright (c) 2023 ECMAScript Shims","https://github.com/es-shims/ArrayBuffer.prototype.slice"
"arrify@1.0.1","MIT","Copyright (c) Sindre Sorhus (sindresorhus.com)","https://github.com/sindresorhus/arrify"
"arrify@2.0.1","MIT","Copyright (c) Sindre Sorhus (sindresorhus.com)","https://github.com/sindresorhus/arrify"
"ast-transform@0.0.0","MIT","Copyright (c) 2014 Hugh Kennedy","https://github.com/hughsk/ast-transform"
@@ -524,22 +523,19 @@
"async-each-series@0.1.1","MIT","","https://github.com/jb55/async-each-series"
"async-listener@0.6.10","BSD-2-Clause","Copyright (c) 2013-2017, Forrest L Norvell. All rights reserved.","https://github.com/othiym23/async-listener"
"async@2.6.4","MIT","Copyright (c) 2010-2018 Caolan McMahon","https://github.com/caolan/async"
-"async@3.2.4","MIT","Copyright (c) 2010-2018 Caolan McMahon","https://github.com/caolan/async"
+"async@3.2.5","MIT","Copyright (c) 2010-2018 Caolan McMahon","https://github.com/caolan/async"
"asynckit@0.4.0","MIT","Copyright (c) 2016 Alex Indigo","https://github.com/alexindigo/asynckit"
-"autoprefixer@10.4.13","MIT","Copyright 2013 Andrey Sitnik ","https://github.com/postcss/autoprefixer"
+"autoprefixer@10.4.14","MIT","Copyright 2013 Andrey Sitnik ","https://github.com/postcss/autoprefixer"
"available-typed-arrays@1.0.5","MIT","Copyright (c) 2020 Inspect JS","https://github.com/inspect-js/available-typed-arrays"
-"axios@0.21.4","MIT","Copyright (c) 2014-present Matt Zabriskie","https://github.com/axios/axios"
-"axobject-query@3.1.1","Apache-2.0","Copyright 2020 A11yance","https://github.com/A11yance/axobject-query"
-"babel-jest@29.6.4","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
-"babel-loader@9.1.2","MIT","Copyright (c) 2014-2019 Luís Couto ","https://github.com/babel/babel-loader"
+"axios@1.6.2","MIT","","https://github.com/axios/axios"
+"axobject-query@4.0.0","Apache-2.0","Copyright 2020 A11yance","https://github.com/A11yance/axobject-query"
+"babel-jest@29.7.0","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
+"babel-loader@9.1.3","MIT","Copyright (c) 2014-2019 Luís Couto ","https://github.com/babel/babel-loader"
"babel-plugin-istanbul@6.1.1","BSD-3-Clause","Copyright (c) 2016, Istanbul Code Coverage. All rights reserved.","https://github.com/istanbuljs/babel-plugin-istanbul"
"babel-plugin-jest-hoist@29.6.3","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
-"babel-plugin-polyfill-corejs2@0.3.3","MIT","Copyright (c) 2014-present Nicolò Ribaudo and other contributors","https://github.com/babel/babel-polyfills"
-"babel-plugin-polyfill-corejs2@0.4.3","MIT","Copyright (c) 2014-present Nicolò Ribaudo and other contributors","https://github.com/babel/babel-polyfills"
-"babel-plugin-polyfill-corejs3@0.6.0","MIT","Copyright (c) 2014-present Nicolò Ribaudo and other contributors","https://github.com/babel/babel-polyfills"
-"babel-plugin-polyfill-corejs3@0.8.1","MIT","Copyright (c) 2014-present Nicolò Ribaudo and other contributors","https://github.com/babel/babel-polyfills"
-"babel-plugin-polyfill-regenerator@0.4.1","MIT","Copyright (c) 2014-present Nicolò Ribaudo and other contributors","https://github.com/babel/babel-polyfills"
-"babel-plugin-polyfill-regenerator@0.5.0","MIT","Copyright (c) 2014-present Nicolò Ribaudo and other contributors","https://github.com/babel/babel-polyfills"
+"babel-plugin-polyfill-corejs2@0.4.6","MIT","Copyright (c) 2014-present Nicolò Ribaudo and other contributors","https://github.com/babel/babel-polyfills"
+"babel-plugin-polyfill-corejs3@0.8.6","MIT","Copyright (c) 2014-present Nicolò Ribaudo and other contributors","https://github.com/babel/babel-polyfills"
+"babel-plugin-polyfill-regenerator@0.5.3","MIT","Copyright (c) 2014-present Nicolò Ribaudo and other contributors","https://github.com/babel/babel-polyfills"
"babel-preset-current-node-syntax@1.0.1","MIT","Copyright (c) 2020 Nicolò Ribaudo and other contributors","https://github.com/nicolo-ribaudo/babel-preset-current-node-syntax"
"babel-preset-jest@29.6.3","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
"balanced-match@1.0.2","MIT","Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>","https://github.com/juliangruber/balanced-match"
@@ -561,6 +557,7 @@
"body-parser@1.20.1","MIT","Copyright (c) 2014 Jonathan Ong . Copyright (c) 2014-2015 Douglas Christopher Wilson ","https://github.com/expressjs/body-parser"
"bonjour-service@1.1.1","MIT","Copyright (https://github.com/onlxltd/bonjour-service) (c) 2021 ON LX Limited","https://github.com/onlxltd/bonjour-service"
"boolbase@1.0.0","ISC","","https://github.com/fb55/boolbase"
+"bootstrap.native@5.0.11","MIT","Copyright (c) 2015 thednp","https://github.com/thednp/bootstrap.native"
"bootstrap@4.6.2","MIT","Copyright (c) 2011-2022 Twitter, Inc.. Copyright (c) 2011-2022 The Bootstrap Authors","https://github.com/twbs/bootstrap"
"brace-expansion@1.1.11","MIT","Copyright (c) 2013 Julian Gruber ","https://github.com/juliangruber/brace-expansion"
"brace-expansion@2.0.1","MIT","Copyright (c) 2013 Julian Gruber ","https://github.com/juliangruber/brace-expansion"
@@ -569,14 +566,13 @@
"brotli@1.3.3","MIT","","https://github.com/devongovett/brotli.js"
"browser-process-hrtime@1.0.0","BSD-2-Clause","Copyright 2014 kumavis","https://github.com/kumavis/browser-process-hrtime"
"browser-resolve@1.11.3","MIT","Copyright (c) 2013-2015 Roman Shtylman ","https://github.com/shtylman/node-browser-resolve"
-"browser-sync-client@2.29.1","ISC","","https://github.com/shakyshane/browser-sync-client"
-"browser-sync-ui@2.29.1","Apache-2.0","","https://github.com/BrowserSync/UI"
-"browser-sync@2.29.1","Apache-2.0","","https://github.com/BrowserSync/browser-sync"
+"browser-sync-client@2.29.3","ISC","","https://github.com/shakyshane/browser-sync-client"
+"browser-sync-ui@2.29.3","Apache-2.0","","https://github.com/BrowserSync/UI"
+"browser-sync@2.29.3","Apache-2.0","","https://github.com/BrowserSync/browser-sync"
"browserify-optional@1.0.1","MIT","","https://github.com/devongovett/browserify-optional"
-"browserslist@4.21.5","MIT","Copyright 2014 Andrey Sitnik and other contributors","https://github.com/browserslist/browserslist"
+"browserslist@4.22.2","MIT","Copyright 2014 Andrey Sitnik and other contributors","https://github.com/browserslist/browserslist"
"bs-logger@0.2.6","MIT","Copyright (c) 2018 Huafu Gandon","https://github.com/huafu/bs-logger"
"bs-recipes@1.3.4","ISC","","https://github.com/BrowserSync/recipes"
-"bs-snippet-injector@2.0.1","MIT","","https://github.com/shakyShane/bs-snippet-injector"
"bser@2.1.1","Apache-2.0","","https://github.com/facebook/watchman"
"buffer-equal@0.0.1","MIT","","https://github.com/substack/node-buffer-equal"
"buffer-from@1.1.2","MIT","Copyright (c) 2016, 2018 Linus Unnebäck","https://github.com/LinusU/buffer-from"
@@ -587,8 +583,8 @@
"bytes@3.1.2","MIT","Copyright (c) 2012-2014 TJ Holowaychuk . Copyright (c) 2015 Jed Watson ","https://github.com/visionmedia/bytes.js"
"bytesish@0.4.4","(Apache-2.0 AND MIT)","","https://github.com/mikeal/bytesish"
"cacache@16.1.3","ISC","Copyright (c) npm, Inc.","https://github.com/npm/cacache"
-"cacache@17.0.4","ISC","Copyright (c) npm, Inc.","https://github.com/npm/cacache"
-"call-bind@1.0.2","MIT","Copyright (c) 2020 Jordan Harband","https://github.com/ljharb/call-bind"
+"cacache@17.1.4","ISC","Copyright (c) npm, Inc.","https://github.com/npm/cacache"
+"call-bind@1.0.5","MIT","Copyright (c) 2020 Jordan Harband","https://github.com/ljharb/call-bind"
"call-me-maybe@1.0.2","MIT","Copyright (c) 2015 Eric McCarthy","https://github.com/limulus/call-me-maybe"
"callsite@1.0.0","MIT*","",""
"callsites@3.1.0","MIT","Copyright (c) Sindre Sorhus (sindresorhus.com)","https://github.com/sindresorhus/callsites"
@@ -596,7 +592,7 @@
"camelcase-keys@7.0.2","MIT","Copyright (c) Sindre Sorhus (https://sindresorhus.com)","https://github.com/sindresorhus/camelcase-keys"
"camelcase@5.3.1","MIT","Copyright (c) Sindre Sorhus (sindresorhus.com)","https://github.com/sindresorhus/camelcase"
"camelcase@6.3.0","MIT","Copyright (c) Sindre Sorhus (https://sindresorhus.com)","https://github.com/sindresorhus/camelcase"
-"caniuse-lite@1.0.30001481","CC-BY-4.0","","https://github.com/browserslist/caniuse-lite"
+"caniuse-lite@1.0.30001566","CC-BY-4.0","","https://github.com/browserslist/caniuse-lite"
"caseless@0.12.0","Apache-2.0","","https://github.com/mikeal/caseless"
"chalk-template@1.1.0","MIT","Copyright (c) Josh Junon. Copyright (c) Sindre Sorhus (https://sindresorhus.com)","https://github.com/chalk/chalk-template"
"chalk@2.4.2","MIT","Copyright (c) Sindre Sorhus (sindresorhus.com)","https://github.com/chalk/chalk"
@@ -611,7 +607,7 @@
"chokidar@3.5.3","MIT","Copyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan Shanker","https://github.com/paulmillr/chokidar"
"chownr@2.0.0","ISC","Copyright (c) Isaac Z. Schlueter and Contributors","https://github.com/isaacs/chownr"
"chrome-trace-event@1.0.3","MIT","Copyright (c) 2015 Joyent Inc. All rights reserved.","https://github.com/samccone/chrome-trace-event"
-"ci-info@3.8.0","MIT","Copyright (c) 2016-2023 Thomas Watson Steen","https://github.com/watson/ci-info"
+"ci-info@3.9.0","MIT","Copyright (c) 2016 Thomas Watson Steen","https://github.com/watson/ci-info"
"cjs-module-lexer@1.2.3","MIT","Copyright (C) 2018-2020 Guy Bedford","https://github.com/nodejs/cjs-module-lexer"
"clean-regexp@1.0.0","MIT","Copyright (c) Sam Verschueren (github.com/SamVerschueren)","https://github.com/SamVerschueren/clean-regexp"
"clean-stack@2.2.0","MIT","Copyright (c) Sindre Sorhus (sindresorhus.com)","https://github.com/sindresorhus/clean-stack"
@@ -620,9 +616,9 @@
"cli-cursor@2.1.0","MIT","Copyright (c) Sindre Sorhus (sindresorhus.com)","https://github.com/sindresorhus/cli-cursor"
"cli-cursor@3.1.0","MIT","Copyright (c) Sindre Sorhus (sindresorhus.com)","https://github.com/sindresorhus/cli-cursor"
"cli-cursor@4.0.0","MIT","Copyright (c) Sindre Sorhus (https://sindresorhus.com)","https://github.com/sindresorhus/cli-cursor"
-"cli-spinners@2.8.0","MIT","Copyright (c) Sindre Sorhus (https://sindresorhus.com)","https://github.com/sindresorhus/cli-spinners"
+"cli-spinners@2.6.1","MIT","Copyright (c) Sindre Sorhus (https://sindresorhus.com)","https://github.com/sindresorhus/cli-spinners"
"cli-tableau@2.0.1","MIT*","Copyright (c) 2011-2017 Automattic. Copyright (c) 2017 Keymetrics","https://github.com/Keymetrics/cli-table"
-"cli-truncate@3.1.0","MIT","Copyright (c) Sindre Sorhus (https://sindresorhus.com)","https://github.com/sindresorhus/cli-truncate"
+"cli-truncate@4.0.0","MIT","Copyright (c) Sindre Sorhus (https://sindresorhus.com)","https://github.com/sindresorhus/cli-truncate"
"cli-width@2.2.1","ISC","Copyright (c) 2015, Ilya Radchenko ","https://github.com/knownasilya/cli-width"
"cli-width@3.0.0","ISC","Copyright (c) 2015, Ilya Radchenko ","https://github.com/knownasilya/cli-width"
"cliui@7.0.4","ISC","Copyright (c) 2015, Contributors","https://github.com/yargs/cliui"
@@ -630,7 +626,6 @@
"clone-deep@4.0.1","MIT","Copyright (c) 2014-2018, Jon Schlinkert.","https://github.com/jonschlinkert/clone-deep"
"clone@1.0.4","MIT","Copyright © 2011-2015 Paul Vorbach ","https://github.com/pvorb/node-clone"
"co@4.6.0","MIT","Copyright (c) 2014 TJ Holowaychuk <tj@vision-media.ca>","https://github.com/tj/co"
-"code-block-writer@10.1.1","MIT","Copyright (c) 2015 David Sherret","https://github.com/dsherret/code-block-writer"
"code-block-writer@12.0.0","MIT","Copyright (c) 2015-2022 David Sherret","https://github.com/dsherret/code-block-writer"
"collect-v8-coverage@1.0.2","MIT","Copyright (c) 2019 Simen Bekkhus","https://github.com/SimenB/collect-v8-coverage"
"color-convert@1.9.3","MIT","Copyright (c) 2011-2016 Heather Arthur ","https://github.com/Qix-/color-convert"
@@ -642,15 +637,14 @@
"colorette@2.0.20","MIT","Copyright © Jorge Bucaran <>","https://github.com/jorgebucaran/colorette"
"colors@1.4.0","MIT","","https://github.com/Marak/colors.js"
"combined-stream@1.0.8","MIT","Copyright (c) 2011 Debuggable Limited ","https://github.com/felixge/node-combined-stream"
-"commander@10.0.1","MIT","Copyright (c) 2011 TJ Holowaychuk ","https://github.com/tj/commander.js"
-"commander@11.0.0","MIT","Copyright (c) 2011 TJ Holowaychuk ","https://github.com/tj/commander.js"
+"commander@11.1.0","MIT","Copyright (c) 2011 TJ Holowaychuk ","https://github.com/tj/commander.js"
"commander@2.15.1","MIT","Copyright (c) 2011 TJ Holowaychuk ","https://github.com/tj/commander.js"
"commander@2.20.3","MIT","Copyright (c) 2011 TJ Holowaychuk ","https://github.com/tj/commander.js"
"commander@9.5.0","MIT","Copyright (c) 2011 TJ Holowaychuk ","https://github.com/tj/commander.js"
"comment-json@4.2.3","MIT","Copyright (c) 2013 kaelzhang <>, contributors. http://kael.me/","https://github.com/kaelzhang/node-comment-json"
-"comment-parser@1.4.0","MIT","Copyright (c) 2014 Sergii Iavorskyi","https://github.com/yavorskiy/comment-parser"
+"comment-parser@1.4.1","MIT","Copyright (c) 2014 Sergii Iavorskyi","https://github.com/yavorskiy/comment-parser"
+"common-path-prefix@3.0.0","ISC","","https://github.com/novemberborn/common-path-prefix"
"common-tags@1.8.2","MIT","Copyright © Declan de Wet","https://github.com/zspecza/common-tags"
-"commondir@1.0.1","MIT","Copyright (c) 2013 James Halliday (mail@substack.net)","https://github.com/substack/node-commondir"
"compare-func@2.0.0","MIT","Copyright (c) 2015 Steve Mao","https://github.com/stevemao/compare-func"
"compressible@2.0.18","MIT","Copyright (c) 2013 Jonathan Ong . Copyright (c) 2014 Jeremiah Senkpiel . Copyright (c) 2015 Douglas Christopher Wilson ","https://github.com/jshttp/compressible"
"compression@1.7.4","MIT","Copyright (c) 2014 Jonathan Ong . Copyright (c) 2014-2015 Douglas Christopher Wilson ","https://github.com/expressjs/compression"
@@ -665,22 +659,22 @@
"content-disposition@0.5.4","MIT","Copyright (c) 2014-2017 Douglas Christopher Wilson","https://github.com/jshttp/content-disposition"
"content-type@1.0.5","MIT","Copyright (c) 2015 Douglas Christopher Wilson","https://github.com/jshttp/content-type"
"continuation-local-storage@3.2.1","BSD-2-Clause","Copyright (c) 2013-2016, Forrest L Norvell . All rights reserved.","https://github.com/othiym23/node-continuation-local-storage"
-"conventional-changelog-angular@6.0.0","ISC","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
-"conventional-changelog-atom@3.0.0","ISC","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
-"conventional-changelog-cli@3.0.0","MIT","Copyright (c) 2015 Steve Mao (https://github.com/stevemao)","https://github.com/conventional-changelog/conventional-changelog"
-"conventional-changelog-codemirror@3.0.0","ISC","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
-"conventional-changelog-conventionalcommits@6.1.0","ISC","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
-"conventional-changelog-core@5.0.1","MIT","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
-"conventional-changelog-ember@3.0.0","ISC","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
-"conventional-changelog-eslint@4.0.0","ISC","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
-"conventional-changelog-express@3.0.0","ISC","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
-"conventional-changelog-jquery@4.0.0","ISC","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
-"conventional-changelog-jshint@3.0.0","ISC","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
-"conventional-changelog-preset-loader@3.0.0","MIT","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
-"conventional-changelog-writer@6.0.0","MIT","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
-"conventional-changelog@4.0.0","MIT","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
-"conventional-commits-filter@3.0.0","MIT","Copyright (c) 2015 Steve Mao (https://github.com/stevemao)","https://github.com/conventional-changelog/conventional-changelog"
-"conventional-commits-parser@4.0.0","MIT","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
+"conventional-changelog-angular@7.0.0","ISC","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
+"conventional-changelog-atom@4.0.0","ISC","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
+"conventional-changelog-cli@4.1.0","MIT","Copyright (c) 2015 Steve Mao (https://github.com/stevemao)","https://github.com/conventional-changelog/conventional-changelog"
+"conventional-changelog-codemirror@4.0.0","ISC","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
+"conventional-changelog-conventionalcommits@7.0.2","ISC","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
+"conventional-changelog-core@7.0.0","MIT","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
+"conventional-changelog-ember@4.0.0","ISC","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
+"conventional-changelog-eslint@5.0.0","ISC","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
+"conventional-changelog-express@4.0.0","ISC","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
+"conventional-changelog-jquery@5.0.0","ISC","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
+"conventional-changelog-jshint@4.0.0","ISC","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
+"conventional-changelog-preset-loader@4.1.0","MIT","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
+"conventional-changelog-writer@7.0.1","MIT","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
+"conventional-changelog@5.1.0","MIT","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
+"conventional-commits-filter@4.0.0","MIT","Copyright (c) 2015 Steve Mao (https://github.com/stevemao)","https://github.com/conventional-changelog/conventional-changelog"
+"conventional-commits-parser@5.0.0","MIT","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
"convert-source-map@1.9.0","MIT","Copyright 2013 Thorsten Lorenz. . All rights reserved.","https://github.com/thlorenz/convert-source-map"
"convert-source-map@2.0.0","MIT","Copyright 2013 Thorsten Lorenz. . All rights reserved.","https://github.com/thlorenz/convert-source-map"
"cookie-signature@1.0.6","MIT","Copyright (c) 2012 LearnBoost <tj@learnboost.com>","https://github.com/visionmedia/node-cookie-signature"
@@ -688,31 +682,30 @@
"cookie@0.5.0","MIT","Copyright (c) 2012-2014 Roman Shtylman . Copyright (c) 2015 Douglas Christopher Wilson ","https://github.com/jshttp/cookie"
"copy-anything@2.0.6","MIT","Copyright (c) 2018 Luca Ban - Mesqueeb","https://github.com/mesqueeb/copy-anything"
"copy-webpack-plugin@11.0.0","MIT","Copyright JS Foundation and other contributors","https://github.com/webpack-contrib/copy-webpack-plugin"
-"core-js-compat@3.30.2","MIT","Copyright (c) 2014-2023 Denis Pushkarev","https://github.com/zloirock/core-js"
+"core-js-compat@3.33.3","MIT","Copyright (c) 2014-2023 Denis Pushkarev","https://github.com/zloirock/core-js"
"core-util-is@1.0.3","MIT","Copyright Node.js contributors. All rights reserved.","https://github.com/isaacs/core-util-is"
"cors@2.8.5","MIT","Copyright (c) 2013 Troy Goode ","https://github.com/expressjs/cors"
-"cosmiconfig-typescript-loader@4.4.0","MIT","Copyright (c) 2021 Alex Miller ","https://github.com/Codex-/cosmiconfig-typescript-loader"
-"cosmiconfig@7.1.0","MIT","Copyright (c) 2015 David Clark","https://github.com/davidtheclark/cosmiconfig"
-"cosmiconfig@8.0.0","MIT","Copyright (c) 2015 David Clark","https://github.com/davidtheclark/cosmiconfig"
-"cosmiconfig@8.2.0","MIT","Copyright (c) 2015 David Clark","https://github.com/cosmiconfig/cosmiconfig"
+"cosmiconfig-typescript-loader@5.0.0","MIT","Copyright (c) 2021 Alex Miller ","https://github.com/Codex-/cosmiconfig-typescript-loader"
+"cosmiconfig@8.3.6","MIT","Copyright (c) 2015 David Clark","https://github.com/cosmiconfig/cosmiconfig"
+"create-jest@29.7.0","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
"create-require@1.1.1","MIT","Copyright (c) 2020","https://github.com/nuxt-contrib/create-require"
-"critters@0.0.16","Apache-2.0","","https://github.com/GoogleChromeLabs/critters"
+"critters@0.0.20","Apache-2.0","","https://github.com/GoogleChromeLabs/critters"
"croner@4.1.97","MIT","Copyright (c) 2015-2021 Hexagon ","https://github.com/hexagon/croner"
"cross-spawn@6.0.5","MIT","Copyright (c) 2018 Made With MOXY Lda ","https://github.com/moxystudio/node-cross-spawn"
"cross-spawn@7.0.3","MIT","Copyright (c) 2018 Made With MOXY Lda ","https://github.com/moxystudio/node-cross-spawn"
-"crypto-js@4.1.1","MIT","Copyright (c) 2009-2013 Jeff Mott . Copyright (c) 2013-2016 Evan Vosberg","https://github.com/brix/crypto-js"
+"crypto-js@4.2.0","MIT","Copyright (c) 2009-2013 Jeff Mott . Copyright (c) 2013-2016 Evan Vosberg","https://github.com/brix/crypto-js"
"crypto-random-string@4.0.0","MIT","Copyright (c) Sindre Sorhus (https://sindresorhus.com)","https://github.com/sindresorhus/crypto-random-string"
-"cspell-dictionary@7.3.2","MIT","Copyright (c) 2022 Jason Dent","https://github.com/streetsidesoftware/cspell"
-"cspell-gitignore@7.3.2","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
-"cspell-glob@7.3.2","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
-"cspell-grammar@7.3.2","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
-"cspell-io@7.3.2","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
-"cspell-lib@7.3.2","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
-"cspell-trie-lib@7.3.2","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
-"cspell@7.3.2","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
-"css-functions-list@3.2.0","MIT","Copyright (c) Ivan Nikolić ","https://github.com/niksy/css-functions-list"
-"css-loader@6.7.3","MIT","Copyright JS Foundation and other contributors","https://github.com/webpack-contrib/css-loader"
-"css-select@4.3.0","BSD-2-Clause","Copyright (c) Felix Böhm. All rights reserved.","https://github.com/fb55/css-select"
+"cspell-config-lib@8.1.3","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
+"cspell-dictionary@8.1.3","MIT","Copyright (c) 2022 Jason Dent","https://github.com/streetsidesoftware/cspell"
+"cspell-gitignore@8.1.3","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
+"cspell-glob@8.1.3","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
+"cspell-grammar@8.1.3","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
+"cspell-io@8.1.3","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
+"cspell-lib@8.1.3","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
+"cspell-trie-lib@8.1.3","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
+"cspell@8.1.3","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
+"css-functions-list@3.2.1","MIT","Copyright (c) Ivan Nikolić ","https://github.com/niksy/css-functions-list"
+"css-loader@6.8.1","MIT","Copyright JS Foundation and other contributors","https://github.com/webpack-contrib/css-loader"
"css-select@5.1.0","BSD-2-Clause","Copyright (c) Felix Böhm. All rights reserved.","https://github.com/fb55/css-select"
"css-tree@2.3.1","MIT","Copyright (C) 2016-2022 by Roman Dvornov","https://github.com/csstree/csstree"
"css-what@6.1.0","BSD-2-Clause","Copyright (c) Felix Böhm. All rights reserved.","https://github.com/fb55/css-what"
@@ -721,42 +714,44 @@
"cssom@0.4.4","MIT","Copyright (c) Nikita Vasilyev","https://github.com/NV/CSSOM"
"cssom@0.5.0","MIT","Copyright (c) Nikita Vasilyev","https://github.com/NV/CSSOM"
"cssstyle@2.3.0","MIT","Copyright (c) Chad Walker","https://github.com/jsdom/cssstyle"
+"cssstyle@3.0.0","MIT","Copyright (c) Chad Walker","https://github.com/jsdom/cssstyle"
"culvert@0.1.2","MIT","Copyright (c) 2014 Tim Caswell","https://github.com/creationix/culvert"
"cz-customizable@7.0.0","MIT","Copyright (c) 2016 Leonardo Correa","https://github.com/leoforfree/cz-customizable"
"d@1.0.1","ISC","Copyright (c) 2013-2019, Mariusz Nowak, @medikoo, medikoo.com","https://github.com/medikoo/d"
"dargs@7.0.0","MIT","Copyright (c) Sindre Sorhus (sindresorhus.com)","https://github.com/sindresorhus/dargs"
+"dargs@8.1.0","MIT","Copyright (c) Sindre Sorhus (https://sindresorhus.com)","https://github.com/sindresorhus/dargs"
"dash-ast@2.0.1","Apache-2.0","Copyright 2018 Renée Kooi ","https://github.com/goto-bus-stop/dash-ast"
-"data-uri-to-buffer@5.0.1","MIT","Copyright (c) 2014 Nathan Rajlich <nathan@tootallnate.net>","https://github.com/TooTallNate/proxy-agents"
+"data-uri-to-buffer@6.0.1","MIT","Copyright (c) 2014 Nathan Rajlich ","https://github.com/TooTallNate/proxy-agents"
"data-urls@2.0.0","MIT","Copyright © 2017–2020 Domenic Denicola ","https://github.com/jsdom/data-urls"
"data-urls@3.0.2","MIT","Copyright © Domenic Denicola ","https://github.com/jsdom/data-urls"
+"data-urls@4.0.0","MIT","Copyright © Domenic Denicola ","https://github.com/jsdom/data-urls"
"date-fns@2.30.0","MIT","Copyright (c) 2021 Sasha Koss and Lesha Koss https://kossnocorp.mit-license.org","https://github.com/date-fns/date-fns"
-"dateformat@3.0.3","MIT","","https://github.com/felixge/node-dateformat"
-"dayjs@1.11.7","MIT","Copyright (c) 2018-present, iamkun","https://github.com/iamkun/dayjs"
+"dayjs@1.11.10","MIT","Copyright (c) 2018-present, iamkun","https://github.com/iamkun/dayjs"
"dayjs@1.8.36","MIT","Copyright (c) 2018-present, iamkun","https://github.com/iamkun/dayjs"
"debug@2.6.9","MIT","Copyright (c) 2014 TJ Holowaychuk ","https://github.com/visionmedia/debug"
"debug@3.2.7","MIT","Copyright (c) 2014 TJ Holowaychuk ","https://github.com/visionmedia/debug"
"debug@4.3.2","MIT","Copyright (c) 2014 TJ Holowaychuk ","https://github.com/visionmedia/debug"
"debug@4.3.4","MIT","Copyright (c) 2014-2017 TJ Holowaychuk . Copyright (c) 2018-2021 Josh Junon","https://github.com/debug-js/debug"
-"decache@4.6.1","MIT","","https://github.com/dwyl/decache"
+"decache@4.6.2","MIT","","https://github.com/dwyl/decache"
"decamelize-keys@1.1.1","MIT","Copyright (c) Sindre Sorhus (sindresorhus.com), Dmirty Sobolev ","https://github.com/sindresorhus/decamelize-keys"
"decamelize@1.2.0","MIT","Copyright (c) Sindre Sorhus (sindresorhus.com)","https://github.com/sindresorhus/decamelize"
"decamelize@5.0.1","MIT","Copyright (c) Sindre Sorhus (sindresorhus.com)","https://github.com/sindresorhus/decamelize"
"decimal.js@10.4.3","MIT","Copyright (c) 2022 Michael Mclaughlin","https://github.com/MikeMcl/decimal.js"
"dedent@1.5.1","MIT","Copyright (c) 2015 Desmond Brand (dmnd@desmondbrand.com)","https://github.com/dmnd/dedent"
-"deep-equal@1.1.1","MIT","Copyright (c) 2012, 2013, 2014 James Halliday , 2009 Thomas Robinson <280north.com>","https://github.com/substack/node-deep-equal"
-"deep-equal@2.2.0","MIT","Copyright (c) 2012, 2013, 2014 James Halliday , 2009 Thomas Robinson <280north.com>","https://github.com/inspect-js/node-deep-equal"
+"deep-equal@1.1.2","MIT","Copyright (c) 2012, 2013, 2014 James Halliday , 2009 Thomas Robinson <280north.com>","https://github.com/inspect-js/node-deep-equal"
"deep-is@0.1.4","MIT","Copyright (c) 2012, 2013 Thorsten Lorenz . Copyright (c) 2012 James Halliday . Copyright (c) 2009 Thomas Robinson <280north.com>","https://github.com/thlorenz/deep-is"
"deepmerge@4.3.1","MIT","Copyright (c) 2012 James Halliday, Josh Duff, and other contributors","https://github.com/TehShrike/deepmerge"
"default-gateway@6.0.3","BSD-2-Clause","Copyright (c) silverwind. All rights reserved.","https://github.com/silverwind/default-gateway"
"defaults@1.0.4","MIT","Copyright (c) 2022 Sindre Sorhus. Copyright (c) 2015 Elijah Insua","https://github.com/sindresorhus/node-defaults"
+"define-data-property@1.1.1","MIT","Copyright (c) 2023 Jordan Harband","https://github.com/ljharb/define-data-property"
"define-lazy-prop@2.0.0","MIT","Copyright (c) Sindre Sorhus (sindresorhus.com)","https://github.com/sindresorhus/define-lazy-prop"
-"define-properties@1.2.0","MIT","Copyright (C) 2015 Jordan Harband","https://github.com/ljharb/define-properties"
+"define-properties@1.2.1","MIT","Copyright (C) 2015 Jordan Harband","https://github.com/ljharb/define-properties"
"degenerator@5.0.1","MIT","Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>","https://github.com/TooTallNate/proxy-agents"
"delayed-stream@1.0.0","MIT","Copyright (c) 2011 Debuggable Limited ","https://github.com/felixge/node-delayed-stream"
"delegates@1.0.0","MIT","Copyright (c) 2015 TJ Holowaychuk ","https://github.com/visionmedia/node-delegates"
"depd@1.1.2","MIT","Copyright (c) 2014-2017 Douglas Christopher Wilson","https://github.com/dougwilson/nodejs-depd"
"depd@2.0.0","MIT","Copyright (c) 2014-2018 Douglas Christopher Wilson","https://github.com/dougwilson/nodejs-depd"
-"dependency-graph@0.11.0","MIT","Copyright (C) 2013-2020 by Jim Riecken","https://github.com/jriecken/dependency-graph"
+"dequal@2.0.3","MIT","Copyright (c) Luke Edwards (lukeed.com)","https://github.com/lukeed/dequal"
"destroy@1.0.4","MIT","Copyright (c) 2014 Jonathan Ong me@jongleberry.com","https://github.com/stream-utils/destroy"
"destroy@1.2.0","MIT","Copyright (c) 2014 Jonathan Ong me@jongleberry.com. Copyright (c) 2015-2022 Douglas Christopher Wilson doug@somethingdoug.com","https://github.com/stream-utils/destroy"
"detect-indent@5.0.0","MIT","Copyright (c) Sindre Sorhus (sindresorhus.com)","https://github.com/sindresorhus/detect-indent"
@@ -771,20 +766,17 @@
"dns-equal@1.0.0","MIT","Copyright (c) 2016 Thomas Watson Steen","https://github.com/watson/dns-equal"
"dns-packet@5.6.1","MIT","Copyright (c) 2016 Mathias Buus","https://github.com/mafintosh/dns-packet"
"doctrine@3.0.0","Apache-2.0","","https://github.com/eslint/doctrine"
-"dom-serializer@1.4.1","MIT","Copyright (c) 2014 The cheeriojs contributors","https://github.com/cheeriojs/dom-renderer"
"dom-serializer@2.0.0","MIT","Copyright (c) 2014 The cheeriojs contributors","https://github.com/cheeriojs/dom-serializer"
"dom7@4.0.6","MIT","Copyright (c) 2017 Vladimir Kharlampidi","https://github.com/nolimits4web/dom7"
"domelementtype@2.3.0","BSD-2-Clause","Copyright (c) Felix Böhm. All rights reserved.","https://github.com/fb55/domelementtype"
"domexception@2.0.1","MIT","Copyright © 2017 Domenic Denicola","https://github.com/jsdom/domexception"
"domexception@4.0.0","MIT","Copyright © Domenic Denicola","https://github.com/jsdom/domexception"
-"domhandler@4.3.1","BSD-2-Clause","Copyright (c) Felix Böhm. All rights reserved.","https://github.com/fb55/domhandler"
"domhandler@5.0.3","BSD-2-Clause","Copyright (c) Felix Böhm. All rights reserved.","https://github.com/fb55/domhandler"
-"domino@2.1.6","BSD-2-Clause","Copyright (c) 2011 The Mozilla Foundation.. All rights reserved.","https://github.com/fgnass/domino"
-"domutils@2.8.0","BSD-2-Clause","Copyright (c) Felix Böhm. All rights reserved.","https://github.com/fb55/domutils"
-"domutils@3.0.1","BSD-2-Clause","Copyright (c) Felix Böhm. All rights reserved.","https://github.com/fb55/domutils"
+"domutils@3.1.0","BSD-2-Clause","Copyright (c) Felix Böhm. All rights reserved.","https://github.com/fb55/domutils"
"dot-prop@5.3.0","MIT","Copyright (c) Sindre Sorhus (sindresorhus.com)","https://github.com/sindresorhus/dot-prop"
"dot-prop@6.0.1","MIT","Copyright (c) Sindre Sorhus (https://sindresorhus.com)","https://github.com/sindresorhus/dot-prop"
"dot@2.0.0-beta.1","MIT","","https://github.com/olado/doT"
+"dotenv@10.0.0","BSD-2-Clause","Copyright (c) 2015, Scott Motte. All rights reserved.","https://github.com/motdotla/dotenv"
"duplexer2@0.1.4","BSD-3-Clause","Copyright (c) 2013, Deoxxa Development. ======================================. All rights reserved.. --------------------. . Redistribution and use in source and binary forms, with or without. modification, are permitted provided that the following conditions are met: . 1. Redistributions of source code must retain the above copyright. notice, this list of conditions and the following disclaimer. . 2. Redistributions in binary form must reproduce the above copyright. notice, this list of conditions and the following disclaimer in the. documentation and/or other materials provided with the distribution. . 3. Neither the name of Deoxxa Development nor the names of its contributors. may be used to endorse or promote products derived from this software. without specific prior written permission. . . THIS SOFTWARE IS PROVIDED BY DEOXXA DEVELOPMENT ''AS IS'' AND ANY. EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE. DISCLAIMED. IN NO EVENT SHALL DEOXXA DEVELOPMENT BE LIABLE FOR ANY. DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND. ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE..","https://github.com/deoxxa/duplexer2"
"duplexer@0.1.2","MIT","Copyright (c) 2012 Raynos.","https://github.com/Raynos/duplexer"
"eastasianwidth@0.2.0","MIT","","https://github.com/komagata/eastasianwidth"
@@ -792,40 +784,42 @@
"eazy-logger@4.0.1","Apache 2.0","","https://github.com/shakyshane/easy-logger"
"editor@1.0.0","MIT","Copyright 2013 James Halliday (mail@substack.net)","https://github.com/substack/node-editor"
"ee-first@1.1.1","MIT","Copyright (c) 2014 Jonathan Ong me@jongleberry.com","https://github.com/jonathanong/ee-first"
-"electron-to-chromium@1.4.369","ISC","Copyright 2018 Kilian Valkhof","https://github.com/kilian/electron-to-chromium"
+"ejs@3.1.9","Apache-2.0","","https://github.com/mde/ejs"
+"electron-to-chromium@1.4.603","ISC","Copyright 2018 Kilian Valkhof","https://github.com/kilian/electron-to-chromium"
+"emitter-component@1.1.2","UNKNOWN","","https://github.com/sindresorhus/component-emitter"
"emitter-listener@1.1.2","BSD-2-Clause","","https://github.com/othiym23/emitter-listener"
"emittery@0.13.1","MIT","Copyright (c) Sindre Sorhus (https://sindresorhus.com)","https://github.com/sindresorhus/emittery"
+"emoji-regex@10.3.0","MIT","Copyright Mathias Bynens ","https://github.com/mathiasbynens/emoji-regex"
"emoji-regex@8.0.0","MIT","Copyright Mathias Bynens ","https://github.com/mathiasbynens/emoji-regex"
"emoji-regex@9.2.2","MIT","Copyright Mathias Bynens ","https://github.com/mathiasbynens/emoji-regex"
"emojis-list@3.0.0","MIT","Copyright © 2015 Kiko Beats","https://github.com/kikobeats/emojis-list"
"encodeurl@1.0.2","MIT","Copyright (c) 2016 Douglas Christopher Wilson","https://github.com/pillarjs/encodeurl"
"encoding@0.1.13","MIT","Copyright (c) 2012-2014 Andris Reinman","https://github.com/andris9/encoding"
"end-of-stream@1.4.4","MIT","Copyright (c) 2014 Mathias Buus","https://github.com/mafintosh/end-of-stream"
-"engine.io-client@6.4.0","MIT","Copyright (c) 2014-2015 Automattic ","https://github.com/socketio/engine.io-client"
-"engine.io-parser@5.0.6","MIT","Copyright (c) 2016 Guillermo Rauch (@rauchg)","https://github.com/socketio/engine.io-parser"
-"engine.io@6.4.2","MIT","Copyright (c) 2014 Guillermo Rauch ","https://github.com/socketio/engine.io"
-"enhanced-resolve@5.13.0","MIT","Copyright JS Foundation and other contributors","https://github.com/webpack/enhanced-resolve"
+"engine.io-client@6.5.3","MIT","Copyright (c) 2014-2015 Automattic ","https://github.com/socketio/engine.io-client"
+"engine.io-parser@5.2.1","MIT","Copyright (c) 2016 Guillermo Rauch (@rauchg)","https://github.com/socketio/engine.io-parser"
+"engine.io@6.5.4","MIT","Copyright (c) 2014 Guillermo Rauch ","https://github.com/socketio/engine.io"
+"enhanced-resolve@5.15.0","MIT","Copyright JS Foundation and other contributors","https://github.com/webpack/enhanced-resolve"
"enquirer@2.3.6","MIT","Copyright (c) 2016-present, Jon Schlinkert.","https://github.com/enquirer/enquirer"
-"entities@2.2.0","BSD-2-Clause","Copyright (c) Felix Böhm. All rights reserved.","https://github.com/fb55/entities"
"entities@4.5.0","BSD-2-Clause","Copyright (c) Felix Böhm. All rights reserved.","https://github.com/fb55/entities"
"env-paths@2.2.1","MIT","Copyright (c) Sindre Sorhus (sindresorhus.com)","https://github.com/sindresorhus/env-paths"
"err-code@2.0.3","MIT","","https://github.com/IndigoUnited/js-err-code"
"errno@0.1.8","MIT","","https://github.com/rvagg/node-errno"
"error-ex@1.3.2","MIT","Copyright (c) 2015 JD Ballard","https://github.com/qix-/node-error-ex"
-"es-abstract@1.21.2","MIT","Copyright (C) 2015 Jordan Harband","https://github.com/ljharb/es-abstract"
-"es-get-iterator@1.1.3","MIT","Copyright (c) 2019 Jordan Harband","https://github.com/ljharb/es-get-iterator"
-"es-module-lexer@0.9.3","MIT","Copyright (C) 2018-2021 Guy Bedford","https://github.com/guybedford/es-module-lexer"
-"es-set-tostringtag@2.0.1","MIT","Copyright (c) 2022 ECMAScript Shims","https://github.com/es-shims/es-set-tostringtag"
+"es-abstract@1.22.3","MIT","Copyright (C) 2015 Jordan Harband","https://github.com/ljharb/es-abstract"
+"es-module-lexer@1.4.1","MIT","Copyright (C) 2018-2022 Guy Bedford","https://github.com/guybedford/es-module-lexer"
+"es-set-tostringtag@2.0.2","MIT","Copyright (c) 2022 ECMAScript Shims","https://github.com/es-shims/es-set-tostringtag"
"es-to-primitive@1.2.1","MIT","Copyright (c) 2015 Jordan Harband","https://github.com/ljharb/es-to-primitive"
"es5-ext@0.10.62","ISC","Copyright (c) 2011-2022, Mariusz Nowak, @medikoo, medikoo.com","https://github.com/medikoo/es5-ext"
"es6-iterator@2.0.3","MIT","Copyright (C) 2013-2017 Mariusz Nowak (www.medikoo.com)","https://github.com/medikoo/es6-iterator"
"es6-map@0.1.5","MIT","Copyright (C) 2013 Mariusz Nowak (www.medikoo.com)","https://github.com/medikoo/es6-map"
"es6-promise@4.2.8","MIT","Copyright (c) 2014 Yehuda Katz, Tom Dale, Stefan Penner and contributors","https://github.com/stefanpenner/es6-promise"
"es6-set@0.1.6","ISC","Copyright (c) 2013-022, Mariusz Nowak, @medikoo, medikoo.com","https://github.com/medikoo/es6-set"
+"es6-shim@0.35.8","MIT","Copyright (c) 2019 Paul Miller (https://paulmillr.com)","https://github.com/paulmillr/es6-shim"
"es6-symbol@3.1.3","ISC","Copyright (c) 2013-2019, Mariusz Nowak, @medikoo, medikoo.com","https://github.com/medikoo/es6-symbol"
"es6-weak-map@2.0.3","ISC","Copyright (c) 2013-2018, Mariusz Nowak, @medikoo, medikoo.com","https://github.com/medikoo/es6-weak-map"
-"esbuild-wasm@0.17.8","MIT","Copyright (c) 2020 Evan Wallace","https://github.com/evanw/esbuild"
-"esbuild@0.17.8","MIT","Copyright (c) 2020 Evan Wallace","https://github.com/evanw/esbuild"
+"esbuild-wasm@0.18.17","MIT","Copyright (c) 2020 Evan Wallace","https://github.com/evanw/esbuild"
+"esbuild@0.18.17","MIT","Copyright (c) 2020 Evan Wallace","https://github.com/evanw/esbuild"
"escalade@3.1.1","MIT","Copyright (c) Luke Edwards (lukeed.com)","https://github.com/lukeed/escalade"
"escape-html@1.0.3","MIT","Copyright (c) 2012-2013 TJ Holowaychuk. Copyright (c) 2015 Andreas Lubbe. Copyright (c) 2015 Tiancheng "Timothy" Gu","https://github.com/component/escape-html"
"escape-string-regexp@1.0.5","MIT","Copyright (c) Sindre Sorhus (sindresorhus.com)","https://github.com/sindresorhus/escape-string-regexp"
@@ -839,21 +833,18 @@
"eslint-plugin-ban@1.6.0","ISC","Copyright (c) 2021 Rémi Thomas","https://github.com/remithomas/eslint-plugin-ban"
"eslint-plugin-etc@2.0.3","MIT","Copyright (c) 2019-2021 Nicholas Jamieson and contributors","https://github.com/cartant/eslint-plugin-etc"
"eslint-plugin-ish-custom-rules@0.0.1","UNKNOWN","",""
-"eslint-plugin-jest@27.2.3","MIT","Copyright (c) 2018 Jonathan Kim","https://github.com/jest-community/eslint-plugin-jest"
-"eslint-plugin-jsdoc@46.5.1","BSD-3-Clause","Copyright (c) 2018, Gajus Kuizinas (http://gajus.com/). All rights reserved.","https://github.com/gajus/eslint-plugin-jsdoc"
+"eslint-plugin-jest@27.6.0","MIT","Copyright (c) 2018 Jonathan Kim","https://github.com/jest-community/eslint-plugin-jest"
+"eslint-plugin-jsdoc@46.9.0","BSD-3-Clause","Copyright (c) 2018, Gajus Kuizinas (http://gajus.com/). All rights reserved.","https://github.com/gajus/eslint-plugin-jsdoc"
"eslint-plugin-prettier@4.2.1","MIT","Copyright © 2017 Andres Suarez and Teddy Katz","https://github.com/prettier/eslint-plugin-prettier"
"eslint-plugin-rxjs-angular@2.0.1","MIT","Copyright (c) 2019 Nicholas Jamieson","https://github.com/cartant/eslint-plugin-rxjs-angular"
"eslint-plugin-rxjs@5.0.3","MIT","Copyright (c) 2019 Nicholas Jamieson and contributors","https://github.com/cartant/eslint-plugin-rxjs"
-"eslint-plugin-unicorn@47.0.0","MIT","Copyright (c) Sindre Sorhus (https://sindresorhus.com)","https://github.com/sindresorhus/eslint-plugin-unicorn"
-"eslint-plugin-unused-imports@2.0.0","MIT","","https://github.com/sweepline/eslint-plugin-unused-imports"
+"eslint-plugin-unicorn@49.0.0","MIT","Copyright (c) Sindre Sorhus (https://sindresorhus.com)","https://github.com/sindresorhus/eslint-plugin-unicorn"
+"eslint-plugin-unused-imports@3.0.0","MIT","Copyright (c) 2022 Mikkel Holmer Pedersen","https://github.com/sweepline/eslint-plugin-unused-imports"
"eslint-rule-composer@0.3.0","MIT","Copyright © 2017 Teddy Katz","https://github.com/not-an-aardvark/eslint-rule-composer"
"eslint-scope@5.1.1","BSD-2-Clause","Copyright JS Foundation and other contributors, https://js.foundation. Copyright (C) 2012-2013 Yusuke Suzuki (twitter: @Constellation) and other contributors.","https://github.com/eslint/eslint-scope"
-"eslint-scope@7.2.0","BSD-2-Clause","Copyright JS Foundation and other contributors, https://js.foundation. Copyright (C) 2012-2013 Yusuke Suzuki (twitter: @Constellation) and other contributors.","https://github.com/eslint/eslint-scope"
"eslint-scope@7.2.2","BSD-2-Clause","Copyright JS Foundation and other contributors, https://js.foundation. Copyright (C) 2012-2013 Yusuke Suzuki (twitter: @Constellation) and other contributors.","https://github.com/eslint/eslint-scope"
-"eslint-utils@3.0.0","MIT","Copyright (c) 2018 Toru Nagashima","https://github.com/mysticatea/eslint-utils"
-"eslint-visitor-keys@2.1.0","Apache-2.0","","https://github.com/eslint/eslint-visitor-keys"
"eslint-visitor-keys@3.4.3","Apache-2.0","","https://github.com/eslint/eslint-visitor-keys"
-"eslint@8.48.0","MIT","Copyright OpenJS Foundation and other contributors, ","https://github.com/eslint/eslint"
+"eslint@8.55.0","MIT","Copyright OpenJS Foundation and other contributors, ","https://github.com/eslint/eslint"
"espree@9.6.1","BSD-2-Clause","Copyright (c) Open JS Foundation. All rights reserved.","https://github.com/eslint/espree"
"esprima@1.0.4","BSD","Copyright (C) 2012, 2011 [Ariya Hidayat](http://ariya.ofilabs.com/about). and other contributors.","https://github.com/ariya/esprima"
"esprima@4.0.1","BSD-2-Clause","Copyright JS Foundation and other contributors, https://js.foundation/","https://github.com/jquery/esprima"
@@ -877,20 +868,23 @@
"events@3.3.0","MIT","Copyright Joyent, Inc. and other Node contributors.","https://github.com/Gozala/events"
"execa@4.1.0","MIT","Copyright (c) Sindre Sorhus (https://sindresorhus.com)","https://github.com/sindresorhus/execa"
"execa@5.1.1","MIT","Copyright (c) Sindre Sorhus (https://sindresorhus.com)","https://github.com/sindresorhus/execa"
-"execa@7.2.0","MIT","Copyright (c) Sindre Sorhus (https://sindresorhus.com)","https://github.com/sindresorhus/execa"
+"execa@8.0.1","MIT","Copyright (c) Sindre Sorhus (https://sindresorhus.com)","https://github.com/sindresorhus/execa"
"exit@0.1.2","MIT","Copyright (c) 2013 "Cowboy" Ben Alman","https://github.com/cowboy/node-exit"
-"expect@29.6.4","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
-"express-http-proxy@1.6.3","MIT","Copyright (c) 2013 villadora , contributors. http://kael.me/","https://github.com/villadora/express-http-proxy"
+"expect@29.7.0","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
+"exponential-backoff@3.1.1","Apache-2.0","","https://github.com/coveo/exponential-backoff"
+"express-http-proxy@2.0.0","MIT","Copyright (c) 2013 villadora , contributors. http://kael.me/","https://github.com/villadora/express-http-proxy"
"express-robots-txt@1.0.0","MIT","","https://github.com/modosc/express-robots-txt"
"express@4.18.2","MIT","Copyright (c) 2009-2014 TJ Holowaychuk . Copyright (c) 2013-2014 Roman Shtylman . Copyright (c) 2014-2015 Douglas Christopher Wilson ","https://github.com/expressjs/express"
"ext@1.7.0","ISC","Copyright (c) 2011-2022, Mariusz Nowak, @medikoo, medikoo.com","https://github.com/medikoo/es5-ext.git#ext"
"external-editor@3.1.0","MIT","Copyright (c) 2016 Kevin Gravier","https://github.com/mrkmg/node-external-editor"
"fancy-log@2.0.0","MIT","Copyright (c) 2014, 2015, 2018, 2021 Blaine Bublitz and Eric Schoffstall ","https://github.com/gulpjs/fancy-log"
"fast-deep-equal@3.1.3","MIT","Copyright (c) 2017 Evgeny Poberezkin","https://github.com/epoberezkin/fast-deep-equal"
-"fast-diff@1.2.0","Apache-2.0","","https://github.com/jhchen/fast-diff"
-"fast-equals@4.0.3","MIT","Copyright (c) 2017 Tony Quetano","https://github.com/planttheidea/fast-equals"
+"fast-diff@1.3.0","Apache-2.0","","https://github.com/jhchen/fast-diff"
"fast-equals@5.0.1","MIT","Copyright (c) 2017 Tony Quetano","https://github.com/planttheidea/fast-equals"
+"fast-glob@3.2.7","MIT","Copyright (c) Denis Malinochkin","https://github.com/mrmlnc/fast-glob"
+"fast-glob@3.3.0","MIT","Copyright (c) Denis Malinochkin","https://github.com/mrmlnc/fast-glob"
"fast-glob@3.3.1","MIT","Copyright (c) Denis Malinochkin","https://github.com/mrmlnc/fast-glob"
+"fast-glob@3.3.2","MIT","Copyright (c) Denis Malinochkin","https://github.com/mrmlnc/fast-glob"
"fast-json-patch@3.1.1","MIT","Copyright (c) 2013, 2014, 2020 Joachim Wester","https://github.com/Starcounter-Jack/JSON-Patch"
"fast-json-stable-stringify@2.1.0","MIT","Copyright (c) 2017 Evgeny Poberezkin. Copyright (c) 2013 James Halliday","https://github.com/epoberezkin/fast-json-stable-stringify"
"fast-levenshtein@2.0.6","MIT","Copyright (c) 2013 [Ramesh Nair](http://www.hiddentao.com/)","https://github.com/hiddentao/fast-levenshtein"
@@ -902,105 +896,109 @@
"figures@2.0.0","MIT","Copyright (c) Sindre Sorhus (sindresorhus.com)","https://github.com/sindresorhus/figures"
"figures@3.2.0","MIT","Copyright (c) Sindre Sorhus (https://sindresorhus.com)","https://github.com/sindresorhus/figures"
"file-entry-cache@6.0.1","MIT","Copyright (c) 2015 Roy Riojas","https://github.com/royriojas/file-entry-cache"
+"file-entry-cache@7.0.2","MIT","Copyright (c) Roy Riojas & Jared Wray","https://github.com/jaredwray/file-entry-cache"
"file-replace-loader@1.4.0","MIT","","https://github.com/vyushin/file-replace-loader"
+"filelist@1.0.4","Apache-2.0","","https://github.com/mde/filelist"
"fill-range@7.0.1","MIT","Copyright (c) 2014-present, Jon Schlinkert.","https://github.com/jonschlinkert/fill-range"
"finalhandler@1.1.0","MIT","Copyright (c) 2014-2017 Douglas Christopher Wilson ","https://github.com/pillarjs/finalhandler"
"finalhandler@1.1.2","MIT","Copyright (c) 2014-2017 Douglas Christopher Wilson ","https://github.com/pillarjs/finalhandler"
"finalhandler@1.2.0","MIT","Copyright (c) 2014-2022 Douglas Christopher Wilson ","https://github.com/pillarjs/finalhandler"
-"find-cache-dir@3.3.2","MIT","Copyright (c) Sindre Sorhus (https://sindresorhus.com)","https://github.com/avajs/find-cache-dir"
+"find-cache-dir@4.0.0","MIT","Copyright (c) Sindre Sorhus (https://sindresorhus.com). Copyright (c) James Talmage (https://github.com/jamestalmage)","https://github.com/sindresorhus/find-cache-dir"
"find-config@1.0.0","MIT","","https://github.com/shannonmoeller/find-config"
-"find-up@2.1.0","MIT","Copyright (c) Sindre Sorhus (sindresorhus.com)","https://github.com/sindresorhus/find-up"
+"find-up-simple@1.0.0","MIT","Copyright (c) Sindre Sorhus (https://sindresorhus.com)","https://github.com/sindresorhus/find-up-simple"
"find-up@4.1.0","MIT","Copyright (c) Sindre Sorhus (sindresorhus.com)","https://github.com/sindresorhus/find-up"
"find-up@5.0.0","MIT","Copyright (c) Sindre Sorhus (https://sindresorhus.com)","https://github.com/sindresorhus/find-up"
"find-up@6.3.0","MIT","Copyright (c) Sindre Sorhus (https://sindresorhus.com)","https://github.com/sindresorhus/find-up"
-"flat-cache@3.0.4","MIT","Copyright (c) 2015 Roy Riojas","https://github.com/royriojas/flat-cache"
-"flatted@3.2.7","ISC","Copyright (c) 2018-2020, Andrea Giammarchi, @WebReflection","https://github.com/WebReflection/flatted"
-"follow-redirects@1.15.2","MIT","Copyright 2014–present Olivier Lalonde , James Talmage , Ruben Verborgh","https://github.com/follow-redirects/follow-redirects"
+"flat-cache@3.2.0","MIT","Copyright (c) Roy Riojas and Jared Wray","https://github.com/jaredwray/flat-cache"
+"flat@5.0.2","BSD-3-Clause","Copyright (c) 2014, Hugh Kennedy. All rights reserved.","https://github.com/hughsk/flat"
+"flatted@3.2.9","ISC","Copyright (c) 2018-2020, Andrea Giammarchi, @WebReflection","https://github.com/WebReflection/flatted"
+"follow-redirects@1.15.3","MIT","Copyright 2014–present Olivier Lalonde