diff --git a/.github/dependabot.yml b/.github/dependabot.yml index aed83049c3c..a5b9b97e279 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,4 +1,4 @@ -version: 2 + version: 2 updates: - package-ecosystem: npm directory: "/" diff --git a/.github/workflows/npm-publish-github-packages.yml b/.github/workflows/npm-publish-github-packages.yml new file mode 100644 index 00000000000..ea2d329fa02 --- /dev/null +++ b/.github/workflows/npm-publish-github-packages.yml @@ -0,0 +1,36 @@ +# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created +# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages + +name: Node.js Package + +on: + release: + types: [created] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 + - run: npm ci + - run: npm test + + publish-gpr: + needs: build + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 + registry-url: https://npm.pkg.github.com/ + - run: npm ci + - run: npm publish + env: + NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/.github/workflows/webpack.yml b/.github/workflows/webpack.yml new file mode 100644 index 00000000000..9626ff6d358 --- /dev/null +++ b/.github/workflows/webpack.yml @@ -0,0 +1,28 @@ +name: NodeJS with Webpack + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [18.x, 20.x, 22.x] + + steps: + - uses: actions/checkout@v4 + + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node-version }} + + - name: Build + run: | + npm install + npx webpack diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 00000000000..034e8480320 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,21 @@ +# Security Policy + +## Supported Versions + +Use this section to tell people about which versions of your project are +currently being supported with security updates. + +| Version | Supported | +| ------- | ------------------ | +| 5.1.x | :white_check_mark: | +| 5.0.x | :x: | +| 4.0.x | :white_check_mark: | +| < 4.0 | :x: | + +## Reporting a Vulnerability + +Use this section to tell people how to report a vulnerability. + +Tell them where to go, how often they can expect to get an update on a +reported vulnerability, what to expect if the vulnerability is accepted or +declined, etc. diff --git a/package.json b/package.json index 55db3b4ab3d..b14d0e3ebc3 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "@octokit/rest": "^19.0.7", "@types/fs-extra": "^9.0.13", "@types/listr": "^0.14.4", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/semver": "^7.5.1", "@types/shelljs": "^0.8.11", "@types/yargs": "^17.0.10", diff --git a/packages/connector-jsdom/package.json b/packages/connector-jsdom/package.json index c7c5ef94109..e5cbc570842 100644 --- a/packages/connector-jsdom/package.json +++ b/packages/connector-jsdom/package.json @@ -25,7 +25,7 @@ "@hint/utils-create-server": "^3.4.27", "@types/jsdom": "^20.0.1", "@types/lodash": "^4.14.194", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/sinon": "^10.0.11", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", diff --git a/packages/connector-local/package.json b/packages/connector-local/package.json index 442a65194f6..bbba639fdb2 100644 --- a/packages/connector-local/package.json +++ b/packages/connector-local/package.json @@ -23,7 +23,7 @@ "@hint/parser-html": "^3.1.4", "@types/chokidar": "^2.1.3", "@types/jsdom": "^20.0.1", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/proxyquire": "^1.3.28", "@types/sinon": "^10.0.11", "@typescript-eslint/eslint-plugin": "^5.59.2", diff --git a/packages/connector-puppeteer/package.json b/packages/connector-puppeteer/package.json index 1a786e20131..65d7069e181 100644 --- a/packages/connector-puppeteer/package.json +++ b/packages/connector-puppeteer/package.json @@ -30,7 +30,7 @@ "@types/is-ci": "^3.0.0", "@types/lockfile": "^1.0.2", "@types/lodash": "^4.14.194", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/puppeteer": "^5.4.5", "@types/puppeteer-core": "^5.4.0", "@types/sinon": "^10.0.11", diff --git a/packages/create-hint/package.json b/packages/create-hint/package.json index cb9b3f2317e..51c5a2324f9 100644 --- a/packages/create-hint/package.json +++ b/packages/create-hint/package.json @@ -23,7 +23,7 @@ "@hint/utils-create-server": "^3.4.27", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/proxyquire": "^1.3.28", "@types/sinon": "^10.0.11", "ava": "^4.3.3", @@ -44,7 +44,7 @@ "sinon": "^13.0.1", "ts-loader": "^9.4.2", "typescript": "^4.5.5", - "webpack": "^5.76.0", + "webpack": "^5.94.0", "webpack-cli": "^4.9.1" }, "engines": { diff --git a/packages/create-hintrc/package.json b/packages/create-hintrc/package.json index d2e3662454c..c59d48aefb7 100644 --- a/packages/create-hintrc/package.json +++ b/packages/create-hintrc/package.json @@ -22,7 +22,7 @@ "devDependencies": { "@types/inquirer": "^8.2.0", "@types/lodash": "^4.14.194", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/proxyquire": "^1.3.28", "@types/sinon": "^10.0.11", "@typescript-eslint/eslint-plugin": "^5.59.2", @@ -44,7 +44,7 @@ "sinon": "^13.0.1", "ts-loader": "^9.4.2", "typescript": "^4.5.5", - "webpack": "^5.76.0", + "webpack": "^5.94.0", "webpack-cli": "^4.9.1" }, "engines": { diff --git a/packages/create-parser/package.json b/packages/create-parser/package.json index 53e0077df1f..cfa27683d60 100644 --- a/packages/create-parser/package.json +++ b/packages/create-parser/package.json @@ -20,7 +20,7 @@ "@hint/utils": "^7.0.24", "@types/inquirer": "^8.2.0", "@types/mkdirp": "^1.0.2", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/proxyquire": "^1.3.28", "@types/sinon": "^10.0.11", "@typescript-eslint/eslint-plugin": "^5.59.2", @@ -44,7 +44,7 @@ "sinon": "^13.0.1", "ts-loader": "^9.4.2", "typescript": "^4.5.5", - "webpack": "^5.76.0", + "webpack": "^5.94.0", "webpack-cli": "^4.9.1" }, "engines": { diff --git a/packages/extension-browser/package.json b/packages/extension-browser/package.json index 69924278f2c..b3a07b664d1 100644 --- a/packages/extension-browser/package.json +++ b/packages/extension-browser/package.json @@ -54,7 +54,7 @@ "@types/har-format": "^1.2.10", "@types/is-ci": "^3.0.0", "@types/jsdom": "^20.0.1", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/proxyquire": "^1.3.28", "@types/puppeteer": "^5.4.5", "@types/react": "^18.0.9", @@ -101,7 +101,7 @@ "util": "^0.12.5", "util.promisify": "^1.1.1", "web-ext": "^7.4.0", - "webpack": "^5.76.0", + "webpack": "^5.94.0", "webpack-cli": "^4.9.1" }, "files": [ diff --git a/packages/extension-vscode/package.json b/packages/extension-vscode/package.json index bea286192f5..68e4bbdf3a7 100644 --- a/packages/extension-vscode/package.json +++ b/packages/extension-vscode/package.json @@ -29,7 +29,7 @@ "devDependencies": { "@hint/utils": "^7.0.24", "@hint/utils-types": "^1.2.1", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/proxyquire": "^1.3.28", "@types/sinon": "^10.0.11", "@types/vscode": "^1.86.1", @@ -52,7 +52,7 @@ "vscode-languageclient": "^9.0.1", "vscode-languageserver": "^9.0.1", "vscode-languageserver-textdocument": "^1.0.12", - "webpack": "^5.76.0", + "webpack": "^5.94.0", "webpack-cli": "^4.9.1" }, "displayName": "webhint", diff --git a/packages/formatter-codeframe/package.json b/packages/formatter-codeframe/package.json index 4c07edbf6b1..26756643570 100644 --- a/packages/formatter-codeframe/package.json +++ b/packages/formatter-codeframe/package.json @@ -22,7 +22,7 @@ }, "devDependencies": { "@types/proxyquire": "^1.3.28", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/sinon": "^10.0.11", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", diff --git a/packages/formatter-excel/package.json b/packages/formatter-excel/package.json index 6da278c1bb2..a74f3db12ef 100644 --- a/packages/formatter-excel/package.json +++ b/packages/formatter-excel/package.json @@ -20,7 +20,7 @@ "lodash": "^4.17.21" }, "devDependencies": { - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/sinon": "^10.0.11", "@types/proxyquire": "^1.3.28", "@typescript-eslint/eslint-plugin": "^5.59.2", diff --git a/packages/formatter-html/package.json b/packages/formatter-html/package.json index 0f764744590..4bade1b8d96 100644 --- a/packages/formatter-html/package.json +++ b/packages/formatter-html/package.json @@ -15,14 +15,14 @@ "@hint/utils-fs": "^1.0.16", "@hint/utils-i18n": "^1.0.15", "@hint/utils-types": "^1.2.1", - "ejs": "^3.1.9", + "ejs": "^3.1.10", "fs-extra": "^11.1.0", "lodash": "^4.17.21" }, "devDependencies": { "@types/ejs": "^3.1.2", "@types/fs-extra": "^9.0.13", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/proxyquire": "^1.3.28", "@types/sinon": "^10.0.11", "@typescript-eslint/eslint-plugin": "^5.59.2", diff --git a/packages/formatter-json/package.json b/packages/formatter-json/package.json index 22486331c95..1f3f72279ec 100644 --- a/packages/formatter-json/package.json +++ b/packages/formatter-json/package.json @@ -18,7 +18,7 @@ "lodash": "^4.17.21" }, "devDependencies": { - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/proxyquire": "^1.3.28", "@types/sinon": "^10.0.11", "@typescript-eslint/eslint-plugin": "^5.59.2", diff --git a/packages/formatter-stylish/package.json b/packages/formatter-stylish/package.json index efe847559de..b2b42ba3652 100644 --- a/packages/formatter-stylish/package.json +++ b/packages/formatter-stylish/package.json @@ -22,7 +22,7 @@ "text-table": "^0.2.0" }, "devDependencies": { - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/proxyquire": "^1.3.28", "@types/sinon": "^10.0.11", "@types/text-table": "^0.2.2", diff --git a/packages/formatter-summary/package.json b/packages/formatter-summary/package.json index 5428062d51b..85b1afe1737 100644 --- a/packages/formatter-summary/package.json +++ b/packages/formatter-summary/package.json @@ -21,7 +21,7 @@ }, "description": "", "devDependencies": { - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/proxyquire": "^1.3.28", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", diff --git a/packages/hint-apple-touch-icons/package.json b/packages/hint-apple-touch-icons/package.json index 30233d6d741..56bdbb7e1a2 100644 --- a/packages/hint-apple-touch-icons/package.json +++ b/packages/hint-apple-touch-icons/package.json @@ -21,7 +21,7 @@ "@hint/utils-tests-helpers": "^6.5.7", "@hint/utils-dom": "^2.2.4", "@types/image-size": "^0.8.0", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-axe/package.json b/packages/hint-axe/package.json index 0d72b0b5b8c..c6d4a2ecc0d 100644 --- a/packages/hint-axe/package.json +++ b/packages/hint-axe/package.json @@ -21,7 +21,7 @@ "@hint/utils-create-server": "^3.4.27", "@hint/utils-dom": "^2.2.4", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-babel-config/package.json b/packages/hint-babel-config/package.json index bfb253ef76a..f63b41fdcfb 100644 --- a/packages/hint-babel-config/package.json +++ b/packages/hint-babel-config/package.json @@ -17,7 +17,7 @@ "devDependencies": { "@hint/parser-babel-config": "^2.1.43", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-button-type/package.json b/packages/hint-button-type/package.json index 95a8e083f3a..2b6558daf01 100644 --- a/packages/hint-button-type/package.json +++ b/packages/hint-button-type/package.json @@ -18,7 +18,7 @@ "@hint/utils-create-server": "^3.4.27", "@hint/utils-dom": "^2.2.4", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-compat-api/package.json b/packages/hint-compat-api/package.json index 2021ac54e13..9afd13db120 100644 --- a/packages/hint-compat-api/package.json +++ b/packages/hint-compat-api/package.json @@ -23,7 +23,7 @@ "@hint/utils-dom": "^2.2.4", "@hint/utils-tests-helpers": "^6.5.7", "@types/lodash": "^4.14.194", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", @@ -32,7 +32,7 @@ "eslint-plugin-markdown": "^2.2.1", "npm-run-all": "^4.1.5", "nyc": "^15.1.0", - "postcss": "^8.4.23", + "postcss": "^8.4.33", "rimraf": "^5.0.0", "typescript": "^4.5.5" }, diff --git a/packages/hint-content-type/package.json b/packages/hint-content-type/package.json index 11867237344..fd5ba07b64f 100644 --- a/packages/hint-content-type/package.json +++ b/packages/hint-content-type/package.json @@ -22,7 +22,7 @@ "@hint/utils-create-server": "^3.4.27", "@hint/utils-tests-helpers": "^6.5.7", "@types/content-type": "^1.1.5", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-create-element-svg/package.json b/packages/hint-create-element-svg/package.json index 5e138548c9b..ee690347cdf 100644 --- a/packages/hint-create-element-svg/package.json +++ b/packages/hint-create-element-svg/package.json @@ -19,7 +19,7 @@ "@hint/parser-javascript": "^3.1.25", "@hint/utils-create-server": "^3.4.27", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-css-prefix-order/package.json b/packages/hint-css-prefix-order/package.json index a91ee853b15..f7b604781f7 100644 --- a/packages/hint-css-prefix-order/package.json +++ b/packages/hint-css-prefix-order/package.json @@ -14,7 +14,7 @@ "@hint/utils-fs": "^1.0.16", "@hint/utils-i18n": "^1.0.15", "@hint/utils-types": "^1.2.1", - "postcss": "^8.4.23" + "postcss": "^8.4.33" }, "description": "Ensure vendor-prefixed versions of a CSS property are listed before the unprefixed version.", "devDependencies": { @@ -22,7 +22,7 @@ "@hint/parser-sass": "^1.0.31", "@hint/utils-create-server": "^3.4.27", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", @@ -31,7 +31,7 @@ "eslint-plugin-markdown": "^2.2.1", "npm-run-all": "^4.1.5", "nyc": "^15.1.0", - "postcss": "^8.4.23", + "postcss": "^8.4.33", "rimraf": "^5.0.0", "typescript": "^4.5.5" }, diff --git a/packages/hint-detect-css-reflows/package.json b/packages/hint-detect-css-reflows/package.json index 6f85dc45820..2f7af83df4c 100644 --- a/packages/hint-detect-css-reflows/package.json +++ b/packages/hint-detect-css-reflows/package.json @@ -14,7 +14,7 @@ "@hint/utils-fs": "^1.0.16", "@hint/utils-i18n": "^1.0.15", "@hint/utils-types": "^1.2.1", - "postcss": "^8.4.23" + "postcss": "^8.4.33" }, "description": "Let the developers know of what operations will be triggered by changes on the css properties", "devDependencies": { @@ -22,7 +22,7 @@ "@hint/parser-sass": "^1.0.31", "@hint/utils-create-server": "^3.4.27", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", @@ -31,7 +31,7 @@ "eslint-plugin-markdown": "^2.2.1", "npm-run-all": "^4.1.5", "nyc": "^15.1.0", - "postcss": "^8.4.23", + "postcss": "^8.4.33", "rimraf": "^5.0.0", "typescript": "^4.5.5" }, diff --git a/packages/hint-disown-opener/package.json b/packages/hint-disown-opener/package.json index 9014fb0d976..d6157466fbd 100644 --- a/packages/hint-disown-opener/package.json +++ b/packages/hint-disown-opener/package.json @@ -21,7 +21,7 @@ "@hint/utils-create-server": "^3.4.27", "@hint/utils-dom": "^2.2.4", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-doctype/package.json b/packages/hint-doctype/package.json index 20f02c5c10c..2d7602f36c0 100644 --- a/packages/hint-doctype/package.json +++ b/packages/hint-doctype/package.json @@ -16,7 +16,7 @@ "devDependencies": { "@hint/utils-tests-helpers": "^6.5.7", "@hint/parser-html": "^3.1.4", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-highest-available-document-mode/package.json b/packages/hint-highest-available-document-mode/package.json index b351dbf9acd..a6abd83b534 100644 --- a/packages/hint-highest-available-document-mode/package.json +++ b/packages/hint-highest-available-document-mode/package.json @@ -19,7 +19,7 @@ "@hint/utils-create-server": "^3.4.27", "@hint/utils-dom": "^2.2.4", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-html-checker/package.json b/packages/hint-html-checker/package.json index e28e405cad9..49e54070704 100644 --- a/packages/hint-html-checker/package.json +++ b/packages/hint-html-checker/package.json @@ -21,7 +21,7 @@ "@hint/parser-html": "^3.1.4", "@hint/utils-connector-tools": "^4.0.42", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-http-cache/package.json b/packages/hint-http-cache/package.json index 13f37aeae64..05590b636fc 100644 --- a/packages/hint-http-cache/package.json +++ b/packages/hint-http-cache/package.json @@ -18,7 +18,7 @@ "devDependencies": { "@hint/utils-create-server": "^3.4.27", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-http-compression/package.json b/packages/hint-http-compression/package.json index 157e710f766..63655a75a60 100644 --- a/packages/hint-http-compression/package.json +++ b/packages/hint-http-compression/package.json @@ -19,7 +19,7 @@ "devDependencies": { "@hint/utils-dom": "^2.2.4", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-https-only/package.json b/packages/hint-https-only/package.json index a70481eca8a..f913b02c0d6 100644 --- a/packages/hint-https-only/package.json +++ b/packages/hint-https-only/package.json @@ -18,7 +18,7 @@ "devDependencies": { "@hint/utils-create-server": "^3.4.27", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-ie-flexbox-compat/package.json b/packages/hint-ie-flexbox-compat/package.json index 66e49d7d00d..3bf816ef8ed 100644 --- a/packages/hint-ie-flexbox-compat/package.json +++ b/packages/hint-ie-flexbox-compat/package.json @@ -19,7 +19,7 @@ "devDependencies": { "@hint/utils-create-server": "^3.4.27", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-image-optimization-cloudinary/package.json b/packages/hint-image-optimization-cloudinary/package.json index 7f06c5cecfe..19c9445afd0 100644 --- a/packages/hint-image-optimization-cloudinary/package.json +++ b/packages/hint-image-optimization-cloudinary/package.json @@ -22,7 +22,7 @@ "@hint/utils-create-server": "^3.4.27", "@hint/utils-dom": "^2.2.4", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-leading-dot-classlist/package.json b/packages/hint-leading-dot-classlist/package.json index 5413de2c415..d17db085127 100644 --- a/packages/hint-leading-dot-classlist/package.json +++ b/packages/hint-leading-dot-classlist/package.json @@ -19,7 +19,7 @@ "@hint/parser-javascript": "^3.1.25", "@hint/utils-create-server": "^3.4.27", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-manifest-app-name/package.json b/packages/hint-manifest-app-name/package.json index 6aabf718ca1..2dae89f17bd 100644 --- a/packages/hint-manifest-app-name/package.json +++ b/packages/hint-manifest-app-name/package.json @@ -19,7 +19,7 @@ "@hint/utils-create-server": "^3.4.27", "@hint/utils-json": "^1.0.28", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-manifest-exists/package.json b/packages/hint-manifest-exists/package.json index 5e8909869de..9561a2b9730 100644 --- a/packages/hint-manifest-exists/package.json +++ b/packages/hint-manifest-exists/package.json @@ -18,7 +18,7 @@ "@hint/parser-manifest": "^2.3.20", "@hint/utils-create-server": "^3.4.27", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-manifest-file-extension/package.json b/packages/hint-manifest-file-extension/package.json index 9355f365daf..173f42ab755 100644 --- a/packages/hint-manifest-file-extension/package.json +++ b/packages/hint-manifest-file-extension/package.json @@ -19,7 +19,7 @@ "@hint/parser-manifest": "^2.3.20", "@hint/utils-create-server": "^3.4.27", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-manifest-icons/package.json b/packages/hint-manifest-icons/package.json index 05d4f9b5124..3819b4efe25 100644 --- a/packages/hint-manifest-icons/package.json +++ b/packages/hint-manifest-icons/package.json @@ -22,7 +22,7 @@ "@hint/utils-create-server": "^3.4.27", "@hint/utils-json": "^1.0.28", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-manifest-is-valid/package.json b/packages/hint-manifest-is-valid/package.json index 681aa3030bd..903af82d8c9 100644 --- a/packages/hint-manifest-is-valid/package.json +++ b/packages/hint-manifest-is-valid/package.json @@ -23,7 +23,7 @@ "@hint/utils-json": "^1.0.28", "@hint/utils-tests-helpers": "^6.5.7", "@types/color-string": "^1.5.2", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-manifest-scoped-urls/package.json b/packages/hint-manifest-scoped-urls/package.json index ded646ba42d..a2b95fe05b1 100644 --- a/packages/hint-manifest-scoped-urls/package.json +++ b/packages/hint-manifest-scoped-urls/package.json @@ -18,7 +18,7 @@ "@hint/parser-manifest": "^2.3.20", "@hint/utils-create-server": "^3.4.27", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-meta-charset-utf-8/package.json b/packages/hint-meta-charset-utf-8/package.json index 8f118ecadfb..97c00b3b9a5 100644 --- a/packages/hint-meta-charset-utf-8/package.json +++ b/packages/hint-meta-charset-utf-8/package.json @@ -18,7 +18,7 @@ "@hint/parser-html": "^3.1.4", "@hint/utils-create-server": "^3.4.27", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-meta-theme-color/package.json b/packages/hint-meta-theme-color/package.json index 4942e33fb2a..26338688043 100644 --- a/packages/hint-meta-theme-color/package.json +++ b/packages/hint-meta-theme-color/package.json @@ -21,7 +21,7 @@ "@hint/utils-dom": "^2.2.4", "@hint/utils-tests-helpers": "^6.5.7", "@types/color-string": "^1.5.2", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-meta-viewport/package.json b/packages/hint-meta-viewport/package.json index 4a91cf9c037..454ff356001 100644 --- a/packages/hint-meta-viewport/package.json +++ b/packages/hint-meta-viewport/package.json @@ -19,7 +19,7 @@ "@hint/utils-create-server": "^3.4.27", "@hint/utils-dom": "^2.2.4", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-minified-js/package.json b/packages/hint-minified-js/package.json index 3a159588f5b..f25251bbfbd 100644 --- a/packages/hint-minified-js/package.json +++ b/packages/hint-minified-js/package.json @@ -19,7 +19,7 @@ "@hint/parser-javascript": "^3.1.25", "@hint/utils-create-server": "^3.4.27", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-no-bom/package.json b/packages/hint-no-bom/package.json index 3a1b014afe7..3f6bc9d4338 100644 --- a/packages/hint-no-bom/package.json +++ b/packages/hint-no-bom/package.json @@ -19,7 +19,7 @@ "devDependencies": { "@hint/utils-create-server": "^3.4.27", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-no-broken-links/package.json b/packages/hint-no-broken-links/package.json index 6e9bdd8c53b..f1762d53601 100644 --- a/packages/hint-no-broken-links/package.json +++ b/packages/hint-no-broken-links/package.json @@ -20,7 +20,7 @@ "@hint/utils-create-server": "^3.4.27", "@hint/utils-dom": "^2.2.4", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-no-disallowed-headers/package.json b/packages/hint-no-disallowed-headers/package.json index 0b688b36500..d6459e2e817 100644 --- a/packages/hint-no-disallowed-headers/package.json +++ b/packages/hint-no-disallowed-headers/package.json @@ -19,7 +19,7 @@ "devDependencies": { "@hint/utils-create-server": "^3.4.27", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-no-friendly-error-pages/package.json b/packages/hint-no-friendly-error-pages/package.json index 0f07c1d865d..34aa17d0aa1 100644 --- a/packages/hint-no-friendly-error-pages/package.json +++ b/packages/hint-no-friendly-error-pages/package.json @@ -18,7 +18,7 @@ "devDependencies": { "@hint/utils-create-server": "^3.4.27", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-no-html-only-headers/package.json b/packages/hint-no-html-only-headers/package.json index 552ea71f272..8571a55192e 100644 --- a/packages/hint-no-html-only-headers/package.json +++ b/packages/hint-no-html-only-headers/package.json @@ -19,7 +19,7 @@ "devDependencies": { "@hint/utils-create-server": "^3.4.27", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-no-http-redirects/package.json b/packages/hint-no-http-redirects/package.json index 94532f92d24..c83473aed82 100644 --- a/packages/hint-no-http-redirects/package.json +++ b/packages/hint-no-http-redirects/package.json @@ -16,7 +16,7 @@ "devDependencies": { "@hint/utils-create-server": "^3.4.27", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-no-inline-styles/package.json b/packages/hint-no-inline-styles/package.json index de1a4ada982..9c7424a7332 100644 --- a/packages/hint-no-inline-styles/package.json +++ b/packages/hint-no-inline-styles/package.json @@ -19,7 +19,7 @@ "@hint/utils-create-server": "^3.4.27", "@hint/utils-dom": "^2.2.4", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-no-p3p/package.json b/packages/hint-no-p3p/package.json index e89bb9d2954..1a97589ff91 100644 --- a/packages/hint-no-p3p/package.json +++ b/packages/hint-no-p3p/package.json @@ -19,7 +19,7 @@ "devDependencies": { "@hint/utils-create-server": "^3.4.27", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-no-protocol-relative-urls/package.json b/packages/hint-no-protocol-relative-urls/package.json index cfb69afc6c6..cca122f31f4 100644 --- a/packages/hint-no-protocol-relative-urls/package.json +++ b/packages/hint-no-protocol-relative-urls/package.json @@ -19,7 +19,7 @@ "devDependencies": { "@hint/utils-create-server": "^3.4.27", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-no-vulnerable-javascript-libraries/package.json b/packages/hint-no-vulnerable-javascript-libraries/package.json index c56beb240a8..195512d3b51 100644 --- a/packages/hint-no-vulnerable-javascript-libraries/package.json +++ b/packages/hint-no-vulnerable-javascript-libraries/package.json @@ -23,16 +23,16 @@ "devDependencies": { "@hint/utils-create-server": "^3.4.27", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", - "angular": "1.4.9", + "angular": "1.8.3", "ava": "^4.3.3", "copyfiles": "^2.4.1", "eslint": "^7.32.0", "eslint-plugin-import": "^2.27.5", "eslint-plugin-markdown": "^2.2.1", - "jquery": "2.1.4", + "jquery": "3.5.0", "knockout": "https://codeload.github.com/knockout/knockout/tar.gz/refs/tags/v3.4.0-rc", "moment": "^2.29.4", "npm-run-all": "^4.1.5", diff --git a/packages/hint-performance-budget/package.json b/packages/hint-performance-budget/package.json index 51e2c0eeef3..1e65ec959ae 100644 --- a/packages/hint-performance-budget/package.json +++ b/packages/hint-performance-budget/package.json @@ -18,7 +18,7 @@ "devDependencies": { "@hint/utils-create-server": "^3.4.27", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-scoped-svg-styles/package.json b/packages/hint-scoped-svg-styles/package.json index 5c7aef2b158..78702c12757 100644 --- a/packages/hint-scoped-svg-styles/package.json +++ b/packages/hint-scoped-svg-styles/package.json @@ -21,7 +21,7 @@ "@hint/utils-create-server": "^3.4.27", "@hint/utils-dom": "^2.2.4", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-sri/package.json b/packages/hint-sri/package.json index 68061ee89bc..9f1818c6dae 100644 --- a/packages/hint-sri/package.json +++ b/packages/hint-sri/package.json @@ -20,7 +20,7 @@ "devDependencies": { "@hint/utils-create-server": "^3.4.27", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-ssllabs/package.json b/packages/hint-ssllabs/package.json index f741a4065b2..eb4161aa01c 100644 --- a/packages/hint-ssllabs/package.json +++ b/packages/hint-ssllabs/package.json @@ -14,12 +14,12 @@ "@hint/utils-i18n": "^1.0.15", "@hint/utils-network": "^1.0.27", "@hint/utils-types": "^1.2.1", - "got": "^11.8.5" + "got": "^12.2.0" }, "description": "hint that that checks using SSL Labs for best practices related to the website's SSL configuration", "devDependencies": { "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-strict-transport-security/package.json b/packages/hint-strict-transport-security/package.json index 9ec81ff2401..bb4600d3064 100644 --- a/packages/hint-strict-transport-security/package.json +++ b/packages/hint-strict-transport-security/package.json @@ -19,7 +19,7 @@ "devDependencies": { "@hint/utils-create-server": "^3.4.27", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-stylesheet-limits/package.json b/packages/hint-stylesheet-limits/package.json index d0ac15a63a7..c8e1d8de26b 100644 --- a/packages/hint-stylesheet-limits/package.json +++ b/packages/hint-stylesheet-limits/package.json @@ -16,7 +16,7 @@ "devDependencies": { "@hint/utils-create-server": "^3.4.27", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-summary-display/package.json b/packages/hint-summary-display/package.json index 415732d7e9b..3605284c7d9 100644 --- a/packages/hint-summary-display/package.json +++ b/packages/hint-summary-display/package.json @@ -19,7 +19,7 @@ "@hint/parser-css": "^3.0.39", "@hint/utils-create-server": "^3.4.27", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-typescript-config/package.json b/packages/hint-typescript-config/package.json index 6d7a253892f..980c8784b87 100644 --- a/packages/hint-typescript-config/package.json +++ b/packages/hint-typescript-config/package.json @@ -19,7 +19,7 @@ "@hint/parser-typescript-config": "^2.4.31", "@hint/utils-json": "^1.0.28", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-validate-set-cookie-header/package.json b/packages/hint-validate-set-cookie-header/package.json index bcaf0d3b80b..1a3496ed4a7 100644 --- a/packages/hint-validate-set-cookie-header/package.json +++ b/packages/hint-validate-set-cookie-header/package.json @@ -18,7 +18,7 @@ "description": "hint for best practices related to the usage of the Set-Cookie response header.", "devDependencies": { "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-webpack-config/package.json b/packages/hint-webpack-config/package.json index f0fbb0ece3e..b70862e62bd 100644 --- a/packages/hint-webpack-config/package.json +++ b/packages/hint-webpack-config/package.json @@ -19,7 +19,7 @@ "@hint/parser-typescript-config": "^2.4.31", "@hint/parser-webpack-config": "^2.1.42", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint-x-content-type-options/package.json b/packages/hint-x-content-type-options/package.json index a803469dac2..90d6393f95a 100644 --- a/packages/hint-x-content-type-options/package.json +++ b/packages/hint-x-content-type-options/package.json @@ -19,7 +19,7 @@ "devDependencies": { "@hint/utils-create-server": "^3.4.27", "@hint/utils-tests-helpers": "^6.5.7", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/hint/package.json b/packages/hint/package.json index 7bf85748f0b..46397f41bb2 100644 --- a/packages/hint/package.json +++ b/packages/hint/package.json @@ -33,7 +33,7 @@ "devDependencies": { "@hint/utils-dom": "^2.2.4", "@types/lodash": "^4.14.194", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/sinon": "^10.0.11", "@types/update-notifier": "^5.1.0", "@typescript-eslint/eslint-plugin": "^5.59.2", diff --git a/packages/parser-babel-config/package.json b/packages/parser-babel-config/package.json index 5cc293ef331..25b48d8578c 100644 --- a/packages/parser-babel-config/package.json +++ b/packages/parser-babel-config/package.json @@ -16,7 +16,7 @@ "lodash": "^4.17.21" }, "devDependencies": { - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/sinon": "^10.0.11", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", diff --git a/packages/parser-css/package.json b/packages/parser-css/package.json index 9c87ebadce4..af43afa2058 100644 --- a/packages/parser-css/package.json +++ b/packages/parser-css/package.json @@ -12,13 +12,13 @@ "dependencies": { "@hint/utils-debug": "^1.0.11", "@hint/utils-string": "^1.0.14", - "postcss": "^8.4.23", + "postcss": "^8.4.33", "postcss-safe-parser": "^6.0.0" }, "description": "webhint parser needed to analyze CSS files", "devDependencies": { "@hint/utils-dom": "^2.2.4", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/proxyquire": "^1.3.28", "@types/sinon": "^10.0.11", "@typescript-eslint/eslint-plugin": "^5.59.2", diff --git a/packages/parser-html/package.json b/packages/parser-html/package.json index 9bfa005a348..a817d043965 100644 --- a/packages/parser-html/package.json +++ b/packages/parser-html/package.json @@ -13,7 +13,7 @@ }, "description": "webhint parser needed to analyze HTML files", "devDependencies": { - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/sinon": "^10.0.11", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", diff --git a/packages/parser-javascript/package.json b/packages/parser-javascript/package.json index a04bf76f6c5..50c22b48bed 100644 --- a/packages/parser-javascript/package.json +++ b/packages/parser-javascript/package.json @@ -21,7 +21,7 @@ "devDependencies": { "@hint/utils-dom": "^2.2.4", "@types/acorn": "^4.0.6", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/proxyquire": "^1.3.28", "@types/sinon": "^10.0.11", "@typescript-eslint/eslint-plugin": "^5.59.2", diff --git a/packages/parser-jsx/package.json b/packages/parser-jsx/package.json index 34a5098cbff..53232f47080 100644 --- a/packages/parser-jsx/package.json +++ b/packages/parser-jsx/package.json @@ -18,7 +18,7 @@ "devDependencies": { "@hint/parser-html": "^3.1.4", "@hint/parser-javascript": "^3.1.25", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", "ava": "^4.3.3", diff --git a/packages/parser-less/package.json b/packages/parser-less/package.json index c29a7e92aba..b8002adff09 100644 --- a/packages/parser-less/package.json +++ b/packages/parser-less/package.json @@ -12,14 +12,14 @@ "dependencies": { "@hint/utils-debug": "^1.0.11", "@hint/utils-string": "^1.0.14", - "postcss": "^8.4.23", + "postcss": "^8.4.33", "postcss-less": "^5.0.0" }, "description": "webhint parser needed to analyze LESS files", "devDependencies": { "@hint/parser-css": "^3.0.39", "@hint/utils-dom": "^2.2.4", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/proxyquire": "^1.3.28", "@types/sinon": "^10.0.11", "@typescript-eslint/eslint-plugin": "^5.59.2", diff --git a/packages/parser-manifest/package.json b/packages/parser-manifest/package.json index 3ad95b62d83..8261bc29c60 100644 --- a/packages/parser-manifest/package.json +++ b/packages/parser-manifest/package.json @@ -16,7 +16,7 @@ }, "description": "webhint parser for web app manifest files", "devDependencies": { - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/sinon": "^10.0.11", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", diff --git a/packages/parser-package-json/package.json b/packages/parser-package-json/package.json index e4d7396ed2f..0ad7afa93df 100644 --- a/packages/parser-package-json/package.json +++ b/packages/parser-package-json/package.json @@ -15,7 +15,7 @@ "@hint/utils-network": "^1.0.27" }, "devDependencies": { - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/proxyquire": "^1.3.28", "@types/sinon": "^10.0.11", "@typescript-eslint/eslint-plugin": "^5.59.2", diff --git a/packages/parser-sass/package.json b/packages/parser-sass/package.json index 287d63c16a2..2d4be84888b 100644 --- a/packages/parser-sass/package.json +++ b/packages/parser-sass/package.json @@ -12,7 +12,7 @@ "dependencies": { "@hint/utils-debug": "^1.0.11", "@hint/utils-string": "^1.0.14", - "postcss": "^8.4.23", + "postcss": "^8.4.33", "postcss-scss": "^4.0.6", "postcss-sass": "^0.5.0" }, @@ -20,7 +20,7 @@ "devDependencies": { "@hint/parser-css": "^3.0.39", "@hint/utils-dom": "^2.2.4", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/proxyquire": "^1.3.28", "@types/sinon": "^10.0.11", "@typescript-eslint/eslint-plugin": "^5.59.2", diff --git a/packages/parser-typescript-config/package.json b/packages/parser-typescript-config/package.json index e5a6db92a38..845c7abd1b2 100644 --- a/packages/parser-typescript-config/package.json +++ b/packages/parser-typescript-config/package.json @@ -16,7 +16,7 @@ }, "description": "webhint parser needed to analyze TypeScript config files", "devDependencies": { - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/proxyquire": "^1.3.28", "@types/sinon": "^10.0.11", "@typescript-eslint/eslint-plugin": "^5.59.2", diff --git a/packages/parser-typescript/package.json b/packages/parser-typescript/package.json index dd6b21a039a..2a3f7c8a622 100644 --- a/packages/parser-typescript/package.json +++ b/packages/parser-typescript/package.json @@ -17,7 +17,7 @@ "devDependencies": { "@hint/parser-html": "^3.1.4", "@hint/parser-jsx": "^1.1.6", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/proxyquire": "^1.3.28", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", diff --git a/packages/parser-webpack-config/package.json b/packages/parser-webpack-config/package.json index c197931425d..0e6b7bc4d5f 100644 --- a/packages/parser-webpack-config/package.json +++ b/packages/parser-webpack-config/package.json @@ -14,7 +14,7 @@ }, "description": "webhint parser needed to analyze webpack config files", "devDependencies": { - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/proxyquire": "^1.3.28", "@types/sinon": "^10.0.11", "@types/webpack": "^5.28.0", @@ -31,7 +31,7 @@ "rimraf": "^5.0.0", "sinon": "^13.0.1", "typescript": "^4.5.5", - "webpack": "^5.76.0" + "webpack": "^5.94.0" }, "files": [ "dist/src" diff --git a/packages/utils-connector-tools/package.json b/packages/utils-connector-tools/package.json index c676da3fb7c..44a11252928 100644 --- a/packages/utils-connector-tools/package.json +++ b/packages/utils-connector-tools/package.json @@ -22,7 +22,7 @@ "description": "hint tools for connectors", "devDependencies": { "@hint/utils-create-server": "^3.4.27", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/node-fetch": "^2.x", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", diff --git a/packages/utils-create-server/package.json b/packages/utils-create-server/package.json index 97cd83fd8a7..bb28e63af95 100644 --- a/packages/utils-create-server/package.json +++ b/packages/utils-create-server/package.json @@ -2,7 +2,7 @@ "dependencies": { "@hint/utils-network": "^1.0.27", "@hint/utils-string": "^1.0.14", - "express": "^4.18.2", + "express": "^4.20.0", "is-ci": "^3.0.1", "lodash": "^4.17.21", "on-headers": "^1.0.2" @@ -11,7 +11,7 @@ "devDependencies": { "@types/express": "^4.17.16", "@types/lodash": "^4.14.194", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/on-headers": "^1.0.0", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", diff --git a/packages/utils-css/package.json b/packages/utils-css/package.json index b02284fa686..1e08a94547b 100644 --- a/packages/utils-css/package.json +++ b/packages/utils-css/package.json @@ -18,7 +18,7 @@ "eslint-plugin-markdown": "^2.2.1", "npm-run-all": "^4.1.5", "nyc": "^15.1.0", - "postcss": "^8.4.23", + "postcss": "^8.4.33", "postcss-safe-parser": "^6.0.0", "rimraf": "^5.0.0", "typescript": "^4.5.5" diff --git a/packages/utils-tests-helpers/package.json b/packages/utils-tests-helpers/package.json index 400f39eb3b7..1a944015184 100644 --- a/packages/utils-tests-helpers/package.json +++ b/packages/utils-tests-helpers/package.json @@ -10,7 +10,7 @@ }, "description": "hint tests helpers", "devDependencies": { - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/proxyquire": "^1.3.28", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", diff --git a/packages/utils-worker/package.json b/packages/utils-worker/package.json index 80154a7796b..cf0bae45de8 100644 --- a/packages/utils-worker/package.json +++ b/packages/utils-worker/package.json @@ -48,7 +48,7 @@ "@hint/utils-dom": "^2.2.4", "@hint/utils-i18n": "^1.0.15", "@hint/utils-types": "^1.2.1", - "@types/node": "^20.1.1", + "@types/node": "^22.9.0", "@types/puppeteer": "^5.4.5", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^4.33.0", @@ -74,7 +74,7 @@ "terser-webpack-plugin": "^5.3.6", "typescript": "^4.5.5", "util.promisify": "^1.1.1", - "webpack": "^5.76.0", + "webpack": "^5.94.0", "webpack-cli": "^4.9.1" }, "files": [ diff --git a/yarn.lock b/yarn.lock index 784d8ad3457..883af55cf9f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -391,16 +391,7 @@ resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.2.tgz#26520bf09abe4a5644cd5414e37125a8954241dd" integrity sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw== -"@jridgewell/gen-mapping@^0.3.0": - version "0.3.2" - resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9" - integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A== - dependencies: - "@jridgewell/set-array" "^1.0.1" - "@jridgewell/sourcemap-codec" "^1.4.10" - "@jridgewell/trace-mapping" "^0.3.9" - -"@jridgewell/gen-mapping@^0.3.2": +"@jridgewell/gen-mapping@^0.3.2", "@jridgewell/gen-mapping@^0.3.5": version "0.3.5" resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz#dcce6aff74bdf6dad1a95802b69b04a2fcb1fb36" integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg== @@ -409,33 +400,23 @@ "@jridgewell/sourcemap-codec" "^1.4.10" "@jridgewell/trace-mapping" "^0.3.24" -"@jridgewell/resolve-uri@^3.0.3": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" - integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== - "@jridgewell/resolve-uri@^3.1.0": version "3.1.2" resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6" integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== -"@jridgewell/set-array@^1.0.1": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" - integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== - "@jridgewell/set-array@^1.2.1": version "1.2.1" resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.2.1.tgz#558fb6472ed16a4c850b889530e6b36438c49280" integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A== -"@jridgewell/source-map@^0.3.2": - version "0.3.2" - resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.2.tgz#f45351aaed4527a298512ec72f81040c998580fb" - integrity sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw== +"@jridgewell/source-map@^0.3.3": + version "0.3.6" + resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.6.tgz#9d71ca886e32502eb9362c9a74a46787c36df81a" + integrity sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ== dependencies: - "@jridgewell/gen-mapping" "^0.3.0" - "@jridgewell/trace-mapping" "^0.3.9" + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.25" "@jridgewell/sourcemap-codec@^1.4.10": version "1.4.14" @@ -447,15 +428,7 @@ resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== -"@jridgewell/trace-mapping@^0.3.14", "@jridgewell/trace-mapping@^0.3.9": - version "0.3.15" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz#aba35c48a38d3fd84b37e66c9c0423f9744f9774" - integrity sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g== - dependencies: - "@jridgewell/resolve-uri" "^3.0.3" - "@jridgewell/sourcemap-codec" "^1.4.10" - -"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.24": +"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.20", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25": version "0.3.25" resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0" integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ== @@ -768,15 +741,10 @@ resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea" integrity sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ== -"@sindresorhus/is@^4.0.0": - version "4.0.1" - resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.0.1.tgz#d26729db850fa327b7cacc5522252194404226f5" - integrity sha512-Qm9hBEBu18wt1PO2flE7LPb30BHMQt1eQgbV76YntdNk73XZGpn3izvGTYxbGgzXKgbCjiia0uxTd3aTNQrY/g== - "@sindresorhus/is@^5.2.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-5.3.0.tgz#0ec9264cf54a527671d990eb874e030b55b70dcc" - integrity sha512-CX6t4SYQ37lzxicAqsBtxA3OseeoVrh9cSJ5PFYam0GksYlupRfy1A+Q4aYD3zvcfECLc0zO2u+ZnR2UYKvCrw== + version "5.6.0" + resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-5.6.0.tgz#41dd6093d34652cddb5d5bdeee04eafc33826668" + integrity sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g== "@sinonjs/commons@^1.6.0", "@sinonjs/commons@^1.7.0", "@sinonjs/commons@^1.8.3": version "1.8.3" @@ -813,13 +781,6 @@ dependencies: defer-to-connect "^1.0.1" -"@szmarczak/http-timer@^4.0.5": - version "4.0.5" - resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-4.0.5.tgz#bfbd50211e9dfa51ba07da58a14cdfd333205152" - integrity sha512-PyRA9sm1Yayuj5OIoJ1hGt2YISX45w9WcFbh6ddT0Z/0yaFxOtGLInr4jUfU1EAFVs0Yfyfev4RNwBlUaHdlDQ== - dependencies: - defer-to-connect "^2.0.0" - "@szmarczak/http-timer@^5.0.1": version "5.0.1" resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-5.0.1.tgz#c7c1bf1141cdd4751b0399c8fc7b8b664cd5be3a" @@ -852,15 +813,15 @@ "@types/connect" "*" "@types/node" "*" -"@types/cacheable-request@^6.0.1": - version "6.0.1" - resolved "https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.1.tgz#5d22f3dded1fd3a84c0bbeb5039a7419c2c91976" - integrity sha512-ykFq2zmBGOCbpIXtoVbz4SKY5QriWPh3AjyU4G74RYbtt5yOc5OfaY75ftjg7mikMOla1CTGpX3lLbuJh8DTrQ== +"@types/cacheable-request@^6.0.2": + version "6.0.3" + resolved "https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.3.tgz#a430b3260466ca7b5ca5bfd735693b36e7a9d183" + integrity sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw== dependencies: "@types/http-cache-semantics" "*" - "@types/keyv" "*" + "@types/keyv" "^3.1.4" "@types/node" "*" - "@types/responselike" "*" + "@types/responselike" "^1.0.0" "@types/chokidar@^2.1.3": version "2.1.3" @@ -923,10 +884,10 @@ resolved "https://registry.yarnpkg.com/@types/ejs/-/ejs-3.1.2.tgz#75d277b030bc11b3be38c807e10071f45ebc78d9" integrity sha512-ZmiaE3wglXVWBM9fyVC17aGPkLo/UgaOjEiI2FXQfyczrCefORPxIe+2dVmnmk3zkVIbizjrlQzmPGhSYGXG5g== -"@types/eslint-scope@^3.7.3": - version "3.7.3" - resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.3.tgz#125b88504b61e3c8bc6f870882003253005c3224" - integrity sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g== +"@types/eslint-scope@^3.7.7": + version "3.7.7" + resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.7.tgz#3108bd5f18b0cdb277c867b3dd449c9ed7079ac5" + integrity sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg== dependencies: "@types/eslint" "*" "@types/estree" "*" @@ -946,10 +907,10 @@ dependencies: "@types/estree" "*" -"@types/estree@*", "@types/estree@^0.0.51": - version "0.0.51" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.51.tgz#cfd70924a25a3fd32b218e5e420e6897e1ac4f40" - integrity sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ== +"@types/estree@*", "@types/estree@^1.0.5", "@types/estree@^1.0.6": + version "1.0.6" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.6.tgz#628effeeae2064a1b4e79f78e81d87b7e5fc7b50" + integrity sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw== "@types/events@*": version "3.0.0" @@ -1028,11 +989,6 @@ resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.0.tgz#9140779736aa2655635ee756e2467d787cfe8a2a" integrity sha512-c3Xy026kOF7QOTn00hbIllV1dLR9hG9NkSrLQgCVs8NF6sBU+VGWjD3wLPhmh1TYAc7ugCFsvHYMN4VcBN1U1A== -"@types/http-cache-semantics@^4.0.1": - version "4.0.1" - resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz#0ea7b61496902b95890dc4c3a116b60cb8dae812" - integrity sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ== - "@types/image-size@^0.8.0": version "0.8.0" resolved "https://registry.yarnpkg.com/@types/image-size/-/image-size-0.8.0.tgz#736342ea51e076fa5fffd6ff219e9b412d4093f1" @@ -1069,10 +1025,10 @@ resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== -"@types/keyv@*": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@types/keyv/-/keyv-3.1.1.tgz#e45a45324fca9dab716ab1230ee249c9fb52cfa7" - integrity sha512-MPtoySlAZQ37VoLaPcTHCu1RWJ4llDkULYZIzOYxlhxBqYPB0RsRlmMU0R6tahtFe27mIdkHV+551ZWV4PLmVw== +"@types/keyv@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@types/keyv/-/keyv-3.1.4.tgz#3ccdb1c6751b0c7e52300bcdacd5bcbf8faa75b6" + integrity sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg== dependencies: "@types/node" "*" @@ -1141,10 +1097,12 @@ "@types/node" "*" form-data "^3.0.0" -"@types/node@*", "@types/node@>= 8", "@types/node@^20.1.1": - version "20.1.1" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.1.1.tgz#afc492e8dbe7f672dd3a13674823522b467a45ad" - integrity sha512-uKBEevTNb+l6/aCQaKVnUModfEMjAl98lw2Si9P5y4hLu9tm6AlX2ZIoXZX6Wh9lJueYPrGPKk5WMCNHg/u6/A== +"@types/node@*", "@types/node@>= 8", "@types/node@^22.9.0": + version "22.9.0" + resolved "https://registry.yarnpkg.com/@types/node/-/node-22.9.0.tgz#b7f16e5c3384788542c72dc3d561a7ceae2c0365" + integrity sha512-vuyHg81vvWA1Z1ELfvLko2c8f34gyA0zaic0+Rllc5lbCnbSyuvb2Oxpm6TAUAC/2xZN3QGqxBNggD1nNR2AfQ== + dependencies: + undici-types "~6.19.8" "@types/node@^14.0.1": version "14.14.37" @@ -1238,7 +1196,7 @@ "@types/node" "*" safe-buffer "*" -"@types/responselike@*", "@types/responselike@^1.0.0": +"@types/responselike@^1.0.0": version "1.0.0" resolved "https://registry.yarnpkg.com/@types/responselike/-/responselike-1.0.0.tgz#251f4fe7d154d2bad125abe1b429b23afd262e29" integrity sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA== @@ -1502,125 +1460,125 @@ "@typescript-eslint/types" "5.59.5" eslint-visitor-keys "^3.3.0" -"@webassemblyjs/ast@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.1.tgz#2bfd767eae1a6996f432ff7e8d7fc75679c0b6a7" - integrity sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw== +"@webassemblyjs/ast@1.14.1", "@webassemblyjs/ast@^1.12.1": + version "1.14.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.14.1.tgz#a9f6a07f2b03c95c8d38c4536a1fdfb521ff55b6" + integrity sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ== dependencies: - "@webassemblyjs/helper-numbers" "1.11.1" - "@webassemblyjs/helper-wasm-bytecode" "1.11.1" + "@webassemblyjs/helper-numbers" "1.13.2" + "@webassemblyjs/helper-wasm-bytecode" "1.13.2" -"@webassemblyjs/floating-point-hex-parser@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz#f6c61a705f0fd7a6aecaa4e8198f23d9dc179e4f" - integrity sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ== +"@webassemblyjs/floating-point-hex-parser@1.13.2": + version "1.13.2" + resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz#fcca1eeddb1cc4e7b6eed4fc7956d6813b21b9fb" + integrity sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA== -"@webassemblyjs/helper-api-error@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz#1a63192d8788e5c012800ba6a7a46c705288fd16" - integrity sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg== +"@webassemblyjs/helper-api-error@1.13.2": + version "1.13.2" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz#e0a16152248bc38daee76dd7e21f15c5ef3ab1e7" + integrity sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ== -"@webassemblyjs/helper-buffer@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz#832a900eb444884cde9a7cad467f81500f5e5ab5" - integrity sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA== +"@webassemblyjs/helper-buffer@1.14.1": + version "1.14.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz#822a9bc603166531f7d5df84e67b5bf99b72b96b" + integrity sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA== -"@webassemblyjs/helper-numbers@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz#64d81da219fbbba1e3bd1bfc74f6e8c4e10a62ae" - integrity sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ== +"@webassemblyjs/helper-numbers@1.13.2": + version "1.13.2" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz#dbd932548e7119f4b8a7877fd5a8d20e63490b2d" + integrity sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA== dependencies: - "@webassemblyjs/floating-point-hex-parser" "1.11.1" - "@webassemblyjs/helper-api-error" "1.11.1" + "@webassemblyjs/floating-point-hex-parser" "1.13.2" + "@webassemblyjs/helper-api-error" "1.13.2" "@xtuc/long" "4.2.2" -"@webassemblyjs/helper-wasm-bytecode@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz#f328241e41e7b199d0b20c18e88429c4433295e1" - integrity sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q== +"@webassemblyjs/helper-wasm-bytecode@1.13.2": + version "1.13.2" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz#e556108758f448aae84c850e593ce18a0eb31e0b" + integrity sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA== -"@webassemblyjs/helper-wasm-section@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz#21ee065a7b635f319e738f0dd73bfbda281c097a" - integrity sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg== +"@webassemblyjs/helper-wasm-section@1.14.1": + version "1.14.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz#9629dda9c4430eab54b591053d6dc6f3ba050348" + integrity sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw== dependencies: - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/helper-buffer" "1.11.1" - "@webassemblyjs/helper-wasm-bytecode" "1.11.1" - "@webassemblyjs/wasm-gen" "1.11.1" + "@webassemblyjs/ast" "1.14.1" + "@webassemblyjs/helper-buffer" "1.14.1" + "@webassemblyjs/helper-wasm-bytecode" "1.13.2" + "@webassemblyjs/wasm-gen" "1.14.1" -"@webassemblyjs/ieee754@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz#963929e9bbd05709e7e12243a099180812992614" - integrity sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ== +"@webassemblyjs/ieee754@1.13.2": + version "1.13.2" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz#1c5eaace1d606ada2c7fd7045ea9356c59ee0dba" + integrity sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw== dependencies: "@xtuc/ieee754" "^1.2.0" -"@webassemblyjs/leb128@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.11.1.tgz#ce814b45574e93d76bae1fb2644ab9cdd9527aa5" - integrity sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw== +"@webassemblyjs/leb128@1.13.2": + version "1.13.2" + resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.13.2.tgz#57c5c3deb0105d02ce25fa3fd74f4ebc9fd0bbb0" + integrity sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw== dependencies: "@xtuc/long" "4.2.2" -"@webassemblyjs/utf8@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.1.tgz#d1f8b764369e7c6e6bae350e854dec9a59f0a3ff" - integrity sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ== - -"@webassemblyjs/wasm-edit@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz#ad206ebf4bf95a058ce9880a8c092c5dec8193d6" - integrity sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA== - dependencies: - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/helper-buffer" "1.11.1" - "@webassemblyjs/helper-wasm-bytecode" "1.11.1" - "@webassemblyjs/helper-wasm-section" "1.11.1" - "@webassemblyjs/wasm-gen" "1.11.1" - "@webassemblyjs/wasm-opt" "1.11.1" - "@webassemblyjs/wasm-parser" "1.11.1" - "@webassemblyjs/wast-printer" "1.11.1" - -"@webassemblyjs/wasm-gen@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz#86c5ea304849759b7d88c47a32f4f039ae3c8f76" - integrity sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA== - dependencies: - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/helper-wasm-bytecode" "1.11.1" - "@webassemblyjs/ieee754" "1.11.1" - "@webassemblyjs/leb128" "1.11.1" - "@webassemblyjs/utf8" "1.11.1" - -"@webassemblyjs/wasm-opt@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz#657b4c2202f4cf3b345f8a4c6461c8c2418985f2" - integrity sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw== - dependencies: - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/helper-buffer" "1.11.1" - "@webassemblyjs/wasm-gen" "1.11.1" - "@webassemblyjs/wasm-parser" "1.11.1" - -"@webassemblyjs/wasm-parser@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz#86ca734534f417e9bd3c67c7a1c75d8be41fb199" - integrity sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA== - dependencies: - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/helper-api-error" "1.11.1" - "@webassemblyjs/helper-wasm-bytecode" "1.11.1" - "@webassemblyjs/ieee754" "1.11.1" - "@webassemblyjs/leb128" "1.11.1" - "@webassemblyjs/utf8" "1.11.1" - -"@webassemblyjs/wast-printer@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz#d0c73beda8eec5426f10ae8ef55cee5e7084c2f0" - integrity sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg== - dependencies: - "@webassemblyjs/ast" "1.11.1" +"@webassemblyjs/utf8@1.13.2": + version "1.13.2" + resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.13.2.tgz#917a20e93f71ad5602966c2d685ae0c6c21f60f1" + integrity sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ== + +"@webassemblyjs/wasm-edit@^1.12.1": + version "1.14.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz#ac6689f502219b59198ddec42dcd496b1004d597" + integrity sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ== + dependencies: + "@webassemblyjs/ast" "1.14.1" + "@webassemblyjs/helper-buffer" "1.14.1" + "@webassemblyjs/helper-wasm-bytecode" "1.13.2" + "@webassemblyjs/helper-wasm-section" "1.14.1" + "@webassemblyjs/wasm-gen" "1.14.1" + "@webassemblyjs/wasm-opt" "1.14.1" + "@webassemblyjs/wasm-parser" "1.14.1" + "@webassemblyjs/wast-printer" "1.14.1" + +"@webassemblyjs/wasm-gen@1.14.1": + version "1.14.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz#991e7f0c090cb0bb62bbac882076e3d219da9570" + integrity sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg== + dependencies: + "@webassemblyjs/ast" "1.14.1" + "@webassemblyjs/helper-wasm-bytecode" "1.13.2" + "@webassemblyjs/ieee754" "1.13.2" + "@webassemblyjs/leb128" "1.13.2" + "@webassemblyjs/utf8" "1.13.2" + +"@webassemblyjs/wasm-opt@1.14.1": + version "1.14.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz#e6f71ed7ccae46781c206017d3c14c50efa8106b" + integrity sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw== + dependencies: + "@webassemblyjs/ast" "1.14.1" + "@webassemblyjs/helper-buffer" "1.14.1" + "@webassemblyjs/wasm-gen" "1.14.1" + "@webassemblyjs/wasm-parser" "1.14.1" + +"@webassemblyjs/wasm-parser@1.14.1", "@webassemblyjs/wasm-parser@^1.12.1": + version "1.14.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz#b3e13f1893605ca78b52c68e54cf6a865f90b9fb" + integrity sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ== + dependencies: + "@webassemblyjs/ast" "1.14.1" + "@webassemblyjs/helper-api-error" "1.13.2" + "@webassemblyjs/helper-wasm-bytecode" "1.13.2" + "@webassemblyjs/ieee754" "1.13.2" + "@webassemblyjs/leb128" "1.13.2" + "@webassemblyjs/utf8" "1.13.2" + +"@webassemblyjs/wast-printer@1.14.1": + version "1.14.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz#3bb3e9638a8ae5fdaf9610e7a06b4d9f9aa6fe07" + integrity sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw== + dependencies: + "@webassemblyjs/ast" "1.14.1" "@xtuc/long" "4.2.2" "@webpack-cli/configtest@^1.1.0": @@ -1683,10 +1641,10 @@ acorn-globals@^7.0.0: acorn "^8.1.0" acorn-walk "^8.0.2" -acorn-import-assertions@^1.7.6: - version "1.8.0" - resolved "https://registry.yarnpkg.com/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz#ba2b5939ce62c238db6d93d81c9b111b29b855e9" - integrity sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw== +acorn-import-attributes@^1.9.5: + version "1.9.5" + resolved "https://registry.yarnpkg.com/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz#7eb1557b1ba05ef18b5ed0ec67591bfab04688ef" + integrity sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ== acorn-jsx-walk@^2.0.0: version "2.0.0" @@ -1708,10 +1666,10 @@ acorn@^7.4.0: resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.0.tgz#e1ad486e6c54501634c6c397c5c121daa383607c" integrity sha512-+G7P8jJmCHr+S+cLfQxygbWhXy+8YTVGzAkpEbcLo2mLoL7tij/VG41QSHACSf5QgYRhMZYHuNc6drJaO0Da+w== -acorn@^8.1.0, acorn@^8.5.0, acorn@^8.7.1, acorn@^8.8.0, acorn@^8.8.1, acorn@^8.8.2: - version "8.8.2" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a" - integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== +acorn@^8.1.0, acorn@^8.14.0, acorn@^8.7.1, acorn@^8.8.0, acorn@^8.8.1, acorn@^8.8.2: + version "8.14.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.14.0.tgz#063e2c70cac5fb4f6467f0b11152e04c682795b0" + integrity sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA== addons-linter@5.23.0: version "5.23.0" @@ -1861,10 +1819,10 @@ ajv@^8.0.0, ajv@^8.0.1, ajv@^8.12.0: require-from-string "^2.0.2" uri-js "^4.2.2" -angular@1.4.9: - version "1.4.9" - resolved "https://registry.yarnpkg.com/angular/-/angular-1.4.9.tgz#e60c91d69b94cf1349ce38a04fa8f92d6003d2ac" - integrity sha1-5gyR1puUzxNJzjigT6j5LWAD0qw= +angular@1.8.3: + version "1.8.3" + resolved "https://registry.yarnpkg.com/angular/-/angular-1.8.3.tgz#851ad75d5163c105a7e329555ef70c90aa706894" + integrity sha512-5qjkWIQQVsHj4Sb5TcEs4WZWpFeVFHXwxEBHUhrny41D8UrBAd6T/6nPPAsLngJCReIOqi95W3mxdveveutpZw== ansi-align@^3.0.0: version "3.0.0" @@ -2156,15 +2114,10 @@ astral-regex@^2.0.0: resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== -async@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/async/-/async-3.2.0.tgz#b3a2685c5ebb641d3de02d161002c60fc9f85720" - integrity sha512-TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw== - -async@^3.2.3: - version "3.2.3" - resolved "https://registry.yarnpkg.com/async/-/async-3.2.3.tgz#ac53dafd3f4720ee9e8a160628f18ea91df196c9" - integrity sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g== +async@^3.2.0, async@^3.2.3: + version "3.2.6" + resolved "https://registry.yarnpkg.com/async/-/async-3.2.6.tgz#1b0728e14929d51b85b449b7f06e27c1145e38ce" + integrity sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA== asynckit@^0.4.0: version "0.4.0" @@ -2351,21 +2304,21 @@ bn.js@^5.2.1: resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== -body-parser@1.20.1: - version "1.20.1" - resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.1.tgz#b1812a8912c195cd371a3ee5e66faa2338a5c668" - integrity sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw== +body-parser@1.20.3: + version "1.20.3" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.3.tgz#1953431221c6fb5cd63c4b36d53fab0928e548c6" + integrity sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g== dependencies: bytes "3.1.2" - content-type "~1.0.4" + content-type "~1.0.5" debug "2.6.9" depd "2.0.0" destroy "1.2.0" http-errors "2.0.0" iconv-lite "0.4.24" on-finished "2.4.1" - qs "6.11.0" - raw-body "2.5.1" + qs "6.13.0" + raw-body "2.5.2" type-is "~1.6.18" unpipe "1.0.0" @@ -2503,25 +2456,15 @@ browserify-sign@^4.0.0: readable-stream "^2.3.8" safe-buffer "^5.2.1" -browserslist@^4.14.5, browserslist@^4.21.5: - version "4.21.5" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.5.tgz#75c5dae60063ee641f977e00edd3cfb2fb7af6a7" - integrity sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w== - dependencies: - caniuse-lite "^1.0.30001449" - electron-to-chromium "^1.4.284" - node-releases "^2.0.8" - update-browserslist-db "^1.0.10" - -browserslist@^4.23.0: - version "4.23.0" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.0.tgz#8f3acc2bbe73af7213399430890f86c63a5674ab" - integrity sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ== +browserslist@^4.21.10, browserslist@^4.21.5, browserslist@^4.23.0, browserslist@^4.24.0: + version "4.24.2" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.24.2.tgz#f5845bc91069dbd55ee89faf9822e1d885d16580" + integrity sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg== dependencies: - caniuse-lite "^1.0.30001587" - electron-to-chromium "^1.4.668" - node-releases "^2.0.14" - update-browserslist-db "^1.0.13" + caniuse-lite "^1.0.30001669" + electron-to-chromium "^1.5.41" + node-releases "^2.0.18" + update-browserslist-db "^1.1.1" buffer-crc32@^0.2.1, buffer-crc32@^0.2.13, buffer-crc32@~0.2.3: version "0.2.13" @@ -2615,28 +2558,10 @@ cacache@^17.0.0: tar "^6.1.11" unique-filename "^3.0.0" -cacheable-lookup@^5.0.3: - version "5.0.4" - resolved "https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz#5a6b865b2c44357be3d5ebc2a467b032719a7005" - integrity sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA== - -cacheable-lookup@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz#3476a8215d046e5a3202a9209dd13fec1f933a27" - integrity sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w== - -cacheable-request@^10.2.1: - version "10.2.1" - resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-10.2.1.tgz#cbc7480bf057fb7bd5bc7520f7e5a43d9c865626" - integrity sha512-3tLJyBjGuXw1s5gpKFSG3iS4kaKT4id04dZi98wzHQp/8cqZNweBnrF9J+rrlvrf4M53OdtDGNctNHFias8BEA== - dependencies: - "@types/http-cache-semantics" "^4.0.1" - get-stream "^6.0.1" - http-cache-semantics "^4.1.0" - keyv "^4.5.0" - mimic-response "^4.0.0" - normalize-url "^7.1.0" - responselike "^3.0.0" +cacheable-lookup@^6.0.4: + version "6.1.0" + resolved "https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-6.1.0.tgz#0330a543471c61faa4e9035db583aad753b36385" + integrity sha512-KJ/Dmo1lDDhmW2XDPMo+9oiy/CeqosPguPCrgcVzKyZrL6pM1gU2GmPY/xo6OQPTUaA/c0kwHuywB4E6nmT9ww== cacheable-request@^6.0.0: version "6.1.0" @@ -2682,6 +2607,17 @@ call-bind@^1.0.0, call-bind@^1.0.2: function-bind "^1.1.1" get-intrinsic "^1.0.2" +call-bind@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9" + integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== + dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + set-function-length "^1.2.1" + call-me-maybe@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/call-me-maybe/-/call-me-maybe-1.0.1.tgz#26d208ea89e37b5cbde60250a15f031c16a4d66b" @@ -2712,10 +2648,10 @@ camelcase@^6.0.0, camelcase@^6.2.0: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== -caniuse-lite@^1.0.30001449, caniuse-lite@^1.0.30001587: - version "1.0.30001653" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001653.tgz#b8af452f8f33b1c77f122780a4aecebea0caca56" - integrity sha512-XGWQVB8wFQ2+9NZwZ10GxTYC5hk0Fa+q8cSkr0tgvMhYhMHP/QC+WTgrePMDBWiWc/pV+1ik82Al20XOK25Gcw== +caniuse-lite@^1.0.30001669: + version "1.0.30001680" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001680.tgz#5380ede637a33b9f9f1fc6045ea99bd142f3da5e" + integrity sha512-rPQy70G6AGUMnbwS1z6Xg+RkHYPAi18ihs47GH0jcxIG7wArmPgY3XbS2sRdBbxJljp3thdT8BIqv9ccCypiPA== canvas@^2.11.2: version "2.11.2" @@ -3262,7 +3198,7 @@ content-disposition@0.5.4: dependencies: safe-buffer "5.2.1" -content-type@^1.0.5, content-type@~1.0.4: +content-type@^1.0.5, content-type@~1.0.4, content-type@~1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918" integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== @@ -3284,10 +3220,10 @@ cookie-signature@1.0.6: resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw= -cookie@0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" - integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== +cookie@0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.6.0.tgz#2798b04b071b0ecbff0dbb62a505a8efa4e19051" + integrity sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw== copyfiles@^2.4.1: version "2.4.1" @@ -3693,11 +3629,20 @@ defer-to-connect@^1.0.1: resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-1.0.2.tgz#4bae758a314b034ae33902b5aac25a8dd6a8633e" integrity sha512-k09hcQcTDY+cwgiwa6PYKLm3jlagNzQ+RSvhjzESOGOx+MNOuXkxTfEvPrO1IOQ81tArCFYQgi631clB70RpQw== -defer-to-connect@^2.0.0, defer-to-connect@^2.0.1: +defer-to-connect@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz#8016bdb4143e4632b77a3449c6236277de520587" integrity sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg== +define-data-property@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" + integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== + dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + gopd "^1.0.1" + define-lazy-prop@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" @@ -3971,22 +3916,17 @@ ee-first@1.1.1: resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= -ejs@^3.1.9: - version "3.1.9" - resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.9.tgz#03c9e8777fe12686a9effcef22303ca3d8eeb361" - integrity sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ== +ejs@^3.1.10: + version "3.1.10" + resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.10.tgz#69ab8358b14e896f80cc39e62087b88500c3ac3b" + integrity sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA== dependencies: jake "^10.8.5" -electron-to-chromium@^1.4.284: - version "1.4.342" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.342.tgz#3c7e199c3aa89c993df4b6f5223d6d26988f58e6" - integrity sha512-dTei3VResi5bINDENswBxhL+N0Mw5YnfWyTqO75KGsVldurEkhC9+CelJVAse8jycWyP8pv3VSj4BSyP8wTWJA== - -electron-to-chromium@^1.4.668: - version "1.4.750" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.750.tgz#d278a619af727ed069de1317115187282b1131ee" - integrity sha512-9ItEpeu15hW5m8jKdriL+BQrgwDTXEL9pn4SkillWFu73ZNNNQ2BKKLS+ZHv2vC9UkNhosAeyfxOf/5OSeTCPA== +electron-to-chromium@^1.5.41: + version "1.5.56" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.56.tgz#3213f369efc3a41091c3b2c05bc0f406108ac1df" + integrity sha512-7lXb9dAvimCFdvUMTyucD4mnIndt/xhRKFAlky0CyFogdnNmdPQNoHI23msF/2V4mpTxMzgMdjK4+YRlFlRQZw== elegant-spinner@^1.0.1: version "1.0.1" @@ -3994,9 +3934,9 @@ elegant-spinner@^1.0.1: integrity sha1-2wQ1IcldfjA/2PNFvtwzSc+wcp4= elliptic@^6.5.3, elliptic@^6.5.5: - version "6.5.7" - resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.7.tgz#8ec4da2cb2939926a1b9a73619d768207e647c8b" - integrity sha512-ESVCtTwiA+XhY3wyh24QqRGBoP3rEdDUl3EDUUo9tft074fi19IrdpH7hLCMMP3CIj7jb3W96rn8lt/BqIlt5Q== + version "6.6.0" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.6.0.tgz#5919ec723286c1edf28685aa89261d4761afa210" + integrity sha512-dpwoQcLc/2WLQvJvLRHKZ+f9FgOdjnq11rurqwekGQygGPsYSK29OMMD2WalatiqQ+XGFDglTNixpPfI+lpaAA== dependencies: bn.js "^4.11.9" brorand "^1.1.0" @@ -4031,6 +3971,11 @@ encodeurl@~1.0.2: resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= +encodeurl@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-2.0.0.tgz#7b8ea898077d7e409d3ac45474ea38eaf0857a58" + integrity sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg== + encoding@^0.1.13: version "0.1.13" resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9" @@ -4052,10 +3997,10 @@ end-of-stream@^1.4.1, end-of-stream@~1.4.1: dependencies: once "^1.4.0" -enhanced-resolve@^5.0.0, enhanced-resolve@^5.10.0: - version "5.12.0" - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz#300e1c90228f5b570c4d35babf263f6da7155634" - integrity sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ== +enhanced-resolve@^5.0.0, enhanced-resolve@^5.17.1: + version "5.17.1" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz#67bfbbcc2f81d511be77d686a90267ef7f898a15" + integrity sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg== dependencies: graceful-fs "^4.2.4" tapable "^2.2.0" @@ -4236,10 +4181,22 @@ es-abstract@^1.4.3: string.prototype.trimleft "^2.1.1" string.prototype.trimright "^2.1.1" -es-module-lexer@^0.9.0: - version "0.9.2" - resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-0.9.2.tgz#d0a8c72c5d904014111fac7fab4c92b9ac545564" - integrity sha512-YkAGWqxZq2B4FxQ5y687UwywDwvLQhIMCZ+SDU7ZW729SDHOEI6wVFXwTRecz+yiwJzCsVwC6V7bxyNbZSB1rg== +es-define-property@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845" + integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== + dependencies: + get-intrinsic "^1.2.4" + +es-errors@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" + integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== + +es-module-lexer@^1.2.1: + version "1.5.4" + resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.5.4.tgz#a8efec3a3da991e60efa6b633a7cad6ab8d26b78" + integrity sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw== es-set-tostringtag@^2.0.1: version "2.0.1" @@ -4323,6 +4280,11 @@ escalade@^3.1.1: resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== +escalade@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5" + integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== + escape-goat@^2.0.0: version "2.1.1" resolved "https://registry.yarnpkg.com/escape-goat/-/escape-goat-2.1.1.tgz#1b2dc77003676c457ec760b2dc68edb648188675" @@ -4740,37 +4702,37 @@ expand-template@^2.0.3: resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c" integrity sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg== -express@^4.18.2: - version "4.18.2" - resolved "https://registry.yarnpkg.com/express/-/express-4.18.2.tgz#3fabe08296e930c796c19e3c516979386ba9fd59" - integrity sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ== +express@^4.20.0: + version "4.20.0" + resolved "https://registry.yarnpkg.com/express/-/express-4.20.0.tgz#f1d08e591fcec770c07be4767af8eb9bcfd67c48" + integrity sha512-pLdae7I6QqShF5PnNTCVn4hI91Dx0Grkn2+IAsMTgMIKuQVte2dN9PeGSSAME2FR8anOhVA62QDIUaWVfEXVLw== dependencies: accepts "~1.3.8" array-flatten "1.1.1" - body-parser "1.20.1" + body-parser "1.20.3" content-disposition "0.5.4" content-type "~1.0.4" - cookie "0.5.0" + cookie "0.6.0" cookie-signature "1.0.6" debug "2.6.9" depd "2.0.0" - encodeurl "~1.0.2" + encodeurl "~2.0.0" escape-html "~1.0.3" etag "~1.8.1" finalhandler "1.2.0" fresh "0.5.2" http-errors "2.0.0" - merge-descriptors "1.0.1" + merge-descriptors "1.0.3" methods "~1.1.2" on-finished "2.4.1" parseurl "~1.3.3" - path-to-regexp "0.1.7" + path-to-regexp "0.1.10" proxy-addr "~2.0.7" qs "6.11.0" range-parser "~1.2.1" safe-buffer "5.2.1" - send "0.18.0" - serve-static "1.15.0" + send "0.19.0" + serve-static "1.16.0" setprototypeof "1.2.0" statuses "2.0.1" type-is "~1.6.18" @@ -5126,10 +5088,10 @@ fork-ts-checker-webpack-plugin@^7.2.13: semver "^7.3.5" tapable "^2.2.1" -form-data-encoder@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/form-data-encoder/-/form-data-encoder-2.1.2.tgz#5996b7c236e8c418d08316055a2235226c5e4061" - integrity sha512-FCaIOVTRA9E0siY6FeXid7D5yrCqpsErplUkE2a1BEiKj1BE9z6FbKB4ntDTwC4NVLie9p+4E9nX4mWwEOT05A== +form-data-encoder@^2.0.1: + version "2.1.4" + resolved "https://registry.yarnpkg.com/form-data-encoder/-/form-data-encoder-2.1.4.tgz#261ea35d2a70d48d30ec7a9603130fa5515e9cd5" + integrity sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw== form-data@^3.0.0: version "3.0.1" @@ -5255,6 +5217,11 @@ function-bind@^1.0.2, function-bind@^1.1.1: resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== +function-bind@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== + function.prototype.name@^1.1.5: version "1.1.5" resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" @@ -5329,6 +5296,17 @@ get-intrinsic@^1.1.3, get-intrinsic@^1.2.0: has "^1.0.3" has-symbols "^1.0.3" +get-intrinsic@^1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd" + integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== + dependencies: + es-errors "^1.3.0" + function-bind "^1.1.2" + has-proto "^1.0.1" + has-symbols "^1.0.3" + hasown "^2.0.0" + get-package-type@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" @@ -5353,12 +5331,7 @@ get-stream@^5.0.0, get-stream@^5.1.0: dependencies: pump "^3.0.0" -get-stream@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.0.tgz#3e0012cb6827319da2706e601a1583e8629a6718" - integrity sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg== - -get-stream@^6.0.1: +get-stream@^6.0.0, get-stream@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== @@ -5542,39 +5515,24 @@ gopd@^1.0.1: dependencies: get-intrinsic "^1.1.3" -got@^11.8.5: - version "11.8.5" - resolved "https://registry.yarnpkg.com/got/-/got-11.8.5.tgz#ce77d045136de56e8f024bebb82ea349bc730046" - integrity sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ== - dependencies: - "@sindresorhus/is" "^4.0.0" - "@szmarczak/http-timer" "^4.0.5" - "@types/cacheable-request" "^6.0.1" - "@types/responselike" "^1.0.0" - cacheable-lookup "^5.0.3" - cacheable-request "^7.0.2" - decompress-response "^6.0.0" - http2-wrapper "^1.0.0-beta.5.2" - lowercase-keys "^2.0.0" - p-cancelable "^2.0.0" - responselike "^2.0.0" - -got@^12.1.0: - version "12.5.1" - resolved "https://registry.yarnpkg.com/got/-/got-12.5.1.tgz#0796191c61478273f4cdbeb19d358a75a54a008d" - integrity sha512-sD16AK8cCyUoPtKr/NMvLTFFa+T3i3S+zoiuvhq0HP2YiqBZA9AtlBjAdsQBsLBK7slPuvmfE0OxhGi7N5dD4w== +got@^12.1.0, got@^12.2.0: + version "12.2.0" + resolved "https://registry.yarnpkg.com/got/-/got-12.2.0.tgz#0b5de8cd48d0a16cd44789fd5fdd071ba3ee1de5" + integrity sha512-A81ll5Z8wzeCmSdIlWVMDWFKDo82v2nmOaMZDQNHKGInNqDBcle+CSb6BBiZcn/Aiefz/kSpo520WBKi9QAO/A== dependencies: "@sindresorhus/is" "^5.2.0" "@szmarczak/http-timer" "^5.0.1" - cacheable-lookup "^7.0.0" - cacheable-request "^10.2.1" + "@types/cacheable-request" "^6.0.2" + "@types/responselike" "^1.0.0" + cacheable-lookup "^6.0.4" + cacheable-request "^7.0.2" decompress-response "^6.0.0" - form-data-encoder "^2.1.2" + form-data-encoder "^2.0.1" get-stream "^6.0.1" http2-wrapper "^2.1.10" lowercase-keys "^3.0.0" p-cancelable "^3.0.0" - responselike "^3.0.0" + responselike "^2.0.0" got@^9.6.0: version "9.6.0" @@ -5593,11 +5551,16 @@ got@^9.6.0: to-readable-stream "^1.0.0" url-parse-lax "^3.0.0" -graceful-fs@4.2.10, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.2, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9: +graceful-fs@4.2.10: version "4.2.10" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== +graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.11, graceful-fs@^4.2.2, graceful-fs@^4.2.4, graceful-fs@^4.2.6: + version "4.2.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== + "graceful-readlink@>= 1.0.0": version "1.0.1" resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" @@ -5677,6 +5640,13 @@ has-property-descriptors@^1.0.0: dependencies: get-intrinsic "^1.1.1" +has-property-descriptors@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854" + integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== + dependencies: + es-define-property "^1.0.0" + has-proto@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" @@ -5759,6 +5729,13 @@ hasha@^5.0.0: is-stream "^2.0.0" type-fest "^0.8.0" +hasown@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" + integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== + dependencies: + function-bind "^1.1.2" + hast-util-parse-selector@^2.0.0: version "2.2.5" resolved "https://registry.yarnpkg.com/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz#d57c23f4da16ae3c63b3b6ca4616683313499c3a" @@ -5840,7 +5817,7 @@ htmlparser2@^8.0.1: domutils "^3.0.1" entities "^4.3.0" -http-cache-semantics@^4.0.0, http-cache-semantics@^4.1.0, http-cache-semantics@^4.1.1: +http-cache-semantics@^4.0.0, http-cache-semantics@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz#abe02fcb2985460bf0323be664436ec3476a6d5a" integrity sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ== @@ -5874,14 +5851,6 @@ http-signature@~1.2.0: jsprim "^1.2.2" sshpk "^1.7.0" -http2-wrapper@^1.0.0-beta.5.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-1.0.3.tgz#b8f55e0c1f25d4ebd08b3b0c2c079f9590800b3d" - integrity sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg== - dependencies: - quick-lru "^5.1.1" - resolve-alpn "^1.0.0" - http2-wrapper@^2.1.10: version "2.1.11" resolved "https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-2.1.11.tgz#d7c980c7ffb85be3859b6a96c800b2951ae257ef" @@ -6758,10 +6727,10 @@ jose@4.11.1: resolved "https://registry.yarnpkg.com/jose/-/jose-4.11.1.tgz#8f7443549befe5bddcf4bae664a9cbc1a62da4fa" integrity sha512-YRv4Tk/Wlug8qicwqFNFVEZSdbROCHRAC6qu/i0dyNKr5JQdoa2pIGoS04lLO/jXQX7Z9omoNewYIVIxqZBd9Q== -jquery@2.1.4: - version "2.1.4" - resolved "https://registry.yarnpkg.com/jquery/-/jquery-2.1.4.tgz#228bde698a0c61431dc2630a6a154f15890d2317" - integrity sha1-IoveaYoMYUMdwmMKahVPFYkNIxc= +jquery@3.5.0: + version "3.5.0" + resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.5.0.tgz#9980b97d9e4194611c36530e7dc46a58d7340fc9" + integrity sha512-Xb7SVYMvygPxbFMpTFQiHh1J7HClEaThguL15N/Gg37Lri/qKyhRGZYzHRyLH8Stq3Aow0LsHO2O2ci86fCrNQ== js-library-detector@^6.6.0: version "6.6.0" @@ -7021,13 +6990,6 @@ keyv@^4.0.0: dependencies: json-buffer "3.0.1" -keyv@^4.5.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.0.tgz#dbce9ade79610b6e641a9a65f2f6499ba06b9bc6" - integrity sha512-2YvuMsA+jnFGtBareKqgANOEKe1mk3HKiXu2fRmAfyxG0MJAywNhi5ttWA3PMjl4NmpyjZNbFifR2vNjW1znfA== - dependencies: - json-buffer "3.0.1" - kind-of@^6.0.2: version "6.0.3" resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" @@ -7622,10 +7584,10 @@ memorystream@^0.3.1: resolved "https://registry.yarnpkg.com/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" integrity sha1-htcJCzDORV1j+64S3aUaR93K+bI= -merge-descriptors@1.0.1, merge-descriptors@~1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" - integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= +merge-descriptors@1.0.3, merge-descriptors@~1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.3.tgz#d80319a65f3c7935351e5cfdac8f9318504dbed5" + integrity sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ== merge-stream@^2.0.0: version "2.0.0" @@ -7723,11 +7685,6 @@ mimic-response@^3.1.0: resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== -mimic-response@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-4.0.0.tgz#35468b19e7c75d10f5165ea25e75a5ceea7cf70f" - integrity sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg== - mini-svg-data-uri@^1.4.4: version "1.4.4" resolved "https://registry.yarnpkg.com/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz#8ab0aabcdf8c29ad5693ca595af19dd2ead09939" @@ -7938,10 +7895,10 @@ nan@^2.10.0, nan@^2.17.0: resolved "https://registry.yarnpkg.com/nan/-/nan-2.17.0.tgz#c0150a2368a182f033e9aa5195ec76ea41a199cb" integrity sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ== -nanoid@^3.3.4, nanoid@^3.3.6: - version "3.3.6" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c" - integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== +nanoid@^3.3.4, nanoid@^3.3.7: + version "3.3.7" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" + integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== napi-build-utils@^1.0.1: version "1.0.2" @@ -8042,15 +7999,10 @@ node-preload@^0.2.1: dependencies: process-on-spawn "^1.0.0" -node-releases@^2.0.14: - version "2.0.14" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.14.tgz#2ffb053bceb8b2be8495ece1ab6ce600c4461b0b" - integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw== - -node-releases@^2.0.8: - version "2.0.10" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.10.tgz#c311ebae3b6a148c89b1813fd7c4d3c024ef537f" - integrity sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w== +node-releases@^2.0.18: + version "2.0.18" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.18.tgz#f010e8d35e2fe8d6b2944f03f70213ecedc4ca3f" + integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g== nofilter@^3.1.0: version "3.1.0" @@ -8097,11 +8049,6 @@ normalize-url@^6.0.1: resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a" integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A== -normalize-url@^7.1.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-7.2.0.tgz#5317f78cff95f5fa1e76cc0b5e33245c43781e11" - integrity sha512-uhXOdZry0L6M2UIo9BTt7FdpBDiAGN/7oItedQwPKh8jh31ZlvC8U9Xl/EJ3aijDHaywXTW3QbZ6LuCocur1YA== - npm-package-arg@^10.0.0: version "10.1.0" resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-10.1.0.tgz#827d1260a683806685d17193073cc152d3c7e9b1" @@ -8234,6 +8181,11 @@ object-inspect@^1.12.3: resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== +object-inspect@^1.13.1: + version "1.13.3" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.3.tgz#f14c183de51130243d6d18ae149375ff50ea488a" + integrity sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA== + object-inspect@^1.7.0: version "1.7.0" resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67" @@ -8428,11 +8380,6 @@ p-cancelable@^1.0.0: resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-1.1.0.tgz#d078d15a3af409220c886f1d9a0ca2e441ab26cc" integrity sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw== -p-cancelable@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.1.1.tgz#aab7fbd416582fa32a3db49859c122487c5ed2cf" - integrity sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg== - p-cancelable@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-3.0.0.tgz#63826694b54d61ca1c20ebcb6d3ecf5e14cd8050" @@ -8730,10 +8677,10 @@ path-scurry@^1.7.0: lru-cache "^9.0.0" minipass "^5.0.0" -path-to-regexp@0.1.7: - version "0.1.7" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" - integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= +path-to-regexp@0.1.10: + version "0.1.10" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.10.tgz#67e9108c5c0551b9e5326064387de4763c4d5f8b" + integrity sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w== path-to-regexp@^1.7.0: version "1.7.0" @@ -8791,10 +8738,10 @@ performance-now@^2.1.0: resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= -picocolors@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" - integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== +picocolors@^1.0.0, picocolors@^1.1.0, picocolors@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b" + integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: version "2.3.1" @@ -8994,12 +8941,21 @@ postcss@^6.0.1: source-map "^0.6.1" supports-color "^5.4.0" -postcss@^8.2.14, postcss@^8.4.19, postcss@^8.4.23: - version "8.4.23" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.23.tgz#df0aee9ac7c5e53e1075c24a3613496f9e6552ab" - integrity sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA== +postcss@^8.2.14, postcss@^8.4.19: + version "8.4.49" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.49.tgz#4ea479048ab059ab3ae61d082190fabfd994fe19" + integrity sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA== dependencies: - nanoid "^3.3.6" + nanoid "^3.3.7" + picocolors "^1.1.1" + source-map-js "^1.2.1" + +postcss@^8.4.33: + version "8.4.33" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.33.tgz#1378e859c9f69bf6f638b990a0212f43e2aaa742" + integrity sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg== + dependencies: + nanoid "^3.3.7" picocolors "^1.0.0" source-map-js "^1.0.2" @@ -9240,13 +9196,20 @@ q@^1.5.1: resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" integrity sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw== -qs@6.11.0, qs@^6.9.1: +qs@6.11.0: version "6.11.0" resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a" integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== dependencies: side-channel "^1.0.4" +qs@6.13.0, qs@^6.9.1: + version "6.13.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.13.0.tgz#6ca3bd58439f7e245655798997787b0d88a51906" + integrity sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg== + dependencies: + side-channel "^1.0.6" + qs@~6.5.2: version "6.5.3" resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.3.tgz#3aeeffc91967ef6e35c0e488ef46fb296ab76aad" @@ -9294,10 +9257,10 @@ range-parser@~1.2.1: resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== -raw-body@2.5.1: - version "2.5.1" - resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.1.tgz#fe1b1628b181b700215e5fd42389f98b71392857" - integrity sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig== +raw-body@2.5.2: + version "2.5.2" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.2.tgz#99febd83b90e08975087e8f1f9419a149366b68a" + integrity sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA== dependencies: bytes "3.1.2" http-errors "2.0.0" @@ -9601,11 +9564,6 @@ requires-port@^1.0.0: resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== -resolve-alpn@^1.0.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.1.2.tgz#30b60cfbb0c0b8dc897940fe13fe255afcdd4d28" - integrity sha512-8OyfzhAtA32LVUsJSke3auIyINcwdh5l3cvYKdKO0nvsYSKuiLfTM5i78PJswFPT8y6cPW+L1v6/hE95chcpDA== - resolve-alpn@^1.2.0: version "1.2.1" resolved "https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz#b7adbdac3546aaaec20b45e7d8265927072726f9" @@ -9651,13 +9609,6 @@ responselike@^2.0.0: dependencies: lowercase-keys "^2.0.0" -responselike@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/responselike/-/responselike-3.0.0.tgz#20decb6c298aff0dbee1c355ca95461d42823626" - integrity sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg== - dependencies: - lowercase-keys "^3.0.0" - restore-cursor@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" @@ -9825,10 +9776,10 @@ scheduler@^0.23.0: dependencies: loose-envify "^1.1.0" -schema-utils@^3.1.0, schema-utils@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.1.1.tgz#bc74c4b6b6995c1d88f76a8b77bea7219e0c8281" - integrity sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw== +schema-utils@^3.1.1, schema-utils@^3.2.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.3.0.tgz#f50a88877c3c01652a15b622ae9e9795df7a60fe" + integrity sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg== dependencies: "@types/json-schema" "^7.0.8" ajv "^6.12.5" @@ -9889,6 +9840,25 @@ send@0.18.0: range-parser "~1.2.1" statuses "2.0.1" +send@0.19.0: + version "0.19.0" + resolved "https://registry.yarnpkg.com/send/-/send-0.19.0.tgz#bbc5a388c8ea6c048967049dbeac0e4a3f09d7f8" + integrity sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw== + dependencies: + debug "2.6.9" + depd "2.0.0" + destroy "1.2.0" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + fresh "0.5.2" + http-errors "2.0.0" + mime "1.6.0" + ms "2.1.3" + on-finished "2.4.1" + range-parser "~1.2.1" + statuses "2.0.1" + serialize-error@^7.0.1: version "7.0.1" resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-7.0.1.tgz#f1360b0447f61ffb483ec4157c737fab7d778e18" @@ -9896,17 +9866,17 @@ serialize-error@^7.0.1: dependencies: type-fest "^0.13.1" -serialize-javascript@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8" - integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag== +serialize-javascript@^6.0.1: + version "6.0.2" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.2.tgz#defa1e055c83bf6d59ea805d8da862254eb6a6c2" + integrity sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g== dependencies: randombytes "^2.1.0" -serve-static@1.15.0: - version "1.15.0" - resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540" - integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== +serve-static@1.16.0: + version "1.16.0" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.16.0.tgz#2bf4ed49f8af311b519c46f272bf6ac3baf38a92" + integrity sha512-pDLK8zwl2eKaYrs8mrPZBJua4hMplRWJ1tIFksVC3FtBEBnl8dxgeHtsaMS8DhS9i4fLObaon6ABoc4/hQGdPA== dependencies: encodeurl "~1.0.2" escape-html "~1.0.3" @@ -9918,6 +9888,18 @@ set-blocking@^2.0.0, set-blocking@~2.0.0: resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= +set-function-length@^1.2.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" + integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== + dependencies: + define-data-property "^1.1.4" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + gopd "^1.0.1" + has-property-descriptors "^1.0.2" + setimmediate@^1.0.5, setimmediate@~1.0.4: version "1.0.5" resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" @@ -9995,6 +9977,16 @@ side-channel@^1.0.4: get-intrinsic "^1.0.2" object-inspect "^1.9.0" +side-channel@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2" + integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA== + dependencies: + call-bind "^1.0.7" + es-errors "^1.3.0" + get-intrinsic "^1.2.4" + object-inspect "^1.13.1" + sign-addon@5.1.0: version "5.1.0" resolved "https://registry.yarnpkg.com/sign-addon/-/sign-addon-5.1.0.tgz#d86b685a1d9f796913163dd4438b7ece8e210eb3" @@ -10129,10 +10121,10 @@ sonic-boom@^3.1.0: dependencies: atomic-sleep "^1.0.0" -source-map-js@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" - integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== +source-map-js@^1.0.2, source-map-js@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46" + integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA== source-map-support@0.5.21, source-map-support@~0.5.20: version "0.5.21" @@ -10679,13 +10671,13 @@ tar-stream@^2.1.4: readable-stream "^3.1.1" tar@^6.1.0, tar@^6.1.11: - version "6.1.11" - resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.11.tgz#6760a38f003afa1b2ffd0ffe9e9abbd0eab3d621" - integrity sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA== + version "6.2.1" + resolved "https://registry.yarnpkg.com/tar/-/tar-6.2.1.tgz#717549c541bc3c2af15751bea94b1dd068d4b03a" + integrity sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A== dependencies: chownr "^2.0.0" fs-minipass "^2.0.0" - minipass "^3.0.0" + minipass "^5.0.0" minizlib "^2.1.1" mkdirp "^1.0.3" yallist "^4.0.0" @@ -10700,24 +10692,24 @@ term-size@^2.1.0: resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.1.0.tgz#3aec444c07a7cf936e157c1dc224b590c3c7eef2" integrity sha512-I42EWhJ+2aeNQawGx1VtpO0DFI9YcfuvAMNIdKyf/6sRbHJ4P+ZQ/zIT87tE+ln1ymAGcCJds4dolfSAS0AcNg== -terser-webpack-plugin@^5.1.3, terser-webpack-plugin@^5.3.6: - version "5.3.6" - resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz#5590aec31aa3c6f771ce1b1acca60639eab3195c" - integrity sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ== +terser-webpack-plugin@^5.3.10, terser-webpack-plugin@^5.3.6: + version "5.3.10" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz#904f4c9193c6fd2a03f693a2150c62a92f40d199" + integrity sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w== dependencies: - "@jridgewell/trace-mapping" "^0.3.14" + "@jridgewell/trace-mapping" "^0.3.20" jest-worker "^27.4.5" schema-utils "^3.1.1" - serialize-javascript "^6.0.0" - terser "^5.14.1" + serialize-javascript "^6.0.1" + terser "^5.26.0" -terser@^5.14.1: - version "5.15.0" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.15.0.tgz#e16967894eeba6e1091509ec83f0c60e179f2425" - integrity sha512-L1BJiXVmheAQQy+as0oF3Pwtlo4s3Wi1X2zNZ2NxOB4wx9bdS9Vk67XQENLFdLYGCK/Z2di53mTj/hBafR+dTA== +terser@^5.26.0: + version "5.36.0" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.36.0.tgz#8b0dbed459ac40ff7b4c9fd5a3a2029de105180e" + integrity sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w== dependencies: - "@jridgewell/source-map" "^0.3.2" - acorn "^8.5.0" + "@jridgewell/source-map" "^0.3.3" + acorn "^8.8.2" commander "^2.20.0" source-map-support "~0.5.20" @@ -11100,6 +11092,11 @@ underscore@^1.12.1: resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.13.1.tgz#0c1c6bd2df54b6b69f2314066d65b6cde6fcf9d1" integrity sha512-hzSoAVtJF+3ZtiFX0VgfFPHEDRm7Y/QPjGyNo4TVdnDTdft3tr8hEkD25a1jC+TjTuE7tkHGKkhwCgs9dgBB2g== +undici-types@~6.19.8: + version "6.19.8" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.19.8.tgz#35111c9d1437ab83a7cdc0abae2f26d88eda0a02" + integrity sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw== + unique-filename@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-3.0.0.tgz#48ba7a5a16849f5080d26c760c86cf5cf05770ea" @@ -11198,21 +11195,13 @@ upath@2.0.1: resolved "https://registry.yarnpkg.com/upath/-/upath-2.0.1.tgz#50c73dea68d6f6b990f51d279ce6081665d61a8b" integrity sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w== -update-browserslist-db@^1.0.10: - version "1.0.10" - resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3" - integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ== - dependencies: - escalade "^3.1.1" - picocolors "^1.0.0" - -update-browserslist-db@^1.0.13: - version "1.0.13" - resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz#3c5e4f5c083661bd38ef64b6328c26ed6c8248c4" - integrity sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg== +update-browserslist-db@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz#80846fba1d79e82547fb661f8d141e0945755fe5" + integrity sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A== dependencies: - escalade "^3.1.1" - picocolors "^1.0.0" + escalade "^3.2.0" + picocolors "^1.1.0" update-notifier@6.0.2: version "6.0.2" @@ -11441,7 +11430,7 @@ w3c-xmlserializer@^4.0.0: dependencies: xml-name-validator "^4.0.0" -watchpack@2.4.0, watchpack@^2.4.0: +watchpack@2.4.0: version "2.4.0" resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.0.tgz#fa33032374962c78113f93c7f2fb4c54c9862a5d" integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg== @@ -11449,6 +11438,14 @@ watchpack@2.4.0, watchpack@^2.4.0: glob-to-regexp "^0.4.1" graceful-fs "^4.1.2" +watchpack@^2.4.1: + version "2.4.2" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.2.tgz#2feeaed67412e7c33184e5a79ca738fbd38564da" + integrity sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw== + dependencies: + glob-to-regexp "^0.4.1" + graceful-fs "^4.1.2" + wcwidth@^1.0.0, wcwidth@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" @@ -11536,63 +11533,61 @@ webpack-sources@^3.2.3: integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== webpack@^5: - version "5.76.1" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.76.1.tgz#7773de017e988bccb0f13c7d75ec245f377d295c" - integrity sha512-4+YIK4Abzv8172/SGqObnUjaIHjLEuUasz9EwQj/9xmPPkYJy2Mh03Q/lJfSD3YLzbxy5FeTq5Uw0323Oh6SJQ== - dependencies: - "@types/eslint-scope" "^3.7.3" - "@types/estree" "^0.0.51" - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/wasm-edit" "1.11.1" - "@webassemblyjs/wasm-parser" "1.11.1" - acorn "^8.7.1" - acorn-import-assertions "^1.7.6" - browserslist "^4.14.5" + version "5.96.1" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.96.1.tgz#3676d1626d8312b6b10d0c18cc049fba7ac01f0c" + integrity sha512-l2LlBSvVZGhL4ZrPwyr8+37AunkcYj5qh8o6u2/2rzoPc8gxFJkLj1WxNgooi9pnoc06jh0BjuXnamM4qlujZA== + dependencies: + "@types/eslint-scope" "^3.7.7" + "@types/estree" "^1.0.6" + "@webassemblyjs/ast" "^1.12.1" + "@webassemblyjs/wasm-edit" "^1.12.1" + "@webassemblyjs/wasm-parser" "^1.12.1" + acorn "^8.14.0" + browserslist "^4.24.0" chrome-trace-event "^1.0.2" - enhanced-resolve "^5.10.0" - es-module-lexer "^0.9.0" + enhanced-resolve "^5.17.1" + es-module-lexer "^1.2.1" eslint-scope "5.1.1" events "^3.2.0" glob-to-regexp "^0.4.1" - graceful-fs "^4.2.9" + graceful-fs "^4.2.11" json-parse-even-better-errors "^2.3.1" loader-runner "^4.2.0" mime-types "^2.1.27" neo-async "^2.6.2" - schema-utils "^3.1.0" + schema-utils "^3.2.0" tapable "^2.1.1" - terser-webpack-plugin "^5.1.3" - watchpack "^2.4.0" + terser-webpack-plugin "^5.3.10" + watchpack "^2.4.1" webpack-sources "^3.2.3" -webpack@^5.76.0: - version "5.76.0" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.76.0.tgz#f9fb9fb8c4a7dbdcd0d56a98e56b8a942ee2692c" - integrity sha512-l5sOdYBDunyf72HW8dF23rFtWq/7Zgvt/9ftMof71E/yUb1YLOBmTgA2K4vQthB3kotMrSj609txVE0dnr2fjA== +webpack@^5.94.0: + version "5.94.0" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.94.0.tgz#77a6089c716e7ab90c1c67574a28da518a20970f" + integrity sha512-KcsGn50VT+06JH/iunZJedYGUJS5FGjow8wb9c0v5n1Om8O1g4L6LjtfxwlXIATopoQu+vOXXa7gYisWxCoPyg== dependencies: - "@types/eslint-scope" "^3.7.3" - "@types/estree" "^0.0.51" - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/wasm-edit" "1.11.1" - "@webassemblyjs/wasm-parser" "1.11.1" + "@types/estree" "^1.0.5" + "@webassemblyjs/ast" "^1.12.1" + "@webassemblyjs/wasm-edit" "^1.12.1" + "@webassemblyjs/wasm-parser" "^1.12.1" acorn "^8.7.1" - acorn-import-assertions "^1.7.6" - browserslist "^4.14.5" + acorn-import-attributes "^1.9.5" + browserslist "^4.21.10" chrome-trace-event "^1.0.2" - enhanced-resolve "^5.10.0" - es-module-lexer "^0.9.0" + enhanced-resolve "^5.17.1" + es-module-lexer "^1.2.1" eslint-scope "5.1.1" events "^3.2.0" glob-to-regexp "^0.4.1" - graceful-fs "^4.2.9" + graceful-fs "^4.2.11" json-parse-even-better-errors "^2.3.1" loader-runner "^4.2.0" mime-types "^2.1.27" neo-async "^2.6.2" - schema-utils "^3.1.0" + schema-utils "^3.2.0" tapable "^2.1.1" - terser-webpack-plugin "^5.1.3" - watchpack "^2.4.0" + terser-webpack-plugin "^5.3.10" + watchpack "^2.4.1" webpack-sources "^3.2.3" well-known-symbols@^2.0.0: @@ -11741,9 +11736,9 @@ winreg@0.0.12: integrity sha1-BxBVVLoanQiXklHRKUdb/64wBrc= word-wrap@^1.2.3, word-wrap@~1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" - integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== + version "1.2.5" + resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34" + integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA== wordwrap@^1.0.0: version "1.0.0"