diff --git a/.stylelintrc.json b/.stylelintrc.json
index ff0515b89f..370aefe972 100644
--- a/.stylelintrc.json
+++ b/.stylelintrc.json
@@ -32,6 +32,13 @@
}],
"alpha-value-notation": "number",
"color-function-notation": "legacy",
+ "import-notation": "string",
+ "at-rule-empty-line-before": ["always", {
+ "except": ["blockless-after-same-name-blockless", "first-nested"],
+ "ignore": ["after-comment"],
+ "ignoreAtRules": ["import"]
+ }],
+ "declaration-block-no-redundant-longhand-properties": null,
"value-keyword-case": ["lower", {
"ignoreProperties": ["/font-family/"]
}],
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b47d98b7e8..0f6aebe587 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -802,8 +802,8 @@ The following subcomponents have been added / reworked:
* fix: update image sizing according to figma design
-Co-authored-by: vlasovmichael
-Co-authored-by: vzadorozhnii
+Co-authored-by: vlasovmichael \
+Co-authored-by: vzadorozhnii \
diff --git a/example/.eslintrc.js b/example/.eslintrc.js
new file mode 100644
index 0000000000..f8f4502ac5
--- /dev/null
+++ b/example/.eslintrc.js
@@ -0,0 +1,6 @@
+module.exports = {
+ extends: [
+ '@edx/eslint-config',
+ ],
+ root: true, // Don't also import the paragon eslint config in the parent directory.
+};
diff --git a/example/package.json b/example/package.json
index 45f5188ab0..6dd4a8cdd0 100644
--- a/example/package.json
+++ b/example/package.json
@@ -17,14 +17,10 @@
"license": "ISC",
"dependencies": {
"@edx/brand": "npm:@openedx/brand-openedx@^1.2.2",
- "@edx/frontend-platform": "^4.2.0",
+ "@edx/frontend-build": "^13.0.14",
+ "@edx/frontend-platform": "^8",
"@faker-js/faker": "^7.6.0",
- "core-js": "^3.22.2",
"react": "^17.0.2",
- "react-dom": "^17.0.2",
- "regenerator-runtime": "^0.13.9"
- },
- "devDependencies": {
- "@edx/frontend-build": "^12.8.10"
+ "react-dom": "^17.0.2"
}
}
diff --git a/example/src/MyComponent.jsx b/example/src/MyComponent.jsx
index 96ddd2cb92..aa3e03fb6d 100644
--- a/example/src/MyComponent.jsx
+++ b/example/src/MyComponent.jsx
@@ -2,7 +2,7 @@ import React, { useState } from 'react';
import { Button, Form, Icon, Bubble, Stack, Container } from '@openedx/paragon'; // eslint-disable-line
import { FavoriteBorder } from '@openedx/paragon/icons'; // eslint-disable-line
-const MyComponent = () => {
+function MyComponent() {
const [value, setValue] = useState('');
const handleChange = (e) => setValue(e.target.value);
const handleClick = () => alert('Form is submitted!'); // eslint-disable-line no-alert
@@ -26,6 +26,6 @@ const MyComponent = () => {
);
-};
+}
export default MyComponent;
diff --git a/example/src/index.jsx b/example/src/index.jsx
index cb33202538..9ce67d7ced 100644
--- a/example/src/index.jsx
+++ b/example/src/index.jsx
@@ -1,6 +1,3 @@
-import 'core-js/stable';
-import 'regenerator-runtime/runtime';
-
import React from 'react';
import ReactDOM from 'react-dom';
import {
diff --git a/icons/package.json b/icons/package.json
index fee15fec44..62eaa292ae 100644
--- a/icons/package.json
+++ b/icons/package.json
@@ -21,7 +21,7 @@
"bootstrap-icons": "^1.11.3"
},
"peerDependencies": {
- "react": "^16.8.6 || ^17.0.2"
+ "react": "^16.8.6 || ^17 || ^18"
},
"exports": {
".": {
diff --git a/lib/build-scss.js b/lib/build-scss.js
index 9125cb8166..697bbee309 100755
--- a/lib/build-scss.js
+++ b/lib/build-scss.js
@@ -93,6 +93,8 @@ const compileAndWriteStyleSheets = ({
return new URL(url.substring(1), `${pathToFileURL('node_modules')}/node_modules`);
},
}],
+ // For now we can't resolve these warnings as we need to upgrade our 'bootstrap' dependency to do so:
+ silenceDeprecations: ['abs-percent', 'color-functions', 'import', 'mixed-decls', 'global-builtin'],
});
const commonPostCssPlugins = [
diff --git a/netlify.toml b/netlify.toml
index 815a51fb3e..cf67a0d8e9 100644
--- a/netlify.toml
+++ b/netlify.toml
@@ -4,3 +4,7 @@
environment = { SEGMENT_KEY = "", NODE_VERSION = "18.16.0" }
[functions]
directory = "www/netlify/functions"
+[[headers]]
+ for = "/*"
+ [headers.values]
+ Content-Security-Policy = "frame-ancestors *;"
diff --git a/package-lock.json b/package-lock.json
index 2d1d70c61b..d3d85c7ee3 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -72,19 +72,19 @@
"@babel/preset-env": "^7.16.8",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
+ "@edx/browserslist-config": "^1.5.0",
"@edx/eslint-config": "^4.3.0",
"@edx/stylelint-config-edx": "^2.3.0",
"@edx/typescript-config": "^1.1.0",
"@formatjs/cli": "^5.0.2",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
- "@testing-library/jest-dom": "^6.1.4",
- "@testing-library/react": "^12.1.4",
- "@testing-library/react-hooks": "^8.0.1",
- "@testing-library/user-event": "^13.5.0",
+ "@testing-library/jest-dom": "^6.6",
+ "@testing-library/react": "^16.1",
+ "@testing-library/user-event": "^14.5",
"@types/jest": "^29.5.10",
- "@types/react": "^17.0.80",
- "@types/react-dom": "^17.0.11",
+ "@types/react": "^18",
+ "@types/react-dom": "^18",
"@types/react-responsive": "^8.0.8",
"@types/react-table": "^7.7.19",
"@types/react-test-renderer": "^18.0.0",
@@ -97,12 +97,7 @@
"babel-loader": "^8.2.4",
"commander": "^9.3.0",
"eslint": "8.18.0",
- "eslint-config-airbnb": "19.0.4",
- "eslint-config-airbnb-typescript": "^17.0.0",
- "eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
- "eslint-plugin-react": "7.32.2",
- "eslint-plugin-react-hooks": "4.6.0",
"husky": "^9.0.11",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
@@ -110,19 +105,17 @@
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.0",
"markdown-loader-jest": "^0.1.1",
- "react": "^17.0.0",
- "react-dom": "^17.0.0",
- "react-test-renderer": "^17.0.0",
+ "react": "^18",
+ "react-test-renderer": "^18",
"regenerator-runtime": "^0.13.9",
"semantic-release": "^20.1.3",
- "stylelint": "^14.7.1",
- "stylelint-config-standard-scss": "^4.0.0",
+ "stylelint": "^15.11.0",
"ts-jest": "^29.1.2",
"typescript": "^4.7.4"
},
"peerDependencies": {
- "react": "^16.8.6 || ^17.0.0",
- "react-dom": "^16.8.6 || ^17.0.0",
+ "react": "^16.8.6 || ^17 || ^18",
+ "react-dom": "^16.8.6 || ^17 || ^18",
"react-intl": "^5.25.1 || ^6.4.0"
}
},
@@ -143,351 +136,114 @@
"eslint-plugin-react-hooks": "4.6.0"
}
},
- "dependent-usage-analyzer": {
- "name": "dependency-analysis",
- "version": "1.0.0",
- "license": "ISC",
- "dependencies": {
- "@babel/parser": "^7.12.16",
- "babel-walk": "^3.0.0",
- "commander": "^9.3.0",
- "glob": "^8.0.3"
- }
- },
- "example": {
- "version": "1.0.0",
- "license": "ISC",
- "dependencies": {
- "@edx/brand": "npm:@openedx/brand-openedx@^1.2.2",
- "@edx/frontend-platform": "^4.2.0",
- "@faker-js/faker": "^7.6.0",
- "core-js": "^3.22.2",
- "react": "^17.0.2",
- "react-dom": "^17.0.2",
- "regenerator-runtime": "^0.13.9"
- },
- "devDependencies": {
- "@edx/frontend-build": "^12.8.10"
- }
- },
- "example/node_modules/@edx/brand": {
- "name": "@openedx/brand-openedx",
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/@openedx/brand-openedx/-/brand-openedx-1.2.2.tgz",
- "integrity": "sha512-mBvxR7aB9290j9+h3d/9G8VkG1b8ecLSmlxc0vskfm7DL/fKUzFmHAj3PI7Z4kkwCQOL4QT5mJHJKC0ZFf7qvQ=="
- },
- "icons": {
- "version": "1.0.0",
- "license": "ISC",
- "devDependencies": {
- "@babel/cli": "^7.19.3",
- "@babel/preset-env": "^7.12.11",
- "@babel/preset-react": "^7.12.10",
- "@material-icons/svg": "^1.0.30",
- "@svgr/babel-plugin-add-jsx-attribute": "^6.5.1",
- "@svgr/cli": "^6.4.0",
- "bootstrap-icons": "^1.11.3"
- },
- "peerDependencies": {
- "react": "^16.8.6 || ^17.0.2"
- }
- },
- "icons/node_modules/bootstrap-icons": {
- "version": "1.11.3",
- "resolved": "https://registry.npmjs.org/bootstrap-icons/-/bootstrap-icons-1.11.3.tgz",
- "integrity": "sha512-+3lpHrCw/it2/7lBL15VR0HEumaBss0+f/Lb6ZvHISn1mlK83jjFpooTLsMWbIjJMDjDjOExMsTxnXSIT4k4ww==",
+ "component-generator/node_modules/eslint-plugin-import": {
+ "version": "2.27.5",
"dev": true,
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/twbs"
- },
- {
- "type": "opencollective",
- "url": "https://opencollective.com/bootstrap"
- }
- ]
- },
- "node_modules/@adobe/css-tools": {
- "version": "4.3.2",
- "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.3.2.tgz",
- "integrity": "sha512-DA5a1C0gD/pLOvhv33YMrbf2FK3oUzwNl9oOJqE4XVjuEtt6XIakRcsd7eLiOSPkp1kTRQGICTA8cKra/vFbjw==",
- "dev": true
- },
- "node_modules/@algolia/autocomplete-core": {
- "version": "1.7.4",
- "license": "MIT",
- "dependencies": {
- "@algolia/autocomplete-shared": "1.7.4"
- }
- },
- "node_modules/@algolia/autocomplete-preset-algolia": {
- "version": "1.7.4",
"license": "MIT",
"dependencies": {
- "@algolia/autocomplete-shared": "1.7.4"
+ "array-includes": "^3.1.6",
+ "array.prototype.flat": "^1.3.1",
+ "array.prototype.flatmap": "^1.3.1",
+ "debug": "^3.2.7",
+ "doctrine": "^2.1.0",
+ "eslint-import-resolver-node": "^0.3.7",
+ "eslint-module-utils": "^2.7.4",
+ "has": "^1.0.3",
+ "is-core-module": "^2.11.0",
+ "is-glob": "^4.0.3",
+ "minimatch": "^3.1.2",
+ "object.values": "^1.1.6",
+ "resolve": "^1.22.1",
+ "semver": "^6.3.0",
+ "tsconfig-paths": "^3.14.1"
+ },
+ "engines": {
+ "node": ">=4"
},
"peerDependencies": {
- "@algolia/client-search": ">= 4.9.1 < 6",
- "algoliasearch": ">= 4.9.1 < 6"
- }
- },
- "node_modules/@algolia/autocomplete-shared": {
- "version": "1.7.4",
- "license": "MIT"
- },
- "node_modules/@algolia/cache-browser-local-storage": {
- "version": "4.17.0",
- "license": "MIT",
- "dependencies": {
- "@algolia/cache-common": "4.17.0"
- }
- },
- "node_modules/@algolia/cache-common": {
- "version": "4.17.0",
- "license": "MIT"
- },
- "node_modules/@algolia/cache-in-memory": {
- "version": "4.17.0",
- "license": "MIT",
- "dependencies": {
- "@algolia/cache-common": "4.17.0"
- }
- },
- "node_modules/@algolia/client-account": {
- "version": "4.17.0",
- "license": "MIT",
- "dependencies": {
- "@algolia/client-common": "4.17.0",
- "@algolia/client-search": "4.17.0",
- "@algolia/transporter": "4.17.0"
- }
- },
- "node_modules/@algolia/client-analytics": {
- "version": "4.17.0",
- "license": "MIT",
- "dependencies": {
- "@algolia/client-common": "4.17.0",
- "@algolia/client-search": "4.17.0",
- "@algolia/requester-common": "4.17.0",
- "@algolia/transporter": "4.17.0"
- }
- },
- "node_modules/@algolia/client-common": {
- "version": "4.17.0",
- "license": "MIT",
- "dependencies": {
- "@algolia/requester-common": "4.17.0",
- "@algolia/transporter": "4.17.0"
- }
- },
- "node_modules/@algolia/client-personalization": {
- "version": "4.17.0",
- "license": "MIT",
- "dependencies": {
- "@algolia/client-common": "4.17.0",
- "@algolia/requester-common": "4.17.0",
- "@algolia/transporter": "4.17.0"
- }
- },
- "node_modules/@algolia/client-search": {
- "version": "4.17.0",
- "license": "MIT",
- "dependencies": {
- "@algolia/client-common": "4.17.0",
- "@algolia/requester-common": "4.17.0",
- "@algolia/transporter": "4.17.0"
- }
- },
- "node_modules/@algolia/logger-common": {
- "version": "4.17.0",
- "license": "MIT"
- },
- "node_modules/@algolia/logger-console": {
- "version": "4.17.0",
- "license": "MIT",
- "dependencies": {
- "@algolia/logger-common": "4.17.0"
- }
- },
- "node_modules/@algolia/requester-browser-xhr": {
- "version": "4.17.0",
- "license": "MIT",
- "dependencies": {
- "@algolia/requester-common": "4.17.0"
- }
- },
- "node_modules/@algolia/requester-common": {
- "version": "4.17.0",
- "license": "MIT"
- },
- "node_modules/@algolia/requester-node-http": {
- "version": "4.17.0",
- "license": "MIT",
- "dependencies": {
- "@algolia/requester-common": "4.17.0"
+ "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8"
}
},
- "node_modules/@algolia/transporter": {
- "version": "4.17.0",
+ "component-generator/node_modules/eslint-plugin-react": {
+ "version": "7.32.2",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/cache-common": "4.17.0",
- "@algolia/logger-common": "4.17.0",
- "@algolia/requester-common": "4.17.0"
- }
- },
- "node_modules/@ampproject/remapping": {
- "version": "2.2.0",
- "license": "Apache-2.0",
- "dependencies": {
- "@jridgewell/gen-mapping": "^0.1.0",
- "@jridgewell/trace-mapping": "^0.3.9"
+ "array-includes": "^3.1.6",
+ "array.prototype.flatmap": "^1.3.1",
+ "array.prototype.tosorted": "^1.1.1",
+ "doctrine": "^2.1.0",
+ "estraverse": "^5.3.0",
+ "jsx-ast-utils": "^2.4.1 || ^3.0.0",
+ "minimatch": "^3.1.2",
+ "object.entries": "^1.1.6",
+ "object.fromentries": "^2.0.6",
+ "object.hasown": "^1.1.2",
+ "object.values": "^1.1.6",
+ "prop-types": "^15.8.1",
+ "resolve": "^2.0.0-next.4",
+ "semver": "^6.3.0",
+ "string.prototype.matchall": "^4.0.8"
},
"engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@ardatan/relay-compiler": {
- "version": "12.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/core": "^7.14.0",
- "@babel/generator": "^7.14.0",
- "@babel/parser": "^7.14.0",
- "@babel/runtime": "^7.0.0",
- "@babel/traverse": "^7.14.0",
- "@babel/types": "^7.0.0",
- "babel-preset-fbjs": "^3.4.0",
- "chalk": "^4.0.0",
- "fb-watchman": "^2.0.0",
- "fbjs": "^3.0.0",
- "glob": "^7.1.1",
- "immutable": "~3.7.6",
- "invariant": "^2.2.4",
- "nullthrows": "^1.1.1",
- "relay-runtime": "12.0.0",
- "signedsource": "^1.0.0",
- "yargs": "^15.3.1"
- },
- "bin": {
- "relay-compiler": "bin/relay-compiler"
+ "node": ">=4"
},
"peerDependencies": {
- "graphql": "*"
+ "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8"
}
},
- "node_modules/@ardatan/relay-compiler/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "component-generator/node_modules/eslint-plugin-react-hooks": {
+ "version": "4.6.0",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
"engines": {
- "node": ">=8"
+ "node": ">=10"
},
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/@ardatan/relay-compiler/node_modules/cliui": {
- "version": "6.0.0",
- "license": "ISC",
- "dependencies": {
- "string-width": "^4.2.0",
- "strip-ansi": "^6.0.0",
- "wrap-ansi": "^6.2.0"
+ "peerDependencies": {
+ "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0"
}
},
- "node_modules/@ardatan/relay-compiler/node_modules/color-convert": {
- "version": "2.0.1",
+ "component-generator/node_modules/eslint-plugin-react/node_modules/resolve": {
+ "version": "2.0.0-next.5",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/@ardatan/relay-compiler/node_modules/color-name": {
- "version": "1.1.4",
- "license": "MIT"
- },
- "node_modules/@ardatan/relay-compiler/node_modules/glob": {
- "version": "7.2.3",
- "license": "ISC",
- "dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.1.1",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
+ "is-core-module": "^2.13.0",
+ "path-parse": "^1.0.7",
+ "supports-preserve-symlinks-flag": "^1.0.0"
},
- "engines": {
- "node": "*"
+ "bin": {
+ "resolve": "bin/resolve"
},
"funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/@ardatan/relay-compiler/node_modules/immutable": {
- "version": "3.7.6",
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.8.0"
- }
- },
- "node_modules/@ardatan/relay-compiler/node_modules/wrap-ansi": {
- "version": "6.2.0",
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.0.0",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0"
- },
- "engines": {
- "node": ">=8"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/@ardatan/relay-compiler/node_modules/y18n": {
- "version": "4.0.3",
- "license": "ISC"
- },
- "node_modules/@ardatan/relay-compiler/node_modules/yargs": {
- "version": "15.4.1",
- "license": "MIT",
+ "dependent-usage-analyzer": {
+ "name": "dependency-analysis",
+ "version": "1.0.0",
+ "license": "ISC",
"dependencies": {
- "cliui": "^6.0.0",
- "decamelize": "^1.2.0",
- "find-up": "^4.1.0",
- "get-caller-file": "^2.0.1",
- "require-directory": "^2.1.1",
- "require-main-filename": "^2.0.0",
- "set-blocking": "^2.0.0",
- "string-width": "^4.2.0",
- "which-module": "^2.0.0",
- "y18n": "^4.0.0",
- "yargs-parser": "^18.1.2"
- },
- "engines": {
- "node": ">=8"
+ "@babel/parser": "^7.12.16",
+ "babel-walk": "^3.0.0",
+ "commander": "^9.3.0",
+ "glob": "^8.0.3"
}
},
- "node_modules/@ardatan/relay-compiler/node_modules/yargs-parser": {
- "version": "18.1.3",
+ "example": {
+ "version": "1.0.0",
"license": "ISC",
"dependencies": {
- "camelcase": "^5.0.0",
- "decamelize": "^1.2.0"
- },
- "engines": {
- "node": ">=6"
+ "@edx/brand": "npm:@openedx/brand-openedx@^1.2.2",
+ "@edx/frontend-build": "^13.0.14",
+ "@edx/frontend-platform": "^8",
+ "@faker-js/faker": "^7.6.0",
+ "react": "^17.0.2",
+ "react-dom": "^17.0.2"
}
},
- "node_modules/@babel/cli": {
- "version": "7.21.0",
- "dev": true,
+ "example/node_modules/@babel/cli": {
+ "version": "7.22.5",
"license": "MIT",
"dependencies": {
"@jridgewell/trace-mapping": "^0.3.17",
@@ -513,17 +269,8 @@
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@babel/cli/node_modules/commander": {
- "version": "4.1.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/@babel/cli/node_modules/glob": {
+ "example/node_modules/@babel/cli/node_modules/glob": {
"version": "7.2.3",
- "dev": true,
"license": "ISC",
"dependencies": {
"fs.realpath": "^1.0.0",
@@ -540,46 +287,25 @@
"url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/@babel/code-frame": {
- "version": "7.24.2",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.2.tgz",
- "integrity": "sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==",
- "dependencies": {
- "@babel/highlight": "^7.24.2",
- "picocolors": "^1.0.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/compat-data": {
- "version": "7.24.4",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.4.tgz",
- "integrity": "sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/core": {
- "version": "7.24.4",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.4.tgz",
- "integrity": "sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==",
+ "example/node_modules/@babel/core": {
+ "version": "7.22.5",
+ "license": "MIT",
"dependencies": {
"@ampproject/remapping": "^2.2.0",
- "@babel/code-frame": "^7.24.2",
- "@babel/generator": "^7.24.4",
- "@babel/helper-compilation-targets": "^7.23.6",
- "@babel/helper-module-transforms": "^7.23.3",
- "@babel/helpers": "^7.24.4",
- "@babel/parser": "^7.24.4",
- "@babel/template": "^7.24.0",
- "@babel/traverse": "^7.24.1",
- "@babel/types": "^7.24.0",
- "convert-source-map": "^2.0.0",
+ "@babel/code-frame": "^7.22.5",
+ "@babel/generator": "^7.22.5",
+ "@babel/helper-compilation-targets": "^7.22.5",
+ "@babel/helper-module-transforms": "^7.22.5",
+ "@babel/helpers": "^7.22.5",
+ "@babel/parser": "^7.22.5",
+ "@babel/template": "^7.22.5",
+ "@babel/traverse": "^7.22.5",
+ "@babel/types": "^7.22.5",
+ "convert-source-map": "^1.7.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.2",
- "json5": "^2.2.3",
- "semver": "^6.3.1"
+ "json5": "^2.2.2",
+ "semver": "^6.3.0"
},
"engines": {
"node": ">=6.9.0"
@@ -589,18 +315,28 @@
"url": "https://opencollective.com/babel"
}
},
- "node_modules/@babel/core/node_modules/convert-source-map": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
- "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg=="
+ "example/node_modules/@babel/core/node_modules/debug": {
+ "version": "4.4.0",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
},
- "node_modules/@babel/eslint-parser": {
- "version": "7.21.3",
+ "example/node_modules/@babel/eslint-parser": {
+ "version": "7.22.9",
"license": "MIT",
"dependencies": {
"@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1",
"eslint-visitor-keys": "^2.1.0",
- "semver": "^6.3.0"
+ "semver": "^6.3.1"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || >=14.0.0"
@@ -610,695 +346,1154 @@
"eslint": "^7.5.0 || ^8.0.0"
}
},
- "node_modules/@babel/generator": {
- "version": "7.24.4",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.4.tgz",
- "integrity": "sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==",
+ "example/node_modules/@babel/preset-env": {
+ "version": "7.22.5",
+ "license": "MIT",
"dependencies": {
- "@babel/types": "^7.24.0",
- "@jridgewell/gen-mapping": "^0.3.5",
- "@jridgewell/trace-mapping": "^0.3.25",
- "jsesc": "^2.5.1"
+ "@babel/compat-data": "^7.22.5",
+ "@babel/helper-compilation-targets": "^7.22.5",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/helper-validator-option": "^7.22.5",
+ "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.22.5",
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.22.5",
+ "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2",
+ "@babel/plugin-syntax-async-generators": "^7.8.4",
+ "@babel/plugin-syntax-class-properties": "^7.12.13",
+ "@babel/plugin-syntax-class-static-block": "^7.14.5",
+ "@babel/plugin-syntax-dynamic-import": "^7.8.3",
+ "@babel/plugin-syntax-export-namespace-from": "^7.8.3",
+ "@babel/plugin-syntax-import-assertions": "^7.22.5",
+ "@babel/plugin-syntax-import-attributes": "^7.22.5",
+ "@babel/plugin-syntax-import-meta": "^7.10.4",
+ "@babel/plugin-syntax-json-strings": "^7.8.3",
+ "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
+ "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
+ "@babel/plugin-syntax-numeric-separator": "^7.10.4",
+ "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
+ "@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
+ "@babel/plugin-syntax-optional-chaining": "^7.8.3",
+ "@babel/plugin-syntax-private-property-in-object": "^7.14.5",
+ "@babel/plugin-syntax-top-level-await": "^7.14.5",
+ "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6",
+ "@babel/plugin-transform-arrow-functions": "^7.22.5",
+ "@babel/plugin-transform-async-generator-functions": "^7.22.5",
+ "@babel/plugin-transform-async-to-generator": "^7.22.5",
+ "@babel/plugin-transform-block-scoped-functions": "^7.22.5",
+ "@babel/plugin-transform-block-scoping": "^7.22.5",
+ "@babel/plugin-transform-class-properties": "^7.22.5",
+ "@babel/plugin-transform-class-static-block": "^7.22.5",
+ "@babel/plugin-transform-classes": "^7.22.5",
+ "@babel/plugin-transform-computed-properties": "^7.22.5",
+ "@babel/plugin-transform-destructuring": "^7.22.5",
+ "@babel/plugin-transform-dotall-regex": "^7.22.5",
+ "@babel/plugin-transform-duplicate-keys": "^7.22.5",
+ "@babel/plugin-transform-dynamic-import": "^7.22.5",
+ "@babel/plugin-transform-exponentiation-operator": "^7.22.5",
+ "@babel/plugin-transform-export-namespace-from": "^7.22.5",
+ "@babel/plugin-transform-for-of": "^7.22.5",
+ "@babel/plugin-transform-function-name": "^7.22.5",
+ "@babel/plugin-transform-json-strings": "^7.22.5",
+ "@babel/plugin-transform-literals": "^7.22.5",
+ "@babel/plugin-transform-logical-assignment-operators": "^7.22.5",
+ "@babel/plugin-transform-member-expression-literals": "^7.22.5",
+ "@babel/plugin-transform-modules-amd": "^7.22.5",
+ "@babel/plugin-transform-modules-commonjs": "^7.22.5",
+ "@babel/plugin-transform-modules-systemjs": "^7.22.5",
+ "@babel/plugin-transform-modules-umd": "^7.22.5",
+ "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5",
+ "@babel/plugin-transform-new-target": "^7.22.5",
+ "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.5",
+ "@babel/plugin-transform-numeric-separator": "^7.22.5",
+ "@babel/plugin-transform-object-rest-spread": "^7.22.5",
+ "@babel/plugin-transform-object-super": "^7.22.5",
+ "@babel/plugin-transform-optional-catch-binding": "^7.22.5",
+ "@babel/plugin-transform-optional-chaining": "^7.22.5",
+ "@babel/plugin-transform-parameters": "^7.22.5",
+ "@babel/plugin-transform-private-methods": "^7.22.5",
+ "@babel/plugin-transform-private-property-in-object": "^7.22.5",
+ "@babel/plugin-transform-property-literals": "^7.22.5",
+ "@babel/plugin-transform-regenerator": "^7.22.5",
+ "@babel/plugin-transform-reserved-words": "^7.22.5",
+ "@babel/plugin-transform-shorthand-properties": "^7.22.5",
+ "@babel/plugin-transform-spread": "^7.22.5",
+ "@babel/plugin-transform-sticky-regex": "^7.22.5",
+ "@babel/plugin-transform-template-literals": "^7.22.5",
+ "@babel/plugin-transform-typeof-symbol": "^7.22.5",
+ "@babel/plugin-transform-unicode-escapes": "^7.22.5",
+ "@babel/plugin-transform-unicode-property-regex": "^7.22.5",
+ "@babel/plugin-transform-unicode-regex": "^7.22.5",
+ "@babel/plugin-transform-unicode-sets-regex": "^7.22.5",
+ "@babel/preset-modules": "^0.1.5",
+ "@babel/types": "^7.22.5",
+ "babel-plugin-polyfill-corejs2": "^0.4.3",
+ "babel-plugin-polyfill-corejs3": "^0.8.1",
+ "babel-plugin-polyfill-regenerator": "^0.5.0",
+ "core-js-compat": "^3.30.2",
+ "semver": "^6.3.0"
},
"engines": {
"node": ">=6.9.0"
- }
- },
- "node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping": {
- "version": "0.3.5",
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz",
- "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==",
- "dependencies": {
- "@jridgewell/set-array": "^1.2.1",
- "@jridgewell/sourcemap-codec": "^1.4.10",
- "@jridgewell/trace-mapping": "^0.3.24"
},
- "engines": {
- "node": ">=6.0.0"
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@babel/helper-annotate-as-pure": {
- "version": "7.18.6",
+ "example/node_modules/@babel/preset-react": {
+ "version": "7.22.5",
"license": "MIT",
"dependencies": {
- "@babel/types": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/helper-validator-option": "^7.22.5",
+ "@babel/plugin-transform-react-display-name": "^7.22.5",
+ "@babel/plugin-transform-react-jsx": "^7.22.5",
+ "@babel/plugin-transform-react-jsx-development": "^7.22.5",
+ "@babel/plugin-transform-react-pure-annotations": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": {
- "version": "7.18.9",
+ "example/node_modules/@edx/brand": {
+ "name": "@openedx/brand-openedx",
+ "version": "1.2.2",
+ "license": "GPL-3.0-or-later"
+ },
+ "example/node_modules/@edx/eslint-config": {
+ "version": "3.2.0",
"license": "MIT",
+ "peerDependencies": {
+ "eslint": "^6.8.0 || ^7.0.0 || ^8.0.0",
+ "eslint-config-airbnb": "^18.0.1 || ^19.0.0",
+ "eslint-plugin-import": "^2.20.0",
+ "eslint-plugin-jsx-a11y": "^6.2.3",
+ "eslint-plugin-react": "^7.18.0",
+ "eslint-plugin-react-hooks": "^1.7.0 || ^4.0.0"
+ }
+ },
+ "example/node_modules/@edx/frontend-build": {
+ "version": "13.0.14",
+ "license": "AGPL-3.0",
"dependencies": {
- "@babel/helper-explode-assignable-expression": "^7.18.6",
- "@babel/types": "^7.18.9"
+ "@babel/cli": "7.22.5",
+ "@babel/core": "7.22.5",
+ "@babel/eslint-parser": "7.22.9",
+ "@babel/plugin-proposal-class-properties": "7.18.6",
+ "@babel/plugin-proposal-object-rest-spread": "7.20.7",
+ "@babel/plugin-syntax-dynamic-import": "7.8.3",
+ "@babel/preset-env": "7.22.5",
+ "@babel/preset-react": "7.22.5",
+ "@edx/eslint-config": "3.2.0",
+ "@edx/new-relic-source-map-webpack-plugin": "2.1.0",
+ "@formatjs/cli": "^6.0.3",
+ "@fullhuman/postcss-purgecss": "5.0.0",
+ "@pmmmwh/react-refresh-webpack-plugin": "0.5.11",
+ "@svgr/webpack": "8.1.0",
+ "autoprefixer": "10.4.16",
+ "babel-jest": "26.6.3",
+ "babel-loader": "9.1.3",
+ "babel-plugin-formatjs": "^10.4.0",
+ "babel-plugin-transform-imports": "2.0.0",
+ "babel-polyfill": "6.26.0",
+ "chalk": "4.1.2",
+ "clean-webpack-plugin": "4.0.0",
+ "css-loader": "5.2.7",
+ "cssnano": "6.0.1",
+ "dotenv": "8.6.0",
+ "dotenv-webpack": "8.0.1",
+ "eslint": "8.44.0",
+ "eslint-config-airbnb": "19.0.4",
+ "eslint-plugin-import": "2.27.5",
+ "eslint-plugin-jsx-a11y": "6.7.1",
+ "eslint-plugin-react": "7.32.2",
+ "eslint-plugin-react-hooks": "4.6.0",
+ "express": "4.18.2",
+ "file-loader": "6.2.0",
+ "html-webpack-plugin": "5.5.4",
+ "identity-obj-proxy": "3.0.0",
+ "image-minimizer-webpack-plugin": "3.8.3",
+ "jest": "26.6.3",
+ "mini-css-extract-plugin": "1.6.2",
+ "postcss": "8.4.32",
+ "postcss-custom-media": "10.0.2",
+ "postcss-loader": "7.3.3",
+ "postcss-rtlcss": "4.0.9",
+ "react-dev-utils": "12.0.1",
+ "react-refresh": "0.14.0",
+ "resolve-url-loader": "5.0.0",
+ "sass": "1.69.5",
+ "sass-loader": "13.3.2",
+ "sharp": "0.33.0",
+ "source-map-loader": "4.0.1",
+ "style-loader": "3.3.3",
+ "url-loader": "4.1.1",
+ "webpack": "5.89.0",
+ "webpack-bundle-analyzer": "4.10.1",
+ "webpack-cli": "5.1.4",
+ "webpack-dev-server": "4.15.1",
+ "webpack-merge": "5.9.0"
},
- "engines": {
- "node": ">=6.9.0"
+ "bin": {
+ "fedx-scripts": "bin/fedx-scripts.js"
+ },
+ "peerDependencies": {
+ "react": "^16.9.0 || ^17.0.0"
}
},
- "node_modules/@babel/helper-compilation-targets": {
- "version": "7.23.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz",
- "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==",
+ "example/node_modules/@edx/frontend-build/node_modules/postcss": {
+ "version": "8.4.32",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/postcss"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
"dependencies": {
- "@babel/compat-data": "^7.23.5",
- "@babel/helper-validator-option": "^7.23.5",
- "browserslist": "^4.22.2",
- "lru-cache": "^5.1.1",
- "semver": "^6.3.1"
+ "nanoid": "^3.3.7",
+ "picocolors": "^1.0.0",
+ "source-map-js": "^1.0.2"
},
"engines": {
- "node": ">=6.9.0"
+ "node": "^10 || ^12 || >=14"
}
},
- "node_modules/@babel/helper-create-class-features-plugin": {
- "version": "7.21.0",
+ "example/node_modules/@edx/frontend-build/node_modules/postcss-custom-media": {
+ "version": "10.0.2",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/csstools"
+ },
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/csstools"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-environment-visitor": "^7.18.9",
- "@babel/helper-function-name": "^7.21.0",
- "@babel/helper-member-expression-to-functions": "^7.21.0",
- "@babel/helper-optimise-call-expression": "^7.18.6",
- "@babel/helper-replace-supers": "^7.20.7",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0",
- "@babel/helper-split-export-declaration": "^7.18.6"
+ "@csstools/cascade-layer-name-parser": "^1.0.5",
+ "@csstools/css-parser-algorithms": "^2.3.2",
+ "@csstools/css-tokenizer": "^2.2.1",
+ "@csstools/media-query-list-parser": "^2.1.5"
},
"engines": {
- "node": ">=6.9.0"
+ "node": "^14 || ^16 || >=18"
},
"peerDependencies": {
- "@babel/core": "^7.0.0"
+ "postcss": "^8.4"
}
},
- "node_modules/@babel/helper-create-regexp-features-plugin": {
- "version": "7.21.0",
- "license": "MIT",
+ "example/node_modules/@edx/frontend-build/node_modules/postcss-rtlcss": {
+ "version": "4.0.9",
+ "license": "Apache-2.0",
"dependencies": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "regexpu-core": "^5.3.1"
+ "rtlcss": "4.1.1"
},
"engines": {
- "node": ">=6.9.0"
+ "node": ">=18.0.0"
},
"peerDependencies": {
- "@babel/core": "^7.0.0"
+ "postcss": "^8.4.21"
}
},
- "node_modules/@babel/helper-define-polyfill-provider": {
- "version": "0.3.3",
+ "example/node_modules/@edx/frontend-build/node_modules/sass": {
+ "version": "1.69.5",
"license": "MIT",
"dependencies": {
- "@babel/helper-compilation-targets": "^7.17.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "debug": "^4.1.1",
- "lodash.debounce": "^4.0.8",
- "resolve": "^1.14.2",
- "semver": "^6.1.2"
+ "chokidar": ">=3.0.0 <4.0.0",
+ "immutable": "^4.0.0",
+ "source-map-js": ">=0.6.2 <2.0.0"
},
- "peerDependencies": {
- "@babel/core": "^7.4.0-0"
+ "bin": {
+ "sass": "sass.js"
+ },
+ "engines": {
+ "node": ">=14.0.0"
}
},
- "node_modules/@babel/helper-environment-visitor": {
- "version": "7.22.20",
- "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz",
- "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==",
+ "example/node_modules/@edx/frontend-build/node_modules/semver": {
+ "version": "7.6.3",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
"engines": {
- "node": ">=6.9.0"
+ "node": ">=10"
}
},
- "node_modules/@babel/helper-explode-assignable-expression": {
- "version": "7.18.6",
- "license": "MIT",
+ "example/node_modules/@edx/frontend-build/node_modules/sharp": {
+ "version": "0.33.0",
+ "hasInstallScript": true,
+ "license": "Apache-2.0",
"dependencies": {
- "@babel/types": "^7.18.6"
+ "color": "^4.2.3",
+ "detect-libc": "^2.0.2",
+ "semver": "^7.5.4"
},
"engines": {
- "node": ">=6.9.0"
+ "libvips": ">=8.15.0",
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ },
+ "optionalDependencies": {
+ "@img/sharp-darwin-arm64": "0.33.0",
+ "@img/sharp-darwin-x64": "0.33.0",
+ "@img/sharp-libvips-darwin-arm64": "1.0.0",
+ "@img/sharp-libvips-darwin-x64": "1.0.0",
+ "@img/sharp-libvips-linux-arm": "1.0.0",
+ "@img/sharp-libvips-linux-arm64": "1.0.0",
+ "@img/sharp-libvips-linux-s390x": "1.0.0",
+ "@img/sharp-libvips-linux-x64": "1.0.0",
+ "@img/sharp-libvips-linuxmusl-arm64": "1.0.0",
+ "@img/sharp-libvips-linuxmusl-x64": "1.0.0",
+ "@img/sharp-linux-arm": "0.33.0",
+ "@img/sharp-linux-arm64": "0.33.0",
+ "@img/sharp-linux-s390x": "0.33.0",
+ "@img/sharp-linux-x64": "0.33.0",
+ "@img/sharp-linuxmusl-arm64": "0.33.0",
+ "@img/sharp-linuxmusl-x64": "0.33.0",
+ "@img/sharp-wasm32": "0.33.0",
+ "@img/sharp-win32-ia32": "0.33.0",
+ "@img/sharp-win32-x64": "0.33.0"
+ }
+ },
+ "example/node_modules/@edx/frontend-platform": {
+ "version": "8.1.5",
+ "license": "AGPL-3.0",
+ "dependencies": {
+ "@cospired/i18n-iso-languages": "4.2.0",
+ "@formatjs/intl-pluralrules": "4.3.3",
+ "@formatjs/intl-relativetimeformat": "10.0.1",
+ "axios": "1.6.7",
+ "axios-cache-interceptor": "1.6.2",
+ "form-urlencoded": "4.1.4",
+ "glob": "7.2.3",
+ "history": "4.10.1",
+ "i18n-iso-countries": "4.3.1",
+ "jwt-decode": "3.1.2",
+ "localforage": "1.10.0",
+ "localforage-memoryStorageDriver": "0.9.2",
+ "lodash.camelcase": "4.3.0",
+ "lodash.memoize": "4.1.2",
+ "lodash.merge": "4.6.2",
+ "lodash.snakecase": "4.1.1",
+ "pubsub-js": "1.9.5",
+ "react-intl": "6.8.9",
+ "universal-cookie": "4.0.4"
+ },
+ "bin": {
+ "intl-imports.js": "i18n/scripts/intl-imports.js",
+ "transifex-utils.js": "i18n/scripts/transifex-utils.js"
+ },
+ "peerDependencies": {
+ "@openedx/frontend-build": ">= 14.0.0",
+ "@openedx/paragon": ">= 21.5.7 < 23.0.0",
+ "prop-types": ">=15.7.2 <16.0.0",
+ "react": "^16.9.0 || ^17.0.0",
+ "react-dom": "^16.9.0 || ^17.0.0",
+ "react-redux": "^7.1.1 || ^8.1.1",
+ "react-router-dom": "^6.0.0",
+ "redux": "^4.0.4"
}
},
- "node_modules/@babel/helper-function-name": {
- "version": "7.23.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz",
- "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==",
+ "example/node_modules/@edx/frontend-platform/node_modules/glob": {
+ "version": "7.2.3",
+ "license": "ISC",
"dependencies": {
- "@babel/template": "^7.22.15",
- "@babel/types": "^7.23.0"
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
},
"engines": {
- "node": ">=6.9.0"
+ "node": "*"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/@babel/helper-hoist-variables": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz",
- "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==",
- "dependencies": {
- "@babel/types": "^7.22.5"
+ "example/node_modules/@formatjs/cli": {
+ "version": "6.3.15",
+ "license": "MIT",
+ "bin": {
+ "formatjs": "bin/formatjs"
},
"engines": {
- "node": ">=6.9.0"
+ "node": ">= 16"
+ },
+ "peerDependencies": {
+ "@glimmer/env": "^0.1.7",
+ "@glimmer/reference": "^0.91.1 || ^0.92.0 || ^0.93.0",
+ "@glimmer/syntax": "^0.92.0 || ^0.93.0",
+ "@glimmer/validator": "^0.92.0 || ^0.93.0",
+ "@vue/compiler-core": "^3.4.0",
+ "content-tag": "^2.0.1 || ^3.0.0",
+ "ember-template-recast": "^6.1.4",
+ "vue": "^3.4.0"
+ },
+ "peerDependenciesMeta": {
+ "@glimmer/env": {
+ "optional": true
+ },
+ "@glimmer/reference": {
+ "optional": true
+ },
+ "@glimmer/syntax": {
+ "optional": true
+ },
+ "@glimmer/validator": {
+ "optional": true
+ },
+ "@vue/compiler-core": {
+ "optional": true
+ },
+ "content-tag": {
+ "optional": true
+ },
+ "ember-template-recast": {
+ "optional": true
+ },
+ "vue": {
+ "optional": true
+ }
}
},
- "node_modules/@babel/helper-member-expression-to-functions": {
- "version": "7.21.0",
+ "example/node_modules/@jest/console": {
+ "version": "29.7.0",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/types": "^7.21.0"
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "jest-message-util": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "slash": "^3.0.0"
},
"engines": {
- "node": ">=6.9.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@babel/helper-module-imports": {
- "version": "7.24.3",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz",
- "integrity": "sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==",
+ "example/node_modules/@jest/console/node_modules/@jest/types": {
+ "version": "29.6.3",
+ "license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/types": "^7.24.0"
+ "@jest/schemas": "^29.6.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^17.0.8",
+ "chalk": "^4.0.0"
},
"engines": {
- "node": ">=6.9.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@babel/helper-module-transforms": {
- "version": "7.23.3",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz",
- "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==",
+ "example/node_modules/@jest/console/node_modules/@types/yargs": {
+ "version": "17.0.33",
+ "license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-environment-visitor": "^7.22.20",
- "@babel/helper-module-imports": "^7.22.15",
- "@babel/helper-simple-access": "^7.22.5",
- "@babel/helper-split-export-declaration": "^7.22.6",
- "@babel/helper-validator-identifier": "^7.22.20"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
+ "@types/yargs-parser": "*"
}
},
- "node_modules/@babel/helper-optimise-call-expression": {
- "version": "7.18.6",
+ "example/node_modules/@jest/console/node_modules/jest-util": {
+ "version": "29.7.0",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/types": "^7.18.6"
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.9",
+ "picomatch": "^2.2.3"
},
"engines": {
- "node": ">=6.9.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@babel/helper-plugin-utils": {
- "version": "7.20.2",
+ "example/node_modules/@jest/console/node_modules/slash": {
+ "version": "3.0.0",
"license": "MIT",
+ "peer": true,
"engines": {
- "node": ">=6.9.0"
+ "node": ">=8"
}
},
- "node_modules/@babel/helper-remap-async-to-generator": {
- "version": "7.18.9",
+ "example/node_modules/@jest/globals": {
+ "version": "29.7.0",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-environment-visitor": "^7.18.9",
- "@babel/helper-wrap-function": "^7.18.9",
- "@babel/types": "^7.18.9"
+ "@jest/environment": "^29.7.0",
+ "@jest/expect": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "jest-mock": "^29.7.0"
},
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@babel/helper-replace-supers": {
- "version": "7.20.7",
+ "example/node_modules/@jest/globals/node_modules/@jest/types": {
+ "version": "29.6.3",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-environment-visitor": "^7.18.9",
- "@babel/helper-member-expression-to-functions": "^7.20.7",
- "@babel/helper-optimise-call-expression": "^7.18.6",
- "@babel/template": "^7.20.7",
- "@babel/traverse": "^7.20.7",
- "@babel/types": "^7.20.7"
+ "@jest/schemas": "^29.6.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^17.0.8",
+ "chalk": "^4.0.0"
},
"engines": {
- "node": ">=6.9.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@babel/helper-simple-access": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz",
- "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==",
+ "example/node_modules/@jest/globals/node_modules/@types/yargs": {
+ "version": "17.0.33",
+ "license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/types": "^7.22.5"
- },
- "engines": {
- "node": ">=6.9.0"
+ "@types/yargs-parser": "*"
}
},
- "node_modules/@babel/helper-skip-transparent-expression-wrappers": {
- "version": "7.20.0",
+ "example/node_modules/@jest/reporters": {
+ "version": "29.7.0",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/types": "^7.20.0"
+ "@bcoe/v8-coverage": "^0.2.3",
+ "@jest/console": "^29.7.0",
+ "@jest/test-result": "^29.7.0",
+ "@jest/transform": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@jridgewell/trace-mapping": "^0.3.18",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "collect-v8-coverage": "^1.0.0",
+ "exit": "^0.1.2",
+ "glob": "^7.1.3",
+ "graceful-fs": "^4.2.9",
+ "istanbul-lib-coverage": "^3.0.0",
+ "istanbul-lib-instrument": "^6.0.0",
+ "istanbul-lib-report": "^3.0.0",
+ "istanbul-lib-source-maps": "^4.0.0",
+ "istanbul-reports": "^3.1.3",
+ "jest-message-util": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "jest-worker": "^29.7.0",
+ "slash": "^3.0.0",
+ "string-length": "^4.0.1",
+ "strip-ansi": "^6.0.0",
+ "v8-to-istanbul": "^9.0.1"
},
"engines": {
- "node": ">=6.9.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ },
+ "peerDependencies": {
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
+ },
+ "peerDependenciesMeta": {
+ "node-notifier": {
+ "optional": true
+ }
}
},
- "node_modules/@babel/helper-split-export-declaration": {
- "version": "7.22.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz",
- "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==",
+ "example/node_modules/@jest/reporters/node_modules/@jest/test-result": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/types": "^7.22.5"
+ "@jest/console": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "collect-v8-coverage": "^1.0.0"
},
"engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-string-parser": {
- "version": "7.24.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz",
- "integrity": "sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-validator-identifier": {
- "version": "7.22.20",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz",
- "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-validator-option": {
- "version": "7.23.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz",
- "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==",
- "engines": {
- "node": ">=6.9.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@babel/helper-wrap-function": {
- "version": "7.20.5",
+ "example/node_modules/@jest/reporters/node_modules/@jest/transform": {
+ "version": "29.7.0",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-function-name": "^7.19.0",
- "@babel/template": "^7.18.10",
- "@babel/traverse": "^7.20.5",
- "@babel/types": "^7.20.5"
+ "@babel/core": "^7.11.6",
+ "@jest/types": "^29.6.3",
+ "@jridgewell/trace-mapping": "^0.3.18",
+ "babel-plugin-istanbul": "^6.1.1",
+ "chalk": "^4.0.0",
+ "convert-source-map": "^2.0.0",
+ "fast-json-stable-stringify": "^2.1.0",
+ "graceful-fs": "^4.2.9",
+ "jest-haste-map": "^29.7.0",
+ "jest-regex-util": "^29.6.3",
+ "jest-util": "^29.7.0",
+ "micromatch": "^4.0.4",
+ "pirates": "^4.0.4",
+ "slash": "^3.0.0",
+ "write-file-atomic": "^4.0.2"
},
"engines": {
- "node": ">=6.9.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@babel/helpers": {
- "version": "7.24.4",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.4.tgz",
- "integrity": "sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw==",
+ "example/node_modules/@jest/reporters/node_modules/@jest/types": {
+ "version": "29.6.3",
+ "license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/template": "^7.24.0",
- "@babel/traverse": "^7.24.1",
- "@babel/types": "^7.24.0"
+ "@jest/schemas": "^29.6.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^17.0.8",
+ "chalk": "^4.0.0"
},
"engines": {
- "node": ">=6.9.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@babel/highlight": {
- "version": "7.24.2",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.2.tgz",
- "integrity": "sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==",
+ "example/node_modules/@jest/reporters/node_modules/@types/yargs": {
+ "version": "17.0.33",
+ "license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-validator-identifier": "^7.22.20",
- "chalk": "^2.4.2",
- "js-tokens": "^4.0.0",
- "picocolors": "^1.0.0"
- },
- "engines": {
- "node": ">=6.9.0"
+ "@types/yargs-parser": "*"
}
},
- "node_modules/@babel/highlight/node_modules/chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "example/node_modules/@jest/reporters/node_modules/convert-source-map": {
+ "version": "2.0.0",
+ "license": "MIT",
+ "peer": true
+ },
+ "example/node_modules/@jest/reporters/node_modules/glob": {
+ "version": "7.2.3",
+ "license": "ISC",
+ "peer": true,
"dependencies": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
},
"engines": {
- "node": ">=4"
- }
- },
- "node_modules/@babel/parser": {
- "version": "7.24.4",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.4.tgz",
- "integrity": "sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==",
- "bin": {
- "parser": "bin/babel-parser.js"
+ "node": "*"
},
- "engines": {
- "node": ">=6.0.0"
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
- "version": "7.18.6",
+ "example/node_modules/@jest/reporters/node_modules/jest-haste-map": {
+ "version": "29.7.0",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@jest/types": "^29.6.3",
+ "@types/graceful-fs": "^4.1.3",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "graceful-fs": "^4.2.9",
+ "jest-regex-util": "^29.6.3",
+ "jest-util": "^29.7.0",
+ "jest-worker": "^29.7.0",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.8"
},
"engines": {
- "node": ">=6.9.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
},
- "peerDependencies": {
- "@babel/core": "^7.0.0"
+ "optionalDependencies": {
+ "fsevents": "^2.3.2"
}
},
- "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
- "version": "7.20.7",
+ "example/node_modules/@jest/reporters/node_modules/jest-regex-util": {
+ "version": "29.6.3",
"license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0",
- "@babel/plugin-proposal-optional-chaining": "^7.20.7"
- },
+ "peer": true,
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.13.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@babel/plugin-proposal-async-generator-functions": {
- "version": "7.20.7",
+ "example/node_modules/@jest/reporters/node_modules/jest-util": {
+ "version": "29.7.0",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-environment-visitor": "^7.18.9",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-remap-async-to-generator": "^7.18.9",
- "@babel/plugin-syntax-async-generators": "^7.8.4"
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.9",
+ "picomatch": "^2.2.3"
},
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@babel/plugin-proposal-class-properties": {
- "version": "7.18.6",
+ "example/node_modules/@jest/reporters/node_modules/slash": {
+ "version": "3.0.0",
"license": "MIT",
- "dependencies": {
- "@babel/helper-create-class-features-plugin": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
- },
+ "peer": true,
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": ">=8"
}
},
- "node_modules/@babel/plugin-proposal-class-static-block": {
- "version": "7.21.0",
- "license": "MIT",
+ "example/node_modules/@jest/reporters/node_modules/write-file-atomic": {
+ "version": "4.0.2",
+ "license": "ISC",
+ "peer": true,
"dependencies": {
- "@babel/helper-create-class-features-plugin": "^7.21.0",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/plugin-syntax-class-static-block": "^7.14.5"
+ "imurmurhash": "^0.1.4",
+ "signal-exit": "^3.0.7"
},
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.12.0"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/@babel/plugin-proposal-dynamic-import": {
- "version": "7.18.6",
+ "example/node_modules/@jest/source-map": {
+ "version": "29.6.3",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/plugin-syntax-dynamic-import": "^7.8.3"
+ "@jridgewell/trace-mapping": "^0.3.18",
+ "callsites": "^3.0.0",
+ "graceful-fs": "^4.2.9"
},
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@babel/plugin-proposal-export-namespace-from": {
- "version": "7.18.9",
+ "example/node_modules/@jest/test-sequencer": {
+ "version": "29.7.0",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.9",
- "@babel/plugin-syntax-export-namespace-from": "^7.8.3"
+ "@jest/test-result": "^29.7.0",
+ "graceful-fs": "^4.2.9",
+ "jest-haste-map": "^29.7.0",
+ "slash": "^3.0.0"
},
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@babel/plugin-proposal-json-strings": {
- "version": "7.18.6",
+ "example/node_modules/@jest/test-sequencer/node_modules/@jest/test-result": {
+ "version": "29.7.0",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/plugin-syntax-json-strings": "^7.8.3"
+ "@jest/console": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "collect-v8-coverage": "^1.0.0"
},
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@babel/plugin-proposal-logical-assignment-operators": {
- "version": "7.20.7",
+ "example/node_modules/@jest/test-sequencer/node_modules/@jest/types": {
+ "version": "29.6.3",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
+ "@jest/schemas": "^29.6.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^17.0.8",
+ "chalk": "^4.0.0"
},
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": {
- "version": "7.18.6",
+ "example/node_modules/@jest/test-sequencer/node_modules/@types/yargs": {
+ "version": "17.0.33",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@types/yargs-parser": "*"
}
},
- "node_modules/@babel/plugin-proposal-numeric-separator": {
- "version": "7.18.6",
+ "example/node_modules/@jest/test-sequencer/node_modules/jest-haste-map": {
+ "version": "29.7.0",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/plugin-syntax-numeric-separator": "^7.10.4"
+ "@jest/types": "^29.6.3",
+ "@types/graceful-fs": "^4.1.3",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "graceful-fs": "^4.2.9",
+ "jest-regex-util": "^29.6.3",
+ "jest-util": "^29.7.0",
+ "jest-worker": "^29.7.0",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.8"
},
"engines": {
- "node": ">=6.9.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
},
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "optionalDependencies": {
+ "fsevents": "^2.3.2"
}
},
- "node_modules/@babel/plugin-proposal-object-rest-spread": {
- "version": "7.20.7",
+ "example/node_modules/@jest/test-sequencer/node_modules/jest-regex-util": {
+ "version": "29.6.3",
"license": "MIT",
- "dependencies": {
- "@babel/compat-data": "^7.20.5",
- "@babel/helper-compilation-targets": "^7.20.7",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
- "@babel/plugin-transform-parameters": "^7.20.7"
- },
+ "peer": true,
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@babel/plugin-proposal-optional-catch-binding": {
- "version": "7.18.6",
+ "example/node_modules/@jest/test-sequencer/node_modules/jest-util": {
+ "version": "29.7.0",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/plugin-syntax-optional-catch-binding": "^7.8.3"
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.9",
+ "picomatch": "^2.2.3"
},
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@babel/plugin-proposal-optional-chaining": {
- "version": "7.21.0",
+ "example/node_modules/@jest/test-sequencer/node_modules/slash": {
+ "version": "3.0.0",
"license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0",
- "@babel/plugin-syntax-optional-chaining": "^7.8.3"
- },
+ "peer": true,
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": ">=8"
}
},
- "node_modules/@babel/plugin-proposal-private-methods": {
- "version": "7.18.6",
+ "example/node_modules/@jest/transform": {
+ "version": "26.6.2",
"license": "MIT",
"dependencies": {
- "@babel/helper-create-class-features-plugin": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
- },
- "engines": {
- "node": ">=6.9.0"
+ "@babel/core": "^7.1.0",
+ "@jest/types": "^26.6.2",
+ "babel-plugin-istanbul": "^6.0.0",
+ "chalk": "^4.0.0",
+ "convert-source-map": "^1.4.0",
+ "fast-json-stable-stringify": "^2.0.0",
+ "graceful-fs": "^4.2.4",
+ "jest-haste-map": "^26.6.2",
+ "jest-regex-util": "^26.0.0",
+ "jest-util": "^26.6.2",
+ "micromatch": "^4.0.2",
+ "pirates": "^4.0.1",
+ "slash": "^3.0.0",
+ "source-map": "^0.6.1",
+ "write-file-atomic": "^3.0.0"
},
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "engines": {
+ "node": ">= 10.14.2"
}
},
- "node_modules/@babel/plugin-proposal-private-property-in-object": {
- "version": "7.21.0",
+ "example/node_modules/@jest/transform/node_modules/slash": {
+ "version": "3.0.0",
"license": "MIT",
- "dependencies": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-create-class-features-plugin": "^7.21.0",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/plugin-syntax-private-property-in-object": "^7.14.5"
- },
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": ">=8"
}
},
- "node_modules/@babel/plugin-proposal-unicode-property-regex": {
- "version": "7.18.6",
+ "example/node_modules/@jest/types": {
+ "version": "26.6.2",
"license": "MIT",
"dependencies": {
- "@babel/helper-create-regexp-features-plugin": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^15.0.0",
+ "chalk": "^4.0.0"
},
"engines": {
- "node": ">=4"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": ">= 10.14.2"
}
},
- "node_modules/@babel/plugin-syntax-async-generators": {
- "version": "7.8.4",
- "license": "MIT",
+ "example/node_modules/@openedx/frontend-build": {
+ "version": "14.2.2",
+ "license": "AGPL-3.0",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
+ "@babel/cli": "7.24.8",
+ "@babel/core": "7.24.9",
+ "@babel/eslint-parser": "7.22.9",
+ "@babel/plugin-proposal-class-properties": "7.18.6",
+ "@babel/plugin-proposal-object-rest-spread": "7.20.7",
+ "@babel/plugin-syntax-dynamic-import": "7.8.3",
+ "@babel/preset-env": "7.24.8",
+ "@babel/preset-react": "7.24.7",
+ "@edx/eslint-config": "^4.3.0",
+ "@edx/new-relic-source-map-webpack-plugin": "2.1.0",
+ "@edx/typescript-config": "1.1.0",
+ "@formatjs/cli": "^6.0.3",
+ "@fullhuman/postcss-purgecss": "5.0.0",
+ "@pmmmwh/react-refresh-webpack-plugin": "0.5.15",
+ "@svgr/webpack": "8.1.0",
+ "@types/jest": "29.5.12",
+ "@typescript-eslint/eslint-plugin": "^5.58.0",
+ "@typescript-eslint/parser": "^5.58.0",
+ "autoprefixer": "10.4.20",
+ "babel-jest": "29.6.1",
+ "babel-loader": "9.1.3",
+ "babel-plugin-formatjs": "^10.4.0",
+ "babel-plugin-transform-imports": "2.0.0",
+ "babel-polyfill": "6.26.0",
+ "chalk": "4.1.2",
+ "clean-webpack-plugin": "4.0.0",
+ "css-loader": "5.2.7",
+ "cssnano": "6.0.3",
+ "dotenv": "8.6.0",
+ "dotenv-webpack": "8.0.1",
+ "eslint": "8.44.0",
+ "eslint-config-airbnb": "19.0.4",
+ "eslint-config-airbnb-typescript": "^17.0.0",
+ "eslint-plugin-formatjs": "^4.12.2",
+ "eslint-plugin-import": "2.27.5",
+ "eslint-plugin-jsx-a11y": "6.7.1",
+ "eslint-plugin-react": "7.32.2",
+ "eslint-plugin-react-hooks": "4.6.0",
+ "express": "^4.18.2",
+ "file-loader": "6.2.0",
+ "html-webpack-plugin": "5.6.3",
+ "identity-obj-proxy": "3.0.0",
+ "image-minimizer-webpack-plugin": "3.8.3",
+ "jest": "29.6.1",
+ "jest-environment-jsdom": "29.6.1",
+ "mini-css-extract-plugin": "1.6.2",
+ "parse5": "7.1.2",
+ "postcss": "8.4.49",
+ "postcss-custom-media": "10.0.8",
+ "postcss-loader": "7.3.4",
+ "postcss-rtlcss": "5.1.2",
+ "react-dev-utils": "12.0.1",
+ "react-refresh": "0.14.2",
+ "resolve-url-loader": "5.0.0",
+ "sass": "1.69.7",
+ "sass-loader": "13.3.3",
+ "sharp": "0.32.6",
+ "source-map-loader": "4.0.2",
+ "style-loader": "3.3.4",
+ "ts-jest": "29.1.4",
+ "typescript": "4.9.5",
+ "url-loader": "4.1.1",
+ "webpack": "^5.89.0",
+ "webpack-bundle-analyzer": "^4.10.1",
+ "webpack-cli": "^5.1.4",
+ "webpack-dev-server": "^4.15.1",
+ "webpack-merge": "^5.10.0",
+ "webpack-remove-empty-scripts": "1.0.4"
},
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-bigint": {
- "version": "7.8.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
+ "bin": {
+ "fedx-scripts": "bin/fedx-scripts.js"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "react": "^16.9.0 || ^17.0.0"
}
},
- "node_modules/@babel/plugin-syntax-class-properties": {
- "version": "7.12.13",
+ "example/node_modules/@openedx/frontend-build/node_modules/@babel/cli": {
+ "version": "7.24.8",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@jridgewell/trace-mapping": "^0.3.25",
+ "commander": "^6.2.0",
+ "convert-source-map": "^2.0.0",
+ "fs-readdir-recursive": "^1.1.0",
+ "glob": "^7.2.0",
+ "make-dir": "^2.1.0",
+ "slash": "^2.0.0"
},
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-class-static-block": {
- "version": "7.14.5",
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.14.5"
+ "bin": {
+ "babel": "bin/babel.js",
+ "babel-external-helpers": "bin/babel-external-helpers.js"
},
"engines": {
"node": ">=6.9.0"
},
+ "optionalDependencies": {
+ "@nicolo-ribaudo/chokidar-2": "2.1.8-no-fsevents.3",
+ "chokidar": "^3.4.0"
+ },
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@babel/plugin-syntax-dynamic-import": {
- "version": "7.8.3",
+ "example/node_modules/@openedx/frontend-build/node_modules/@babel/core": {
+ "version": "7.24.9",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
+ "@ampproject/remapping": "^2.2.0",
+ "@babel/code-frame": "^7.24.7",
+ "@babel/generator": "^7.24.9",
+ "@babel/helper-compilation-targets": "^7.24.8",
+ "@babel/helper-module-transforms": "^7.24.9",
+ "@babel/helpers": "^7.24.8",
+ "@babel/parser": "^7.24.8",
+ "@babel/template": "^7.24.7",
+ "@babel/traverse": "^7.24.8",
+ "@babel/types": "^7.24.9",
+ "convert-source-map": "^2.0.0",
+ "debug": "^4.1.0",
+ "gensync": "^1.0.0-beta.2",
+ "json5": "^2.2.3",
+ "semver": "^6.3.1"
},
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/babel"
}
},
- "node_modules/@babel/plugin-syntax-export-namespace-from": {
- "version": "7.8.3",
+ "example/node_modules/@openedx/frontend-build/node_modules/@babel/preset-env": {
+ "version": "7.24.8",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.8.3"
+ "@babel/compat-data": "^7.24.8",
+ "@babel/helper-compilation-targets": "^7.24.8",
+ "@babel/helper-plugin-utils": "^7.24.8",
+ "@babel/helper-validator-option": "^7.24.8",
+ "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.24.7",
+ "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.24.7",
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.7",
+ "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.24.7",
+ "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2",
+ "@babel/plugin-syntax-async-generators": "^7.8.4",
+ "@babel/plugin-syntax-class-properties": "^7.12.13",
+ "@babel/plugin-syntax-class-static-block": "^7.14.5",
+ "@babel/plugin-syntax-dynamic-import": "^7.8.3",
+ "@babel/plugin-syntax-export-namespace-from": "^7.8.3",
+ "@babel/plugin-syntax-import-assertions": "^7.24.7",
+ "@babel/plugin-syntax-import-attributes": "^7.24.7",
+ "@babel/plugin-syntax-import-meta": "^7.10.4",
+ "@babel/plugin-syntax-json-strings": "^7.8.3",
+ "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
+ "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
+ "@babel/plugin-syntax-numeric-separator": "^7.10.4",
+ "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
+ "@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
+ "@babel/plugin-syntax-optional-chaining": "^7.8.3",
+ "@babel/plugin-syntax-private-property-in-object": "^7.14.5",
+ "@babel/plugin-syntax-top-level-await": "^7.14.5",
+ "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6",
+ "@babel/plugin-transform-arrow-functions": "^7.24.7",
+ "@babel/plugin-transform-async-generator-functions": "^7.24.7",
+ "@babel/plugin-transform-async-to-generator": "^7.24.7",
+ "@babel/plugin-transform-block-scoped-functions": "^7.24.7",
+ "@babel/plugin-transform-block-scoping": "^7.24.7",
+ "@babel/plugin-transform-class-properties": "^7.24.7",
+ "@babel/plugin-transform-class-static-block": "^7.24.7",
+ "@babel/plugin-transform-classes": "^7.24.8",
+ "@babel/plugin-transform-computed-properties": "^7.24.7",
+ "@babel/plugin-transform-destructuring": "^7.24.8",
+ "@babel/plugin-transform-dotall-regex": "^7.24.7",
+ "@babel/plugin-transform-duplicate-keys": "^7.24.7",
+ "@babel/plugin-transform-dynamic-import": "^7.24.7",
+ "@babel/plugin-transform-exponentiation-operator": "^7.24.7",
+ "@babel/plugin-transform-export-namespace-from": "^7.24.7",
+ "@babel/plugin-transform-for-of": "^7.24.7",
+ "@babel/plugin-transform-function-name": "^7.24.7",
+ "@babel/plugin-transform-json-strings": "^7.24.7",
+ "@babel/plugin-transform-literals": "^7.24.7",
+ "@babel/plugin-transform-logical-assignment-operators": "^7.24.7",
+ "@babel/plugin-transform-member-expression-literals": "^7.24.7",
+ "@babel/plugin-transform-modules-amd": "^7.24.7",
+ "@babel/plugin-transform-modules-commonjs": "^7.24.8",
+ "@babel/plugin-transform-modules-systemjs": "^7.24.7",
+ "@babel/plugin-transform-modules-umd": "^7.24.7",
+ "@babel/plugin-transform-named-capturing-groups-regex": "^7.24.7",
+ "@babel/plugin-transform-new-target": "^7.24.7",
+ "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7",
+ "@babel/plugin-transform-numeric-separator": "^7.24.7",
+ "@babel/plugin-transform-object-rest-spread": "^7.24.7",
+ "@babel/plugin-transform-object-super": "^7.24.7",
+ "@babel/plugin-transform-optional-catch-binding": "^7.24.7",
+ "@babel/plugin-transform-optional-chaining": "^7.24.8",
+ "@babel/plugin-transform-parameters": "^7.24.7",
+ "@babel/plugin-transform-private-methods": "^7.24.7",
+ "@babel/plugin-transform-private-property-in-object": "^7.24.7",
+ "@babel/plugin-transform-property-literals": "^7.24.7",
+ "@babel/plugin-transform-regenerator": "^7.24.7",
+ "@babel/plugin-transform-reserved-words": "^7.24.7",
+ "@babel/plugin-transform-shorthand-properties": "^7.24.7",
+ "@babel/plugin-transform-spread": "^7.24.7",
+ "@babel/plugin-transform-sticky-regex": "^7.24.7",
+ "@babel/plugin-transform-template-literals": "^7.24.7",
+ "@babel/plugin-transform-typeof-symbol": "^7.24.8",
+ "@babel/plugin-transform-unicode-escapes": "^7.24.7",
+ "@babel/plugin-transform-unicode-property-regex": "^7.24.7",
+ "@babel/plugin-transform-unicode-regex": "^7.24.7",
+ "@babel/plugin-transform-unicode-sets-regex": "^7.24.7",
+ "@babel/preset-modules": "0.1.6-no-external-plugins",
+ "babel-plugin-polyfill-corejs2": "^0.4.10",
+ "babel-plugin-polyfill-corejs3": "^0.10.4",
+ "babel-plugin-polyfill-regenerator": "^0.6.1",
+ "core-js-compat": "^3.37.1",
+ "semver": "^6.3.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@babel/plugin-syntax-flow": {
- "version": "7.21.4",
+ "example/node_modules/@openedx/frontend-build/node_modules/@babel/preset-modules": {
+ "version": "0.1.6-no-external-plugins",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2"
- },
- "engines": {
- "node": ">=6.9.0"
+ "@babel/helper-plugin-utils": "^7.0.0",
+ "@babel/types": "^7.4.4",
+ "esutils": "^2.0.2"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0"
}
},
- "node_modules/@babel/plugin-syntax-import-assertions": {
- "version": "7.20.0",
+ "example/node_modules/@openedx/frontend-build/node_modules/@babel/preset-react": {
+ "version": "7.24.7",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.19.0"
+ "@babel/helper-plugin-utils": "^7.24.7",
+ "@babel/helper-validator-option": "^7.24.7",
+ "@babel/plugin-transform-react-display-name": "^7.24.7",
+ "@babel/plugin-transform-react-jsx": "^7.24.7",
+ "@babel/plugin-transform-react-jsx-development": "^7.24.7",
+ "@babel/plugin-transform-react-pure-annotations": "^7.24.7"
},
"engines": {
"node": ">=6.9.0"
@@ -1307,3254 +1502,5606 @@
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@babel/plugin-syntax-import-meta": {
- "version": "7.10.4",
- "dev": true,
+ "example/node_modules/@openedx/frontend-build/node_modules/@edx/eslint-config": {
+ "version": "4.3.0",
"license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.10.4"
- },
+ "peer": true,
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@typescript-eslint/eslint-plugin": "^5.62.0",
+ "@typescript-eslint/parser": "^5.62.0",
+ "eslint": "^7.32.0 || ^8.2.0",
+ "eslint-config-airbnb": "^18.0.1 || ^19.0.0",
+ "eslint-config-airbnb-typescript": "^17.0.0",
+ "eslint-plugin-import": "^2.25.3",
+ "eslint-plugin-jsx-a11y": "^6.2.3",
+ "eslint-plugin-react": "^7.18.0",
+ "eslint-plugin-react-hooks": "^1.7.0 || ^4.0.0"
}
},
- "node_modules/@babel/plugin-syntax-json-strings": {
- "version": "7.8.3",
+ "example/node_modules/@openedx/frontend-build/node_modules/@jest/core": {
+ "version": "29.7.0",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
+ "@jest/console": "^29.7.0",
+ "@jest/reporters": "^29.7.0",
+ "@jest/test-result": "^29.7.0",
+ "@jest/transform": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "ansi-escapes": "^4.2.1",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "exit": "^0.1.2",
+ "graceful-fs": "^4.2.9",
+ "jest-changed-files": "^29.7.0",
+ "jest-config": "^29.7.0",
+ "jest-haste-map": "^29.7.0",
+ "jest-message-util": "^29.7.0",
+ "jest-regex-util": "^29.6.3",
+ "jest-resolve": "^29.7.0",
+ "jest-resolve-dependencies": "^29.7.0",
+ "jest-runner": "^29.7.0",
+ "jest-runtime": "^29.7.0",
+ "jest-snapshot": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "jest-validate": "^29.7.0",
+ "jest-watcher": "^29.7.0",
+ "micromatch": "^4.0.4",
+ "pretty-format": "^29.7.0",
+ "slash": "^3.0.0",
+ "strip-ansi": "^6.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
+ },
+ "peerDependenciesMeta": {
+ "node-notifier": {
+ "optional": true
+ }
}
},
- "node_modules/@babel/plugin-syntax-jsx": {
- "version": "7.18.6",
+ "example/node_modules/@openedx/frontend-build/node_modules/@jest/core/node_modules/babel-jest": {
+ "version": "29.7.0",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@jest/transform": "^29.7.0",
+ "@types/babel__core": "^7.1.14",
+ "babel-plugin-istanbul": "^6.1.1",
+ "babel-preset-jest": "^29.6.3",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.9",
+ "slash": "^3.0.0"
},
"engines": {
- "node": ">=6.9.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@babel/core": "^7.8.0"
}
},
- "node_modules/@babel/plugin-syntax-logical-assignment-operators": {
- "version": "7.10.4",
+ "example/node_modules/@openedx/frontend-build/node_modules/@jest/core/node_modules/jest-config": {
+ "version": "29.7.0",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.10.4"
+ "@babel/core": "^7.11.6",
+ "@jest/test-sequencer": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "babel-jest": "^29.7.0",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "deepmerge": "^4.2.2",
+ "glob": "^7.1.3",
+ "graceful-fs": "^4.2.9",
+ "jest-circus": "^29.7.0",
+ "jest-environment-node": "^29.7.0",
+ "jest-get-type": "^29.6.3",
+ "jest-regex-util": "^29.6.3",
+ "jest-resolve": "^29.7.0",
+ "jest-runner": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "jest-validate": "^29.7.0",
+ "micromatch": "^4.0.4",
+ "parse-json": "^5.2.0",
+ "pretty-format": "^29.7.0",
+ "slash": "^3.0.0",
+ "strip-json-comments": "^3.1.1"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@types/node": "*",
+ "ts-node": ">=9.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/node": {
+ "optional": true
+ },
+ "ts-node": {
+ "optional": true
+ }
}
},
- "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": {
- "version": "7.8.3",
+ "example/node_modules/@openedx/frontend-build/node_modules/@jest/core/node_modules/slash": {
+ "version": "3.0.0",
"license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "peer": true,
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/@babel/plugin-syntax-numeric-separator": {
- "version": "7.10.4",
+ "example/node_modules/@openedx/frontend-build/node_modules/@jest/test-result": {
+ "version": "29.7.0",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.10.4"
+ "@jest/console": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "collect-v8-coverage": "^1.0.0"
},
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@babel/plugin-syntax-object-rest-spread": {
- "version": "7.8.3",
+ "example/node_modules/@openedx/frontend-build/node_modules/@jest/transform": {
+ "version": "29.7.0",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
+ "@babel/core": "^7.11.6",
+ "@jest/types": "^29.6.3",
+ "@jridgewell/trace-mapping": "^0.3.18",
+ "babel-plugin-istanbul": "^6.1.1",
+ "chalk": "^4.0.0",
+ "convert-source-map": "^2.0.0",
+ "fast-json-stable-stringify": "^2.1.0",
+ "graceful-fs": "^4.2.9",
+ "jest-haste-map": "^29.7.0",
+ "jest-regex-util": "^29.6.3",
+ "jest-util": "^29.7.0",
+ "micromatch": "^4.0.4",
+ "pirates": "^4.0.4",
+ "slash": "^3.0.0",
+ "write-file-atomic": "^4.0.2"
},
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@babel/plugin-syntax-optional-catch-binding": {
- "version": "7.8.3",
+ "example/node_modules/@openedx/frontend-build/node_modules/@jest/transform/node_modules/slash": {
+ "version": "3.0.0",
"license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "peer": true,
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/@babel/plugin-syntax-optional-chaining": {
- "version": "7.8.3",
+ "example/node_modules/@openedx/frontend-build/node_modules/@jest/types": {
+ "version": "29.6.3",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
+ "@jest/schemas": "^29.6.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^17.0.8",
+ "chalk": "^4.0.0"
},
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@babel/plugin-syntax-private-property-in-object": {
- "version": "7.14.5",
+ "example/node_modules/@openedx/frontend-build/node_modules/@pmmmwh/react-refresh-webpack-plugin": {
+ "version": "0.5.15",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.14.5"
+ "ansi-html": "^0.0.9",
+ "core-js-pure": "^3.23.3",
+ "error-stack-parser": "^2.0.6",
+ "html-entities": "^2.1.0",
+ "loader-utils": "^2.0.4",
+ "schema-utils": "^4.2.0",
+ "source-map": "^0.7.3"
},
"engines": {
- "node": ">=6.9.0"
+ "node": ">= 10.13"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@types/webpack": "4.x || 5.x",
+ "react-refresh": ">=0.10.0 <1.0.0",
+ "sockjs-client": "^1.4.0",
+ "type-fest": ">=0.17.0 <5.0.0",
+ "webpack": ">=4.43.0 <6.0.0",
+ "webpack-dev-server": "3.x || 4.x || 5.x",
+ "webpack-hot-middleware": "2.x",
+ "webpack-plugin-serve": "0.x || 1.x"
+ },
+ "peerDependenciesMeta": {
+ "@types/webpack": {
+ "optional": true
+ },
+ "sockjs-client": {
+ "optional": true
+ },
+ "type-fest": {
+ "optional": true
+ },
+ "webpack-dev-server": {
+ "optional": true
+ },
+ "webpack-hot-middleware": {
+ "optional": true
+ },
+ "webpack-plugin-serve": {
+ "optional": true
+ }
}
},
- "node_modules/@babel/plugin-syntax-top-level-await": {
- "version": "7.14.5",
+ "example/node_modules/@openedx/frontend-build/node_modules/@types/yargs": {
+ "version": "17.0.33",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.14.5"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@types/yargs-parser": "*"
}
},
- "node_modules/@babel/plugin-syntax-typescript": {
- "version": "7.20.0",
+ "example/node_modules/@openedx/frontend-build/node_modules/autoprefixer": {
+ "version": "10.4.20",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/autoprefixer"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.19.0"
+ "browserslist": "^4.23.3",
+ "caniuse-lite": "^1.0.30001646",
+ "fraction.js": "^4.3.7",
+ "normalize-range": "^0.1.2",
+ "picocolors": "^1.0.1",
+ "postcss-value-parser": "^4.2.0"
+ },
+ "bin": {
+ "autoprefixer": "bin/autoprefixer"
},
"engines": {
- "node": ">=6.9.0"
+ "node": "^10 || ^12 || >=14"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "postcss": "^8.1.0"
}
},
- "node_modules/@babel/plugin-transform-arrow-functions": {
- "version": "7.20.7",
+ "example/node_modules/@openedx/frontend-build/node_modules/babel-jest": {
+ "version": "29.6.1",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@jest/transform": "^29.6.1",
+ "@types/babel__core": "^7.1.14",
+ "babel-plugin-istanbul": "^6.1.1",
+ "babel-preset-jest": "^29.5.0",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.9",
+ "slash": "^3.0.0"
},
"engines": {
- "node": ">=6.9.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@babel/core": "^7.8.0"
}
},
- "node_modules/@babel/plugin-transform-async-to-generator": {
- "version": "7.20.7",
+ "example/node_modules/@openedx/frontend-build/node_modules/babel-jest/node_modules/slash": {
+ "version": "3.0.0",
"license": "MIT",
- "dependencies": {
- "@babel/helper-module-imports": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-remap-async-to-generator": "^7.18.9"
- },
+ "peer": true,
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": ">=8"
}
},
- "node_modules/@babel/plugin-transform-block-scoped-functions": {
- "version": "7.18.6",
+ "example/node_modules/@openedx/frontend-build/node_modules/babel-plugin-polyfill-corejs3": {
+ "version": "0.10.6",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6"
- },
- "engines": {
- "node": ">=6.9.0"
+ "@babel/helper-define-polyfill-provider": "^0.6.2",
+ "core-js-compat": "^3.38.0"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
}
},
- "node_modules/@babel/plugin-transform-block-scoping": {
- "version": "7.21.0",
+ "example/node_modules/@openedx/frontend-build/node_modules/babel-plugin-polyfill-regenerator": {
+ "version": "0.6.3",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2"
- },
- "engines": {
- "node": ">=6.9.0"
+ "@babel/helper-define-polyfill-provider": "^0.6.3"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
}
},
- "node_modules/@babel/plugin-transform-classes": {
- "version": "7.21.0",
+ "example/node_modules/@openedx/frontend-build/node_modules/babel-preset-jest": {
+ "version": "29.6.3",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-compilation-targets": "^7.20.7",
- "@babel/helper-environment-visitor": "^7.18.9",
- "@babel/helper-function-name": "^7.21.0",
- "@babel/helper-optimise-call-expression": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-replace-supers": "^7.20.7",
- "@babel/helper-split-export-declaration": "^7.18.6",
- "globals": "^11.1.0"
+ "babel-plugin-jest-hoist": "^29.6.3",
+ "babel-preset-current-node-syntax": "^1.0.0"
},
"engines": {
- "node": ">=6.9.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@babel/core": "^7.0.0"
}
},
- "node_modules/@babel/plugin-transform-computed-properties": {
- "version": "7.20.7",
+ "example/node_modules/@openedx/frontend-build/node_modules/commander": {
+ "version": "6.2.1",
"license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/template": "^7.20.7"
- },
+ "peer": true,
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": ">= 6"
}
},
- "node_modules/@babel/plugin-transform-destructuring": {
- "version": "7.21.3",
+ "example/node_modules/@openedx/frontend-build/node_modules/convert-source-map": {
+ "version": "2.0.0",
+ "license": "MIT",
+ "peer": true
+ },
+ "example/node_modules/@openedx/frontend-build/node_modules/cssnano": {
+ "version": "6.0.3",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2"
+ "cssnano-preset-default": "^6.0.3",
+ "lilconfig": "^3.0.0"
},
"engines": {
- "node": ">=6.9.0"
+ "node": "^14 || ^16 || >=18.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/cssnano"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "postcss": "^8.4.31"
}
},
- "node_modules/@babel/plugin-transform-dotall-regex": {
- "version": "7.18.6",
+ "example/node_modules/@openedx/frontend-build/node_modules/debug": {
+ "version": "4.4.0",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-create-regexp-features-plugin": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
+ "ms": "^2.1.3"
},
"engines": {
- "node": ">=6.9.0"
+ "node": ">=6.0"
},
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
}
},
- "node_modules/@babel/plugin-transform-duplicate-keys": {
- "version": "7.18.9",
- "license": "MIT",
+ "example/node_modules/@openedx/frontend-build/node_modules/glob": {
+ "version": "7.2.3",
+ "license": "ISC",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.9"
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
},
"engines": {
- "node": ">=6.9.0"
+ "node": "*"
},
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/@babel/plugin-transform-exponentiation-operator": {
- "version": "7.18.6",
+ "example/node_modules/@openedx/frontend-build/node_modules/html-webpack-plugin": {
+ "version": "5.6.3",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@types/html-minifier-terser": "^6.0.0",
+ "html-minifier-terser": "^6.0.2",
+ "lodash": "^4.17.21",
+ "pretty-error": "^4.0.0",
+ "tapable": "^2.0.0"
},
"engines": {
- "node": ">=6.9.0"
+ "node": ">=10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/html-webpack-plugin"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@rspack/core": "0.x || 1.x",
+ "webpack": "^5.20.0"
+ },
+ "peerDependenciesMeta": {
+ "@rspack/core": {
+ "optional": true
+ },
+ "webpack": {
+ "optional": true
+ }
}
},
- "node_modules/@babel/plugin-transform-flow-strip-types": {
- "version": "7.21.0",
+ "example/node_modules/@openedx/frontend-build/node_modules/jest": {
+ "version": "29.6.1",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/plugin-syntax-flow": "^7.18.6"
+ "@jest/core": "^29.6.1",
+ "@jest/types": "^29.6.1",
+ "import-local": "^3.0.2",
+ "jest-cli": "^29.6.1"
+ },
+ "bin": {
+ "jest": "bin/jest.js"
},
"engines": {
- "node": ">=6.9.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
+ },
+ "peerDependenciesMeta": {
+ "node-notifier": {
+ "optional": true
+ }
}
},
- "node_modules/@babel/plugin-transform-for-of": {
- "version": "7.21.0",
+ "example/node_modules/@openedx/frontend-build/node_modules/jest-cli": {
+ "version": "29.7.0",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@jest/core": "^29.7.0",
+ "@jest/test-result": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "chalk": "^4.0.0",
+ "create-jest": "^29.7.0",
+ "exit": "^0.1.2",
+ "import-local": "^3.0.2",
+ "jest-config": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "jest-validate": "^29.7.0",
+ "yargs": "^17.3.1"
+ },
+ "bin": {
+ "jest": "bin/jest.js"
},
"engines": {
- "node": ">=6.9.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
+ },
+ "peerDependenciesMeta": {
+ "node-notifier": {
+ "optional": true
+ }
}
},
- "node_modules/@babel/plugin-transform-function-name": {
- "version": "7.18.9",
+ "example/node_modules/@openedx/frontend-build/node_modules/jest-cli/node_modules/babel-jest": {
+ "version": "29.7.0",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-compilation-targets": "^7.18.9",
- "@babel/helper-function-name": "^7.18.9",
- "@babel/helper-plugin-utils": "^7.18.9"
+ "@jest/transform": "^29.7.0",
+ "@types/babel__core": "^7.1.14",
+ "babel-plugin-istanbul": "^6.1.1",
+ "babel-preset-jest": "^29.6.3",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.9",
+ "slash": "^3.0.0"
},
"engines": {
- "node": ">=6.9.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@babel/core": "^7.8.0"
}
},
- "node_modules/@babel/plugin-transform-literals": {
- "version": "7.18.9",
+ "example/node_modules/@openedx/frontend-build/node_modules/jest-cli/node_modules/jest-config": {
+ "version": "29.7.0",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.9"
+ "@babel/core": "^7.11.6",
+ "@jest/test-sequencer": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "babel-jest": "^29.7.0",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "deepmerge": "^4.2.2",
+ "glob": "^7.1.3",
+ "graceful-fs": "^4.2.9",
+ "jest-circus": "^29.7.0",
+ "jest-environment-node": "^29.7.0",
+ "jest-get-type": "^29.6.3",
+ "jest-regex-util": "^29.6.3",
+ "jest-resolve": "^29.7.0",
+ "jest-runner": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "jest-validate": "^29.7.0",
+ "micromatch": "^4.0.4",
+ "parse-json": "^5.2.0",
+ "pretty-format": "^29.7.0",
+ "slash": "^3.0.0",
+ "strip-json-comments": "^3.1.1"
},
"engines": {
- "node": ">=6.9.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@types/node": "*",
+ "ts-node": ">=9.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/node": {
+ "optional": true
+ },
+ "ts-node": {
+ "optional": true
+ }
}
},
- "node_modules/@babel/plugin-transform-member-expression-literals": {
- "version": "7.18.6",
+ "example/node_modules/@openedx/frontend-build/node_modules/jest-cli/node_modules/slash": {
+ "version": "3.0.0",
"license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6"
- },
+ "peer": true,
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": ">=8"
}
},
- "node_modules/@babel/plugin-transform-modules-amd": {
- "version": "7.20.11",
+ "example/node_modules/@openedx/frontend-build/node_modules/jest-haste-map": {
+ "version": "29.7.0",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-module-transforms": "^7.20.11",
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@jest/types": "^29.6.3",
+ "@types/graceful-fs": "^4.1.3",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "graceful-fs": "^4.2.9",
+ "jest-regex-util": "^29.6.3",
+ "jest-util": "^29.7.0",
+ "jest-worker": "^29.7.0",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.8"
},
"engines": {
- "node": ">=6.9.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
},
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "optionalDependencies": {
+ "fsevents": "^2.3.2"
}
},
- "node_modules/@babel/plugin-transform-modules-commonjs": {
- "version": "7.21.2",
+ "example/node_modules/@openedx/frontend-build/node_modules/jest-regex-util": {
+ "version": "29.6.3",
"license": "MIT",
- "dependencies": {
- "@babel/helper-module-transforms": "^7.21.2",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-simple-access": "^7.20.2"
- },
+ "peer": true,
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@babel/plugin-transform-modules-systemjs": {
- "version": "7.20.11",
+ "example/node_modules/@openedx/frontend-build/node_modules/jest-util": {
+ "version": "29.7.0",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-hoist-variables": "^7.18.6",
- "@babel/helper-module-transforms": "^7.20.11",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-validator-identifier": "^7.19.1"
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.9",
+ "picomatch": "^2.2.3"
},
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@babel/plugin-transform-modules-umd": {
- "version": "7.18.6",
+ "example/node_modules/@openedx/frontend-build/node_modules/jest-validate": {
+ "version": "29.7.0",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-module-transforms": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@jest/types": "^29.6.3",
+ "camelcase": "^6.2.0",
+ "chalk": "^4.0.0",
+ "jest-get-type": "^29.6.3",
+ "leven": "^3.1.0",
+ "pretty-format": "^29.7.0"
},
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@babel/plugin-transform-named-capturing-groups-regex": {
- "version": "7.20.5",
+ "example/node_modules/@openedx/frontend-build/node_modules/postcss-loader": {
+ "version": "7.3.4",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-create-regexp-features-plugin": "^7.20.5",
- "@babel/helper-plugin-utils": "^7.20.2"
+ "cosmiconfig": "^8.3.5",
+ "jiti": "^1.20.0",
+ "semver": "^7.5.4"
},
"engines": {
- "node": ">=6.9.0"
+ "node": ">= 14.15.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
},
"peerDependencies": {
- "@babel/core": "^7.0.0"
+ "postcss": "^7.0.0 || ^8.0.1",
+ "webpack": "^5.0.0"
}
},
- "node_modules/@babel/plugin-transform-new-target": {
- "version": "7.18.6",
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "example/node_modules/@openedx/frontend-build/node_modules/postcss-loader/node_modules/semver": {
+ "version": "7.6.3",
+ "license": "ISC",
+ "peer": true,
+ "bin": {
+ "semver": "bin/semver.js"
},
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": ">=10"
}
},
- "node_modules/@babel/plugin-transform-object-super": {
- "version": "7.18.6",
+ "example/node_modules/@openedx/frontend-build/node_modules/react-refresh": {
+ "version": "0.14.2",
"license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/helper-replace-supers": "^7.18.6"
- },
+ "peer": true,
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": ">=0.10.0"
}
},
- "node_modules/@babel/plugin-transform-parameters": {
- "version": "7.21.3",
+ "example/node_modules/@openedx/frontend-build/node_modules/sass-loader": {
+ "version": "13.3.3",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2"
+ "neo-async": "^2.6.2"
},
"engines": {
- "node": ">=6.9.0"
+ "node": ">= 14.15.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "fibers": ">= 3.1.0",
+ "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
+ "sass": "^1.3.0",
+ "sass-embedded": "*",
+ "webpack": "^5.0.0"
+ },
+ "peerDependenciesMeta": {
+ "fibers": {
+ "optional": true
+ },
+ "node-sass": {
+ "optional": true
+ },
+ "sass": {
+ "optional": true
+ },
+ "sass-embedded": {
+ "optional": true
+ }
}
},
- "node_modules/@babel/plugin-transform-property-literals": {
- "version": "7.18.6",
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6"
- },
+ "example/node_modules/@openedx/frontend-build/node_modules/source-map": {
+ "version": "0.7.4",
+ "license": "BSD-3-Clause",
+ "peer": true,
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": ">= 8"
}
},
- "node_modules/@babel/plugin-transform-react-constant-elements": {
- "version": "7.21.3",
- "dev": true,
+ "example/node_modules/@openedx/frontend-build/node_modules/source-map-loader": {
+ "version": "4.0.2",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2"
+ "iconv-lite": "^0.6.3",
+ "source-map-js": "^1.0.2"
},
"engines": {
- "node": ">=6.9.0"
+ "node": ">= 14.15.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "webpack": "^5.72.1"
}
},
- "node_modules/@babel/plugin-transform-react-display-name": {
- "version": "7.18.6",
+ "example/node_modules/@openedx/frontend-build/node_modules/style-loader": {
+ "version": "3.3.4",
"license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6"
- },
+ "peer": true,
"engines": {
- "node": ">=6.9.0"
+ "node": ">= 12.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "webpack": "^5.0.0"
}
},
- "node_modules/@babel/plugin-transform-react-jsx": {
- "version": "7.21.0",
+ "example/node_modules/@openedx/frontend-build/node_modules/ts-jest": {
+ "version": "29.1.4",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-module-imports": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/plugin-syntax-jsx": "^7.18.6",
- "@babel/types": "^7.21.0"
+ "bs-logger": "0.x",
+ "fast-json-stable-stringify": "2.x",
+ "jest-util": "^29.0.0",
+ "json5": "^2.2.3",
+ "lodash.memoize": "4.x",
+ "make-error": "1.x",
+ "semver": "^7.5.3",
+ "yargs-parser": "^21.0.1"
+ },
+ "bin": {
+ "ts-jest": "cli.js"
},
"engines": {
- "node": ">=6.9.0"
+ "node": "^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@babel/core": ">=7.0.0-beta.0 <8",
+ "@jest/transform": "^29.0.0",
+ "@jest/types": "^29.0.0",
+ "babel-jest": "^29.0.0",
+ "jest": "^29.0.0",
+ "typescript": ">=4.3 <6"
+ },
+ "peerDependenciesMeta": {
+ "@babel/core": {
+ "optional": true
+ },
+ "@jest/transform": {
+ "optional": true
+ },
+ "@jest/types": {
+ "optional": true
+ },
+ "babel-jest": {
+ "optional": true
+ },
+ "esbuild": {
+ "optional": true
+ }
}
},
- "node_modules/@babel/plugin-transform-react-jsx-development": {
- "version": "7.18.6",
- "license": "MIT",
- "dependencies": {
- "@babel/plugin-transform-react-jsx": "^7.18.6"
+ "example/node_modules/@openedx/frontend-build/node_modules/ts-jest/node_modules/semver": {
+ "version": "7.6.3",
+ "license": "ISC",
+ "peer": true,
+ "bin": {
+ "semver": "bin/semver.js"
},
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": ">=10"
}
},
- "node_modules/@babel/plugin-transform-react-pure-annotations": {
- "version": "7.18.6",
+ "example/node_modules/@openedx/frontend-build/node_modules/webpack-merge": {
+ "version": "5.10.0",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
+ "clone-deep": "^4.0.1",
+ "flat": "^5.0.2",
+ "wildcard": "^2.0.0"
},
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": ">=10.0.0"
}
},
- "node_modules/@babel/plugin-transform-regenerator": {
- "version": "7.20.5",
- "license": "MIT",
+ "example/node_modules/@openedx/frontend-build/node_modules/write-file-atomic": {
+ "version": "4.0.2",
+ "license": "ISC",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2",
- "regenerator-transform": "^0.15.1"
+ "imurmurhash": "^0.1.4",
+ "signal-exit": "^3.0.7"
},
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/@babel/plugin-transform-reserved-words": {
- "version": "7.18.6",
+ "example/node_modules/@openedx/frontend-build/node_modules/yargs": {
+ "version": "17.7.2",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "cliui": "^8.0.1",
+ "escalade": "^3.1.1",
+ "get-caller-file": "^2.0.5",
+ "require-directory": "^2.1.1",
+ "string-width": "^4.2.3",
+ "y18n": "^5.0.5",
+ "yargs-parser": "^21.1.1"
},
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": ">=12"
}
},
- "node_modules/@babel/plugin-transform-runtime": {
- "version": "7.21.4",
- "license": "MIT",
+ "example/node_modules/@openedx/paragon": {
+ "version": "22.13.0",
+ "license": "Apache-2.0",
+ "peer": true,
+ "workspaces": [
+ "example",
+ "component-generator",
+ "www",
+ "icons",
+ "dependent-usage-analyzer"
+ ],
"dependencies": {
- "@babel/helper-module-imports": "^7.21.4",
- "@babel/helper-plugin-utils": "^7.20.2",
- "babel-plugin-polyfill-corejs2": "^0.3.3",
- "babel-plugin-polyfill-corejs3": "^0.6.0",
- "babel-plugin-polyfill-regenerator": "^0.4.1",
- "semver": "^6.3.0"
+ "@fortawesome/fontawesome-svg-core": "^6.1.1",
+ "@fortawesome/react-fontawesome": "^0.1.18",
+ "@popperjs/core": "^2.11.4",
+ "bootstrap": "^4.6.2",
+ "chalk": "^4.1.2",
+ "child_process": "^1.0.2",
+ "classnames": "^2.3.1",
+ "email-prop-type": "^3.0.0",
+ "file-selector": "^0.6.0",
+ "font-awesome": "^4.7.0",
+ "glob": "^8.0.3",
+ "inquirer": "^8.2.5",
+ "lodash.uniqby": "^4.7.0",
+ "mailto-link": "^2.0.0",
+ "prop-types": "^15.8.1",
+ "react-bootstrap": "^1.6.5",
+ "react-colorful": "^5.6.1",
+ "react-dropzone": "^14.2.1",
+ "react-focus-on": "^3.5.4",
+ "react-imask": "^7.1.3",
+ "react-loading-skeleton": "^3.1.0",
+ "react-popper": "^2.2.5",
+ "react-proptype-conditional-require": "^1.0.4",
+ "react-responsive": "^8.2.0",
+ "react-table": "^7.7.0",
+ "react-transition-group": "^4.4.2",
+ "tabbable": "^5.3.3",
+ "uncontrollable": "^7.2.1",
+ "uuid": "^9.0.0"
},
- "engines": {
- "node": ">=6.9.0"
+ "bin": {
+ "paragon": "bin/paragon-scripts.js"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "react": "^16.8.6 || ^17.0.0",
+ "react-dom": "^16.8.6 || ^17.0.0",
+ "react-intl": "^5.25.1 || ^6.4.0"
}
},
- "node_modules/@babel/plugin-transform-shorthand-properties": {
- "version": "7.18.6",
+ "example/node_modules/@svgr/webpack": {
+ "version": "8.1.0",
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/core": "^7.21.3",
+ "@babel/plugin-transform-react-constant-elements": "^7.21.3",
+ "@babel/preset-env": "^7.20.2",
+ "@babel/preset-react": "^7.18.6",
+ "@babel/preset-typescript": "^7.21.0",
+ "@svgr/core": "8.1.0",
+ "@svgr/plugin-jsx": "8.1.0",
+ "@svgr/plugin-svgo": "8.1.0"
},
"engines": {
- "node": ">=6.9.0"
+ "node": ">=14"
},
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/gregberge"
}
},
- "node_modules/@babel/plugin-transform-spread": {
- "version": "7.20.7",
+ "example/node_modules/@types/jest": {
+ "version": "29.5.12",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0"
- },
+ "expect": "^29.0.0",
+ "pretty-format": "^29.0.0"
+ }
+ },
+ "example/node_modules/ansi-styles": {
+ "version": "5.2.0",
+ "license": "MIT",
+ "peer": true,
"engines": {
- "node": ">=6.9.0"
+ "node": ">=10"
},
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/@babel/plugin-transform-sticky-regex": {
- "version": "7.18.6",
+ "example/node_modules/axios": {
+ "version": "1.6.7",
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "follow-redirects": "^1.15.4",
+ "form-data": "^4.0.0",
+ "proxy-from-env": "^1.1.0"
}
},
- "node_modules/@babel/plugin-transform-template-literals": {
- "version": "7.18.9",
+ "example/node_modules/axios-cache-interceptor": {
+ "version": "1.6.2",
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.9"
+ "cache-parser": "1.2.5",
+ "fast-defer": "1.1.8",
+ "object-code": "1.3.3"
},
"engines": {
- "node": ">=6.9.0"
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/arthurfiorette/axios-cache-interceptor?sponsor=1"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "axios": "^1"
}
},
- "node_modules/@babel/plugin-transform-typeof-symbol": {
- "version": "7.18.9",
+ "example/node_modules/babel-jest": {
+ "version": "26.6.3",
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.9"
+ "@jest/transform": "^26.6.2",
+ "@jest/types": "^26.6.2",
+ "@types/babel__core": "^7.1.7",
+ "babel-plugin-istanbul": "^6.0.0",
+ "babel-preset-jest": "^26.6.2",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.4",
+ "slash": "^3.0.0"
},
"engines": {
- "node": ">=6.9.0"
+ "node": ">= 10.14.2"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@babel/core": "^7.0.0"
}
},
- "node_modules/@babel/plugin-transform-typescript": {
- "version": "7.21.3",
+ "example/node_modules/babel-jest/node_modules/slash": {
+ "version": "3.0.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "example/node_modules/babel-loader": {
+ "version": "9.1.3",
"license": "MIT",
"dependencies": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-create-class-features-plugin": "^7.21.0",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/plugin-syntax-typescript": "^7.20.0"
+ "find-cache-dir": "^4.0.0",
+ "schema-utils": "^4.0.0"
},
"engines": {
- "node": ">=6.9.0"
+ "node": ">= 14.15.0"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@babel/core": "^7.12.0",
+ "webpack": ">=5"
}
},
- "node_modules/@babel/plugin-transform-unicode-escapes": {
- "version": "7.18.10",
+ "example/node_modules/babel-plugin-jest-hoist": {
+ "version": "29.6.3",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.9"
+ "@babel/template": "^7.3.3",
+ "@babel/types": "^7.3.3",
+ "@types/babel__core": "^7.1.14",
+ "@types/babel__traverse": "^7.0.6"
},
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@babel/plugin-transform-unicode-regex": {
- "version": "7.18.6",
+ "example/node_modules/ci-info": {
+ "version": "3.9.0",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/sibiraj-s"
+ }
+ ],
"license": "MIT",
+ "peer": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "example/node_modules/cjs-module-lexer": {
+ "version": "1.4.1",
+ "license": "MIT",
+ "peer": true
+ },
+ "example/node_modules/cliui": {
+ "version": "8.0.1",
+ "license": "ISC",
+ "peer": true,
"dependencies": {
- "@babel/helper-create-regexp-features-plugin": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.1",
+ "wrap-ansi": "^7.0.0"
},
"engines": {
- "node": ">=6.9.0"
+ "node": ">=12"
+ }
+ },
+ "example/node_modules/commander": {
+ "version": "4.1.1",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "example/node_modules/detect-libc": {
+ "version": "2.0.3",
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "example/node_modules/dotenv": {
+ "version": "8.6.0",
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "example/node_modules/emittery": {
+ "version": "0.13.1",
+ "license": "MIT",
+ "peer": true,
+ "engines": {
+ "node": ">=12"
},
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "funding": {
+ "url": "https://github.com/sindresorhus/emittery?sponsor=1"
}
},
- "node_modules/@babel/preset-env": {
- "version": "7.21.4",
+ "example/node_modules/eslint": {
+ "version": "8.44.0",
"license": "MIT",
"dependencies": {
- "@babel/compat-data": "^7.21.4",
- "@babel/helper-compilation-targets": "^7.21.4",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-validator-option": "^7.21.0",
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6",
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.20.7",
- "@babel/plugin-proposal-async-generator-functions": "^7.20.7",
- "@babel/plugin-proposal-class-properties": "^7.18.6",
- "@babel/plugin-proposal-class-static-block": "^7.21.0",
- "@babel/plugin-proposal-dynamic-import": "^7.18.6",
- "@babel/plugin-proposal-export-namespace-from": "^7.18.9",
- "@babel/plugin-proposal-json-strings": "^7.18.6",
- "@babel/plugin-proposal-logical-assignment-operators": "^7.20.7",
- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
- "@babel/plugin-proposal-numeric-separator": "^7.18.6",
- "@babel/plugin-proposal-object-rest-spread": "^7.20.7",
- "@babel/plugin-proposal-optional-catch-binding": "^7.18.6",
- "@babel/plugin-proposal-optional-chaining": "^7.21.0",
- "@babel/plugin-proposal-private-methods": "^7.18.6",
- "@babel/plugin-proposal-private-property-in-object": "^7.21.0",
- "@babel/plugin-proposal-unicode-property-regex": "^7.18.6",
- "@babel/plugin-syntax-async-generators": "^7.8.4",
- "@babel/plugin-syntax-class-properties": "^7.12.13",
- "@babel/plugin-syntax-class-static-block": "^7.14.5",
- "@babel/plugin-syntax-dynamic-import": "^7.8.3",
- "@babel/plugin-syntax-export-namespace-from": "^7.8.3",
- "@babel/plugin-syntax-import-assertions": "^7.20.0",
- "@babel/plugin-syntax-json-strings": "^7.8.3",
- "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
- "@babel/plugin-syntax-numeric-separator": "^7.10.4",
- "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
- "@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
- "@babel/plugin-syntax-optional-chaining": "^7.8.3",
- "@babel/plugin-syntax-private-property-in-object": "^7.14.5",
- "@babel/plugin-syntax-top-level-await": "^7.14.5",
- "@babel/plugin-transform-arrow-functions": "^7.20.7",
- "@babel/plugin-transform-async-to-generator": "^7.20.7",
- "@babel/plugin-transform-block-scoped-functions": "^7.18.6",
- "@babel/plugin-transform-block-scoping": "^7.21.0",
- "@babel/plugin-transform-classes": "^7.21.0",
- "@babel/plugin-transform-computed-properties": "^7.20.7",
- "@babel/plugin-transform-destructuring": "^7.21.3",
- "@babel/plugin-transform-dotall-regex": "^7.18.6",
- "@babel/plugin-transform-duplicate-keys": "^7.18.9",
- "@babel/plugin-transform-exponentiation-operator": "^7.18.6",
- "@babel/plugin-transform-for-of": "^7.21.0",
- "@babel/plugin-transform-function-name": "^7.18.9",
- "@babel/plugin-transform-literals": "^7.18.9",
- "@babel/plugin-transform-member-expression-literals": "^7.18.6",
- "@babel/plugin-transform-modules-amd": "^7.20.11",
- "@babel/plugin-transform-modules-commonjs": "^7.21.2",
- "@babel/plugin-transform-modules-systemjs": "^7.20.11",
- "@babel/plugin-transform-modules-umd": "^7.18.6",
- "@babel/plugin-transform-named-capturing-groups-regex": "^7.20.5",
- "@babel/plugin-transform-new-target": "^7.18.6",
- "@babel/plugin-transform-object-super": "^7.18.6",
- "@babel/plugin-transform-parameters": "^7.21.3",
- "@babel/plugin-transform-property-literals": "^7.18.6",
- "@babel/plugin-transform-regenerator": "^7.20.5",
- "@babel/plugin-transform-reserved-words": "^7.18.6",
- "@babel/plugin-transform-shorthand-properties": "^7.18.6",
- "@babel/plugin-transform-spread": "^7.20.7",
- "@babel/plugin-transform-sticky-regex": "^7.18.6",
- "@babel/plugin-transform-template-literals": "^7.18.9",
- "@babel/plugin-transform-typeof-symbol": "^7.18.9",
- "@babel/plugin-transform-unicode-escapes": "^7.18.10",
- "@babel/plugin-transform-unicode-regex": "^7.18.6",
- "@babel/preset-modules": "^0.1.5",
- "@babel/types": "^7.21.4",
- "babel-plugin-polyfill-corejs2": "^0.3.3",
- "babel-plugin-polyfill-corejs3": "^0.6.0",
- "babel-plugin-polyfill-regenerator": "^0.4.1",
- "core-js-compat": "^3.25.1",
- "semver": "^6.3.0"
+ "@eslint-community/eslint-utils": "^4.2.0",
+ "@eslint-community/regexpp": "^4.4.0",
+ "@eslint/eslintrc": "^2.1.0",
+ "@eslint/js": "8.44.0",
+ "@humanwhocodes/config-array": "^0.11.10",
+ "@humanwhocodes/module-importer": "^1.0.1",
+ "@nodelib/fs.walk": "^1.2.8",
+ "ajv": "^6.10.0",
+ "chalk": "^4.0.0",
+ "cross-spawn": "^7.0.2",
+ "debug": "^4.3.2",
+ "doctrine": "^3.0.0",
+ "escape-string-regexp": "^4.0.0",
+ "eslint-scope": "^7.2.0",
+ "eslint-visitor-keys": "^3.4.1",
+ "espree": "^9.6.0",
+ "esquery": "^1.4.2",
+ "esutils": "^2.0.2",
+ "fast-deep-equal": "^3.1.3",
+ "file-entry-cache": "^6.0.1",
+ "find-up": "^5.0.0",
+ "glob-parent": "^6.0.2",
+ "globals": "^13.19.0",
+ "graphemer": "^1.4.0",
+ "ignore": "^5.2.0",
+ "import-fresh": "^3.0.0",
+ "imurmurhash": "^0.1.4",
+ "is-glob": "^4.0.0",
+ "is-path-inside": "^3.0.3",
+ "js-yaml": "^4.1.0",
+ "json-stable-stringify-without-jsonify": "^1.0.1",
+ "levn": "^0.4.1",
+ "lodash.merge": "^4.6.2",
+ "minimatch": "^3.1.2",
+ "natural-compare": "^1.4.0",
+ "optionator": "^0.9.3",
+ "strip-ansi": "^6.0.1",
+ "strip-json-comments": "^3.1.0",
+ "text-table": "^0.2.0"
+ },
+ "bin": {
+ "eslint": "bin/eslint.js"
},
"engines": {
- "node": ">=6.9.0"
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "funding": {
+ "url": "https://opencollective.com/eslint"
}
},
- "node_modules/@babel/preset-modules": {
- "version": "0.1.5",
+ "example/node_modules/eslint-plugin-import": {
+ "version": "2.27.5",
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.0.0",
- "@babel/plugin-proposal-unicode-property-regex": "^7.4.4",
- "@babel/plugin-transform-dotall-regex": "^7.4.4",
- "@babel/types": "^7.4.4",
- "esutils": "^2.0.2"
+ "array-includes": "^3.1.6",
+ "array.prototype.flat": "^1.3.1",
+ "array.prototype.flatmap": "^1.3.1",
+ "debug": "^3.2.7",
+ "doctrine": "^2.1.0",
+ "eslint-import-resolver-node": "^0.3.7",
+ "eslint-module-utils": "^2.7.4",
+ "has": "^1.0.3",
+ "is-core-module": "^2.11.0",
+ "is-glob": "^4.0.3",
+ "minimatch": "^3.1.2",
+ "object.values": "^1.1.6",
+ "resolve": "^1.22.1",
+ "semver": "^6.3.0",
+ "tsconfig-paths": "^3.14.1"
+ },
+ "engines": {
+ "node": ">=4"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8"
}
},
- "node_modules/@babel/preset-react": {
- "version": "7.18.6",
+ "example/node_modules/eslint-plugin-react": {
+ "version": "7.32.2",
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/helper-validator-option": "^7.18.6",
- "@babel/plugin-transform-react-display-name": "^7.18.6",
- "@babel/plugin-transform-react-jsx": "^7.18.6",
- "@babel/plugin-transform-react-jsx-development": "^7.18.6",
- "@babel/plugin-transform-react-pure-annotations": "^7.18.6"
+ "array-includes": "^3.1.6",
+ "array.prototype.flatmap": "^1.3.1",
+ "array.prototype.tosorted": "^1.1.1",
+ "doctrine": "^2.1.0",
+ "estraverse": "^5.3.0",
+ "jsx-ast-utils": "^2.4.1 || ^3.0.0",
+ "minimatch": "^3.1.2",
+ "object.entries": "^1.1.6",
+ "object.fromentries": "^2.0.6",
+ "object.hasown": "^1.1.2",
+ "object.values": "^1.1.6",
+ "prop-types": "^15.8.1",
+ "resolve": "^2.0.0-next.4",
+ "semver": "^6.3.0",
+ "string.prototype.matchall": "^4.0.8"
},
"engines": {
- "node": ">=6.9.0"
+ "node": ">=4"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8"
}
},
- "node_modules/@babel/preset-typescript": {
- "version": "7.21.0",
+ "example/node_modules/eslint-plugin-react-hooks": {
+ "version": "4.6.0",
"license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-validator-option": "^7.21.0",
- "@babel/plugin-transform-typescript": "^7.21.0"
- },
"engines": {
- "node": ">=6.9.0"
+ "node": ">=10"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0"
}
},
- "node_modules/@babel/regjsgen": {
- "version": "0.8.0",
- "license": "MIT"
+ "example/node_modules/eslint-plugin-react/node_modules/resolve": {
+ "version": "2.0.0-next.5",
+ "license": "MIT",
+ "dependencies": {
+ "is-core-module": "^2.13.0",
+ "path-parse": "^1.0.7",
+ "supports-preserve-symlinks-flag": "^1.0.0"
+ },
+ "bin": {
+ "resolve": "bin/resolve"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
},
- "node_modules/@babel/runtime": {
- "version": "7.21.0",
+ "example/node_modules/eslint/node_modules/debug": {
+ "version": "4.4.0",
"license": "MIT",
"dependencies": {
- "regenerator-runtime": "^0.13.11"
+ "ms": "^2.1.3"
},
"engines": {
- "node": ">=6.9.0"
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
}
},
- "node_modules/@babel/runtime-corejs3": {
- "version": "7.22.15",
- "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.22.15.tgz",
- "integrity": "sha512-SAj8oKi8UogVi6eXQXKNPu8qZ78Yzy7zawrlTr0M+IuW/g8Qe9gVDhGcF9h1S69OyACpYoLxEzpjs1M15sI5wQ==",
+ "example/node_modules/eslint/node_modules/doctrine": {
+ "version": "3.0.0",
+ "license": "Apache-2.0",
"dependencies": {
- "core-js-pure": "^3.30.2",
- "regenerator-runtime": "^0.14.0"
+ "esutils": "^2.0.2"
},
"engines": {
- "node": ">=6.9.0"
+ "node": ">=6.0.0"
}
},
- "node_modules/@babel/runtime-corejs3/node_modules/regenerator-runtime": {
- "version": "0.14.0",
- "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz",
- "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="
+ "example/node_modules/eslint/node_modules/eslint-visitor-keys": {
+ "version": "3.4.3",
+ "license": "Apache-2.0",
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
},
- "node_modules/@babel/standalone": {
- "version": "7.21.8",
- "dev": true,
+ "example/node_modules/html-webpack-plugin": {
+ "version": "5.5.4",
"license": "MIT",
+ "dependencies": {
+ "@types/html-minifier-terser": "^6.0.0",
+ "html-minifier-terser": "^6.0.2",
+ "lodash": "^4.17.21",
+ "pretty-error": "^4.0.0",
+ "tapable": "^2.0.0"
+ },
"engines": {
- "node": ">=6.9.0"
+ "node": ">=10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/html-webpack-plugin"
+ },
+ "peerDependencies": {
+ "webpack": "^5.20.0"
}
},
- "node_modules/@babel/template": {
- "version": "7.24.0",
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.0.tgz",
- "integrity": "sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==",
+ "example/node_modules/iconv-lite": {
+ "version": "0.6.3",
+ "license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/code-frame": "^7.23.5",
- "@babel/parser": "^7.24.0",
- "@babel/types": "^7.24.0"
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
},
"engines": {
- "node": ">=6.9.0"
+ "node": ">=0.10.0"
}
},
- "node_modules/@babel/traverse": {
- "version": "7.24.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.1.tgz",
- "integrity": "sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==",
- "dependencies": {
- "@babel/code-frame": "^7.24.1",
- "@babel/generator": "^7.24.1",
- "@babel/helper-environment-visitor": "^7.22.20",
- "@babel/helper-function-name": "^7.23.0",
- "@babel/helper-hoist-variables": "^7.22.5",
- "@babel/helper-split-export-declaration": "^7.22.6",
- "@babel/parser": "^7.24.1",
- "@babel/types": "^7.24.0",
- "debug": "^4.3.1",
- "globals": "^11.1.0"
+ "example/node_modules/istanbul-lib-instrument": {
+ "version": "6.0.3",
+ "license": "BSD-3-Clause",
+ "peer": true,
+ "dependencies": {
+ "@babel/core": "^7.23.9",
+ "@babel/parser": "^7.23.9",
+ "@istanbuljs/schema": "^0.1.3",
+ "istanbul-lib-coverage": "^3.2.0",
+ "semver": "^7.5.4"
},
"engines": {
- "node": ">=6.9.0"
+ "node": ">=10"
}
},
- "node_modules/@babel/types": {
- "version": "7.24.0",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.0.tgz",
- "integrity": "sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==",
+ "example/node_modules/istanbul-lib-instrument/node_modules/@babel/core": {
+ "version": "7.26.0",
+ "license": "MIT",
+ "peer": true,
"dependencies": {
- "@babel/helper-string-parser": "^7.23.4",
- "@babel/helper-validator-identifier": "^7.22.20",
- "to-fast-properties": "^2.0.0"
+ "@ampproject/remapping": "^2.2.0",
+ "@babel/code-frame": "^7.26.0",
+ "@babel/generator": "^7.26.0",
+ "@babel/helper-compilation-targets": "^7.25.9",
+ "@babel/helper-module-transforms": "^7.26.0",
+ "@babel/helpers": "^7.26.0",
+ "@babel/parser": "^7.26.0",
+ "@babel/template": "^7.25.9",
+ "@babel/traverse": "^7.25.9",
+ "@babel/types": "^7.26.0",
+ "convert-source-map": "^2.0.0",
+ "debug": "^4.1.0",
+ "gensync": "^1.0.0-beta.2",
+ "json5": "^2.2.3",
+ "semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/babel"
}
},
- "node_modules/@bcoe/v8-coverage": {
- "version": "0.2.3",
- "license": "MIT"
+ "example/node_modules/istanbul-lib-instrument/node_modules/@babel/core/node_modules/semver": {
+ "version": "6.3.1",
+ "license": "ISC",
+ "peer": true,
+ "bin": {
+ "semver": "bin/semver.js"
+ }
},
- "node_modules/@builder.io/partytown": {
- "version": "0.5.4",
+ "example/node_modules/istanbul-lib-instrument/node_modules/convert-source-map": {
+ "version": "2.0.0",
+ "license": "MIT",
+ "peer": true
+ },
+ "example/node_modules/istanbul-lib-instrument/node_modules/debug": {
+ "version": "4.4.0",
"license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
+ "example/node_modules/istanbul-lib-instrument/node_modules/semver": {
+ "version": "7.6.3",
+ "license": "ISC",
+ "peer": true,
"bin": {
- "partytown": "bin/partytown.cjs"
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/@bundled-es-modules/deepmerge": {
- "version": "4.3.1",
- "resolved": "https://registry.npmjs.org/@bundled-es-modules/deepmerge/-/deepmerge-4.3.1.tgz",
- "integrity": "sha512-Rk453EklPUPC3NRWc3VUNI/SSUjdBaFoaQvFRmNBNtMHVtOFD5AntiWg5kEE1hqcPqedYFDzxE3ZcMYPcA195w==",
+ "example/node_modules/jest": {
+ "version": "26.6.3",
+ "license": "MIT",
"dependencies": {
- "deepmerge": "^4.3.1"
+ "@jest/core": "^26.6.3",
+ "import-local": "^3.0.2",
+ "jest-cli": "^26.6.3"
+ },
+ "bin": {
+ "jest": "bin/jest.js"
+ },
+ "engines": {
+ "node": ">= 10.14.2"
}
},
- "node_modules/@bundled-es-modules/glob": {
- "version": "10.4.2",
- "resolved": "https://registry.npmjs.org/@bundled-es-modules/glob/-/glob-10.4.2.tgz",
- "integrity": "sha512-740y5ofkzydsFao5EXJrGilcIL6EFEw/cmPf2uhTw9J6G1YOhiIFjNFCHdpgEiiH5VlU3G0SARSjlFlimRRSMA==",
- "hasInstallScript": true,
+ "example/node_modules/jest-changed-files": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
"dependencies": {
- "buffer": "^6.0.3",
- "events": "^3.3.0",
- "glob": "^10.4.2",
- "patch-package": "^8.0.0",
- "path": "^0.12.7",
- "stream": "^0.0.3",
- "string_decoder": "^1.3.0",
- "url": "^0.11.3"
+ "execa": "^5.0.0",
+ "jest-util": "^29.7.0",
+ "p-limit": "^3.1.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@bundled-es-modules/glob/node_modules/brace-expansion": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
- "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
+ "example/node_modules/jest-changed-files/node_modules/@jest/types": {
+ "version": "29.6.3",
+ "license": "MIT",
+ "peer": true,
"dependencies": {
- "balanced-match": "^1.0.0"
+ "@jest/schemas": "^29.6.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^17.0.8",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@bundled-es-modules/glob/node_modules/buffer": {
- "version": "6.0.3",
- "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
- "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
+ "example/node_modules/jest-changed-files/node_modules/@types/yargs": {
+ "version": "17.0.33",
+ "license": "MIT",
+ "peer": true,
"dependencies": {
- "base64-js": "^1.3.1",
- "ieee754": "^1.2.1"
+ "@types/yargs-parser": "*"
}
},
- "node_modules/@bundled-es-modules/glob/node_modules/foreground-child": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz",
- "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==",
+ "example/node_modules/jest-changed-files/node_modules/jest-util": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
"dependencies": {
- "cross-spawn": "^7.0.0",
- "signal-exit": "^4.0.1"
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.9",
+ "picomatch": "^2.2.3"
},
"engines": {
- "node": ">=14"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@bundled-es-modules/glob/node_modules/glob": {
- "version": "10.4.5",
- "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz",
- "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
+ "example/node_modules/jest-cli": {
+ "version": "26.6.3",
+ "license": "MIT",
"dependencies": {
- "foreground-child": "^3.1.0",
- "jackspeak": "^3.1.2",
- "minimatch": "^9.0.4",
- "minipass": "^7.1.2",
- "package-json-from-dist": "^1.0.0",
- "path-scurry": "^1.11.1"
+ "@jest/core": "^26.6.3",
+ "@jest/test-result": "^26.6.2",
+ "@jest/types": "^26.6.2",
+ "chalk": "^4.0.0",
+ "exit": "^0.1.2",
+ "graceful-fs": "^4.2.4",
+ "import-local": "^3.0.2",
+ "is-ci": "^2.0.0",
+ "jest-config": "^26.6.3",
+ "jest-util": "^26.6.2",
+ "jest-validate": "^26.6.2",
+ "prompts": "^2.0.1",
+ "yargs": "^15.4.1"
},
"bin": {
- "glob": "dist/esm/bin.mjs"
+ "jest": "bin/jest.js"
},
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
+ "engines": {
+ "node": ">= 10.14.2"
}
},
- "node_modules/@bundled-es-modules/glob/node_modules/minimatch": {
- "version": "9.0.5",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
- "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
+ "example/node_modules/jest-docblock": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
"dependencies": {
- "brace-expansion": "^2.0.1"
+ "detect-newline": "^3.0.0"
},
"engines": {
- "node": ">=16 || 14 >=14.17"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@bundled-es-modules/glob/node_modules/safe-buffer": {
- "version": "5.2.1",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
- "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
+ "example/node_modules/jest-environment-jsdom": {
+ "version": "29.6.1",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/environment": "^29.6.1",
+ "@jest/fake-timers": "^29.6.1",
+ "@jest/types": "^29.6.1",
+ "@types/jsdom": "^20.0.0",
+ "@types/node": "*",
+ "jest-mock": "^29.6.1",
+ "jest-util": "^29.6.1",
+ "jsdom": "^20.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ },
+ "peerDependencies": {
+ "canvas": "^2.5.0"
+ },
+ "peerDependenciesMeta": {
+ "canvas": {
+ "optional": true
+ }
+ }
+ },
+ "example/node_modules/jest-environment-jsdom/node_modules/@jest/types": {
+ "version": "29.6.3",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/schemas": "^29.6.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^17.0.8",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-environment-jsdom/node_modules/@types/yargs": {
+ "version": "17.0.33",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "example/node_modules/jest-environment-jsdom/node_modules/jest-util": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.9",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-environment-node": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/environment": "^29.7.0",
+ "@jest/fake-timers": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "jest-mock": "^29.7.0",
+ "jest-util": "^29.7.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-environment-node/node_modules/@jest/types": {
+ "version": "29.6.3",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/schemas": "^29.6.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^17.0.8",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-environment-node/node_modules/@types/yargs": {
+ "version": "17.0.33",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "example/node_modules/jest-environment-node/node_modules/jest-util": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.9",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-leak-detector": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "jest-get-type": "^29.6.3",
+ "pretty-format": "^29.7.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-message-util": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@babel/code-frame": "^7.12.13",
+ "@jest/types": "^29.6.3",
+ "@types/stack-utils": "^2.0.0",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.9",
+ "micromatch": "^4.0.4",
+ "pretty-format": "^29.7.0",
+ "slash": "^3.0.0",
+ "stack-utils": "^2.0.3"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-message-util/node_modules/@jest/types": {
+ "version": "29.6.3",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/schemas": "^29.6.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^17.0.8",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-message-util/node_modules/@types/yargs": {
+ "version": "17.0.33",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "example/node_modules/jest-message-util/node_modules/slash": {
+ "version": "3.0.0",
+ "license": "MIT",
+ "peer": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "example/node_modules/jest-resolve": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.9",
+ "jest-haste-map": "^29.7.0",
+ "jest-pnp-resolver": "^1.2.2",
+ "jest-util": "^29.7.0",
+ "jest-validate": "^29.7.0",
+ "resolve": "^1.20.0",
+ "resolve.exports": "^2.0.0",
+ "slash": "^3.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-resolve-dependencies": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "jest-regex-util": "^29.6.3",
+ "jest-snapshot": "^29.7.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-resolve-dependencies/node_modules/jest-regex-util": {
+ "version": "29.6.3",
+ "license": "MIT",
+ "peer": true,
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-resolve/node_modules/@jest/types": {
+ "version": "29.6.3",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/schemas": "^29.6.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^17.0.8",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-resolve/node_modules/@types/yargs": {
+ "version": "17.0.33",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "example/node_modules/jest-resolve/node_modules/jest-haste-map": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/types": "^29.6.3",
+ "@types/graceful-fs": "^4.1.3",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "graceful-fs": "^4.2.9",
+ "jest-regex-util": "^29.6.3",
+ "jest-util": "^29.7.0",
+ "jest-worker": "^29.7.0",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.8"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ },
+ "optionalDependencies": {
+ "fsevents": "^2.3.2"
+ }
+ },
+ "example/node_modules/jest-resolve/node_modules/jest-regex-util": {
+ "version": "29.6.3",
+ "license": "MIT",
+ "peer": true,
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-resolve/node_modules/jest-util": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.9",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-resolve/node_modules/jest-validate": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/types": "^29.6.3",
+ "camelcase": "^6.2.0",
+ "chalk": "^4.0.0",
+ "jest-get-type": "^29.6.3",
+ "leven": "^3.1.0",
+ "pretty-format": "^29.7.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-resolve/node_modules/slash": {
+ "version": "3.0.0",
+ "license": "MIT",
+ "peer": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "example/node_modules/jest-runner": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/console": "^29.7.0",
+ "@jest/environment": "^29.7.0",
+ "@jest/test-result": "^29.7.0",
+ "@jest/transform": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "emittery": "^0.13.1",
+ "graceful-fs": "^4.2.9",
+ "jest-docblock": "^29.7.0",
+ "jest-environment-node": "^29.7.0",
+ "jest-haste-map": "^29.7.0",
+ "jest-leak-detector": "^29.7.0",
+ "jest-message-util": "^29.7.0",
+ "jest-resolve": "^29.7.0",
+ "jest-runtime": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "jest-watcher": "^29.7.0",
+ "jest-worker": "^29.7.0",
+ "p-limit": "^3.1.0",
+ "source-map-support": "0.5.13"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-runner/node_modules/@jest/test-result": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/console": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "collect-v8-coverage": "^1.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-runner/node_modules/@jest/transform": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@babel/core": "^7.11.6",
+ "@jest/types": "^29.6.3",
+ "@jridgewell/trace-mapping": "^0.3.18",
+ "babel-plugin-istanbul": "^6.1.1",
+ "chalk": "^4.0.0",
+ "convert-source-map": "^2.0.0",
+ "fast-json-stable-stringify": "^2.1.0",
+ "graceful-fs": "^4.2.9",
+ "jest-haste-map": "^29.7.0",
+ "jest-regex-util": "^29.6.3",
+ "jest-util": "^29.7.0",
+ "micromatch": "^4.0.4",
+ "pirates": "^4.0.4",
+ "slash": "^3.0.0",
+ "write-file-atomic": "^4.0.2"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-runner/node_modules/@jest/types": {
+ "version": "29.6.3",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/schemas": "^29.6.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^17.0.8",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-runner/node_modules/@types/yargs": {
+ "version": "17.0.33",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "example/node_modules/jest-runner/node_modules/convert-source-map": {
+ "version": "2.0.0",
+ "license": "MIT",
+ "peer": true
+ },
+ "example/node_modules/jest-runner/node_modules/jest-haste-map": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/types": "^29.6.3",
+ "@types/graceful-fs": "^4.1.3",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "graceful-fs": "^4.2.9",
+ "jest-regex-util": "^29.6.3",
+ "jest-util": "^29.7.0",
+ "jest-worker": "^29.7.0",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.8"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ },
+ "optionalDependencies": {
+ "fsevents": "^2.3.2"
+ }
+ },
+ "example/node_modules/jest-runner/node_modules/jest-regex-util": {
+ "version": "29.6.3",
+ "license": "MIT",
+ "peer": true,
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-runner/node_modules/jest-util": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.9",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-runner/node_modules/slash": {
+ "version": "3.0.0",
+ "license": "MIT",
+ "peer": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "example/node_modules/jest-runner/node_modules/write-file-atomic": {
+ "version": "4.0.2",
+ "license": "ISC",
+ "peer": true,
+ "dependencies": {
+ "imurmurhash": "^0.1.4",
+ "signal-exit": "^3.0.7"
+ },
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ }
+ },
+ "example/node_modules/jest-runtime": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/environment": "^29.7.0",
+ "@jest/fake-timers": "^29.7.0",
+ "@jest/globals": "^29.7.0",
+ "@jest/source-map": "^29.6.3",
+ "@jest/test-result": "^29.7.0",
+ "@jest/transform": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "cjs-module-lexer": "^1.0.0",
+ "collect-v8-coverage": "^1.0.0",
+ "glob": "^7.1.3",
+ "graceful-fs": "^4.2.9",
+ "jest-haste-map": "^29.7.0",
+ "jest-message-util": "^29.7.0",
+ "jest-mock": "^29.7.0",
+ "jest-regex-util": "^29.6.3",
+ "jest-resolve": "^29.7.0",
+ "jest-snapshot": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "slash": "^3.0.0",
+ "strip-bom": "^4.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-runtime/node_modules/@jest/test-result": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/console": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "collect-v8-coverage": "^1.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-runtime/node_modules/@jest/transform": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@babel/core": "^7.11.6",
+ "@jest/types": "^29.6.3",
+ "@jridgewell/trace-mapping": "^0.3.18",
+ "babel-plugin-istanbul": "^6.1.1",
+ "chalk": "^4.0.0",
+ "convert-source-map": "^2.0.0",
+ "fast-json-stable-stringify": "^2.1.0",
+ "graceful-fs": "^4.2.9",
+ "jest-haste-map": "^29.7.0",
+ "jest-regex-util": "^29.6.3",
+ "jest-util": "^29.7.0",
+ "micromatch": "^4.0.4",
+ "pirates": "^4.0.4",
+ "slash": "^3.0.0",
+ "write-file-atomic": "^4.0.2"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-runtime/node_modules/@jest/types": {
+ "version": "29.6.3",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/schemas": "^29.6.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^17.0.8",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-runtime/node_modules/@types/yargs": {
+ "version": "17.0.33",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "example/node_modules/jest-runtime/node_modules/convert-source-map": {
+ "version": "2.0.0",
+ "license": "MIT",
+ "peer": true
+ },
+ "example/node_modules/jest-runtime/node_modules/glob": {
+ "version": "7.2.3",
+ "license": "ISC",
+ "peer": true,
+ "dependencies": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ },
+ "engines": {
+ "node": "*"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "example/node_modules/jest-runtime/node_modules/jest-haste-map": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/types": "^29.6.3",
+ "@types/graceful-fs": "^4.1.3",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "graceful-fs": "^4.2.9",
+ "jest-regex-util": "^29.6.3",
+ "jest-util": "^29.7.0",
+ "jest-worker": "^29.7.0",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.8"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ },
+ "optionalDependencies": {
+ "fsevents": "^2.3.2"
+ }
+ },
+ "example/node_modules/jest-runtime/node_modules/jest-regex-util": {
+ "version": "29.6.3",
+ "license": "MIT",
+ "peer": true,
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-runtime/node_modules/jest-util": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.9",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-runtime/node_modules/slash": {
+ "version": "3.0.0",
+ "license": "MIT",
+ "peer": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "example/node_modules/jest-runtime/node_modules/write-file-atomic": {
+ "version": "4.0.2",
+ "license": "ISC",
+ "peer": true,
+ "dependencies": {
+ "imurmurhash": "^0.1.4",
+ "signal-exit": "^3.0.7"
+ },
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ }
+ },
+ "example/node_modules/jest-snapshot": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@babel/core": "^7.11.6",
+ "@babel/generator": "^7.7.2",
+ "@babel/plugin-syntax-jsx": "^7.7.2",
+ "@babel/plugin-syntax-typescript": "^7.7.2",
+ "@babel/types": "^7.3.3",
+ "@jest/expect-utils": "^29.7.0",
+ "@jest/transform": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "babel-preset-current-node-syntax": "^1.0.0",
+ "chalk": "^4.0.0",
+ "expect": "^29.7.0",
+ "graceful-fs": "^4.2.9",
+ "jest-diff": "^29.7.0",
+ "jest-get-type": "^29.6.3",
+ "jest-matcher-utils": "^29.7.0",
+ "jest-message-util": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "natural-compare": "^1.4.0",
+ "pretty-format": "^29.7.0",
+ "semver": "^7.5.3"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-snapshot/node_modules/@jest/transform": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@babel/core": "^7.11.6",
+ "@jest/types": "^29.6.3",
+ "@jridgewell/trace-mapping": "^0.3.18",
+ "babel-plugin-istanbul": "^6.1.1",
+ "chalk": "^4.0.0",
+ "convert-source-map": "^2.0.0",
+ "fast-json-stable-stringify": "^2.1.0",
+ "graceful-fs": "^4.2.9",
+ "jest-haste-map": "^29.7.0",
+ "jest-regex-util": "^29.6.3",
+ "jest-util": "^29.7.0",
+ "micromatch": "^4.0.4",
+ "pirates": "^4.0.4",
+ "slash": "^3.0.0",
+ "write-file-atomic": "^4.0.2"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-snapshot/node_modules/@jest/types": {
+ "version": "29.6.3",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/schemas": "^29.6.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^17.0.8",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-snapshot/node_modules/@types/yargs": {
+ "version": "17.0.33",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "example/node_modules/jest-snapshot/node_modules/convert-source-map": {
+ "version": "2.0.0",
+ "license": "MIT",
+ "peer": true
+ },
+ "example/node_modules/jest-snapshot/node_modules/jest-haste-map": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/types": "^29.6.3",
+ "@types/graceful-fs": "^4.1.3",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "graceful-fs": "^4.2.9",
+ "jest-regex-util": "^29.6.3",
+ "jest-util": "^29.7.0",
+ "jest-worker": "^29.7.0",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.8"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ },
+ "optionalDependencies": {
+ "fsevents": "^2.3.2"
+ }
+ },
+ "example/node_modules/jest-snapshot/node_modules/jest-regex-util": {
+ "version": "29.6.3",
+ "license": "MIT",
+ "peer": true,
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-snapshot/node_modules/jest-util": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.9",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-snapshot/node_modules/semver": {
+ "version": "7.6.3",
+ "license": "ISC",
+ "peer": true,
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "example/node_modules/jest-snapshot/node_modules/slash": {
+ "version": "3.0.0",
+ "license": "MIT",
+ "peer": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "example/node_modules/jest-snapshot/node_modules/write-file-atomic": {
+ "version": "4.0.2",
+ "license": "ISC",
+ "peer": true,
+ "dependencies": {
+ "imurmurhash": "^0.1.4",
+ "signal-exit": "^3.0.7"
+ },
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ }
+ },
+ "example/node_modules/jest-watcher": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/test-result": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "ansi-escapes": "^4.2.1",
+ "chalk": "^4.0.0",
+ "emittery": "^0.13.1",
+ "jest-util": "^29.7.0",
+ "string-length": "^4.0.1"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-watcher/node_modules/@jest/test-result": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/console": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "collect-v8-coverage": "^1.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-watcher/node_modules/@jest/types": {
+ "version": "29.6.3",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/schemas": "^29.6.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^17.0.8",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-watcher/node_modules/@types/yargs": {
+ "version": "17.0.33",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "example/node_modules/jest-watcher/node_modules/jest-util": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.9",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-worker": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@types/node": "*",
+ "jest-util": "^29.7.0",
+ "merge-stream": "^2.0.0",
+ "supports-color": "^8.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-worker/node_modules/@jest/types": {
+ "version": "29.6.3",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/schemas": "^29.6.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^17.0.8",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/jest-worker/node_modules/@types/yargs": {
+ "version": "17.0.33",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "example/node_modules/jest-worker/node_modules/jest-util": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.9",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/lilconfig": {
+ "version": "3.1.3",
+ "license": "MIT",
+ "peer": true,
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antonk52"
+ }
+ },
+ "example/node_modules/parse5": {
+ "version": "7.1.2",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "entities": "^4.4.0"
+ },
+ "funding": {
+ "url": "https://github.com/inikulin/parse5?sponsor=1"
+ }
+ },
+ "example/node_modules/postcss-custom-media": {
+ "version": "10.0.8",
+ "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-10.0.8.tgz",
+ "integrity": "sha512-V1KgPcmvlGdxTel4/CyQtBJEFhMVpEmRGFrnVtgfGIHj5PJX9vO36eFBxKBeJn+aCDTed70cc+98Mz3J/uVdGQ==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/csstools"
+ },
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/csstools"
+ }
+ ],
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@csstools/cascade-layer-name-parser": "^1.0.13",
+ "@csstools/css-parser-algorithms": "^2.7.1",
+ "@csstools/css-tokenizer": "^2.4.1",
+ "@csstools/media-query-list-parser": "^2.1.13"
+ },
+ "engines": {
+ "node": "^14 || ^16 || >=18"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4"
+ }
+ },
+ "example/node_modules/pretty-error": {
+ "version": "4.0.0",
+ "license": "MIT",
+ "dependencies": {
+ "lodash": "^4.17.20",
+ "renderkid": "^3.0.0"
+ }
+ },
+ "example/node_modules/pretty-format": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jest/schemas": "^29.6.3",
+ "ansi-styles": "^5.0.0",
+ "react-is": "^18.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "example/node_modules/react": {
+ "version": "17.0.2",
+ "license": "MIT",
+ "dependencies": {
+ "loose-envify": "^1.1.0",
+ "object-assign": "^4.1.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "example/node_modules/react-dom": {
+ "version": "17.0.2",
+ "license": "MIT",
+ "dependencies": {
+ "loose-envify": "^1.1.0",
+ "object-assign": "^4.1.1",
+ "scheduler": "^0.20.2"
+ },
+ "peerDependencies": {
+ "react": "17.0.2"
+ }
+ },
+ "example/node_modules/react-is": {
+ "version": "18.3.1",
+ "license": "MIT",
+ "peer": true
+ },
+ "example/node_modules/renderkid": {
+ "version": "3.0.0",
+ "license": "MIT",
+ "dependencies": {
+ "css-select": "^4.1.3",
+ "dom-converter": "^0.2.0",
+ "htmlparser2": "^6.1.0",
+ "lodash": "^4.17.21",
+ "strip-ansi": "^6.0.1"
+ }
+ },
+ "example/node_modules/sass": {
+ "version": "1.69.7",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "chokidar": ">=3.0.0 <4.0.0",
+ "immutable": "^4.0.0",
+ "source-map-js": ">=0.6.2 <2.0.0"
+ },
+ "bin": {
+ "sass": "sass.js"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "example/node_modules/sass-loader": {
+ "version": "13.3.2",
+ "license": "MIT",
+ "dependencies": {
+ "neo-async": "^2.6.2"
+ },
+ "engines": {
+ "node": ">= 14.15.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependencies": {
+ "fibers": ">= 3.1.0",
+ "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
+ "sass": "^1.3.0",
+ "sass-embedded": "*",
+ "webpack": "^5.0.0"
+ },
+ "peerDependenciesMeta": {
+ "fibers": {
+ "optional": true
+ },
+ "node-sass": {
+ "optional": true
+ },
+ "sass": {
+ "optional": true
},
+ "sass-embedded": {
+ "optional": true
+ }
+ }
+ },
+ "example/node_modules/source-map-support": {
+ "version": "0.5.13",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "buffer-from": "^1.0.0",
+ "source-map": "^0.6.0"
+ }
+ },
+ "example/node_modules/supports-color": {
+ "version": "8.1.1",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
+ }
+ },
+ "example/node_modules/v8-to-istanbul": {
+ "version": "9.3.0",
+ "license": "ISC",
+ "peer": true,
+ "dependencies": {
+ "@jridgewell/trace-mapping": "^0.3.12",
+ "@types/istanbul-lib-coverage": "^2.0.1",
+ "convert-source-map": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=10.12.0"
+ }
+ },
+ "example/node_modules/v8-to-istanbul/node_modules/convert-source-map": {
+ "version": "2.0.0",
+ "license": "MIT",
+ "peer": true
+ },
+ "example/node_modules/webpack": {
+ "version": "5.89.0",
+ "license": "MIT",
+ "dependencies": {
+ "@types/eslint-scope": "^3.7.3",
+ "@types/estree": "^1.0.0",
+ "@webassemblyjs/ast": "^1.11.5",
+ "@webassemblyjs/wasm-edit": "^1.11.5",
+ "@webassemblyjs/wasm-parser": "^1.11.5",
+ "acorn": "^8.7.1",
+ "acorn-import-assertions": "^1.9.0",
+ "browserslist": "^4.14.5",
+ "chrome-trace-event": "^1.0.2",
+ "enhanced-resolve": "^5.15.0",
+ "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",
+ "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.2.0",
+ "tapable": "^2.1.1",
+ "terser-webpack-plugin": "^5.3.7",
+ "watchpack": "^2.4.0",
+ "webpack-sources": "^3.2.3"
+ },
+ "bin": {
+ "webpack": "bin/webpack.js"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependenciesMeta": {
+ "webpack-cli": {
+ "optional": true
+ }
+ }
+ },
+ "example/node_modules/webpack/node_modules/eslint-scope": {
+ "version": "5.1.1",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "esrecurse": "^4.3.0",
+ "estraverse": "^4.1.1"
+ },
+ "engines": {
+ "node": ">=8.0.0"
+ }
+ },
+ "example/node_modules/webpack/node_modules/estraverse": {
+ "version": "4.3.0",
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
+ "example/node_modules/webpack/node_modules/schema-utils": {
+ "version": "3.3.0",
+ "license": "MIT",
+ "dependencies": {
+ "@types/json-schema": "^7.0.8",
+ "ajv": "^6.12.5",
+ "ajv-keywords": "^3.5.2"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ }
+ },
+ "example/node_modules/y18n": {
+ "version": "5.0.8",
+ "license": "ISC",
+ "peer": true,
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "example/node_modules/yargs-parser": {
+ "version": "21.1.1",
+ "license": "ISC",
+ "peer": true,
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "icons": {
+ "version": "1.0.0",
+ "license": "ISC",
+ "devDependencies": {
+ "@babel/cli": "^7.19.3",
+ "@babel/preset-env": "^7.12.11",
+ "@babel/preset-react": "^7.12.10",
+ "@material-icons/svg": "^1.0.30",
+ "@svgr/babel-plugin-add-jsx-attribute": "^6.5.1",
+ "@svgr/cli": "^6.4.0",
+ "bootstrap-icons": "^1.11.3"
+ },
+ "peerDependencies": {
+ "react": "^16.8.6 || ^17 || ^18"
+ }
+ },
+ "icons/node_modules/@svgr/babel-plugin-add-jsx-attribute": {
+ "version": "6.5.1",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/gregberge"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "icons/node_modules/bootstrap-icons": {
+ "version": "1.11.3",
+ "dev": true,
+ "funding": [
{
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
+ "type": "github",
+ "url": "https://github.com/sponsors/twbs"
},
{
- "type": "consulting",
- "url": "https://feross.org/support"
+ "type": "opencollective",
+ "url": "https://opencollective.com/bootstrap"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/@adobe/css-tools": {
+ "version": "4.4.1",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@algolia/autocomplete-core": {
+ "version": "1.17.7",
+ "license": "MIT",
+ "dependencies": {
+ "@algolia/autocomplete-plugin-algolia-insights": "1.17.7",
+ "@algolia/autocomplete-shared": "1.17.7"
+ }
+ },
+ "node_modules/@algolia/autocomplete-plugin-algolia-insights": {
+ "version": "1.17.7",
+ "license": "MIT",
+ "dependencies": {
+ "@algolia/autocomplete-shared": "1.17.7"
+ },
+ "peerDependencies": {
+ "search-insights": ">= 1 < 3"
+ }
+ },
+ "node_modules/@algolia/autocomplete-preset-algolia": {
+ "version": "1.17.7",
+ "license": "MIT",
+ "dependencies": {
+ "@algolia/autocomplete-shared": "1.17.7"
+ },
+ "peerDependencies": {
+ "@algolia/client-search": ">= 4.9.1 < 6",
+ "algoliasearch": ">= 4.9.1 < 6"
+ }
+ },
+ "node_modules/@algolia/autocomplete-shared": {
+ "version": "1.17.7",
+ "license": "MIT",
+ "peerDependencies": {
+ "@algolia/client-search": ">= 4.9.1 < 6",
+ "algoliasearch": ">= 4.9.1 < 6"
+ }
+ },
+ "node_modules/@algolia/client-abtesting": {
+ "version": "5.17.0",
+ "license": "MIT",
+ "dependencies": {
+ "@algolia/client-common": "5.17.0",
+ "@algolia/requester-browser-xhr": "5.17.0",
+ "@algolia/requester-fetch": "5.17.0",
+ "@algolia/requester-node-http": "5.17.0"
+ },
+ "engines": {
+ "node": ">= 14.0.0"
+ }
+ },
+ "node_modules/@algolia/client-analytics": {
+ "version": "5.17.0",
+ "license": "MIT",
+ "dependencies": {
+ "@algolia/client-common": "5.17.0",
+ "@algolia/requester-browser-xhr": "5.17.0",
+ "@algolia/requester-fetch": "5.17.0",
+ "@algolia/requester-node-http": "5.17.0"
+ },
+ "engines": {
+ "node": ">= 14.0.0"
+ }
+ },
+ "node_modules/@algolia/client-common": {
+ "version": "5.17.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 14.0.0"
+ }
+ },
+ "node_modules/@algolia/client-insights": {
+ "version": "5.17.0",
+ "license": "MIT",
+ "dependencies": {
+ "@algolia/client-common": "5.17.0",
+ "@algolia/requester-browser-xhr": "5.17.0",
+ "@algolia/requester-fetch": "5.17.0",
+ "@algolia/requester-node-http": "5.17.0"
+ },
+ "engines": {
+ "node": ">= 14.0.0"
+ }
+ },
+ "node_modules/@algolia/client-personalization": {
+ "version": "5.17.0",
+ "license": "MIT",
+ "dependencies": {
+ "@algolia/client-common": "5.17.0",
+ "@algolia/requester-browser-xhr": "5.17.0",
+ "@algolia/requester-fetch": "5.17.0",
+ "@algolia/requester-node-http": "5.17.0"
+ },
+ "engines": {
+ "node": ">= 14.0.0"
+ }
+ },
+ "node_modules/@algolia/client-query-suggestions": {
+ "version": "5.17.0",
+ "license": "MIT",
+ "dependencies": {
+ "@algolia/client-common": "5.17.0",
+ "@algolia/requester-browser-xhr": "5.17.0",
+ "@algolia/requester-fetch": "5.17.0",
+ "@algolia/requester-node-http": "5.17.0"
+ },
+ "engines": {
+ "node": ">= 14.0.0"
+ }
+ },
+ "node_modules/@algolia/client-search": {
+ "version": "5.17.0",
+ "license": "MIT",
+ "dependencies": {
+ "@algolia/client-common": "5.17.0",
+ "@algolia/requester-browser-xhr": "5.17.0",
+ "@algolia/requester-fetch": "5.17.0",
+ "@algolia/requester-node-http": "5.17.0"
+ },
+ "engines": {
+ "node": ">= 14.0.0"
+ }
+ },
+ "node_modules/@algolia/ingestion": {
+ "version": "1.17.0",
+ "license": "MIT",
+ "dependencies": {
+ "@algolia/client-common": "5.17.0",
+ "@algolia/requester-browser-xhr": "5.17.0",
+ "@algolia/requester-fetch": "5.17.0",
+ "@algolia/requester-node-http": "5.17.0"
+ },
+ "engines": {
+ "node": ">= 14.0.0"
+ }
+ },
+ "node_modules/@algolia/monitoring": {
+ "version": "1.17.0",
+ "license": "MIT",
+ "dependencies": {
+ "@algolia/client-common": "5.17.0",
+ "@algolia/requester-browser-xhr": "5.17.0",
+ "@algolia/requester-fetch": "5.17.0",
+ "@algolia/requester-node-http": "5.17.0"
+ },
+ "engines": {
+ "node": ">= 14.0.0"
+ }
+ },
+ "node_modules/@algolia/recommend": {
+ "version": "5.17.0",
+ "license": "MIT",
+ "dependencies": {
+ "@algolia/client-common": "5.17.0",
+ "@algolia/requester-browser-xhr": "5.17.0",
+ "@algolia/requester-fetch": "5.17.0",
+ "@algolia/requester-node-http": "5.17.0"
+ },
+ "engines": {
+ "node": ">= 14.0.0"
+ }
+ },
+ "node_modules/@algolia/requester-browser-xhr": {
+ "version": "5.17.0",
+ "license": "MIT",
+ "dependencies": {
+ "@algolia/client-common": "5.17.0"
+ },
+ "engines": {
+ "node": ">= 14.0.0"
+ }
+ },
+ "node_modules/@algolia/requester-fetch": {
+ "version": "5.17.0",
+ "license": "MIT",
+ "dependencies": {
+ "@algolia/client-common": "5.17.0"
+ },
+ "engines": {
+ "node": ">= 14.0.0"
+ }
+ },
+ "node_modules/@algolia/requester-node-http": {
+ "version": "5.17.0",
+ "license": "MIT",
+ "dependencies": {
+ "@algolia/client-common": "5.17.0"
+ },
+ "engines": {
+ "node": ">= 14.0.0"
+ }
+ },
+ "node_modules/@ampproject/remapping": {
+ "version": "2.3.0",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@jridgewell/gen-mapping": "^0.3.5",
+ "@jridgewell/trace-mapping": "^0.3.24"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@ardatan/relay-compiler": {
+ "version": "12.0.0",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/core": "^7.14.0",
+ "@babel/generator": "^7.14.0",
+ "@babel/parser": "^7.14.0",
+ "@babel/runtime": "^7.0.0",
+ "@babel/traverse": "^7.14.0",
+ "@babel/types": "^7.0.0",
+ "babel-preset-fbjs": "^3.4.0",
+ "chalk": "^4.0.0",
+ "fb-watchman": "^2.0.0",
+ "fbjs": "^3.0.0",
+ "glob": "^7.1.1",
+ "immutable": "~3.7.6",
+ "invariant": "^2.2.4",
+ "nullthrows": "^1.1.1",
+ "relay-runtime": "12.0.0",
+ "signedsource": "^1.0.0",
+ "yargs": "^15.3.1"
+ },
+ "bin": {
+ "relay-compiler": "bin/relay-compiler"
+ },
+ "peerDependencies": {
+ "graphql": "*"
+ }
+ },
+ "node_modules/@ardatan/relay-compiler/node_modules/glob": {
+ "version": "7.2.3",
+ "license": "ISC",
+ "dependencies": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ },
+ "engines": {
+ "node": "*"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/@ardatan/relay-compiler/node_modules/immutable": {
+ "version": "3.7.6",
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.8.0"
+ }
+ },
+ "node_modules/@babel/cli": {
+ "version": "7.26.4",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/trace-mapping": "^0.3.25",
+ "commander": "^6.2.0",
+ "convert-source-map": "^2.0.0",
+ "fs-readdir-recursive": "^1.1.0",
+ "glob": "^7.2.0",
+ "make-dir": "^2.1.0",
+ "slash": "^2.0.0"
+ },
+ "bin": {
+ "babel": "bin/babel.js",
+ "babel-external-helpers": "bin/babel-external-helpers.js"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "optionalDependencies": {
+ "@nicolo-ribaudo/chokidar-2": "2.1.8-no-fsevents.3",
+ "chokidar": "^3.6.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/cli/node_modules/commander": {
+ "version": "6.2.1",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/@babel/cli/node_modules/convert-source-map": {
+ "version": "2.0.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@babel/cli/node_modules/glob": {
+ "version": "7.2.3",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ },
+ "engines": {
+ "node": "*"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/@babel/code-frame": {
+ "version": "7.26.2",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-validator-identifier": "^7.25.9",
+ "js-tokens": "^4.0.0",
+ "picocolors": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/compat-data": {
+ "version": "7.26.3",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/core": {
+ "version": "7.26.0",
+ "license": "MIT",
+ "dependencies": {
+ "@ampproject/remapping": "^2.2.0",
+ "@babel/code-frame": "^7.26.0",
+ "@babel/generator": "^7.26.0",
+ "@babel/helper-compilation-targets": "^7.25.9",
+ "@babel/helper-module-transforms": "^7.26.0",
+ "@babel/helpers": "^7.26.0",
+ "@babel/parser": "^7.26.0",
+ "@babel/template": "^7.25.9",
+ "@babel/traverse": "^7.25.9",
+ "@babel/types": "^7.26.0",
+ "convert-source-map": "^2.0.0",
+ "debug": "^4.1.0",
+ "gensync": "^1.0.0-beta.2",
+ "json5": "^2.2.3",
+ "semver": "^6.3.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/babel"
+ }
+ },
+ "node_modules/@babel/core/node_modules/convert-source-map": {
+ "version": "2.0.0",
+ "license": "MIT"
+ },
+ "node_modules/@babel/core/node_modules/debug": {
+ "version": "4.4.0",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@babel/eslint-parser": {
+ "version": "7.25.9",
+ "license": "MIT",
+ "dependencies": {
+ "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1",
+ "eslint-visitor-keys": "^2.1.0",
+ "semver": "^6.3.1"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || >=14.0.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.11.0",
+ "eslint": "^7.5.0 || ^8.0.0 || ^9.0.0"
+ }
+ },
+ "node_modules/@babel/generator": {
+ "version": "7.26.3",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/parser": "^7.26.3",
+ "@babel/types": "^7.26.3",
+ "@jridgewell/gen-mapping": "^0.3.5",
+ "@jridgewell/trace-mapping": "^0.3.25",
+ "jsesc": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-annotate-as-pure": {
+ "version": "7.25.9",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/types": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-compilation-targets": {
+ "version": "7.25.9",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/compat-data": "^7.25.9",
+ "@babel/helper-validator-option": "^7.25.9",
+ "browserslist": "^4.24.0",
+ "lru-cache": "^5.1.1",
+ "semver": "^6.3.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-create-class-features-plugin": {
+ "version": "7.25.9",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-annotate-as-pure": "^7.25.9",
+ "@babel/helper-member-expression-to-functions": "^7.25.9",
+ "@babel/helper-optimise-call-expression": "^7.25.9",
+ "@babel/helper-replace-supers": "^7.25.9",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9",
+ "@babel/traverse": "^7.25.9",
+ "semver": "^6.3.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
+ }
+ },
+ "node_modules/@babel/helper-create-regexp-features-plugin": {
+ "version": "7.26.3",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-annotate-as-pure": "^7.25.9",
+ "regexpu-core": "^6.2.0",
+ "semver": "^6.3.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
+ }
+ },
+ "node_modules/@babel/helper-define-polyfill-provider": {
+ "version": "0.6.3",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-compilation-targets": "^7.22.6",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "debug": "^4.1.1",
+ "lodash.debounce": "^4.0.8",
+ "resolve": "^1.14.2"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
+ }
+ },
+ "node_modules/@babel/helper-define-polyfill-provider/node_modules/debug": {
+ "version": "4.4.0",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
}
- ]
+ }
},
- "node_modules/@bundled-es-modules/glob/node_modules/signal-exit": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
- "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
+ "node_modules/@babel/helper-member-expression-to-functions": {
+ "version": "7.25.9",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/traverse": "^7.25.9",
+ "@babel/types": "^7.25.9"
+ },
"engines": {
- "node": ">=14"
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-module-imports": {
+ "version": "7.25.9",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/traverse": "^7.25.9",
+ "@babel/types": "^7.25.9"
},
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
+ "engines": {
+ "node": ">=6.9.0"
}
},
- "node_modules/@bundled-es-modules/glob/node_modules/string_decoder": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
- "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
+ "node_modules/@babel/helper-module-transforms": {
+ "version": "7.26.0",
+ "license": "MIT",
"dependencies": {
- "safe-buffer": "~5.2.0"
+ "@babel/helper-module-imports": "^7.25.9",
+ "@babel/helper-validator-identifier": "^7.25.9",
+ "@babel/traverse": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
}
},
- "node_modules/@bundled-es-modules/memfs": {
- "version": "4.9.4",
- "resolved": "https://registry.npmjs.org/@bundled-es-modules/memfs/-/memfs-4.9.4.tgz",
- "integrity": "sha512-1XyYPUaIHwEOdF19wYVLBtHJRr42Do+3ctht17cZOHwHf67vkmRNPlYDGY2kJps4RgE5+c7nEZmEzxxvb1NZWA==",
+ "node_modules/@babel/helper-optimise-call-expression": {
+ "version": "7.25.9",
+ "license": "MIT",
"dependencies": {
- "assert": "^2.0.0",
- "buffer": "^6.0.3",
- "events": "^3.3.0",
- "memfs": "^4.9.3",
- "path": "^0.12.7",
- "stream": "^0.0.3",
- "util": "^0.12.5"
+ "@babel/types": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
}
},
- "node_modules/@bundled-es-modules/memfs/node_modules/buffer": {
- "version": "6.0.3",
- "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
- "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
+ "node_modules/@babel/helper-plugin-utils": {
+ "version": "7.25.9",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-remap-async-to-generator": {
+ "version": "7.25.9",
+ "license": "MIT",
"dependencies": {
- "base64-js": "^1.3.1",
- "ieee754": "^1.2.1"
+ "@babel/helper-annotate-as-pure": "^7.25.9",
+ "@babel/helper-wrap-function": "^7.25.9",
+ "@babel/traverse": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
}
},
- "node_modules/@bundled-es-modules/memfs/node_modules/memfs": {
- "version": "4.11.1",
- "resolved": "https://registry.npmjs.org/memfs/-/memfs-4.11.1.tgz",
- "integrity": "sha512-LZcMTBAgqUUKNXZagcZxvXXfgF1bHX7Y7nQ0QyEiNbRJgE29GhgPd8Yna1VQcLlPiHt/5RFJMWYN9Uv/VPNvjQ==",
+ "node_modules/@babel/helper-replace-supers": {
+ "version": "7.25.9",
+ "license": "MIT",
"dependencies": {
- "@jsonjoy.com/json-pack": "^1.0.3",
- "@jsonjoy.com/util": "^1.3.0",
- "tree-dump": "^1.0.1",
- "tslib": "^2.0.0"
+ "@babel/helper-member-expression-to-functions": "^7.25.9",
+ "@babel/helper-optimise-call-expression": "^7.25.9",
+ "@babel/traverse": "^7.25.9"
},
"engines": {
- "node": ">= 4.0.0"
+ "node": ">=6.9.0"
},
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/streamich"
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
}
},
- "node_modules/@bundled-es-modules/postcss-calc-ast-parser": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/@bundled-es-modules/postcss-calc-ast-parser/-/postcss-calc-ast-parser-0.1.6.tgz",
- "integrity": "sha512-y65TM5zF+uaxo9OeekJ3rxwTINlQvrkbZLogYvQYVoLtxm4xEiHfZ7e/MyiWbStYyWZVZkVqsaVU6F4SUK5XUA==",
+ "node_modules/@babel/helper-skip-transparent-expression-wrappers": {
+ "version": "7.25.9",
+ "license": "MIT",
"dependencies": {
- "postcss-calc-ast-parser": "^0.1.4"
+ "@babel/traverse": "^7.25.9",
+ "@babel/types": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
}
},
- "node_modules/@chevrotain/cst-dts-gen": {
- "version": "11.0.3",
- "resolved": "https://registry.npmjs.org/@chevrotain/cst-dts-gen/-/cst-dts-gen-11.0.3.tgz",
- "integrity": "sha512-BvIKpRLeS/8UbfxXxgC33xOumsacaeCKAjAeLyOn7Pcp95HiRbrpl14S+9vaZLolnbssPIUuiUd8IvgkRyt6NQ==",
+ "node_modules/@babel/helper-string-parser": {
+ "version": "7.25.9",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-validator-identifier": {
+ "version": "7.25.9",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-validator-option": {
+ "version": "7.25.9",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-wrap-function": {
+ "version": "7.25.9",
+ "license": "MIT",
"dependencies": {
- "@chevrotain/gast": "11.0.3",
- "@chevrotain/types": "11.0.3",
- "lodash-es": "4.17.21"
+ "@babel/template": "^7.25.9",
+ "@babel/traverse": "^7.25.9",
+ "@babel/types": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
}
},
- "node_modules/@chevrotain/gast": {
- "version": "11.0.3",
- "resolved": "https://registry.npmjs.org/@chevrotain/gast/-/gast-11.0.3.tgz",
- "integrity": "sha512-+qNfcoNk70PyS/uxmj3li5NiECO+2YKZZQMbmjTqRI3Qchu8Hig/Q9vgkHpI3alNjr7M+a2St5pw5w5F6NL5/Q==",
+ "node_modules/@babel/helpers": {
+ "version": "7.26.0",
+ "license": "MIT",
"dependencies": {
- "@chevrotain/types": "11.0.3",
- "lodash-es": "4.17.21"
+ "@babel/template": "^7.25.9",
+ "@babel/types": "^7.26.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
}
},
- "node_modules/@chevrotain/regexp-to-ast": {
- "version": "11.0.3",
- "resolved": "https://registry.npmjs.org/@chevrotain/regexp-to-ast/-/regexp-to-ast-11.0.3.tgz",
- "integrity": "sha512-1fMHaBZxLFvWI067AVbGJav1eRY7N8DDvYCTwGBiE/ytKBgP8azTdgyrKyWZ9Mfh09eHWb5PgTSO8wi7U824RA=="
+ "node_modules/@babel/highlight": {
+ "version": "7.25.9",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-validator-identifier": "^7.25.9",
+ "chalk": "^2.4.2",
+ "js-tokens": "^4.0.0",
+ "picocolors": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
},
- "node_modules/@chevrotain/types": {
- "version": "11.0.3",
- "resolved": "https://registry.npmjs.org/@chevrotain/types/-/types-11.0.3.tgz",
- "integrity": "sha512-gsiM3G8b58kZC2HaWR50gu6Y1440cHiJ+i3JUvcp/35JchYejb2+5MVeJK0iKThYpAa/P2PYFV4hoi44HD+aHQ=="
+ "node_modules/@babel/highlight/node_modules/ansi-styles": {
+ "version": "3.2.1",
+ "license": "MIT",
+ "dependencies": {
+ "color-convert": "^1.9.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
},
- "node_modules/@chevrotain/utils": {
- "version": "11.0.3",
- "resolved": "https://registry.npmjs.org/@chevrotain/utils/-/utils-11.0.3.tgz",
- "integrity": "sha512-YslZMgtJUyuMbZ+aKvfF3x1f5liK4mWNxghFRv7jqRR9C3R3fAOGTTKvxXDa2Y1s9zSbcpuO0cAxDYsc9SrXoQ=="
+ "node_modules/@babel/highlight/node_modules/chalk": {
+ "version": "2.4.2",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
},
- "node_modules/@cnakazawa/watch": {
- "version": "1.0.4",
- "dev": true,
- "license": "Apache-2.0",
+ "node_modules/@babel/highlight/node_modules/color-convert": {
+ "version": "1.9.3",
+ "license": "MIT",
"dependencies": {
- "exec-sh": "^0.3.2",
- "minimist": "^1.2.0"
+ "color-name": "1.1.3"
+ }
+ },
+ "node_modules/@babel/highlight/node_modules/color-name": {
+ "version": "1.1.3",
+ "license": "MIT"
+ },
+ "node_modules/@babel/highlight/node_modules/escape-string-regexp": {
+ "version": "1.0.5",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.8.0"
+ }
+ },
+ "node_modules/@babel/highlight/node_modules/has-flag": {
+ "version": "3.0.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/@babel/highlight/node_modules/supports-color": {
+ "version": "5.5.0",
+ "license": "MIT",
+ "dependencies": {
+ "has-flag": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/@babel/parser": {
+ "version": "7.26.3",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/types": "^7.26.3"
},
"bin": {
- "watch": "cli.js"
+ "parser": "bin/babel-parser.js"
},
"engines": {
- "node": ">=0.1.95"
+ "node": ">=6.0.0"
}
},
- "node_modules/@colors/colors": {
- "version": "1.5.0",
- "dev": true,
+ "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": {
+ "version": "7.25.9",
"license": "MIT",
- "optional": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.25.9",
+ "@babel/traverse": "^7.25.9"
+ },
"engines": {
- "node": ">=0.1.90"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
}
},
- "node_modules/@cospired/i18n-iso-languages": {
- "version": "2.2.0",
+ "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": {
+ "version": "7.25.9",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
+ }
+ },
+ "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
+ "version": "7.25.9",
"license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.25.9"
+ },
"engines": {
- "node": ">= 6"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
}
},
- "node_modules/@csstools/cascade-layer-name-parser": {
- "version": "1.0.2",
+ "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
+ "version": "7.25.9",
"license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.25.9",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9",
+ "@babel/plugin-transform-optional-chaining": "^7.25.9"
+ },
"engines": {
- "node": "^14 || ^16 || >=18"
+ "node": ">=6.9.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/csstools"
+ "peerDependencies": {
+ "@babel/core": "^7.13.0"
+ }
+ },
+ "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": {
+ "version": "7.25.9",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.25.9",
+ "@babel/traverse": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
- "@csstools/css-parser-algorithms": "^2.1.1",
- "@csstools/css-tokenizer": "^2.1.1"
+ "@babel/core": "^7.0.0"
}
},
- "node_modules/@csstools/css-parser-algorithms": {
- "version": "2.1.1",
+ "node_modules/@babel/plugin-proposal-class-properties": {
+ "version": "7.18.6",
"license": "MIT",
+ "dependencies": {
+ "@babel/helper-create-class-features-plugin": "^7.18.6",
+ "@babel/helper-plugin-utils": "^7.18.6"
+ },
"engines": {
- "node": "^14 || ^16 || >=18"
+ "node": ">=6.9.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/csstools"
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": {
+ "version": "7.18.6",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.18.6",
+ "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-proposal-numeric-separator": {
+ "version": "7.18.6",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.18.6",
+ "@babel/plugin-syntax-numeric-separator": "^7.10.4"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-proposal-object-rest-spread": {
+ "version": "7.20.7",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/compat-data": "^7.20.5",
+ "@babel/helper-compilation-targets": "^7.20.7",
+ "@babel/helper-plugin-utils": "^7.20.2",
+ "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
+ "@babel/plugin-transform-parameters": "^7.20.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-proposal-optional-chaining": {
+ "version": "7.21.0",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.20.2",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0",
+ "@babel/plugin-syntax-optional-chaining": "^7.8.3"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-proposal-private-property-in-object": {
+ "version": "7.21.0-placeholder-for-preset-env.2",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-proposal-unicode-property-regex": {
+ "version": "7.18.6",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-create-regexp-features-plugin": "^7.18.6",
+ "@babel/helper-plugin-utils": "^7.18.6"
+ },
+ "engines": {
+ "node": ">=4"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-async-generators": {
+ "version": "7.8.4",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-bigint": {
+ "version": "7.8.3",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-class-properties": {
+ "version": "7.12.13",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.12.13"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-class-static-block": {
+ "version": "7.14.5",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.14.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-dynamic-import": {
+ "version": "7.8.3",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-export-namespace-from": {
+ "version": "7.8.3",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-flow": {
+ "version": "7.26.0",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-import-assertions": {
+ "version": "7.26.0",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-import-attributes": {
+ "version": "7.26.0",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-import-meta": {
+ "version": "7.10.4",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-json-strings": {
+ "version": "7.8.3",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-jsx": {
+ "version": "7.25.9",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
- "@csstools/css-tokenizer": "^2.1.1"
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@csstools/css-tokenizer": {
- "version": "2.1.1",
+ "node_modules/@babel/plugin-syntax-logical-assignment-operators": {
+ "version": "7.10.4",
"license": "MIT",
- "engines": {
- "node": "^14 || ^16 || >=18"
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.10.4"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/csstools"
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@csstools/media-query-list-parser": {
- "version": "2.0.4",
+ "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": {
+ "version": "7.8.3",
"license": "MIT",
- "engines": {
- "node": "^14 || ^16 || >=18"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/csstools"
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.8.0"
},
"peerDependencies": {
- "@csstools/css-parser-algorithms": "^2.1.1",
- "@csstools/css-tokenizer": "^2.1.1"
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@csstools/selector-specificity": {
- "version": "2.1.1",
- "dev": true,
- "license": "CC0-1.0",
- "engines": {
- "node": "^14 || ^16 || >=18"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/csstools"
+ "node_modules/@babel/plugin-syntax-numeric-separator": {
+ "version": "7.10.4",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.10.4"
},
"peerDependencies": {
- "postcss": "^8.4",
- "postcss-selector-parser": "^6.0.10"
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@discoveryjs/json-ext": {
- "version": "0.5.7",
- "dev": true,
+ "node_modules/@babel/plugin-syntax-object-rest-spread": {
+ "version": "7.8.3",
"license": "MIT",
- "engines": {
- "node": ">=10.0.0"
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@docsearch/css": {
- "version": "3.3.3",
- "license": "MIT"
- },
- "node_modules/@docsearch/react": {
- "version": "3.3.3",
+ "node_modules/@babel/plugin-syntax-optional-catch-binding": {
+ "version": "7.8.3",
"license": "MIT",
"dependencies": {
- "@algolia/autocomplete-core": "1.7.4",
- "@algolia/autocomplete-preset-algolia": "1.7.4",
- "@docsearch/css": "3.3.3",
- "algoliasearch": "^4.0.0"
+ "@babel/helper-plugin-utils": "^7.8.0"
},
"peerDependencies": {
- "@types/react": ">= 16.8.0 < 19.0.0",
- "react": ">= 16.8.0 < 19.0.0",
- "react-dom": ">= 16.8.0 < 19.0.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "react": {
- "optional": true
- },
- "react-dom": {
- "optional": true
- }
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/brand-edx.org": {
- "version": "2.1.2",
- "license": "UNLICENSED"
- },
- "node_modules/@edx/eslint-config": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/@edx/eslint-config/-/eslint-config-4.3.0.tgz",
- "integrity": "sha512-4W9wFG4ALr3xocakCsncgJbK67RHfSmDwHDXKHReFtjxl/FRkxhS6qayz189oChqfANieeV3zRCLaq44bLf+/A==",
- "dev": true,
+ "node_modules/@babel/plugin-syntax-optional-chaining": {
+ "version": "7.8.3",
"license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ },
"peerDependencies": {
- "@typescript-eslint/eslint-plugin": "^5.62.0",
- "@typescript-eslint/parser": "^5.62.0",
- "eslint": "^7.32.0 || ^8.2.0",
- "eslint-config-airbnb": "^18.0.1 || ^19.0.0",
- "eslint-config-airbnb-typescript": "^17.0.0",
- "eslint-plugin-import": "^2.25.3",
- "eslint-plugin-jsx-a11y": "^6.2.3",
- "eslint-plugin-react": "^7.18.0",
- "eslint-plugin-react-hooks": "^1.7.0 || ^4.0.0"
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build": {
- "version": "12.8.10",
- "dev": true,
- "license": "AGPL-3.0",
+ "node_modules/@babel/plugin-syntax-private-property-in-object": {
+ "version": "7.14.5",
+ "license": "MIT",
"dependencies": {
- "@babel/cli": "7.21.0",
- "@babel/core": "7.21.4",
- "@babel/eslint-parser": "7.21.3",
- "@babel/plugin-proposal-class-properties": "7.18.6",
- "@babel/plugin-proposal-object-rest-spread": "7.20.7",
- "@babel/plugin-syntax-dynamic-import": "7.8.3",
- "@babel/preset-env": "7.21.4",
- "@babel/preset-react": "7.18.6",
- "@edx/eslint-config": "3.2.0",
- "@edx/new-relic-source-map-webpack-plugin": "1.0.2",
- "@fullhuman/postcss-purgecss": "^5.0.0",
- "@pmmmwh/react-refresh-webpack-plugin": "0.5.10",
- "@svgr/webpack": "6.5.1",
- "autoprefixer": "10.4.14",
- "babel-jest": "26.6.3",
- "babel-loader": "9.1.2",
- "babel-plugin-react-intl": "7.9.4",
- "babel-plugin-transform-imports": "2.0.0",
- "babel-polyfill": "6.26.0",
- "clean-webpack-plugin": "3.0.0",
- "css-loader": "5.2.7",
- "cssnano": "5.1.15",
- "dotenv": "8.6.0",
- "dotenv-webpack": "7.1.1",
- "eslint": "8.38.0",
- "eslint-config-airbnb": "19.0.4",
- "eslint-plugin-import": "2.27.5",
- "eslint-plugin-jsx-a11y": "6.7.1",
- "eslint-plugin-react": "7.32.2",
- "eslint-plugin-react-hooks": "4.6.0",
- "file-loader": "6.2.0",
- "html-webpack-plugin": "5.5.0",
- "identity-obj-proxy": "3.0.0",
- "image-minimizer-webpack-plugin": "3.8.2",
- "jest": "26.6.3",
- "mini-css-extract-plugin": "1.6.2",
- "postcss": "8.4.21",
- "postcss-custom-media": "^9.1.2",
- "postcss-loader": "6.2.1",
- "postcss-rtlcss": "3.7.2",
- "react-dev-utils": "12.0.1",
- "react-refresh": "0.14.0",
- "resolve-url-loader": "5.0.0",
- "sass": "1.62.0",
- "sass-loader": "12.6.0",
- "sharp": "^0.32.0",
- "source-map-loader": "^4.0.1",
- "style-loader": "3.3.2",
- "url-loader": "4.1.1",
- "webpack": "5.79.0",
- "webpack-bundle-analyzer": "4.8.0",
- "webpack-cli": "5.0.1",
- "webpack-dev-server": "4.13.2",
- "webpack-merge": "5.8.0"
+ "@babel/helper-plugin-utils": "^7.14.5"
},
- "bin": {
- "fedx-scripts": "bin/fedx-scripts.js"
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
- "react": "^16.9.0 || ^17.0.0"
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/@babel/core": {
- "version": "7.21.4",
- "dev": true,
+ "node_modules/@babel/plugin-syntax-top-level-await": {
+ "version": "7.14.5",
"license": "MIT",
"dependencies": {
- "@ampproject/remapping": "^2.2.0",
- "@babel/code-frame": "^7.21.4",
- "@babel/generator": "^7.21.4",
- "@babel/helper-compilation-targets": "^7.21.4",
- "@babel/helper-module-transforms": "^7.21.2",
- "@babel/helpers": "^7.21.0",
- "@babel/parser": "^7.21.4",
- "@babel/template": "^7.20.7",
- "@babel/traverse": "^7.21.4",
- "@babel/types": "^7.21.4",
- "convert-source-map": "^1.7.0",
- "debug": "^4.1.0",
- "gensync": "^1.0.0-beta.2",
- "json5": "^2.2.2",
- "semver": "^6.3.0"
+ "@babel/helper-plugin-utils": "^7.14.5"
},
"engines": {
"node": ">=6.9.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/babel"
- }
- },
- "node_modules/@edx/frontend-build/node_modules/@edx/eslint-config": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/@edx/eslint-config/-/eslint-config-3.2.0.tgz",
- "integrity": "sha512-X2o34xr3KqmQSV/vJVv6k4FxUKYwbBATHTtTHLTYQvM9PVoM3WbKQP9tl6Z057pRErKzshJcks+4ENzDyhr11Q==",
- "dev": true,
"peerDependencies": {
- "eslint": "^6.8.0 || ^7.0.0 || ^8.0.0",
- "eslint-config-airbnb": "^18.0.1 || ^19.0.0",
- "eslint-plugin-import": "^2.20.0",
- "eslint-plugin-jsx-a11y": "^6.2.3",
- "eslint-plugin-react": "^7.18.0",
- "eslint-plugin-react-hooks": "^1.7.0 || ^4.0.0"
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/@eslint/eslintrc": {
- "version": "2.0.2",
- "dev": true,
+ "node_modules/@babel/plugin-syntax-typescript": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "ajv": "^6.12.4",
- "debug": "^4.3.2",
- "espree": "^9.5.1",
- "globals": "^13.19.0",
- "ignore": "^5.2.0",
- "import-fresh": "^3.2.1",
- "js-yaml": "^4.1.0",
- "minimatch": "^3.1.2",
- "strip-json-comments": "^3.1.1"
+ "@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ "node": ">=6.9.0"
},
- "funding": {
- "url": "https://opencollective.com/eslint"
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/@humanwhocodes/config-array": {
- "version": "0.11.8",
- "dev": true,
- "license": "Apache-2.0",
+ "node_modules/@babel/plugin-syntax-unicode-sets-regex": {
+ "version": "7.18.6",
+ "license": "MIT",
"dependencies": {
- "@humanwhocodes/object-schema": "^1.2.1",
- "debug": "^4.1.1",
- "minimatch": "^3.0.5"
+ "@babel/helper-create-regexp-features-plugin": "^7.18.6",
+ "@babel/helper-plugin-utils": "^7.18.6"
},
"engines": {
- "node": ">=10.10.0"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
}
},
- "node_modules/@edx/frontend-build/node_modules/@jest/console": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/@babel/plugin-transform-arrow-functions": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "jest-message-util": "^26.6.2",
- "jest-util": "^26.6.2",
- "slash": "^3.0.0"
+ "@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/@jest/core": {
- "version": "26.6.3",
- "dev": true,
+ "node_modules/@babel/plugin-transform-async-generator-functions": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "@jest/console": "^26.6.2",
- "@jest/reporters": "^26.6.2",
- "@jest/test-result": "^26.6.2",
- "@jest/transform": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "ansi-escapes": "^4.2.1",
- "chalk": "^4.0.0",
- "exit": "^0.1.2",
- "graceful-fs": "^4.2.4",
- "jest-changed-files": "^26.6.2",
- "jest-config": "^26.6.3",
- "jest-haste-map": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-regex-util": "^26.0.0",
- "jest-resolve": "^26.6.2",
- "jest-resolve-dependencies": "^26.6.3",
- "jest-runner": "^26.6.3",
- "jest-runtime": "^26.6.3",
- "jest-snapshot": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-validate": "^26.6.2",
- "jest-watcher": "^26.6.2",
- "micromatch": "^4.0.2",
- "p-each-series": "^2.1.0",
- "rimraf": "^3.0.0",
- "slash": "^3.0.0",
- "strip-ansi": "^6.0.0"
+ "@babel/helper-plugin-utils": "^7.25.9",
+ "@babel/helper-remap-async-to-generator": "^7.25.9",
+ "@babel/traverse": "^7.25.9"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/@jest/environment": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/@babel/plugin-transform-async-to-generator": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "@jest/fake-timers": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "jest-mock": "^26.6.2"
+ "@babel/helper-module-imports": "^7.25.9",
+ "@babel/helper-plugin-utils": "^7.25.9",
+ "@babel/helper-remap-async-to-generator": "^7.25.9"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/@jest/fake-timers": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/@babel/plugin-transform-block-scoped-functions": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "@jest/types": "^26.6.2",
- "@sinonjs/fake-timers": "^6.0.1",
- "@types/node": "*",
- "jest-message-util": "^26.6.2",
- "jest-mock": "^26.6.2",
- "jest-util": "^26.6.2"
+ "@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/@jest/globals": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/@babel/plugin-transform-block-scoping": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "@jest/environment": "^26.6.2",
- "@jest/types": "^26.6.2",
- "expect": "^26.6.2"
+ "@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/@jest/reporters": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/@babel/plugin-transform-class-properties": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "@bcoe/v8-coverage": "^0.2.3",
- "@jest/console": "^26.6.2",
- "@jest/test-result": "^26.6.2",
- "@jest/transform": "^26.6.2",
- "@jest/types": "^26.6.2",
- "chalk": "^4.0.0",
- "collect-v8-coverage": "^1.0.0",
- "exit": "^0.1.2",
- "glob": "^7.1.2",
- "graceful-fs": "^4.2.4",
- "istanbul-lib-coverage": "^3.0.0",
- "istanbul-lib-instrument": "^4.0.3",
- "istanbul-lib-report": "^3.0.0",
- "istanbul-lib-source-maps": "^4.0.0",
- "istanbul-reports": "^3.0.2",
- "jest-haste-map": "^26.6.2",
- "jest-resolve": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-worker": "^26.6.2",
- "slash": "^3.0.0",
- "source-map": "^0.6.0",
- "string-length": "^4.0.1",
- "terminal-link": "^2.0.0",
- "v8-to-istanbul": "^7.0.0"
+ "@babel/helper-create-class-features-plugin": "^7.25.9",
+ "@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
},
- "optionalDependencies": {
- "node-notifier": "^8.0.0"
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/@jest/source-map": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/@babel/plugin-transform-class-static-block": {
+ "version": "7.26.0",
"license": "MIT",
"dependencies": {
- "callsites": "^3.0.0",
- "graceful-fs": "^4.2.4",
- "source-map": "^0.6.0"
+ "@babel/helper-create-class-features-plugin": "^7.25.9",
+ "@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.12.0"
}
},
- "node_modules/@edx/frontend-build/node_modules/@jest/test-result": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/@babel/plugin-transform-classes": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "@jest/console": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/istanbul-lib-coverage": "^2.0.0",
- "collect-v8-coverage": "^1.0.0"
+ "@babel/helper-annotate-as-pure": "^7.25.9",
+ "@babel/helper-compilation-targets": "^7.25.9",
+ "@babel/helper-plugin-utils": "^7.25.9",
+ "@babel/helper-replace-supers": "^7.25.9",
+ "@babel/traverse": "^7.25.9",
+ "globals": "^11.1.0"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/@jest/test-sequencer": {
- "version": "26.6.3",
- "dev": true,
+ "node_modules/@babel/plugin-transform-classes/node_modules/globals": {
+ "version": "11.12.0",
"license": "MIT",
- "dependencies": {
- "@jest/test-result": "^26.6.2",
- "graceful-fs": "^4.2.4",
- "jest-haste-map": "^26.6.2",
- "jest-runner": "^26.6.3",
- "jest-runtime": "^26.6.3"
- },
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=4"
}
},
- "node_modules/@edx/frontend-build/node_modules/@jest/transform": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/@babel/plugin-transform-computed-properties": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "@babel/core": "^7.1.0",
- "@jest/types": "^26.6.2",
- "babel-plugin-istanbul": "^6.0.0",
- "chalk": "^4.0.0",
- "convert-source-map": "^1.4.0",
- "fast-json-stable-stringify": "^2.0.0",
- "graceful-fs": "^4.2.4",
- "jest-haste-map": "^26.6.2",
- "jest-regex-util": "^26.0.0",
- "jest-util": "^26.6.2",
- "micromatch": "^4.0.2",
- "pirates": "^4.0.1",
- "slash": "^3.0.0",
- "source-map": "^0.6.1",
- "write-file-atomic": "^3.0.0"
+ "@babel/helper-plugin-utils": "^7.25.9",
+ "@babel/template": "^7.25.9"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/@jest/types": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/@babel/plugin-transform-destructuring": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "@types/istanbul-lib-coverage": "^2.0.0",
- "@types/istanbul-reports": "^3.0.0",
- "@types/node": "*",
- "@types/yargs": "^15.0.0",
- "chalk": "^4.0.0"
+ "@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/@sinonjs/fake-timers": {
- "version": "6.0.1",
- "dev": true,
- "license": "BSD-3-Clause",
+ "node_modules/@babel/plugin-transform-dotall-regex": {
+ "version": "7.25.9",
+ "license": "MIT",
"dependencies": {
- "@sinonjs/commons": "^1.7.0"
+ "@babel/helper-create-regexp-features-plugin": "^7.25.9",
+ "@babel/helper-plugin-utils": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/@tootallnate/once": {
- "version": "1.1.2",
- "dev": true,
+ "node_modules/@babel/plugin-transform-duplicate-keys": {
+ "version": "7.25.9",
"license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.25.9"
+ },
"engines": {
- "node": ">= 6"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/@types/yargs": {
- "version": "15.0.15",
- "dev": true,
+ "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "@types/yargs-parser": "*"
+ "@babel/helper-create-regexp-features-plugin": "^7.25.9",
+ "@babel/helper-plugin-utils": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
}
},
- "node_modules/@edx/frontend-build/node_modules/ansi-styles": {
- "version": "4.3.0",
- "dev": true,
+ "node_modules/@babel/plugin-transform-dynamic-import": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
- "node": ">=8"
+ "node": ">=6.9.0"
},
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/argparse": {
- "version": "2.0.1",
- "dev": true,
- "license": "Python-2.0"
- },
- "node_modules/@edx/frontend-build/node_modules/babel-jest": {
- "version": "26.6.3",
- "dev": true,
+ "node_modules/@babel/plugin-transform-exponentiation-operator": {
+ "version": "7.26.3",
"license": "MIT",
"dependencies": {
- "@jest/transform": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/babel__core": "^7.1.7",
- "babel-plugin-istanbul": "^6.0.0",
- "babel-preset-jest": "^26.6.2",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.4",
- "slash": "^3.0.0"
+ "@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
},
"peerDependencies": {
- "@babel/core": "^7.0.0"
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/babel-loader": {
- "version": "9.1.2",
- "dev": true,
+ "node_modules/@babel/plugin-transform-export-namespace-from": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "find-cache-dir": "^3.3.2",
- "schema-utils": "^4.0.0"
+ "@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
- "node": ">= 14.15.0"
+ "node": ">=6.9.0"
},
"peerDependencies": {
- "@babel/core": "^7.12.0",
- "webpack": ">=5"
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/babel-plugin-jest-hoist": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/@babel/plugin-transform-flow-strip-types": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "@babel/template": "^7.3.3",
- "@babel/types": "^7.3.3",
- "@types/babel__core": "^7.0.0",
- "@types/babel__traverse": "^7.0.6"
+ "@babel/helper-plugin-utils": "^7.25.9",
+ "@babel/plugin-syntax-flow": "^7.25.9"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/babel-preset-jest": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/@babel/plugin-transform-for-of": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "babel-plugin-jest-hoist": "^26.6.2",
- "babel-preset-current-node-syntax": "^1.0.0"
+ "@babel/helper-plugin-utils": "^7.25.9",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
},
"peerDependencies": {
- "@babel/core": "^7.0.0"
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/camelcase": {
- "version": "6.3.0",
- "dev": true,
+ "node_modules/@babel/plugin-transform-function-name": {
+ "version": "7.25.9",
"license": "MIT",
+ "dependencies": {
+ "@babel/helper-compilation-targets": "^7.25.9",
+ "@babel/helper-plugin-utils": "^7.25.9",
+ "@babel/traverse": "^7.25.9"
+ },
"engines": {
- "node": ">=10"
+ "node": ">=6.9.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/cjs-module-lexer": {
- "version": "0.6.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@edx/frontend-build/node_modules/cliui": {
- "version": "6.0.0",
- "dev": true,
- "license": "ISC",
+ "node_modules/@babel/plugin-transform-json-strings": {
+ "version": "7.25.9",
+ "license": "MIT",
"dependencies": {
- "string-width": "^4.2.0",
- "strip-ansi": "^6.0.0",
- "wrap-ansi": "^6.2.0"
+ "@babel/helper-plugin-utils": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/color-convert": {
- "version": "2.0.1",
- "dev": true,
+ "node_modules/@babel/plugin-transform-literals": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "color-name": "~1.1.4"
+ "@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
- "node": ">=7.0.0"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/color-name": {
- "version": "1.1.4",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@edx/frontend-build/node_modules/cssom": {
- "version": "0.4.4",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@edx/frontend-build/node_modules/data-urls": {
- "version": "2.0.0",
- "dev": true,
+ "node_modules/@babel/plugin-transform-logical-assignment-operators": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "abab": "^2.0.3",
- "whatwg-mimetype": "^2.3.0",
- "whatwg-url": "^8.0.0"
+ "@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
- "node": ">=10"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/diff-sequences": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/@babel/plugin-transform-member-expression-literals": {
+ "version": "7.25.9",
"license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.25.9"
+ },
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/domexception": {
- "version": "2.0.1",
- "dev": true,
+ "node_modules/@babel/plugin-transform-modules-amd": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "webidl-conversions": "^5.0.0"
+ "@babel/helper-module-transforms": "^7.25.9",
+ "@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
- "node": ">=8"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/domexception/node_modules/webidl-conversions": {
- "version": "5.0.0",
- "dev": true,
- "license": "BSD-2-Clause",
+ "node_modules/@babel/plugin-transform-modules-commonjs": {
+ "version": "7.26.3",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-module-transforms": "^7.26.0",
+ "@babel/helper-plugin-utils": "^7.25.9"
+ },
"engines": {
- "node": ">=8"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/dotenv": {
- "version": "8.6.0",
- "dev": true,
- "license": "BSD-2-Clause",
+ "node_modules/@babel/plugin-transform-modules-systemjs": {
+ "version": "7.25.9",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-module-transforms": "^7.25.9",
+ "@babel/helper-plugin-utils": "^7.25.9",
+ "@babel/helper-validator-identifier": "^7.25.9",
+ "@babel/traverse": "^7.25.9"
+ },
"engines": {
- "node": ">=10"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/emittery": {
- "version": "0.7.2",
- "dev": true,
+ "node_modules/@babel/plugin-transform-modules-umd": {
+ "version": "7.25.9",
"license": "MIT",
+ "dependencies": {
+ "@babel/helper-module-transforms": "^7.25.9",
+ "@babel/helper-plugin-utils": "^7.25.9"
+ },
"engines": {
- "node": ">=10"
+ "node": ">=6.9.0"
},
- "funding": {
- "url": "https://github.com/sindresorhus/emittery?sponsor=1"
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/escape-string-regexp": {
- "version": "4.0.0",
- "dev": true,
+ "node_modules/@babel/plugin-transform-named-capturing-groups-regex": {
+ "version": "7.25.9",
"license": "MIT",
+ "dependencies": {
+ "@babel/helper-create-regexp-features-plugin": "^7.25.9",
+ "@babel/helper-plugin-utils": "^7.25.9"
+ },
"engines": {
- "node": ">=10"
+ "node": ">=6.9.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
}
},
- "node_modules/@edx/frontend-build/node_modules/eslint": {
- "version": "8.38.0",
- "dev": true,
+ "node_modules/@babel/plugin-transform-new-target": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "@eslint-community/eslint-utils": "^4.2.0",
- "@eslint-community/regexpp": "^4.4.0",
- "@eslint/eslintrc": "^2.0.2",
- "@eslint/js": "8.38.0",
- "@humanwhocodes/config-array": "^0.11.8",
- "@humanwhocodes/module-importer": "^1.0.1",
- "@nodelib/fs.walk": "^1.2.8",
- "ajv": "^6.10.0",
- "chalk": "^4.0.0",
- "cross-spawn": "^7.0.2",
- "debug": "^4.3.2",
- "doctrine": "^3.0.0",
- "escape-string-regexp": "^4.0.0",
- "eslint-scope": "^7.1.1",
- "eslint-visitor-keys": "^3.4.0",
- "espree": "^9.5.1",
- "esquery": "^1.4.2",
- "esutils": "^2.0.2",
- "fast-deep-equal": "^3.1.3",
- "file-entry-cache": "^6.0.1",
- "find-up": "^5.0.0",
- "glob-parent": "^6.0.2",
- "globals": "^13.19.0",
- "grapheme-splitter": "^1.0.4",
- "ignore": "^5.2.0",
- "import-fresh": "^3.0.0",
- "imurmurhash": "^0.1.4",
- "is-glob": "^4.0.0",
- "is-path-inside": "^3.0.3",
- "js-sdsl": "^4.1.4",
- "js-yaml": "^4.1.0",
- "json-stable-stringify-without-jsonify": "^1.0.1",
- "levn": "^0.4.1",
- "lodash.merge": "^4.6.2",
- "minimatch": "^3.1.2",
- "natural-compare": "^1.4.0",
- "optionator": "^0.9.1",
- "strip-ansi": "^6.0.1",
- "strip-json-comments": "^3.1.0",
- "text-table": "^0.2.0"
- },
- "bin": {
- "eslint": "bin/eslint.js"
+ "@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ "node": ">=6.9.0"
},
- "funding": {
- "url": "https://opencollective.com/eslint"
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/eslint-scope": {
- "version": "7.2.0",
- "dev": true,
- "license": "BSD-2-Clause",
+ "node_modules/@babel/plugin-transform-nullish-coalescing-operator": {
+ "version": "7.25.9",
+ "license": "MIT",
"dependencies": {
- "esrecurse": "^4.3.0",
- "estraverse": "^5.2.0"
+ "@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ "node": ">=6.9.0"
},
- "funding": {
- "url": "https://opencollective.com/eslint"
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/eslint-visitor-keys": {
- "version": "3.4.0",
- "dev": true,
- "license": "Apache-2.0",
+ "node_modules/@babel/plugin-transform-numeric-separator": {
+ "version": "7.25.9",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.25.9"
+ },
"engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ "node": ">=6.9.0"
},
- "funding": {
- "url": "https://opencollective.com/eslint"
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/espree": {
- "version": "9.5.1",
- "dev": true,
- "license": "BSD-2-Clause",
+ "node_modules/@babel/plugin-transform-object-rest-spread": {
+ "version": "7.25.9",
+ "license": "MIT",
"dependencies": {
- "acorn": "^8.8.0",
- "acorn-jsx": "^5.3.2",
- "eslint-visitor-keys": "^3.4.0"
+ "@babel/helper-compilation-targets": "^7.25.9",
+ "@babel/helper-plugin-utils": "^7.25.9",
+ "@babel/plugin-transform-parameters": "^7.25.9"
},
"engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ "node": ">=6.9.0"
},
- "funding": {
- "url": "https://opencollective.com/eslint"
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/execa": {
- "version": "4.1.0",
- "dev": true,
+ "node_modules/@babel/plugin-transform-object-super": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "cross-spawn": "^7.0.0",
- "get-stream": "^5.0.0",
- "human-signals": "^1.1.1",
- "is-stream": "^2.0.0",
- "merge-stream": "^2.0.0",
- "npm-run-path": "^4.0.0",
- "onetime": "^5.1.0",
- "signal-exit": "^3.0.2",
- "strip-final-newline": "^2.0.0"
+ "@babel/helper-plugin-utils": "^7.25.9",
+ "@babel/helper-replace-supers": "^7.25.9"
},
"engines": {
- "node": ">=10"
+ "node": ">=6.9.0"
},
- "funding": {
- "url": "https://github.com/sindresorhus/execa?sponsor=1"
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/expect": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/@babel/plugin-transform-optional-catch-binding": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "@jest/types": "^26.6.2",
- "ansi-styles": "^4.0.0",
- "jest-get-type": "^26.3.0",
- "jest-matcher-utils": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-regex-util": "^26.0.0"
+ "@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/find-up": {
- "version": "5.0.0",
- "dev": true,
+ "node_modules/@babel/plugin-transform-optional-chaining": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "locate-path": "^6.0.0",
- "path-exists": "^4.0.0"
+ "@babel/helper-plugin-utils": "^7.25.9",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9"
},
"engines": {
- "node": ">=10"
+ "node": ">=6.9.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/form-data": {
- "version": "3.0.1",
- "dev": true,
+ "node_modules/@babel/plugin-transform-parameters": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "asynckit": "^0.4.0",
- "combined-stream": "^1.0.8",
- "mime-types": "^2.1.12"
+ "@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
- "node": ">= 6"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/get-stream": {
- "version": "5.2.0",
- "dev": true,
+ "node_modules/@babel/plugin-transform-private-methods": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "pump": "^3.0.0"
+ "@babel/helper-create-class-features-plugin": "^7.25.9",
+ "@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
- "node": ">=8"
+ "node": ">=6.9.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/glob": {
- "version": "7.2.3",
- "dev": true,
- "license": "ISC",
+ "node_modules/@babel/plugin-transform-private-property-in-object": {
+ "version": "7.25.9",
+ "license": "MIT",
"dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.1.1",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
+ "@babel/helper-annotate-as-pure": "^7.25.9",
+ "@babel/helper-create-class-features-plugin": "^7.25.9",
+ "@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
- "node": "*"
+ "node": ">=6.9.0"
},
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/glob-parent": {
- "version": "6.0.2",
- "dev": true,
- "license": "ISC",
+ "node_modules/@babel/plugin-transform-property-literals": {
+ "version": "7.25.9",
+ "license": "MIT",
"dependencies": {
- "is-glob": "^4.0.3"
+ "@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
- "node": ">=10.13.0"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/globals": {
- "version": "13.20.0",
- "dev": true,
+ "node_modules/@babel/plugin-transform-react-constant-elements": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "type-fest": "^0.20.2"
+ "@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
- "node": ">=8"
+ "node": ">=6.9.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/has-flag": {
- "version": "4.0.0",
- "dev": true,
+ "node_modules/@babel/plugin-transform-react-display-name": {
+ "version": "7.25.9",
"license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.25.9"
+ },
"engines": {
- "node": ">=8"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/html-encoding-sniffer": {
- "version": "2.0.1",
- "dev": true,
+ "node_modules/@babel/plugin-transform-react-jsx": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "whatwg-encoding": "^1.0.5"
+ "@babel/helper-annotate-as-pure": "^7.25.9",
+ "@babel/helper-module-imports": "^7.25.9",
+ "@babel/helper-plugin-utils": "^7.25.9",
+ "@babel/plugin-syntax-jsx": "^7.25.9",
+ "@babel/types": "^7.25.9"
},
"engines": {
- "node": ">=10"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/http-proxy-agent": {
- "version": "4.0.1",
- "dev": true,
+ "node_modules/@babel/plugin-transform-react-jsx-development": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "@tootallnate/once": "1",
- "agent-base": "6",
- "debug": "4"
+ "@babel/plugin-transform-react-jsx": "^7.25.9"
},
"engines": {
- "node": ">= 6"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/human-signals": {
- "version": "1.1.1",
- "dev": true,
- "license": "Apache-2.0",
+ "node_modules/@babel/plugin-transform-react-pure-annotations": {
+ "version": "7.25.9",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-annotate-as-pure": "^7.25.9",
+ "@babel/helper-plugin-utils": "^7.25.9"
+ },
"engines": {
- "node": ">=8.12.0"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/iconv-lite": {
- "version": "0.4.24",
- "dev": true,
+ "node_modules/@babel/plugin-transform-regenerator": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "safer-buffer": ">= 2.1.2 < 3"
+ "@babel/helper-plugin-utils": "^7.25.9",
+ "regenerator-transform": "^0.15.2"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/istanbul-lib-instrument": {
- "version": "4.0.3",
- "dev": true,
- "license": "BSD-3-Clause",
+ "node_modules/@babel/plugin-transform-regexp-modifiers": {
+ "version": "7.26.0",
+ "license": "MIT",
"dependencies": {
- "@babel/core": "^7.7.5",
- "@istanbuljs/schema": "^0.1.2",
- "istanbul-lib-coverage": "^3.0.0",
- "semver": "^6.3.0"
+ "@babel/helper-create-regexp-features-plugin": "^7.25.9",
+ "@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
- "node": ">=8"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
}
},
- "node_modules/@edx/frontend-build/node_modules/jest": {
- "version": "26.6.3",
- "dev": true,
+ "node_modules/@babel/plugin-transform-reserved-words": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "@jest/core": "^26.6.3",
- "import-local": "^3.0.2",
- "jest-cli": "^26.6.3"
- },
- "bin": {
- "jest": "bin/jest.js"
+ "@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/jest-changed-files": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/@babel/plugin-transform-runtime": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "@jest/types": "^26.6.2",
- "execa": "^4.0.0",
- "throat": "^5.0.0"
+ "@babel/helper-module-imports": "^7.25.9",
+ "@babel/helper-plugin-utils": "^7.25.9",
+ "babel-plugin-polyfill-corejs2": "^0.4.10",
+ "babel-plugin-polyfill-corejs3": "^0.10.6",
+ "babel-plugin-polyfill-regenerator": "^0.6.1",
+ "semver": "^6.3.1"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/jest-cli": {
- "version": "26.6.3",
- "dev": true,
+ "node_modules/@babel/plugin-transform-runtime/node_modules/babel-plugin-polyfill-corejs3": {
+ "version": "0.10.6",
"license": "MIT",
"dependencies": {
- "@jest/core": "^26.6.3",
- "@jest/test-result": "^26.6.2",
- "@jest/types": "^26.6.2",
- "chalk": "^4.0.0",
- "exit": "^0.1.2",
- "graceful-fs": "^4.2.4",
- "import-local": "^3.0.2",
- "is-ci": "^2.0.0",
- "jest-config": "^26.6.3",
- "jest-util": "^26.6.2",
- "jest-validate": "^26.6.2",
- "prompts": "^2.0.1",
- "yargs": "^15.4.1"
- },
- "bin": {
- "jest": "bin/jest.js"
+ "@babel/helper-define-polyfill-provider": "^0.6.2",
+ "core-js-compat": "^3.38.0"
},
- "engines": {
- "node": ">= 10.14.2"
+ "peerDependencies": {
+ "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
}
},
- "node_modules/@edx/frontend-build/node_modules/jest-config": {
- "version": "26.6.3",
- "dev": true,
+ "node_modules/@babel/plugin-transform-runtime/node_modules/babel-plugin-polyfill-regenerator": {
+ "version": "0.6.3",
"license": "MIT",
"dependencies": {
- "@babel/core": "^7.1.0",
- "@jest/test-sequencer": "^26.6.3",
- "@jest/types": "^26.6.2",
- "babel-jest": "^26.6.3",
- "chalk": "^4.0.0",
- "deepmerge": "^4.2.2",
- "glob": "^7.1.1",
- "graceful-fs": "^4.2.4",
- "jest-environment-jsdom": "^26.6.2",
- "jest-environment-node": "^26.6.2",
- "jest-get-type": "^26.3.0",
- "jest-jasmine2": "^26.6.3",
- "jest-regex-util": "^26.0.0",
- "jest-resolve": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-validate": "^26.6.2",
- "micromatch": "^4.0.2",
- "pretty-format": "^26.6.2"
- },
- "engines": {
- "node": ">= 10.14.2"
+ "@babel/helper-define-polyfill-provider": "^0.6.3"
},
"peerDependencies": {
- "ts-node": ">=9.0.0"
- },
- "peerDependenciesMeta": {
- "ts-node": {
- "optional": true
- }
+ "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
}
},
- "node_modules/@edx/frontend-build/node_modules/jest-diff": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/@babel/plugin-transform-shorthand-properties": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "chalk": "^4.0.0",
- "diff-sequences": "^26.6.2",
- "jest-get-type": "^26.3.0",
- "pretty-format": "^26.6.2"
+ "@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/jest-docblock": {
- "version": "26.0.0",
- "dev": true,
+ "node_modules/@babel/plugin-transform-spread": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "detect-newline": "^3.0.0"
+ "@babel/helper-plugin-utils": "^7.25.9",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/jest-environment-jsdom": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/@babel/plugin-transform-sticky-regex": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "@jest/environment": "^26.6.2",
- "@jest/fake-timers": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "jest-mock": "^26.6.2",
- "jest-util": "^26.6.2",
- "jsdom": "^16.4.0"
+ "@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/jest-environment-node": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/@babel/plugin-transform-template-literals": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "@jest/environment": "^26.6.2",
- "@jest/fake-timers": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "jest-mock": "^26.6.2",
- "jest-util": "^26.6.2"
+ "@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/jest-get-type": {
- "version": "26.3.0",
- "dev": true,
+ "node_modules/@babel/plugin-transform-typeof-symbol": {
+ "version": "7.25.9",
"license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.25.9"
+ },
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/jest-haste-map": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/@babel/plugin-transform-typescript": {
+ "version": "7.26.3",
"license": "MIT",
"dependencies": {
- "@jest/types": "^26.6.2",
- "@types/graceful-fs": "^4.1.2",
- "@types/node": "*",
- "anymatch": "^3.0.3",
- "fb-watchman": "^2.0.0",
- "graceful-fs": "^4.2.4",
- "jest-regex-util": "^26.0.0",
- "jest-serializer": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-worker": "^26.6.2",
- "micromatch": "^4.0.2",
- "sane": "^4.0.3",
- "walker": "^1.0.7"
+ "@babel/helper-annotate-as-pure": "^7.25.9",
+ "@babel/helper-create-class-features-plugin": "^7.25.9",
+ "@babel/helper-plugin-utils": "^7.25.9",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9",
+ "@babel/plugin-syntax-typescript": "^7.25.9"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
},
- "optionalDependencies": {
- "fsevents": "^2.1.2"
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/jest-leak-detector": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/@babel/plugin-transform-unicode-escapes": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "jest-get-type": "^26.3.0",
- "pretty-format": "^26.6.2"
+ "@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/jest-matcher-utils": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/@babel/plugin-transform-unicode-property-regex": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "chalk": "^4.0.0",
- "jest-diff": "^26.6.2",
- "jest-get-type": "^26.3.0",
- "pretty-format": "^26.6.2"
+ "@babel/helper-create-regexp-features-plugin": "^7.25.9",
+ "@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/jest-message-util": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/@babel/plugin-transform-unicode-regex": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.0.0",
- "@jest/types": "^26.6.2",
- "@types/stack-utils": "^2.0.0",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.4",
- "micromatch": "^4.0.2",
- "pretty-format": "^26.6.2",
- "slash": "^3.0.0",
- "stack-utils": "^2.0.2"
+ "@babel/helper-create-regexp-features-plugin": "^7.25.9",
+ "@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
- },
- "node_modules/@edx/frontend-build/node_modules/jest-mock": {
- "version": "26.6.2",
- "dev": true,
+ },
+ "node_modules/@babel/plugin-transform-unicode-sets-regex": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "@jest/types": "^26.6.2",
- "@types/node": "*"
+ "@babel/helper-create-regexp-features-plugin": "^7.25.9",
+ "@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
}
},
- "node_modules/@edx/frontend-build/node_modules/jest-regex-util": {
- "version": "26.0.0",
- "dev": true,
- "license": "MIT",
+ "node_modules/@babel/preset-env": {
+ "version": "7.26.0",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/compat-data": "^7.26.0",
+ "@babel/helper-compilation-targets": "^7.25.9",
+ "@babel/helper-plugin-utils": "^7.25.9",
+ "@babel/helper-validator-option": "^7.25.9",
+ "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.9",
+ "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.9",
+ "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.9",
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.25.9",
+ "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.25.9",
+ "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2",
+ "@babel/plugin-syntax-import-assertions": "^7.26.0",
+ "@babel/plugin-syntax-import-attributes": "^7.26.0",
+ "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6",
+ "@babel/plugin-transform-arrow-functions": "^7.25.9",
+ "@babel/plugin-transform-async-generator-functions": "^7.25.9",
+ "@babel/plugin-transform-async-to-generator": "^7.25.9",
+ "@babel/plugin-transform-block-scoped-functions": "^7.25.9",
+ "@babel/plugin-transform-block-scoping": "^7.25.9",
+ "@babel/plugin-transform-class-properties": "^7.25.9",
+ "@babel/plugin-transform-class-static-block": "^7.26.0",
+ "@babel/plugin-transform-classes": "^7.25.9",
+ "@babel/plugin-transform-computed-properties": "^7.25.9",
+ "@babel/plugin-transform-destructuring": "^7.25.9",
+ "@babel/plugin-transform-dotall-regex": "^7.25.9",
+ "@babel/plugin-transform-duplicate-keys": "^7.25.9",
+ "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.9",
+ "@babel/plugin-transform-dynamic-import": "^7.25.9",
+ "@babel/plugin-transform-exponentiation-operator": "^7.25.9",
+ "@babel/plugin-transform-export-namespace-from": "^7.25.9",
+ "@babel/plugin-transform-for-of": "^7.25.9",
+ "@babel/plugin-transform-function-name": "^7.25.9",
+ "@babel/plugin-transform-json-strings": "^7.25.9",
+ "@babel/plugin-transform-literals": "^7.25.9",
+ "@babel/plugin-transform-logical-assignment-operators": "^7.25.9",
+ "@babel/plugin-transform-member-expression-literals": "^7.25.9",
+ "@babel/plugin-transform-modules-amd": "^7.25.9",
+ "@babel/plugin-transform-modules-commonjs": "^7.25.9",
+ "@babel/plugin-transform-modules-systemjs": "^7.25.9",
+ "@babel/plugin-transform-modules-umd": "^7.25.9",
+ "@babel/plugin-transform-named-capturing-groups-regex": "^7.25.9",
+ "@babel/plugin-transform-new-target": "^7.25.9",
+ "@babel/plugin-transform-nullish-coalescing-operator": "^7.25.9",
+ "@babel/plugin-transform-numeric-separator": "^7.25.9",
+ "@babel/plugin-transform-object-rest-spread": "^7.25.9",
+ "@babel/plugin-transform-object-super": "^7.25.9",
+ "@babel/plugin-transform-optional-catch-binding": "^7.25.9",
+ "@babel/plugin-transform-optional-chaining": "^7.25.9",
+ "@babel/plugin-transform-parameters": "^7.25.9",
+ "@babel/plugin-transform-private-methods": "^7.25.9",
+ "@babel/plugin-transform-private-property-in-object": "^7.25.9",
+ "@babel/plugin-transform-property-literals": "^7.25.9",
+ "@babel/plugin-transform-regenerator": "^7.25.9",
+ "@babel/plugin-transform-regexp-modifiers": "^7.26.0",
+ "@babel/plugin-transform-reserved-words": "^7.25.9",
+ "@babel/plugin-transform-shorthand-properties": "^7.25.9",
+ "@babel/plugin-transform-spread": "^7.25.9",
+ "@babel/plugin-transform-sticky-regex": "^7.25.9",
+ "@babel/plugin-transform-template-literals": "^7.25.9",
+ "@babel/plugin-transform-typeof-symbol": "^7.25.9",
+ "@babel/plugin-transform-unicode-escapes": "^7.25.9",
+ "@babel/plugin-transform-unicode-property-regex": "^7.25.9",
+ "@babel/plugin-transform-unicode-regex": "^7.25.9",
+ "@babel/plugin-transform-unicode-sets-regex": "^7.25.9",
+ "@babel/preset-modules": "0.1.6-no-external-plugins",
+ "babel-plugin-polyfill-corejs2": "^0.4.10",
+ "babel-plugin-polyfill-corejs3": "^0.10.6",
+ "babel-plugin-polyfill-regenerator": "^0.6.1",
+ "core-js-compat": "^3.38.1",
+ "semver": "^6.3.1"
+ },
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/jest-resolve": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/@babel/preset-env/node_modules/@babel/preset-modules": {
+ "version": "0.1.6-no-external-plugins",
"license": "MIT",
"dependencies": {
- "@jest/types": "^26.6.2",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.4",
- "jest-pnp-resolver": "^1.2.2",
- "jest-util": "^26.6.2",
- "read-pkg-up": "^7.0.1",
- "resolve": "^1.18.1",
- "slash": "^3.0.0"
+ "@babel/helper-plugin-utils": "^7.0.0",
+ "@babel/types": "^7.4.4",
+ "esutils": "^2.0.2"
},
- "engines": {
- "node": ">= 10.14.2"
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0"
}
},
- "node_modules/@edx/frontend-build/node_modules/jest-resolve-dependencies": {
- "version": "26.6.3",
- "dev": true,
+ "node_modules/@babel/preset-env/node_modules/babel-plugin-polyfill-corejs3": {
+ "version": "0.10.6",
"license": "MIT",
"dependencies": {
- "@jest/types": "^26.6.2",
- "jest-regex-util": "^26.0.0",
- "jest-snapshot": "^26.6.2"
+ "@babel/helper-define-polyfill-provider": "^0.6.2",
+ "core-js-compat": "^3.38.0"
},
- "engines": {
- "node": ">= 10.14.2"
+ "peerDependencies": {
+ "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
}
},
- "node_modules/@edx/frontend-build/node_modules/jest-runner": {
- "version": "26.6.3",
- "dev": true,
+ "node_modules/@babel/preset-env/node_modules/babel-plugin-polyfill-regenerator": {
+ "version": "0.6.3",
"license": "MIT",
"dependencies": {
- "@jest/console": "^26.6.2",
- "@jest/environment": "^26.6.2",
- "@jest/test-result": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "emittery": "^0.7.1",
- "exit": "^0.1.2",
- "graceful-fs": "^4.2.4",
- "jest-config": "^26.6.3",
- "jest-docblock": "^26.0.0",
- "jest-haste-map": "^26.6.2",
- "jest-leak-detector": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-resolve": "^26.6.2",
- "jest-runtime": "^26.6.3",
- "jest-util": "^26.6.2",
- "jest-worker": "^26.6.2",
- "source-map-support": "^0.5.6",
- "throat": "^5.0.0"
+ "@babel/helper-define-polyfill-provider": "^0.6.3"
},
- "engines": {
- "node": ">= 10.14.2"
+ "peerDependencies": {
+ "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
}
},
- "node_modules/@edx/frontend-build/node_modules/jest-runtime": {
- "version": "26.6.3",
- "dev": true,
+ "node_modules/@babel/preset-modules": {
+ "version": "0.1.6",
"license": "MIT",
"dependencies": {
- "@jest/console": "^26.6.2",
- "@jest/environment": "^26.6.2",
- "@jest/fake-timers": "^26.6.2",
- "@jest/globals": "^26.6.2",
- "@jest/source-map": "^26.6.2",
- "@jest/test-result": "^26.6.2",
- "@jest/transform": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/yargs": "^15.0.0",
- "chalk": "^4.0.0",
- "cjs-module-lexer": "^0.6.0",
- "collect-v8-coverage": "^1.0.0",
- "exit": "^0.1.2",
- "glob": "^7.1.3",
- "graceful-fs": "^4.2.4",
- "jest-config": "^26.6.3",
- "jest-haste-map": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-mock": "^26.6.2",
- "jest-regex-util": "^26.0.0",
- "jest-resolve": "^26.6.2",
- "jest-snapshot": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-validate": "^26.6.2",
- "slash": "^3.0.0",
- "strip-bom": "^4.0.0",
- "yargs": "^15.4.1"
- },
- "bin": {
- "jest-runtime": "bin/jest-runtime.js"
+ "@babel/helper-plugin-utils": "^7.0.0",
+ "@babel/plugin-proposal-unicode-property-regex": "^7.4.4",
+ "@babel/plugin-transform-dotall-regex": "^7.4.4",
+ "@babel/types": "^7.4.4",
+ "esutils": "^2.0.2"
},
- "engines": {
- "node": ">= 10.14.2"
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0"
}
},
- "node_modules/@edx/frontend-build/node_modules/jest-snapshot": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/@babel/preset-react": {
+ "version": "7.26.3",
"license": "MIT",
"dependencies": {
- "@babel/types": "^7.0.0",
- "@jest/types": "^26.6.2",
- "@types/babel__traverse": "^7.0.4",
- "@types/prettier": "^2.0.0",
- "chalk": "^4.0.0",
- "expect": "^26.6.2",
- "graceful-fs": "^4.2.4",
- "jest-diff": "^26.6.2",
- "jest-get-type": "^26.3.0",
- "jest-haste-map": "^26.6.2",
- "jest-matcher-utils": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-resolve": "^26.6.2",
- "natural-compare": "^1.4.0",
- "pretty-format": "^26.6.2",
- "semver": "^7.3.2"
+ "@babel/helper-plugin-utils": "^7.25.9",
+ "@babel/helper-validator-option": "^7.25.9",
+ "@babel/plugin-transform-react-display-name": "^7.25.9",
+ "@babel/plugin-transform-react-jsx": "^7.25.9",
+ "@babel/plugin-transform-react-jsx-development": "^7.25.9",
+ "@babel/plugin-transform-react-pure-annotations": "^7.25.9"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/jest-snapshot/node_modules/semver": {
- "version": "7.5.0",
- "dev": true,
- "license": "ISC",
+ "node_modules/@babel/preset-typescript": {
+ "version": "7.26.0",
+ "license": "MIT",
"dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
+ "@babel/helper-plugin-utils": "^7.25.9",
+ "@babel/helper-validator-option": "^7.25.9",
+ "@babel/plugin-syntax-jsx": "^7.25.9",
+ "@babel/plugin-transform-modules-commonjs": "^7.25.9",
+ "@babel/plugin-transform-typescript": "^7.25.9"
},
"engines": {
- "node": ">=10"
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@edx/frontend-build/node_modules/jest-util": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/@babel/runtime": {
+ "version": "7.26.0",
"license": "MIT",
"dependencies": {
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.4",
- "is-ci": "^2.0.0",
- "micromatch": "^4.0.2"
+ "regenerator-runtime": "^0.14.0"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
}
},
- "node_modules/@edx/frontend-build/node_modules/jest-validate": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/@babel/runtime-corejs3": {
+ "version": "7.26.0",
"license": "MIT",
"dependencies": {
- "@jest/types": "^26.6.2",
- "camelcase": "^6.0.0",
- "chalk": "^4.0.0",
- "jest-get-type": "^26.3.0",
- "leven": "^3.1.0",
- "pretty-format": "^26.6.2"
+ "core-js-pure": "^3.30.2",
+ "regenerator-runtime": "^0.14.0"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
}
},
- "node_modules/@edx/frontend-build/node_modules/jest-watcher": {
- "version": "26.6.2",
+ "node_modules/@babel/runtime-corejs3/node_modules/regenerator-runtime": {
+ "version": "0.14.1",
+ "license": "MIT"
+ },
+ "node_modules/@babel/runtime/node_modules/regenerator-runtime": {
+ "version": "0.14.1",
+ "license": "MIT"
+ },
+ "node_modules/@babel/standalone": {
+ "version": "7.26.4",
"dev": true,
"license": "MIT",
- "dependencies": {
- "@jest/test-result": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "ansi-escapes": "^4.2.1",
- "chalk": "^4.0.0",
- "jest-util": "^26.6.2",
- "string-length": "^4.0.1"
- },
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6.9.0"
}
},
- "node_modules/@edx/frontend-build/node_modules/jest-worker": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/@babel/template": {
+ "version": "7.25.9",
"license": "MIT",
"dependencies": {
- "@types/node": "*",
- "merge-stream": "^2.0.0",
- "supports-color": "^7.0.0"
+ "@babel/code-frame": "^7.25.9",
+ "@babel/parser": "^7.25.9",
+ "@babel/types": "^7.25.9"
},
"engines": {
- "node": ">= 10.13.0"
+ "node": ">=6.9.0"
}
},
- "node_modules/@edx/frontend-build/node_modules/js-yaml": {
- "version": "4.1.0",
- "dev": true,
+ "node_modules/@babel/traverse": {
+ "version": "7.26.4",
"license": "MIT",
"dependencies": {
- "argparse": "^2.0.1"
+ "@babel/code-frame": "^7.26.2",
+ "@babel/generator": "^7.26.3",
+ "@babel/parser": "^7.26.3",
+ "@babel/template": "^7.25.9",
+ "@babel/types": "^7.26.3",
+ "debug": "^4.3.1",
+ "globals": "^11.1.0"
},
- "bin": {
- "js-yaml": "bin/js-yaml.js"
+ "engines": {
+ "node": ">=6.9.0"
}
},
- "node_modules/@edx/frontend-build/node_modules/jsdom": {
- "version": "16.7.0",
- "dev": true,
+ "node_modules/@babel/traverse/node_modules/debug": {
+ "version": "4.4.0",
"license": "MIT",
"dependencies": {
- "abab": "^2.0.5",
- "acorn": "^8.2.4",
- "acorn-globals": "^6.0.0",
- "cssom": "^0.4.4",
- "cssstyle": "^2.3.0",
- "data-urls": "^2.0.0",
- "decimal.js": "^10.2.1",
- "domexception": "^2.0.1",
- "escodegen": "^2.0.0",
- "form-data": "^3.0.0",
- "html-encoding-sniffer": "^2.0.1",
- "http-proxy-agent": "^4.0.1",
- "https-proxy-agent": "^5.0.0",
- "is-potential-custom-element-name": "^1.0.1",
- "nwsapi": "^2.2.0",
- "parse5": "6.0.1",
- "saxes": "^5.0.1",
- "symbol-tree": "^3.2.4",
- "tough-cookie": "^4.0.0",
- "w3c-hr-time": "^1.0.2",
- "w3c-xmlserializer": "^2.0.0",
- "webidl-conversions": "^6.1.0",
- "whatwg-encoding": "^1.0.5",
- "whatwg-mimetype": "^2.3.0",
- "whatwg-url": "^8.5.0",
- "ws": "^7.4.6",
- "xml-name-validator": "^3.0.0"
+ "ms": "^2.1.3"
},
"engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "canvas": "^2.5.0"
+ "node": ">=6.0"
},
"peerDependenciesMeta": {
- "canvas": {
+ "supports-color": {
"optional": true
}
}
},
- "node_modules/@edx/frontend-build/node_modules/json-schema-traverse": {
- "version": "1.0.0",
- "dev": true,
+ "node_modules/@babel/traverse/node_modules/globals": {
+ "version": "11.12.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/@babel/types": {
+ "version": "7.26.3",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-string-parser": "^7.25.9",
+ "@babel/helper-validator-identifier": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@bcoe/v8-coverage": {
+ "version": "0.2.3",
"license": "MIT"
},
- "node_modules/@edx/frontend-build/node_modules/locate-path": {
- "version": "6.0.0",
- "dev": true,
+ "node_modules/@builder.io/partytown": {
+ "version": "0.7.6",
"license": "MIT",
+ "bin": {
+ "partytown": "bin/partytown.cjs"
+ }
+ },
+ "node_modules/@bundled-es-modules/deepmerge": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/@bundled-es-modules/deepmerge/-/deepmerge-4.3.1.tgz",
+ "integrity": "sha512-Rk453EklPUPC3NRWc3VUNI/SSUjdBaFoaQvFRmNBNtMHVtOFD5AntiWg5kEE1hqcPqedYFDzxE3ZcMYPcA195w==",
+ "license": "ISC",
"dependencies": {
- "p-locate": "^5.0.0"
+ "deepmerge": "^4.3.1"
+ }
+ },
+ "node_modules/@bundled-es-modules/glob": {
+ "version": "10.4.2",
+ "resolved": "https://registry.npmjs.org/@bundled-es-modules/glob/-/glob-10.4.2.tgz",
+ "integrity": "sha512-740y5ofkzydsFao5EXJrGilcIL6EFEw/cmPf2uhTw9J6G1YOhiIFjNFCHdpgEiiH5VlU3G0SARSjlFlimRRSMA==",
+ "hasInstallScript": true,
+ "license": "ISC",
+ "dependencies": {
+ "buffer": "^6.0.3",
+ "events": "^3.3.0",
+ "glob": "^10.4.2",
+ "patch-package": "^8.0.0",
+ "path": "^0.12.7",
+ "stream": "^0.0.3",
+ "string_decoder": "^1.3.0",
+ "url": "^0.11.3"
+ }
+ },
+ "node_modules/@bundled-es-modules/glob/node_modules/brace-expansion": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
+ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
+ "license": "MIT",
+ "dependencies": {
+ "balanced-match": "^1.0.0"
+ }
+ },
+ "node_modules/@bundled-es-modules/glob/node_modules/buffer": {
+ "version": "6.0.3",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
+ "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "base64-js": "^1.3.1",
+ "ieee754": "^1.2.1"
+ }
+ },
+ "node_modules/@bundled-es-modules/glob/node_modules/foreground-child": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz",
+ "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==",
+ "license": "ISC",
+ "dependencies": {
+ "cross-spawn": "^7.0.0",
+ "signal-exit": "^4.0.1"
},
"engines": {
- "node": ">=10"
+ "node": ">=14"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/@edx/frontend-build/node_modules/lru-cache": {
- "version": "6.0.0",
- "dev": true,
+ "node_modules/@bundled-es-modules/glob/node_modules/glob": {
+ "version": "10.4.5",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz",
+ "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
"license": "ISC",
"dependencies": {
- "yallist": "^4.0.0"
+ "foreground-child": "^3.1.0",
+ "jackspeak": "^3.1.2",
+ "minimatch": "^9.0.4",
+ "minipass": "^7.1.2",
+ "package-json-from-dist": "^1.0.0",
+ "path-scurry": "^1.11.1"
},
- "engines": {
- "node": ">=10"
+ "bin": {
+ "glob": "dist/esm/bin.mjs"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/@edx/frontend-build/node_modules/p-locate": {
- "version": "5.0.0",
- "dev": true,
- "license": "MIT",
+ "node_modules/@bundled-es-modules/glob/node_modules/minimatch": {
+ "version": "9.0.5",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
+ "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
+ "license": "ISC",
"dependencies": {
- "p-limit": "^3.0.2"
+ "brace-expansion": "^2.0.1"
},
"engines": {
- "node": ">=10"
+ "node": ">=16 || 14 >=14.17"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/@edx/frontend-build/node_modules/parse5": {
- "version": "6.0.1",
- "dev": true,
- "license": "MIT"
+ "node_modules/@bundled-es-modules/glob/node_modules/signal-exit": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
+ "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
+ "license": "ISC",
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
},
- "node_modules/@edx/frontend-build/node_modules/pretty-format": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/@bundled-es-modules/glob/node_modules/string_decoder": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
+ "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
"license": "MIT",
"dependencies": {
- "@jest/types": "^26.6.2",
- "ansi-regex": "^5.0.0",
- "ansi-styles": "^4.0.0",
- "react-is": "^17.0.1"
- },
- "engines": {
- "node": ">= 10"
+ "safe-buffer": "~5.2.0"
}
},
- "node_modules/@edx/frontend-build/node_modules/schema-utils": {
- "version": "4.0.1",
- "dev": true,
+ "node_modules/@bundled-es-modules/memfs": {
+ "version": "4.9.4",
+ "resolved": "https://registry.npmjs.org/@bundled-es-modules/memfs/-/memfs-4.9.4.tgz",
+ "integrity": "sha512-1XyYPUaIHwEOdF19wYVLBtHJRr42Do+3ctht17cZOHwHf67vkmRNPlYDGY2kJps4RgE5+c7nEZmEzxxvb1NZWA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "assert": "^2.0.0",
+ "buffer": "^6.0.3",
+ "events": "^3.3.0",
+ "memfs": "^4.9.3",
+ "path": "^0.12.7",
+ "stream": "^0.0.3",
+ "util": "^0.12.5"
+ }
+ },
+ "node_modules/@bundled-es-modules/memfs/node_modules/buffer": {
+ "version": "6.0.3",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
+ "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "@types/json-schema": "^7.0.9",
- "ajv": "^8.9.0",
- "ajv-formats": "^2.1.1",
- "ajv-keywords": "^5.1.0"
+ "base64-js": "^1.3.1",
+ "ieee754": "^1.2.1"
+ }
+ },
+ "node_modules/@bundled-es-modules/memfs/node_modules/memfs": {
+ "version": "4.17.0",
+ "resolved": "https://registry.npmjs.org/memfs/-/memfs-4.17.0.tgz",
+ "integrity": "sha512-4eirfZ7thblFmqFjywlTmuWVSvccHAJbn1r8qQLzmTO11qcqpohOjmY2mFce6x7x7WtskzRqApPD0hv+Oa74jg==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@jsonjoy.com/json-pack": "^1.0.3",
+ "@jsonjoy.com/util": "^1.3.0",
+ "tree-dump": "^1.0.1",
+ "tslib": "^2.0.0"
},
"engines": {
- "node": ">= 12.13.0"
+ "node": ">= 4.0.0"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
+ "type": "github",
+ "url": "https://github.com/sponsors/streamich"
}
},
- "node_modules/@edx/frontend-build/node_modules/schema-utils/node_modules/ajv": {
- "version": "8.12.0",
- "dev": true,
- "license": "MIT",
+ "node_modules/@bundled-es-modules/postcss-calc-ast-parser": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/@bundled-es-modules/postcss-calc-ast-parser/-/postcss-calc-ast-parser-0.1.6.tgz",
+ "integrity": "sha512-y65TM5zF+uaxo9OeekJ3rxwTINlQvrkbZLogYvQYVoLtxm4xEiHfZ7e/MyiWbStYyWZVZkVqsaVU6F4SUK5XUA==",
+ "license": "ISC",
"dependencies": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
+ "postcss-calc-ast-parser": "^0.1.4"
+ }
+ },
+ "node_modules/@chevrotain/cst-dts-gen": {
+ "version": "11.0.3",
+ "resolved": "https://registry.npmjs.org/@chevrotain/cst-dts-gen/-/cst-dts-gen-11.0.3.tgz",
+ "integrity": "sha512-BvIKpRLeS/8UbfxXxgC33xOumsacaeCKAjAeLyOn7Pcp95HiRbrpl14S+9vaZLolnbssPIUuiUd8IvgkRyt6NQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@chevrotain/gast": "11.0.3",
+ "@chevrotain/types": "11.0.3",
+ "lodash-es": "4.17.21"
+ }
+ },
+ "node_modules/@chevrotain/gast": {
+ "version": "11.0.3",
+ "resolved": "https://registry.npmjs.org/@chevrotain/gast/-/gast-11.0.3.tgz",
+ "integrity": "sha512-+qNfcoNk70PyS/uxmj3li5NiECO+2YKZZQMbmjTqRI3Qchu8Hig/Q9vgkHpI3alNjr7M+a2St5pw5w5F6NL5/Q==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@chevrotain/types": "11.0.3",
+ "lodash-es": "4.17.21"
}
},
- "node_modules/@edx/frontend-build/node_modules/schema-utils/node_modules/ajv-keywords": {
- "version": "5.1.0",
- "dev": true,
- "license": "MIT",
+ "node_modules/@chevrotain/regexp-to-ast": {
+ "version": "11.0.3",
+ "resolved": "https://registry.npmjs.org/@chevrotain/regexp-to-ast/-/regexp-to-ast-11.0.3.tgz",
+ "integrity": "sha512-1fMHaBZxLFvWI067AVbGJav1eRY7N8DDvYCTwGBiE/ytKBgP8azTdgyrKyWZ9Mfh09eHWb5PgTSO8wi7U824RA==",
+ "license": "Apache-2.0"
+ },
+ "node_modules/@chevrotain/types": {
+ "version": "11.0.3",
+ "resolved": "https://registry.npmjs.org/@chevrotain/types/-/types-11.0.3.tgz",
+ "integrity": "sha512-gsiM3G8b58kZC2HaWR50gu6Y1440cHiJ+i3JUvcp/35JchYejb2+5MVeJK0iKThYpAa/P2PYFV4hoi44HD+aHQ==",
+ "license": "Apache-2.0"
+ },
+ "node_modules/@chevrotain/utils": {
+ "version": "11.0.3",
+ "resolved": "https://registry.npmjs.org/@chevrotain/utils/-/utils-11.0.3.tgz",
+ "integrity": "sha512-YslZMgtJUyuMbZ+aKvfF3x1f5liK4mWNxghFRv7jqRR9C3R3fAOGTTKvxXDa2Y1s9zSbcpuO0cAxDYsc9SrXoQ==",
+ "license": "Apache-2.0"
+ },
+ "node_modules/@cnakazawa/watch": {
+ "version": "1.0.4",
+ "license": "Apache-2.0",
"dependencies": {
- "fast-deep-equal": "^3.1.3"
+ "exec-sh": "^0.3.2",
+ "minimist": "^1.2.0"
+ },
+ "bin": {
+ "watch": "cli.js"
},
- "peerDependencies": {
- "ajv": "^8.8.2"
- }
- },
- "node_modules/@edx/frontend-build/node_modules/slash": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
"engines": {
- "node": ">=8"
+ "node": ">=0.1.95"
}
},
- "node_modules/@edx/frontend-build/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/@colors/colors": {
+ "version": "1.5.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
+ "optional": true,
"engines": {
- "node": ">=8"
+ "node": ">=0.1.90"
}
},
- "node_modules/@edx/frontend-build/node_modules/tr46": {
- "version": "2.1.0",
- "dev": true,
+ "node_modules/@cospired/i18n-iso-languages": {
+ "version": "4.2.0",
"license": "MIT",
- "dependencies": {
- "punycode": "^2.1.1"
- },
"engines": {
- "node": ">=8"
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
- "node_modules/@edx/frontend-build/node_modules/type-fest": {
- "version": "0.20.2",
- "dev": true,
- "license": "(MIT OR CC0-1.0)",
+ "node_modules/@csstools/cascade-layer-name-parser": {
+ "version": "1.0.13",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/csstools"
+ },
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/csstools"
+ }
+ ],
+ "license": "MIT",
"engines": {
- "node": ">=10"
+ "node": "^14 || ^16 || >=18"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "peerDependencies": {
+ "@csstools/css-parser-algorithms": "^2.7.1",
+ "@csstools/css-tokenizer": "^2.4.1"
}
},
- "node_modules/@edx/frontend-build/node_modules/v8-to-istanbul": {
- "version": "7.1.2",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "@types/istanbul-lib-coverage": "^2.0.1",
- "convert-source-map": "^1.6.0",
- "source-map": "^0.7.3"
- },
+ "node_modules/@csstools/css-parser-algorithms": {
+ "version": "2.7.1",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/csstools"
+ },
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/csstools"
+ }
+ ],
+ "license": "MIT",
"engines": {
- "node": ">=10.10.0"
+ "node": "^14 || ^16 || >=18"
+ },
+ "peerDependencies": {
+ "@csstools/css-tokenizer": "^2.4.1"
}
},
- "node_modules/@edx/frontend-build/node_modules/v8-to-istanbul/node_modules/source-map": {
- "version": "0.7.4",
- "dev": true,
- "license": "BSD-3-Clause",
+ "node_modules/@csstools/css-tokenizer": {
+ "version": "2.4.1",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/csstools"
+ },
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/csstools"
+ }
+ ],
+ "license": "MIT",
"engines": {
- "node": ">= 8"
+ "node": "^14 || ^16 || >=18"
}
},
- "node_modules/@edx/frontend-build/node_modules/w3c-xmlserializer": {
- "version": "2.0.0",
- "dev": true,
+ "node_modules/@csstools/media-query-list-parser": {
+ "version": "2.1.13",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/csstools"
+ },
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/csstools"
+ }
+ ],
"license": "MIT",
- "dependencies": {
- "xml-name-validator": "^3.0.0"
- },
"engines": {
- "node": ">=10"
+ "node": "^14 || ^16 || >=18"
+ },
+ "peerDependencies": {
+ "@csstools/css-parser-algorithms": "^2.7.1",
+ "@csstools/css-tokenizer": "^2.4.1"
}
},
- "node_modules/@edx/frontend-build/node_modules/webidl-conversions": {
- "version": "6.1.0",
+ "node_modules/@csstools/selector-specificity": {
+ "version": "3.1.1",
"dev": true,
- "license": "BSD-2-Clause",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/csstools"
+ },
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/csstools"
+ }
+ ],
+ "license": "MIT-0",
"engines": {
- "node": ">=10.4"
+ "node": "^14 || ^16 || >=18"
+ },
+ "peerDependencies": {
+ "postcss-selector-parser": "^6.0.13"
}
},
- "node_modules/@edx/frontend-build/node_modules/whatwg-encoding": {
- "version": "1.0.5",
- "dev": true,
+ "node_modules/@discoveryjs/json-ext": {
+ "version": "0.5.7",
"license": "MIT",
- "dependencies": {
- "iconv-lite": "0.4.24"
+ "engines": {
+ "node": ">=10.0.0"
}
},
- "node_modules/@edx/frontend-build/node_modules/whatwg-mimetype": {
- "version": "2.3.0",
- "dev": true,
+ "node_modules/@docsearch/css": {
+ "version": "3.8.0",
"license": "MIT"
},
- "node_modules/@edx/frontend-build/node_modules/whatwg-url": {
- "version": "8.7.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "lodash": "^4.7.0",
- "tr46": "^2.1.0",
- "webidl-conversions": "^6.1.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/@edx/frontend-build/node_modules/wrap-ansi": {
- "version": "6.2.0",
- "dev": true,
+ "node_modules/@docsearch/react": {
+ "version": "3.8.0",
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.0.0",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@edx/frontend-build/node_modules/write-file-atomic": {
- "version": "3.0.3",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "imurmurhash": "^0.1.4",
- "is-typedarray": "^1.0.0",
- "signal-exit": "^3.0.2",
- "typedarray-to-buffer": "^3.1.5"
- }
- },
- "node_modules/@edx/frontend-build/node_modules/ws": {
- "version": "7.5.10",
- "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz",
- "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==",
- "dev": true,
- "engines": {
- "node": ">=8.3.0"
+ "@algolia/autocomplete-core": "1.17.7",
+ "@algolia/autocomplete-preset-algolia": "1.17.7",
+ "@docsearch/css": "3.8.0",
+ "algoliasearch": "^5.12.0"
},
"peerDependencies": {
- "bufferutil": "^4.0.1",
- "utf-8-validate": "^5.0.2"
+ "@types/react": ">= 16.8.0 < 19.0.0",
+ "react": ">= 16.8.0 < 19.0.0",
+ "react-dom": ">= 16.8.0 < 19.0.0",
+ "search-insights": ">= 1 < 3"
},
"peerDependenciesMeta": {
- "bufferutil": {
+ "@types/react": {
"optional": true
},
- "utf-8-validate": {
+ "react": {
+ "optional": true
+ },
+ "react-dom": {
+ "optional": true
+ },
+ "search-insights": {
"optional": true
}
}
},
- "node_modules/@edx/frontend-build/node_modules/xml-name-validator": {
- "version": "3.0.0",
- "dev": true,
- "license": "Apache-2.0"
- },
- "node_modules/@edx/frontend-build/node_modules/y18n": {
- "version": "4.0.3",
- "dev": true,
- "license": "ISC"
+ "node_modules/@edx/brand-edx.org": {
+ "version": "2.1.3",
+ "license": "UNLICENSED"
},
- "node_modules/@edx/frontend-build/node_modules/yallist": {
- "version": "4.0.0",
+ "node_modules/@edx/browserslist-config": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/@edx/browserslist-config/-/browserslist-config-1.5.0.tgz",
+ "integrity": "sha512-d2ggwi5j4DOBJOwhWZxBWQSDR0DhT4ke/1PbzRauICdFkuOyax+PsFjK8GUh443K2OaQpy9PGfiCzZ1Yg37AUA==",
"dev": true,
- "license": "ISC"
+ "license": "AGPL-3.0"
},
- "node_modules/@edx/frontend-build/node_modules/yargs": {
- "version": "15.4.1",
+ "node_modules/@edx/eslint-config": {
+ "version": "4.3.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "cliui": "^6.0.0",
- "decamelize": "^1.2.0",
- "find-up": "^4.1.0",
- "get-caller-file": "^2.0.1",
- "require-directory": "^2.1.1",
- "require-main-filename": "^2.0.0",
- "set-blocking": "^2.0.0",
- "string-width": "^4.2.0",
- "which-module": "^2.0.0",
- "y18n": "^4.0.0",
- "yargs-parser": "^18.1.2"
- },
- "engines": {
- "node": ">=8"
+ "peerDependencies": {
+ "@typescript-eslint/eslint-plugin": "^5.62.0",
+ "@typescript-eslint/parser": "^5.62.0",
+ "eslint": "^7.32.0 || ^8.2.0",
+ "eslint-config-airbnb": "^18.0.1 || ^19.0.0",
+ "eslint-config-airbnb-typescript": "^17.0.0",
+ "eslint-plugin-import": "^2.25.3",
+ "eslint-plugin-jsx-a11y": "^6.2.3",
+ "eslint-plugin-react": "^7.18.0",
+ "eslint-plugin-react-hooks": "^1.7.0 || ^4.0.0"
}
},
- "node_modules/@edx/frontend-build/node_modules/yargs-parser": {
- "version": "18.1.3",
- "dev": true,
- "license": "ISC",
+ "node_modules/@edx/new-relic-source-map-webpack-plugin": {
+ "version": "2.1.0",
+ "license": "AGPL-3.0",
"dependencies": {
- "camelcase": "^5.0.0",
- "decamelize": "^1.2.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/@edx/frontend-build/node_modules/yargs-parser/node_modules/camelcase": {
- "version": "5.3.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
+ "@newrelic/publish-sourcemap": "^5.0.1"
}
},
- "node_modules/@edx/frontend-build/node_modules/yargs/node_modules/find-up": {
- "version": "4.1.0",
+ "node_modules/@edx/stylelint-config-edx": {
+ "version": "2.3.3",
"dev": true,
- "license": "MIT",
+ "license": "Apache-2.0",
"dependencies": {
- "locate-path": "^5.0.0",
- "path-exists": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
+ "stylelint": "^15.6.0",
+ "stylelint-config-recommended-scss": "^11.0.0",
+ "stylelint-config-standard": "^33.0.0",
+ "stylelint-scss": "^4.1.0"
}
},
- "node_modules/@edx/frontend-build/node_modules/yargs/node_modules/locate-path": {
- "version": "5.0.0",
+ "node_modules/@edx/stylelint-config-edx/node_modules/stylelint-config-recommended": {
+ "version": "12.0.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "p-locate": "^4.1.0"
- },
- "engines": {
- "node": ">=8"
+ "peerDependencies": {
+ "stylelint": "^15.5.0"
}
},
- "node_modules/@edx/frontend-build/node_modules/yargs/node_modules/p-limit": {
- "version": "2.3.0",
+ "node_modules/@edx/stylelint-config-edx/node_modules/stylelint-config-recommended-scss": {
+ "version": "11.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "p-try": "^2.0.0"
+ "postcss-scss": "^4.0.6",
+ "stylelint-config-recommended": "^12.0.0",
+ "stylelint-scss": "^4.6.0"
},
- "engines": {
- "node": ">=6"
+ "peerDependencies": {
+ "postcss": "^8.3.3",
+ "stylelint": "^15.5.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "peerDependenciesMeta": {
+ "postcss": {
+ "optional": true
+ }
}
},
- "node_modules/@edx/frontend-build/node_modules/yargs/node_modules/p-locate": {
- "version": "4.1.0",
+ "node_modules/@edx/stylelint-config-edx/node_modules/stylelint-config-standard": {
+ "version": "33.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "p-limit": "^2.2.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@edx/frontend-platform": {
- "version": "4.2.0",
- "license": "AGPL-3.0",
- "dependencies": {
- "@cospired/i18n-iso-languages": "2.2.0",
- "@formatjs/intl-pluralrules": "4.3.3",
- "@formatjs/intl-relativetimeformat": "10.0.1",
- "axios": "0.27.2",
- "axios-cache-interceptor": "0.10.7",
- "form-urlencoded": "4.1.4",
- "glob": "7.2.3",
- "history": "4.10.1",
- "i18n-iso-countries": "4.3.1",
- "jwt-decode": "3.1.2",
- "localforage": "1.10.0",
- "localforage-memoryStorageDriver": "0.9.2",
- "lodash.camelcase": "4.3.0",
- "lodash.memoize": "4.1.2",
- "lodash.merge": "4.6.2",
- "lodash.snakecase": "4.1.1",
- "pubsub-js": "1.9.4",
- "react-intl": "^5.25.0",
- "universal-cookie": "4.0.4"
- },
- "bin": {
- "intl-imports.js": "i18n/scripts/intl-imports.js",
- "transifex-utils.js": "i18n/scripts/transifex-utils.js"
+ "stylelint-config-recommended": "^12.0.0"
},
"peerDependencies": {
- "@edx/paragon": ">= 10.0.0 < 21.0.0",
- "prop-types": "^15.7.2",
- "react": "^16.9.0 || ^17.0.0",
- "react-dom": "^16.9.0 || ^17.0.0",
- "react-redux": "^7.1.1",
- "react-router-dom": "^5.0.1",
- "redux": "^4.0.4"
- }
- },
- "node_modules/@edx/frontend-platform/node_modules/axios": {
- "version": "0.27.2",
- "resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz",
- "integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==",
- "dependencies": {
- "follow-redirects": "^1.14.9",
- "form-data": "^4.0.0"
- }
- },
- "node_modules/@edx/frontend-platform/node_modules/glob": {
- "version": "7.2.3",
- "license": "ISC",
- "dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.1.1",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
- },
- "engines": {
- "node": "*"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
+ "stylelint": "^15.5.0"
}
},
- "node_modules/@edx/new-relic-source-map-webpack-plugin": {
- "version": "1.0.2",
+ "node_modules/@edx/stylelint-config-edx/node_modules/stylelint-scss": {
+ "version": "4.7.0",
"dev": true,
- "license": "AGPL-3.0",
- "dependencies": {
- "@newrelic/publish-sourcemap": "^5.0.1"
- }
- },
- "node_modules/@edx/paragon": {
- "version": "20.32.0",
- "license": "Apache-2.0",
- "peer": true,
- "workspaces": [
- "example",
- "component-generator",
- "www",
- "icons",
- "dependent-usage-analyzer"
- ],
+ "license": "MIT",
"dependencies": {
- "@fortawesome/fontawesome-svg-core": "^6.1.1",
- "@fortawesome/react-fontawesome": "^0.1.18",
- "@popperjs/core": "^2.11.4",
- "bootstrap": "^4.6.2",
- "classnames": "^2.3.1",
- "email-prop-type": "^3.0.0",
- "file-selector": "^0.6.0",
- "font-awesome": "^4.7.0",
- "glob": "^8.0.3",
- "lodash.uniqby": "^4.7.0",
- "mailto-link": "^2.0.0",
- "prop-types": "^15.8.1",
- "react-bootstrap": "^1.6.5",
- "react-colorful": "^5.6.1",
- "react-dropzone": "^14.2.1",
- "react-focus-on": "^3.5.4",
- "react-loading-skeleton": "^3.1.0",
- "react-popper": "^2.2.5",
- "react-proptype-conditional-require": "^1.0.4",
- "react-responsive": "^8.2.0",
- "react-table": "^7.7.0",
- "react-transition-group": "^4.4.2",
- "tabbable": "^5.3.3",
- "uncontrollable": "^7.2.1",
- "uuid": "^9.0.0"
+ "postcss-media-query-parser": "^0.2.3",
+ "postcss-resolve-nested-selector": "^0.1.1",
+ "postcss-selector-parser": "^6.0.11",
+ "postcss-value-parser": "^4.2.0"
},
"peerDependencies": {
- "react": "^16.8.6 || ^17.0.0",
- "react-dom": "^16.8.6 || ^17.0.0",
- "react-intl": "^5.25.1"
- }
- },
- "node_modules/@edx/stylelint-config-edx": {
- "version": "2.3.0",
- "dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "stylelint": "^14.5.0",
- "stylelint-config-recommended-scss": "^5.0.2",
- "stylelint-config-standard": "^25.0.0",
- "stylelint-scss": "^4.1.0"
+ "stylelint": "^14.5.1 || ^15.0.0"
}
},
"node_modules/@edx/typescript-config": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@edx/typescript-config/-/typescript-config-1.1.0.tgz",
- "integrity": "sha512-HF+7dsSgA2YQ6f/qV4HnrEYBoIhIdxVQZgDyYk/YGvaVGqT6IFuaHnYUP7ImpCUMOUmx/Jl7EyuVeaMe2LrMcA==",
- "dev": true,
+ "license": "MIT",
"peerDependencies": {
"typescript": "^4.9.4"
}
},
"node_modules/@emotion/hash": {
- "version": "0.9.1",
+ "version": "0.9.2",
"dev": true,
"license": "MIT"
},
"node_modules/@eslint-community/eslint-utils": {
- "version": "4.3.0",
- "dev": true,
+ "version": "4.4.1",
"license": "MIT",
"dependencies": {
- "eslint-visitor-keys": "^3.3.0"
+ "eslint-visitor-keys": "^3.4.3"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ },
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
}
},
"node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": {
- "version": "3.3.0",
- "dev": true,
+ "version": "3.4.3",
"license": "Apache-2.0",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
}
},
"node_modules/@eslint-community/regexpp": {
- "version": "4.4.0",
- "dev": true,
+ "version": "4.12.1",
"license": "MIT",
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
}
},
"node_modules/@eslint/eslintrc": {
- "version": "1.4.1",
+ "version": "2.1.4",
"license": "MIT",
"dependencies": {
"ajv": "^6.12.4",
"debug": "^4.3.2",
- "espree": "^9.4.0",
+ "espree": "^9.6.0",
"globals": "^13.19.0",
"ignore": "^5.2.0",
"import-fresh": "^3.2.1",
@@ -4569,46 +7116,23 @@
"url": "https://opencollective.com/eslint"
}
},
- "node_modules/@eslint/eslintrc/node_modules/argparse": {
- "version": "2.0.1",
- "license": "Python-2.0"
- },
- "node_modules/@eslint/eslintrc/node_modules/globals": {
- "version": "13.20.0",
- "license": "MIT",
- "dependencies": {
- "type-fest": "^0.20.2"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@eslint/eslintrc/node_modules/js-yaml": {
- "version": "4.1.0",
+ "node_modules/@eslint/eslintrc/node_modules/debug": {
+ "version": "4.4.0",
"license": "MIT",
"dependencies": {
- "argparse": "^2.0.1"
+ "ms": "^2.1.3"
},
- "bin": {
- "js-yaml": "bin/js-yaml.js"
- }
- },
- "node_modules/@eslint/eslintrc/node_modules/type-fest": {
- "version": "0.20.2",
- "license": "(MIT OR CC0-1.0)",
"engines": {
- "node": ">=10"
+ "node": ">=6.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
}
},
"node_modules/@eslint/js": {
- "version": "8.38.0",
- "dev": true,
+ "version": "8.44.0",
"license": "MIT",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
@@ -4650,90 +7174,68 @@
}
},
"node_modules/@formatjs/fast-memoize": {
- "version": "1.2.1",
+ "version": "2.2.6",
"license": "MIT",
"dependencies": {
- "tslib": "^2.1.0"
+ "tslib": "2"
}
},
"node_modules/@formatjs/icu-messageformat-parser": {
- "version": "2.1.0",
- "license": "MIT",
- "dependencies": {
- "@formatjs/ecma402-abstract": "1.11.4",
- "@formatjs/icu-skeleton-parser": "1.3.6",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@formatjs/icu-skeleton-parser": {
- "version": "1.3.6",
+ "version": "2.9.8",
"license": "MIT",
"dependencies": {
- "@formatjs/ecma402-abstract": "1.11.4",
- "tslib": "^2.1.0"
+ "@formatjs/ecma402-abstract": "2.3.2",
+ "@formatjs/icu-skeleton-parser": "1.8.12",
+ "tslib": "2"
}
},
- "node_modules/@formatjs/intl": {
- "version": "2.2.1",
+ "node_modules/@formatjs/icu-messageformat-parser/node_modules/@formatjs/ecma402-abstract": {
+ "version": "2.3.2",
"license": "MIT",
"dependencies": {
- "@formatjs/ecma402-abstract": "1.11.4",
- "@formatjs/fast-memoize": "1.2.1",
- "@formatjs/icu-messageformat-parser": "2.1.0",
- "@formatjs/intl-displaynames": "5.4.3",
- "@formatjs/intl-listformat": "6.5.3",
- "intl-messageformat": "9.13.0",
- "tslib": "^2.1.0"
- },
- "peerDependencies": {
- "typescript": "^4.5"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
+ "@formatjs/fast-memoize": "2.2.6",
+ "@formatjs/intl-localematcher": "0.5.10",
+ "decimal.js": "10",
+ "tslib": "2"
}
},
- "node_modules/@formatjs/intl-displaynames": {
- "version": "5.4.3",
+ "node_modules/@formatjs/icu-messageformat-parser/node_modules/@formatjs/intl-localematcher": {
+ "version": "0.5.10",
"license": "MIT",
"dependencies": {
- "@formatjs/ecma402-abstract": "1.11.4",
- "@formatjs/intl-localematcher": "0.2.25",
- "tslib": "^2.1.0"
+ "tslib": "2"
}
},
- "node_modules/@formatjs/intl-listformat": {
- "version": "6.5.3",
+ "node_modules/@formatjs/icu-skeleton-parser": {
+ "version": "1.8.12",
"license": "MIT",
"dependencies": {
- "@formatjs/ecma402-abstract": "1.11.4",
- "@formatjs/intl-localematcher": "0.2.25",
- "tslib": "^2.1.0"
+ "@formatjs/ecma402-abstract": "2.3.2",
+ "tslib": "2"
}
},
- "node_modules/@formatjs/intl-localematcher": {
- "version": "0.2.25",
+ "node_modules/@formatjs/icu-skeleton-parser/node_modules/@formatjs/ecma402-abstract": {
+ "version": "2.3.2",
"license": "MIT",
"dependencies": {
- "tslib": "^2.1.0"
+ "@formatjs/fast-memoize": "2.2.6",
+ "@formatjs/intl-localematcher": "0.5.10",
+ "decimal.js": "10",
+ "tslib": "2"
}
},
- "node_modules/@formatjs/intl-numberformat": {
- "version": "5.7.6",
- "dev": true,
+ "node_modules/@formatjs/icu-skeleton-parser/node_modules/@formatjs/intl-localematcher": {
+ "version": "0.5.10",
"license": "MIT",
"dependencies": {
- "@formatjs/ecma402-abstract": "1.4.0",
- "tslib": "^2.0.1"
+ "tslib": "2"
}
},
- "node_modules/@formatjs/intl-numberformat/node_modules/@formatjs/ecma402-abstract": {
- "version": "1.4.0",
- "dev": true,
+ "node_modules/@formatjs/intl-localematcher": {
+ "version": "0.2.25",
"license": "MIT",
"dependencies": {
- "tslib": "^2.0.1"
+ "tslib": "^2.1.0"
}
},
"node_modules/@formatjs/intl-pluralrules": {
@@ -4754,48 +7256,66 @@
"tslib": "^2.1.0"
}
},
+ "node_modules/@formatjs/ts-transformer": {
+ "version": "3.13.27",
+ "license": "MIT",
+ "dependencies": {
+ "@formatjs/icu-messageformat-parser": "2.9.8",
+ "@types/json-stable-stringify": "1",
+ "@types/node": "14 || 16 || 17 || 18 || 20 || 22",
+ "chalk": "4",
+ "json-stable-stringify": "1",
+ "tslib": "2",
+ "typescript": "5"
+ },
+ "peerDependencies": {
+ "ts-jest": ">=27"
+ },
+ "peerDependenciesMeta": {
+ "ts-jest": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@formatjs/ts-transformer/node_modules/typescript": {
+ "version": "5.7.3",
+ "license": "Apache-2.0",
+ "bin": {
+ "tsc": "bin/tsc",
+ "tsserver": "bin/tsserver"
+ },
+ "engines": {
+ "node": ">=14.17"
+ }
+ },
"node_modules/@fortawesome/fontawesome-common-types": {
- "version": "6.3.0",
- "hasInstallScript": true,
+ "version": "6.7.1",
"license": "MIT",
- "peer": true,
"engines": {
"node": ">=6"
}
},
"node_modules/@fortawesome/fontawesome-svg-core": {
- "version": "6.3.0",
- "hasInstallScript": true,
+ "version": "6.7.1",
"license": "MIT",
"peer": true,
"dependencies": {
- "@fortawesome/fontawesome-common-types": "6.3.0"
+ "@fortawesome/fontawesome-common-types": "6.7.1"
},
"engines": {
"node": ">=6"
}
},
"node_modules/@fortawesome/free-solid-svg-icons": {
- "version": "6.4.2",
- "resolved": "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-6.4.2.tgz",
- "integrity": "sha512-sYwXurXUEQS32fZz9hVCUUv/xu49PEJEyUOsA51l6PU/qVgfbTb2glsTEaJngVVT8VqBATRIdh7XVgV1JF1LkA==",
- "hasInstallScript": true,
+ "version": "6.7.1",
+ "license": "(CC-BY-4.0 AND MIT)",
"dependencies": {
- "@fortawesome/fontawesome-common-types": "6.4.2"
+ "@fortawesome/fontawesome-common-types": "6.7.1"
},
"engines": {
"node": ">=6"
}
},
- "node_modules/@fortawesome/free-solid-svg-icons/node_modules/@fortawesome/fontawesome-common-types": {
- "version": "6.4.2",
- "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-6.4.2.tgz",
- "integrity": "sha512-1DgP7f+XQIJbLFCTX1V2QnxVmpLdKdzzo2k8EmvDOePfchaIGQ9eCHj2up3/jNEbZuBqel5OxiaOJf37TWauRA==",
- "hasInstallScript": true,
- "engines": {
- "node": ">=6"
- }
- },
"node_modules/@fortawesome/react-fontawesome": {
"version": "0.1.19",
"license": "MIT",
@@ -4810,7 +7330,6 @@
},
"node_modules/@fullhuman/postcss-purgecss": {
"version": "5.0.0",
- "dev": true,
"license": "MIT",
"dependencies": {
"purgecss": "^5.0.0"
@@ -4820,30 +7339,29 @@
}
},
"node_modules/@gatsbyjs/parcel-namer-relative-to-cwd": {
- "version": "1.10.0",
+ "version": "2.14.0",
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.18.0",
- "@parcel/namer-default": "2.6.2",
- "@parcel/plugin": "2.6.2",
- "gatsby-core-utils": "^3.25.0"
+ "@babel/runtime": "^7.20.13",
+ "@parcel/namer-default": "2.8.3",
+ "@parcel/plugin": "2.8.3",
+ "gatsby-core-utils": "^4.14.0"
},
"engines": {
- "node": ">=14.15.0",
+ "node": ">=18.0.0",
"parcel": "2.x"
}
},
"node_modules/@gatsbyjs/reach-router": {
- "version": "1.3.9",
+ "version": "2.0.1",
"license": "MIT",
"dependencies": {
- "invariant": "^2.2.3",
- "prop-types": "^15.6.1",
- "react-lifecycles-compat": "^3.0.4"
+ "invariant": "^2.2.4",
+ "prop-types": "^15.8.1"
},
"peerDependencies": {
- "react": "15.x || 16.x || 17.x || 18.x",
- "react-dom": "15.x || 16.x || 17.x || 18.x"
+ "react": "18.x",
+ "react-dom": "18.x"
}
},
"node_modules/@gatsbyjs/webpack-hot-middleware": {
@@ -4897,24 +7415,10 @@
"upper-case-first": "^2.0.2"
}
},
- "node_modules/@graphql-codegen/add/node_modules/lower-case": {
- "version": "2.0.2",
- "license": "MIT",
- "dependencies": {
- "tslib": "^2.0.3"
- }
- },
"node_modules/@graphql-codegen/add/node_modules/tslib": {
"version": "2.4.1",
"license": "0BSD"
},
- "node_modules/@graphql-codegen/add/node_modules/upper-case": {
- "version": "2.0.2",
- "license": "MIT",
- "dependencies": {
- "tslib": "^2.0.3"
- }
- },
"node_modules/@graphql-codegen/core": {
"version": "2.6.8",
"license": "MIT",
@@ -4959,24 +7463,10 @@
"upper-case-first": "^2.0.2"
}
},
- "node_modules/@graphql-codegen/core/node_modules/lower-case": {
- "version": "2.0.2",
- "license": "MIT",
- "dependencies": {
- "tslib": "^2.0.3"
- }
- },
"node_modules/@graphql-codegen/core/node_modules/tslib": {
"version": "2.4.1",
"license": "0BSD"
},
- "node_modules/@graphql-codegen/core/node_modules/upper-case": {
- "version": "2.0.2",
- "license": "MIT",
- "dependencies": {
- "tslib": "^2.0.3"
- }
- },
"node_modules/@graphql-codegen/plugin-helpers": {
"version": "2.7.2",
"license": "MIT",
@@ -5049,24 +7539,10 @@
"upper-case-first": "^2.0.2"
}
},
- "node_modules/@graphql-codegen/schema-ast/node_modules/lower-case": {
- "version": "2.0.2",
- "license": "MIT",
- "dependencies": {
- "tslib": "^2.0.3"
- }
- },
"node_modules/@graphql-codegen/schema-ast/node_modules/tslib": {
"version": "2.4.1",
"license": "0BSD"
},
- "node_modules/@graphql-codegen/schema-ast/node_modules/upper-case": {
- "version": "2.0.2",
- "license": "MIT",
- "dependencies": {
- "tslib": "^2.0.3"
- }
- },
"node_modules/@graphql-codegen/typescript": {
"version": "2.8.8",
"license": "MIT",
@@ -5126,24 +7602,10 @@
"upper-case-first": "^2.0.2"
}
},
- "node_modules/@graphql-codegen/typescript-operations/node_modules/lower-case": {
- "version": "2.0.2",
- "license": "MIT",
- "dependencies": {
- "tslib": "^2.0.3"
- }
- },
"node_modules/@graphql-codegen/typescript-operations/node_modules/tslib": {
"version": "2.4.1",
"license": "0BSD"
},
- "node_modules/@graphql-codegen/typescript-operations/node_modules/upper-case": {
- "version": "2.0.2",
- "license": "MIT",
- "dependencies": {
- "tslib": "^2.0.3"
- }
- },
"node_modules/@graphql-codegen/typescript/node_modules/@graphql-codegen/plugin-helpers": {
"version": "3.1.2",
"license": "MIT",
@@ -5175,24 +7637,10 @@
"upper-case-first": "^2.0.2"
}
},
- "node_modules/@graphql-codegen/typescript/node_modules/lower-case": {
- "version": "2.0.2",
- "license": "MIT",
- "dependencies": {
- "tslib": "^2.0.3"
- }
- },
"node_modules/@graphql-codegen/typescript/node_modules/tslib": {
"version": "2.4.1",
"license": "0BSD"
},
- "node_modules/@graphql-codegen/typescript/node_modules/upper-case": {
- "version": "2.0.2",
- "license": "MIT",
- "dependencies": {
- "tslib": "^2.0.3"
- }
- },
"node_modules/@graphql-codegen/visitor-plugin-common": {
"version": "2.13.8",
"license": "MIT",
@@ -5243,24 +7691,10 @@
"upper-case-first": "^2.0.2"
}
},
- "node_modules/@graphql-codegen/visitor-plugin-common/node_modules/lower-case": {
- "version": "2.0.2",
- "license": "MIT",
- "dependencies": {
- "tslib": "^2.0.3"
- }
- },
"node_modules/@graphql-codegen/visitor-plugin-common/node_modules/tslib": {
"version": "2.4.1",
"license": "0BSD"
},
- "node_modules/@graphql-codegen/visitor-plugin-common/node_modules/upper-case": {
- "version": "2.0.2",
- "license": "MIT",
- "dependencies": {
- "tslib": "^2.0.3"
- }
- },
"node_modules/@graphql-tools/code-file-loader": {
"version": "7.3.23",
"license": "MIT",
@@ -5304,7 +7738,7 @@
}
},
"node_modules/@graphql-tools/merge": {
- "version": "8.4.1",
+ "version": "8.4.2",
"license": "MIT",
"dependencies": {
"@graphql-tools/utils": "^9.2.1",
@@ -5379,20 +7813,34 @@
}
},
"node_modules/@humanwhocodes/config-array": {
- "version": "0.9.5",
+ "version": "0.11.14",
"license": "Apache-2.0",
"dependencies": {
- "@humanwhocodes/object-schema": "^1.2.1",
- "debug": "^4.1.1",
- "minimatch": "^3.0.4"
+ "@humanwhocodes/object-schema": "^2.0.2",
+ "debug": "^4.3.1",
+ "minimatch": "^3.0.5"
},
"engines": {
"node": ">=10.10.0"
}
},
+ "node_modules/@humanwhocodes/config-array/node_modules/debug": {
+ "version": "4.4.0",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
"node_modules/@humanwhocodes/module-importer": {
"version": "1.0.1",
- "dev": true,
"license": "Apache-2.0",
"engines": {
"node": ">=12.22"
@@ -5403,13 +7851,58 @@
}
},
"node_modules/@humanwhocodes/object-schema": {
- "version": "1.2.1",
+ "version": "2.0.3",
"license": "BSD-3-Clause"
},
+ "node_modules/@img/sharp-darwin-arm64": {
+ "version": "0.33.0",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "Apache-2.0",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "glibc": ">=2.26",
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0",
+ "npm": ">=9.6.5",
+ "pnpm": ">=7.1.0",
+ "yarn": ">=3.2.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ },
+ "optionalDependencies": {
+ "@img/sharp-libvips-darwin-arm64": "1.0.0"
+ }
+ },
+ "node_modules/@img/sharp-libvips-darwin-arm64": {
+ "version": "1.0.0",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "LGPL-3.0-or-later",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "macos": ">=11",
+ "npm": ">=9.6.5",
+ "pnpm": ">=7.1.0",
+ "yarn": ">=3.2.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ }
+ },
"node_modules/@isaacs/cliui": {
"version": "8.0.2",
"resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
"integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
+ "license": "ISC",
"dependencies": {
"string-width": "^5.1.2",
"string-width-cjs": "npm:string-width@^4.2.0",
@@ -5423,9 +7916,10 @@
}
},
"node_modules/@isaacs/cliui/node_modules/ansi-regex": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz",
- "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
+ "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
+ "license": "MIT",
"engines": {
"node": ">=12"
},
@@ -5437,6 +7931,7 @@
"version": "6.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
"integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
+ "license": "MIT",
"engines": {
"node": ">=12"
},
@@ -5448,6 +7943,7 @@
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
"integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
+ "license": "MIT",
"dependencies": {
"eastasianwidth": "^0.2.0",
"emoji-regex": "^9.2.2",
@@ -5464,6 +7960,7 @@
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
+ "license": "MIT",
"dependencies": {
"ansi-regex": "^6.0.1"
},
@@ -5478,6 +7975,7 @@
"version": "8.1.0",
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
"integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
+ "license": "MIT",
"dependencies": {
"ansi-styles": "^6.1.0",
"string-width": "^5.0.1",
@@ -5492,7 +7990,6 @@
},
"node_modules/@istanbuljs/load-nyc-config": {
"version": "1.1.0",
- "dev": true,
"license": "ISC",
"dependencies": {
"camelcase": "^5.3.1",
@@ -5505,6 +8002,75 @@
"node": ">=8"
}
},
+ "node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": {
+ "version": "1.0.10",
+ "license": "MIT",
+ "dependencies": {
+ "sprintf-js": "~1.0.2"
+ }
+ },
+ "node_modules/@istanbuljs/load-nyc-config/node_modules/camelcase": {
+ "version": "5.3.1",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": {
+ "version": "4.1.0",
+ "license": "MIT",
+ "dependencies": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": {
+ "version": "3.14.1",
+ "license": "MIT",
+ "dependencies": {
+ "argparse": "^1.0.7",
+ "esprima": "^4.0.0"
+ },
+ "bin": {
+ "js-yaml": "bin/js-yaml.js"
+ }
+ },
+ "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": {
+ "version": "5.0.0",
+ "license": "MIT",
+ "dependencies": {
+ "p-locate": "^4.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": {
+ "version": "2.3.0",
+ "license": "MIT",
+ "dependencies": {
+ "p-try": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": {
+ "version": "4.1.0",
+ "license": "MIT",
+ "dependencies": {
+ "p-limit": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
"node_modules/@istanbuljs/schema": {
"version": "0.1.3",
"license": "MIT",
@@ -5513,83 +8079,160 @@
}
},
"node_modules/@jest/console": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz",
- "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==",
- "dev": true,
+ "version": "26.6.2",
+ "license": "MIT",
"dependencies": {
- "@jest/types": "^29.6.3",
+ "@jest/types": "^26.6.2",
"@types/node": "*",
"chalk": "^4.0.0",
- "jest-message-util": "^29.7.0",
- "jest-util": "^29.7.0",
+ "jest-message-util": "^26.6.2",
+ "jest-util": "^26.6.2",
"slash": "^3.0.0"
},
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">= 10.14.2"
+ }
+ },
+ "node_modules/@jest/console/node_modules/@jest/types": {
+ "version": "26.6.2",
+ "license": "MIT",
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^15.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": ">= 10.14.2"
}
},
"node_modules/@jest/console/node_modules/slash": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
- "dev": true,
+ "license": "MIT",
"engines": {
"node": ">=8"
}
},
"node_modules/@jest/core": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz",
- "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==",
- "dev": true,
+ "version": "26.6.3",
+ "license": "MIT",
"dependencies": {
- "@jest/console": "^29.7.0",
- "@jest/reporters": "^29.7.0",
- "@jest/test-result": "^29.7.0",
- "@jest/transform": "^29.7.0",
- "@jest/types": "^29.6.3",
+ "@jest/console": "^26.6.2",
+ "@jest/reporters": "^26.6.2",
+ "@jest/test-result": "^26.6.2",
+ "@jest/transform": "^26.6.2",
+ "@jest/types": "^26.6.2",
"@types/node": "*",
"ansi-escapes": "^4.2.1",
"chalk": "^4.0.0",
- "ci-info": "^3.2.0",
"exit": "^0.1.2",
- "graceful-fs": "^4.2.9",
- "jest-changed-files": "^29.7.0",
- "jest-config": "^29.7.0",
- "jest-haste-map": "^29.7.0",
- "jest-message-util": "^29.7.0",
- "jest-regex-util": "^29.6.3",
- "jest-resolve": "^29.7.0",
- "jest-resolve-dependencies": "^29.7.0",
- "jest-runner": "^29.7.0",
- "jest-runtime": "^29.7.0",
- "jest-snapshot": "^29.7.0",
- "jest-util": "^29.7.0",
- "jest-validate": "^29.7.0",
- "jest-watcher": "^29.7.0",
- "micromatch": "^4.0.4",
- "pretty-format": "^29.7.0",
+ "graceful-fs": "^4.2.4",
+ "jest-changed-files": "^26.6.2",
+ "jest-config": "^26.6.3",
+ "jest-haste-map": "^26.6.2",
+ "jest-message-util": "^26.6.2",
+ "jest-regex-util": "^26.0.0",
+ "jest-resolve": "^26.6.2",
+ "jest-resolve-dependencies": "^26.6.3",
+ "jest-runner": "^26.6.3",
+ "jest-runtime": "^26.6.3",
+ "jest-snapshot": "^26.6.2",
+ "jest-util": "^26.6.2",
+ "jest-validate": "^26.6.2",
+ "jest-watcher": "^26.6.2",
+ "micromatch": "^4.0.2",
+ "p-each-series": "^2.1.0",
+ "rimraf": "^3.0.0",
"slash": "^3.0.0",
"strip-ansi": "^6.0.0"
},
+ "engines": {
+ "node": ">= 10.14.2"
+ }
+ },
+ "node_modules/@jest/core/node_modules/@jest/transform": {
+ "version": "26.6.2",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/core": "^7.1.0",
+ "@jest/types": "^26.6.2",
+ "babel-plugin-istanbul": "^6.0.0",
+ "chalk": "^4.0.0",
+ "convert-source-map": "^1.4.0",
+ "fast-json-stable-stringify": "^2.0.0",
+ "graceful-fs": "^4.2.4",
+ "jest-haste-map": "^26.6.2",
+ "jest-regex-util": "^26.0.0",
+ "jest-util": "^26.6.2",
+ "micromatch": "^4.0.2",
+ "pirates": "^4.0.1",
+ "slash": "^3.0.0",
+ "source-map": "^0.6.1",
+ "write-file-atomic": "^3.0.0"
+ },
+ "engines": {
+ "node": ">= 10.14.2"
+ }
+ },
+ "node_modules/@jest/core/node_modules/@jest/types": {
+ "version": "26.6.2",
+ "license": "MIT",
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^15.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": ">= 10.14.2"
+ }
+ },
+ "node_modules/@jest/core/node_modules/slash": {
+ "version": "3.0.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@jest/environment": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "dependencies": {
+ "@jest/fake-timers": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "jest-mock": "^29.7.0"
+ },
"engines": {
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "node_modules/@jest/expect": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "dependencies": {
+ "expect": "^29.7.0",
+ "jest-snapshot": "^29.7.0"
},
- "peerDependencies": {
- "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "node_modules/@jest/expect-utils": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "dependencies": {
+ "jest-get-type": "^29.6.3"
},
- "peerDependenciesMeta": {
- "node-notifier": {
- "optional": true
- }
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@jest/core/node_modules/ansi-styles": {
+ "node_modules/@jest/expect/node_modules/ansi-styles": {
"version": "5.2.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
- "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
- "dev": true,
+ "license": "MIT",
"engines": {
"node": ">=10"
},
@@ -5597,76 +8240,188 @@
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/@jest/core/node_modules/glob": {
- "version": "7.2.3",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
- "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
- "dev": true,
+ "node_modules/@jest/expect/node_modules/ci-info": {
+ "version": "3.9.0",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/sibiraj-s"
+ }
+ ],
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@jest/expect/node_modules/jest-message-util": {
+ "version": "29.7.0",
+ "license": "MIT",
"dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.1.1",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
+ "@babel/code-frame": "^7.12.13",
+ "@jest/types": "^29.6.3",
+ "@types/stack-utils": "^2.0.0",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.9",
+ "micromatch": "^4.0.4",
+ "pretty-format": "^29.7.0",
+ "slash": "^3.0.0",
+ "stack-utils": "^2.0.3"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "node_modules/@jest/expect/node_modules/jest-snapshot": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/core": "^7.11.6",
+ "@babel/generator": "^7.7.2",
+ "@babel/plugin-syntax-jsx": "^7.7.2",
+ "@babel/plugin-syntax-typescript": "^7.7.2",
+ "@babel/types": "^7.3.3",
+ "@jest/expect-utils": "^29.7.0",
+ "@jest/transform": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "babel-preset-current-node-syntax": "^1.0.0",
+ "chalk": "^4.0.0",
+ "expect": "^29.7.0",
+ "graceful-fs": "^4.2.9",
+ "jest-diff": "^29.7.0",
+ "jest-get-type": "^29.6.3",
+ "jest-matcher-utils": "^29.7.0",
+ "jest-message-util": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "natural-compare": "^1.4.0",
+ "pretty-format": "^29.7.0",
+ "semver": "^7.5.3"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "node_modules/@jest/expect/node_modules/jest-util": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "dependencies": {
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.9",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "node_modules/@jest/expect/node_modules/pretty-format": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "dependencies": {
+ "@jest/schemas": "^29.6.3",
+ "ansi-styles": "^5.0.0",
+ "react-is": "^18.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "node_modules/@jest/expect/node_modules/react-is": {
+ "version": "18.3.1",
+ "license": "MIT"
+ },
+ "node_modules/@jest/expect/node_modules/semver": {
+ "version": "7.6.3",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/@jest/expect/node_modules/slash": {
+ "version": "3.0.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@jest/fake-timers": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "dependencies": {
+ "@jest/types": "^29.6.3",
+ "@sinonjs/fake-timers": "^10.0.2",
+ "@types/node": "*",
+ "jest-message-util": "^29.7.0",
+ "jest-mock": "^29.7.0",
+ "jest-util": "^29.7.0"
},
"engines": {
- "node": "*"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "node_modules/@jest/fake-timers/node_modules/ansi-styles": {
+ "version": "5.2.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
},
"funding": {
- "url": "https://github.com/sponsors/isaacs"
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/@jest/fake-timers/node_modules/ci-info": {
+ "version": "3.9.0",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/sibiraj-s"
+ }
+ ],
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/@jest/core/node_modules/jest-config": {
+ "node_modules/@jest/fake-timers/node_modules/jest-message-util": {
"version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz",
- "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==",
- "dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/core": "^7.11.6",
- "@jest/test-sequencer": "^29.7.0",
+ "@babel/code-frame": "^7.12.13",
"@jest/types": "^29.6.3",
- "babel-jest": "^29.7.0",
+ "@types/stack-utils": "^2.0.0",
"chalk": "^4.0.0",
- "ci-info": "^3.2.0",
- "deepmerge": "^4.2.2",
- "glob": "^7.1.3",
"graceful-fs": "^4.2.9",
- "jest-circus": "^29.7.0",
- "jest-environment-node": "^29.7.0",
- "jest-get-type": "^29.6.3",
- "jest-regex-util": "^29.6.3",
- "jest-resolve": "^29.7.0",
- "jest-runner": "^29.7.0",
- "jest-util": "^29.7.0",
- "jest-validate": "^29.7.0",
"micromatch": "^4.0.4",
- "parse-json": "^5.2.0",
"pretty-format": "^29.7.0",
"slash": "^3.0.0",
- "strip-json-comments": "^3.1.1"
+ "stack-utils": "^2.0.3"
},
"engines": {
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- },
- "peerDependencies": {
+ }
+ },
+ "node_modules/@jest/fake-timers/node_modules/jest-util": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "dependencies": {
+ "@jest/types": "^29.6.3",
"@types/node": "*",
- "ts-node": ">=9.0.0"
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.9",
+ "picomatch": "^2.2.3"
},
- "peerDependenciesMeta": {
- "@types/node": {
- "optional": true
- },
- "ts-node": {
- "optional": true
- }
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@jest/core/node_modules/pretty-format": {
+ "node_modules/@jest/fake-timers/node_modules/pretty-format": {
"version": "29.7.0",
- "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz",
- "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==",
- "dev": true,
+ "license": "MIT",
"dependencies": {
"@jest/schemas": "^29.6.3",
"ansi-styles": "^5.0.0",
@@ -5676,141 +8431,245 @@
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@jest/core/node_modules/react-is": {
- "version": "18.2.0",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz",
- "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==",
- "dev": true
+ "node_modules/@jest/fake-timers/node_modules/react-is": {
+ "version": "18.3.1",
+ "license": "MIT"
},
- "node_modules/@jest/core/node_modules/slash": {
+ "node_modules/@jest/fake-timers/node_modules/slash": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
- "dev": true,
+ "license": "MIT",
"engines": {
"node": ">=8"
}
},
- "node_modules/@jest/environment": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz",
- "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==",
- "dev": true,
+ "node_modules/@jest/globals": {
+ "version": "26.6.2",
+ "license": "MIT",
"dependencies": {
- "@jest/fake-timers": "^29.7.0",
- "@jest/types": "^29.6.3",
- "@types/node": "*",
- "jest-mock": "^29.7.0"
+ "@jest/environment": "^26.6.2",
+ "@jest/types": "^26.6.2",
+ "expect": "^26.6.2"
},
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">= 10.14.2"
}
},
- "node_modules/@jest/expect": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz",
- "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==",
- "dev": true,
+ "node_modules/@jest/globals/node_modules/@jest/environment": {
+ "version": "26.6.2",
+ "license": "MIT",
"dependencies": {
- "expect": "^29.7.0",
- "jest-snapshot": "^29.7.0"
+ "@jest/fake-timers": "^26.6.2",
+ "@jest/types": "^26.6.2",
+ "@types/node": "*",
+ "jest-mock": "^26.6.2"
},
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">= 10.14.2"
}
},
- "node_modules/@jest/expect-utils": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz",
- "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==",
- "dev": true,
+ "node_modules/@jest/globals/node_modules/@jest/fake-timers": {
+ "version": "26.6.2",
+ "license": "MIT",
"dependencies": {
- "jest-get-type": "^29.6.3"
+ "@jest/types": "^26.6.2",
+ "@sinonjs/fake-timers": "^6.0.1",
+ "@types/node": "*",
+ "jest-message-util": "^26.6.2",
+ "jest-mock": "^26.6.2",
+ "jest-util": "^26.6.2"
},
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">= 10.14.2"
}
},
- "node_modules/@jest/fake-timers": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz",
- "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==",
- "dev": true,
+ "node_modules/@jest/globals/node_modules/@jest/types": {
+ "version": "26.6.2",
+ "license": "MIT",
"dependencies": {
- "@jest/types": "^29.6.3",
- "@sinonjs/fake-timers": "^10.0.2",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
- "jest-message-util": "^29.7.0",
- "jest-mock": "^29.7.0",
- "jest-util": "^29.7.0"
+ "@types/yargs": "^15.0.0",
+ "chalk": "^4.0.0"
},
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">= 10.14.2"
}
},
- "node_modules/@jest/globals": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz",
- "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==",
- "dev": true,
+ "node_modules/@jest/globals/node_modules/@sinonjs/commons": {
+ "version": "1.8.6",
+ "license": "BSD-3-Clause",
"dependencies": {
- "@jest/environment": "^29.7.0",
- "@jest/expect": "^29.7.0",
- "@jest/types": "^29.6.3",
- "jest-mock": "^29.7.0"
+ "type-detect": "4.0.8"
+ }
+ },
+ "node_modules/@jest/globals/node_modules/@sinonjs/fake-timers": {
+ "version": "6.0.1",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "@sinonjs/commons": "^1.7.0"
+ }
+ },
+ "node_modules/@jest/globals/node_modules/diff-sequences": {
+ "version": "26.6.2",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 10.14.2"
+ }
+ },
+ "node_modules/@jest/globals/node_modules/expect": {
+ "version": "26.6.2",
+ "license": "MIT",
+ "dependencies": {
+ "@jest/types": "^26.6.2",
+ "ansi-styles": "^4.0.0",
+ "jest-get-type": "^26.3.0",
+ "jest-matcher-utils": "^26.6.2",
+ "jest-message-util": "^26.6.2",
+ "jest-regex-util": "^26.0.0"
},
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">= 10.14.2"
+ }
+ },
+ "node_modules/@jest/globals/node_modules/jest-diff": {
+ "version": "26.6.2",
+ "license": "MIT",
+ "dependencies": {
+ "chalk": "^4.0.0",
+ "diff-sequences": "^26.6.2",
+ "jest-get-type": "^26.3.0",
+ "pretty-format": "^26.6.2"
+ },
+ "engines": {
+ "node": ">= 10.14.2"
+ }
+ },
+ "node_modules/@jest/globals/node_modules/jest-get-type": {
+ "version": "26.3.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 10.14.2"
+ }
+ },
+ "node_modules/@jest/globals/node_modules/jest-matcher-utils": {
+ "version": "26.6.2",
+ "license": "MIT",
+ "dependencies": {
+ "chalk": "^4.0.0",
+ "jest-diff": "^26.6.2",
+ "jest-get-type": "^26.3.0",
+ "pretty-format": "^26.6.2"
+ },
+ "engines": {
+ "node": ">= 10.14.2"
}
},
+ "node_modules/@jest/globals/node_modules/jest-mock": {
+ "version": "26.6.2",
+ "license": "MIT",
+ "dependencies": {
+ "@jest/types": "^26.6.2",
+ "@types/node": "*"
+ },
+ "engines": {
+ "node": ">= 10.14.2"
+ }
+ },
+ "node_modules/@jest/globals/node_modules/pretty-format": {
+ "version": "26.6.2",
+ "license": "MIT",
+ "dependencies": {
+ "@jest/types": "^26.6.2",
+ "ansi-regex": "^5.0.0",
+ "ansi-styles": "^4.0.0",
+ "react-is": "^17.0.1"
+ },
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@jest/globals/node_modules/react-is": {
+ "version": "17.0.2",
+ "license": "MIT"
+ },
"node_modules/@jest/reporters": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz",
- "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==",
- "dev": true,
+ "version": "26.6.2",
+ "license": "MIT",
"dependencies": {
"@bcoe/v8-coverage": "^0.2.3",
- "@jest/console": "^29.7.0",
- "@jest/test-result": "^29.7.0",
- "@jest/transform": "^29.7.0",
- "@jest/types": "^29.6.3",
- "@jridgewell/trace-mapping": "^0.3.18",
- "@types/node": "*",
+ "@jest/console": "^26.6.2",
+ "@jest/test-result": "^26.6.2",
+ "@jest/transform": "^26.6.2",
+ "@jest/types": "^26.6.2",
"chalk": "^4.0.0",
"collect-v8-coverage": "^1.0.0",
"exit": "^0.1.2",
- "glob": "^7.1.3",
- "graceful-fs": "^4.2.9",
+ "glob": "^7.1.2",
+ "graceful-fs": "^4.2.4",
"istanbul-lib-coverage": "^3.0.0",
- "istanbul-lib-instrument": "^6.0.0",
+ "istanbul-lib-instrument": "^4.0.3",
"istanbul-lib-report": "^3.0.0",
"istanbul-lib-source-maps": "^4.0.0",
- "istanbul-reports": "^3.1.3",
- "jest-message-util": "^29.7.0",
- "jest-util": "^29.7.0",
- "jest-worker": "^29.7.0",
+ "istanbul-reports": "^3.0.2",
+ "jest-haste-map": "^26.6.2",
+ "jest-resolve": "^26.6.2",
+ "jest-util": "^26.6.2",
+ "jest-worker": "^26.6.2",
"slash": "^3.0.0",
+ "source-map": "^0.6.0",
"string-length": "^4.0.1",
- "strip-ansi": "^6.0.0",
- "v8-to-istanbul": "^9.0.1"
+ "terminal-link": "^2.0.0",
+ "v8-to-istanbul": "^7.0.0"
},
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">= 10.14.2"
},
- "peerDependencies": {
- "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
+ "optionalDependencies": {
+ "node-notifier": "^8.0.0"
+ }
+ },
+ "node_modules/@jest/reporters/node_modules/@jest/transform": {
+ "version": "26.6.2",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/core": "^7.1.0",
+ "@jest/types": "^26.6.2",
+ "babel-plugin-istanbul": "^6.0.0",
+ "chalk": "^4.0.0",
+ "convert-source-map": "^1.4.0",
+ "fast-json-stable-stringify": "^2.0.0",
+ "graceful-fs": "^4.2.4",
+ "jest-haste-map": "^26.6.2",
+ "jest-regex-util": "^26.0.0",
+ "jest-util": "^26.6.2",
+ "micromatch": "^4.0.2",
+ "pirates": "^4.0.1",
+ "slash": "^3.0.0",
+ "source-map": "^0.6.1",
+ "write-file-atomic": "^3.0.0"
},
- "peerDependenciesMeta": {
- "node-notifier": {
- "optional": true
- }
+ "engines": {
+ "node": ">= 10.14.2"
+ }
+ },
+ "node_modules/@jest/reporters/node_modules/@jest/types": {
+ "version": "26.6.2",
+ "license": "MIT",
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^15.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": ">= 10.14.2"
}
},
"node_modules/@jest/reporters/node_modules/glob": {
"version": "7.2.3",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
- "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
- "dev": true,
+ "license": "ISC",
"dependencies": {
"fs.realpath": "^1.0.0",
"inflight": "^1.0.4",
@@ -5826,69 +8685,16 @@
"url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/@jest/reporters/node_modules/istanbul-lib-instrument": {
- "version": "6.0.2",
- "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.2.tgz",
- "integrity": "sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw==",
- "dev": true,
- "dependencies": {
- "@babel/core": "^7.23.9",
- "@babel/parser": "^7.23.9",
- "@istanbuljs/schema": "^0.1.3",
- "istanbul-lib-coverage": "^3.2.0",
- "semver": "^7.5.4"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/@jest/reporters/node_modules/lru-cache": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
- "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
- "dev": true,
- "dependencies": {
- "yallist": "^4.0.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/@jest/reporters/node_modules/semver": {
- "version": "7.6.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz",
- "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==",
- "dev": true,
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
"node_modules/@jest/reporters/node_modules/slash": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
- "dev": true,
+ "license": "MIT",
"engines": {
"node": ">=8"
}
},
- "node_modules/@jest/reporters/node_modules/yallist": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
- "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
- "dev": true
- },
"node_modules/@jest/schemas": {
"version": "29.6.3",
- "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz",
- "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==",
- "dev": true,
+ "license": "MIT",
"dependencies": {
"@sinclair/typebox": "^0.27.8"
},
@@ -5897,63 +8703,61 @@
}
},
"node_modules/@jest/source-map": {
- "version": "29.6.3",
- "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz",
- "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==",
- "dev": true,
+ "version": "26.6.2",
+ "license": "MIT",
"dependencies": {
- "@jridgewell/trace-mapping": "^0.3.18",
"callsites": "^3.0.0",
- "graceful-fs": "^4.2.9"
+ "graceful-fs": "^4.2.4",
+ "source-map": "^0.6.0"
},
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">= 10.14.2"
}
},
"node_modules/@jest/test-result": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz",
- "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==",
- "dev": true,
+ "version": "26.6.2",
+ "license": "MIT",
"dependencies": {
- "@jest/console": "^29.7.0",
- "@jest/types": "^29.6.3",
+ "@jest/console": "^26.6.2",
+ "@jest/types": "^26.6.2",
"@types/istanbul-lib-coverage": "^2.0.0",
"collect-v8-coverage": "^1.0.0"
},
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">= 10.14.2"
}
},
- "node_modules/@jest/test-sequencer": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz",
- "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==",
- "dev": true,
+ "node_modules/@jest/test-result/node_modules/@jest/types": {
+ "version": "26.6.2",
+ "license": "MIT",
"dependencies": {
- "@jest/test-result": "^29.7.0",
- "graceful-fs": "^4.2.9",
- "jest-haste-map": "^29.7.0",
- "slash": "^3.0.0"
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^15.0.0",
+ "chalk": "^4.0.0"
},
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">= 10.14.2"
}
},
- "node_modules/@jest/test-sequencer/node_modules/slash": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
- "dev": true,
+ "node_modules/@jest/test-sequencer": {
+ "version": "26.6.3",
+ "license": "MIT",
+ "dependencies": {
+ "@jest/test-result": "^26.6.2",
+ "graceful-fs": "^4.2.4",
+ "jest-haste-map": "^26.6.2",
+ "jest-runner": "^26.6.3",
+ "jest-runtime": "^26.6.3"
+ },
"engines": {
- "node": ">=8"
+ "node": ">= 10.14.2"
}
},
"node_modules/@jest/transform": {
"version": "29.7.0",
- "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz",
- "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==",
- "dev": true,
+ "license": "MIT",
"dependencies": {
"@babel/core": "^7.11.6",
"@jest/types": "^29.6.3",
@@ -5975,26 +8779,115 @@
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
+ "node_modules/@jest/transform/node_modules/ci-info": {
+ "version": "3.9.0",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/sibiraj-s"
+ }
+ ],
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
"node_modules/@jest/transform/node_modules/convert-source-map": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
- "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
- "dev": true
+ "license": "MIT"
+ },
+ "node_modules/@jest/transform/node_modules/jest-haste-map": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "dependencies": {
+ "@jest/types": "^29.6.3",
+ "@types/graceful-fs": "^4.1.3",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "graceful-fs": "^4.2.9",
+ "jest-regex-util": "^29.6.3",
+ "jest-util": "^29.7.0",
+ "jest-worker": "^29.7.0",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.8"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ },
+ "optionalDependencies": {
+ "fsevents": "^2.3.2"
+ }
+ },
+ "node_modules/@jest/transform/node_modules/jest-regex-util": {
+ "version": "29.6.3",
+ "license": "MIT",
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "node_modules/@jest/transform/node_modules/jest-util": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "dependencies": {
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.9",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "node_modules/@jest/transform/node_modules/jest-worker": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "dependencies": {
+ "@types/node": "*",
+ "jest-util": "^29.7.0",
+ "merge-stream": "^2.0.0",
+ "supports-color": "^8.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
},
"node_modules/@jest/transform/node_modules/slash": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
- "dev": true,
+ "license": "MIT",
"engines": {
"node": ">=8"
}
},
+ "node_modules/@jest/transform/node_modules/supports-color": {
+ "version": "8.1.1",
+ "license": "MIT",
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
+ }
+ },
+ "node_modules/@jest/transform/node_modules/write-file-atomic": {
+ "version": "4.0.2",
+ "license": "ISC",
+ "dependencies": {
+ "imurmurhash": "^0.1.4",
+ "signal-exit": "^3.0.7"
+ },
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ }
+ },
"node_modules/@jest/types": {
"version": "29.6.3",
- "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz",
- "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==",
- "dev": true,
+ "license": "MIT",
"dependencies": {
"@jest/schemas": "^29.6.3",
"@types/istanbul-lib-coverage": "^2.0.0",
@@ -6007,19 +8900,27 @@
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
+ "node_modules/@jest/types/node_modules/@types/yargs": {
+ "version": "17.0.33",
+ "license": "MIT",
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
"node_modules/@jridgewell/gen-mapping": {
- "version": "0.1.1",
+ "version": "0.3.8",
"license": "MIT",
"dependencies": {
- "@jridgewell/set-array": "^1.0.0",
- "@jridgewell/sourcemap-codec": "^1.4.10"
+ "@jridgewell/set-array": "^1.2.1",
+ "@jridgewell/sourcemap-codec": "^1.4.10",
+ "@jridgewell/trace-mapping": "^0.3.24"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/resolve-uri": {
- "version": "3.1.0",
+ "version": "3.1.2",
"license": "MIT",
"engines": {
"node": ">=6.0.0"
@@ -6027,40 +8928,26 @@
},
"node_modules/@jridgewell/set-array": {
"version": "1.2.1",
- "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
- "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
+ "license": "MIT",
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/source-map": {
- "version": "0.3.2",
- "license": "MIT",
- "dependencies": {
- "@jridgewell/gen-mapping": "^0.3.0",
- "@jridgewell/trace-mapping": "^0.3.9"
- }
- },
- "node_modules/@jridgewell/source-map/node_modules/@jridgewell/gen-mapping": {
- "version": "0.3.2",
- "license": "MIT",
- "dependencies": {
- "@jridgewell/set-array": "^1.0.1",
- "@jridgewell/sourcemap-codec": "^1.4.10",
- "@jridgewell/trace-mapping": "^0.3.9"
- },
- "engines": {
- "node": ">=6.0.0"
+ "version": "0.3.6",
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/gen-mapping": "^0.3.5",
+ "@jridgewell/trace-mapping": "^0.3.25"
}
},
"node_modules/@jridgewell/sourcemap-codec": {
- "version": "1.4.14",
+ "version": "1.5.0",
"license": "MIT"
},
"node_modules/@jridgewell/trace-mapping": {
"version": "0.3.25",
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
- "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
+ "license": "MIT",
"dependencies": {
"@jridgewell/resolve-uri": "^3.1.0",
"@jridgewell/sourcemap-codec": "^1.4.14"
@@ -6070,6 +8957,7 @@
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@jsonjoy.com/base64/-/base64-1.1.2.tgz",
"integrity": "sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==",
+ "license": "Apache-2.0",
"engines": {
"node": ">=10.0"
},
@@ -6082,9 +8970,10 @@
}
},
"node_modules/@jsonjoy.com/json-pack": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-1.1.0.tgz",
- "integrity": "sha512-zlQONA+msXPPwHWZMKFVS78ewFczIll5lXiVPwFPCZUsrOKdxc2AvxU1HoNBmMRhqDZUR9HkC3UOm+6pME6Xsg==",
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-1.1.1.tgz",
+ "integrity": "sha512-osjeBqMJ2lb/j/M8NCPjs1ylqWIcTRTycIhVB5pt6LgzgeRSb0YRZ7j9RfA8wIUrsr/medIuhVyonXRZWLyfdw==",
+ "license": "Apache-2.0",
"dependencies": {
"@jsonjoy.com/base64": "^1.1.1",
"@jsonjoy.com/util": "^1.1.2",
@@ -6103,9 +8992,10 @@
}
},
"node_modules/@jsonjoy.com/util": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/util/-/util-1.3.0.tgz",
- "integrity": "sha512-Cebt4Vk7k1xHy87kHY7KSPLT77A7Ev7IfOblyLZhtYEhrdQ6fX4EoLq3xOQ3O/DRMEh2ok5nyC180E+ABS8Wmw==",
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/@jsonjoy.com/util/-/util-1.5.0.tgz",
+ "integrity": "sha512-ojoNsrIuPI9g6o8UxhraZQSyF2ByJanAY4cTFbc8Mf2AXEF4aQRGY1dJxyJpuyav8r9FGflEt/Ff3u5Nt6YMPA==",
+ "license": "Apache-2.0",
"engines": {
"node": ">=10.0"
},
@@ -6118,28 +9008,26 @@
}
},
"node_modules/@leichtgewicht/ip-codec": {
- "version": "2.0.4",
- "devOptional": true,
+ "version": "2.0.5",
"license": "MIT"
},
"node_modules/@lezer/common": {
- "version": "0.15.12",
+ "version": "1.2.3",
"license": "MIT"
},
"node_modules/@lezer/lr": {
- "version": "0.15.8",
+ "version": "1.4.2",
"license": "MIT",
"dependencies": {
- "@lezer/common": "^0.15.0"
+ "@lezer/common": "^1.0.0"
}
},
"node_modules/@lmdb/lmdb-darwin-arm64": {
"version": "2.5.3",
- "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz",
- "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==",
"cpu": [
"arm64"
],
+ "license": "MIT",
"optional": true,
"os": [
"darwin"
@@ -6147,129 +9035,79 @@
},
"node_modules/@material-icons/svg": {
"version": "1.0.33",
- "resolved": "https://registry.npmjs.org/@material-icons/svg/-/svg-1.0.33.tgz",
- "integrity": "sha512-sYXcybBWH3rNijK1D6Dv1Se/aZ7OAC2cCNkn4HiZOXQwkswtRVoDqHPw+GfsBoIC70UintfPXUsmiuaxMicWtw==",
- "dev": true
+ "dev": true,
+ "license": "Apache-2.0"
},
"node_modules/@mdx-js/mdx": {
- "version": "1.6.22",
- "license": "MIT",
- "dependencies": {
- "@babel/core": "7.12.9",
- "@babel/plugin-syntax-jsx": "7.12.1",
- "@babel/plugin-syntax-object-rest-spread": "7.8.3",
- "@mdx-js/util": "1.6.22",
- "babel-plugin-apply-mdx-type-prop": "1.6.22",
- "babel-plugin-extract-import-names": "1.6.22",
- "camelcase-css": "2.0.1",
- "detab": "2.0.4",
- "hast-util-raw": "6.0.1",
- "lodash.uniq": "4.5.0",
- "mdast-util-to-hast": "10.0.1",
- "remark-footnotes": "2.0.0",
- "remark-mdx": "1.6.22",
- "remark-parse": "8.0.3",
- "remark-squeeze-paragraphs": "4.0.0",
- "style-to-object": "0.3.0",
- "unified": "9.2.0",
- "unist-builder": "2.0.3",
- "unist-util-visit": "2.0.3"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/@mdx-js/mdx/node_modules/@babel/core": {
- "version": "7.12.9",
+ "version": "2.3.0",
"license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.5",
- "@babel/helper-module-transforms": "^7.12.1",
- "@babel/helpers": "^7.12.5",
- "@babel/parser": "^7.12.7",
- "@babel/template": "^7.12.7",
- "@babel/traverse": "^7.12.9",
- "@babel/types": "^7.12.7",
- "convert-source-map": "^1.7.0",
- "debug": "^4.1.0",
- "gensync": "^1.0.0-beta.1",
- "json5": "^2.1.2",
- "lodash": "^4.17.19",
- "resolve": "^1.3.2",
- "semver": "^5.4.1",
- "source-map": "^0.5.0"
- },
- "engines": {
- "node": ">=6.9.0"
+ "@types/estree-jsx": "^1.0.0",
+ "@types/mdx": "^2.0.0",
+ "estree-util-build-jsx": "^2.0.0",
+ "estree-util-is-identifier-name": "^2.0.0",
+ "estree-util-to-js": "^1.1.0",
+ "estree-walker": "^3.0.0",
+ "hast-util-to-estree": "^2.0.0",
+ "markdown-extensions": "^1.0.0",
+ "periscopic": "^3.0.0",
+ "remark-mdx": "^2.0.0",
+ "remark-parse": "^10.0.0",
+ "remark-rehype": "^10.0.0",
+ "unified": "^10.0.0",
+ "unist-util-position-from-estree": "^1.0.0",
+ "unist-util-stringify-position": "^3.0.0",
+ "unist-util-visit": "^4.0.0",
+ "vfile": "^5.0.0"
},
"funding": {
"type": "opencollective",
- "url": "https://opencollective.com/babel"
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/@mdx-js/mdx/node_modules/@babel/plugin-syntax-jsx": {
- "version": "7.12.1",
+ "node_modules/@mdx-js/react": {
+ "version": "2.3.0",
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.10.4"
+ "@types/mdx": "^2.0.0",
+ "@types/react": ">=16"
},
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@mdx-js/mdx/node_modules/semver": {
- "version": "5.7.1",
- "license": "ISC",
- "bin": {
- "semver": "bin/semver"
- }
- },
- "node_modules/@mdx-js/mdx/node_modules/source-map": {
- "version": "0.5.7",
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@mdx-js/react": {
- "version": "1.6.22",
- "license": "MIT",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
},
"peerDependencies": {
- "react": "^16.13.1 || ^17.0.0"
- }
- },
- "node_modules/@mdx-js/util": {
- "version": "1.6.22",
- "license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "react": ">=16"
}
},
"node_modules/@mischnic/json-sourcemap": {
- "version": "0.1.0",
+ "version": "0.1.1",
"license": "MIT",
"dependencies": {
- "@lezer/common": "^0.15.7",
- "@lezer/lr": "^0.15.4",
+ "@lezer/common": "^1.0.0",
+ "@lezer/lr": "^1.0.0",
"json5": "^2.2.1"
},
"engines": {
"node": ">=12.0.0"
}
},
+ "node_modules/@msgpackr-extract/msgpackr-extract-darwin-arm64": {
+ "version": "3.0.3",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ]
+ },
"node_modules/@newrelic/publish-sourcemap": {
- "version": "5.1.0",
- "dev": true,
+ "version": "5.1.3",
"license": "New Relic proprietary",
"dependencies": {
- "superagent": "^3.4.1",
+ "superagent": "^10.1.0",
"yargs": "^16.0.3"
},
"bin": {
@@ -6280,7 +9118,6 @@
},
"node_modules/@newrelic/publish-sourcemap/node_modules/cliui": {
"version": "7.0.4",
- "dev": true,
"license": "ISC",
"dependencies": {
"string-width": "^4.2.0",
@@ -6288,9 +9125,15 @@
"wrap-ansi": "^7.0.0"
}
},
+ "node_modules/@newrelic/publish-sourcemap/node_modules/y18n": {
+ "version": "5.0.8",
+ "license": "ISC",
+ "engines": {
+ "node": ">=10"
+ }
+ },
"node_modules/@newrelic/publish-sourcemap/node_modules/yargs": {
"version": "16.2.0",
- "dev": true,
"license": "MIT",
"dependencies": {
"cliui": "^7.0.2",
@@ -6307,7 +9150,6 @@
},
"node_modules/@nicolo-ribaudo/chokidar-2": {
"version": "2.1.8-no-fsevents.3",
- "dev": true,
"license": "MIT",
"optional": true
},
@@ -6318,6 +9160,24 @@
"eslint-scope": "5.1.1"
}
},
+ "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/eslint-scope": {
+ "version": "5.1.1",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "esrecurse": "^4.3.0",
+ "estraverse": "^4.1.1"
+ },
+ "engines": {
+ "node": ">=8.0.0"
+ }
+ },
+ "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/estraverse": {
+ "version": "4.3.0",
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
"node_modules/@nodelib/fs.scandir": {
"version": "2.1.5",
"license": "MIT",
@@ -6348,18 +9208,15 @@
}
},
"node_modules/@octokit/auth-token": {
- "version": "3.0.3",
+ "version": "3.0.4",
"dev": true,
"license": "MIT",
- "dependencies": {
- "@octokit/types": "^9.0.0"
- },
"engines": {
"node": ">= 14"
}
},
"node_modules/@octokit/core": {
- "version": "4.2.0",
+ "version": "4.2.4",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6376,7 +9233,7 @@
}
},
"node_modules/@octokit/endpoint": {
- "version": "7.0.5",
+ "version": "7.0.6",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6389,7 +9246,7 @@
}
},
"node_modules/@octokit/graphql": {
- "version": "5.0.5",
+ "version": "5.0.6",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6402,16 +9259,17 @@
}
},
"node_modules/@octokit/openapi-types": {
- "version": "16.0.0",
+ "version": "18.1.1",
"dev": true,
"license": "MIT"
},
"node_modules/@octokit/plugin-paginate-rest": {
- "version": "6.0.0",
+ "version": "6.1.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "@octokit/types": "^9.0.0"
+ "@octokit/tsconfig": "^1.0.2",
+ "@octokit/types": "^9.2.3"
},
"engines": {
"node": ">= 14"
@@ -6420,31 +9278,38 @@
"@octokit/core": ">=4"
}
},
- "node_modules/@octokit/plugin-request-log": {
- "version": "1.0.4",
+ "node_modules/@octokit/plugin-retry": {
+ "version": "4.1.6",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "@octokit/types": "^9.0.0",
+ "bottleneck": "^2.15.3"
+ },
+ "engines": {
+ "node": ">= 14"
+ },
"peerDependencies": {
"@octokit/core": ">=3"
}
},
- "node_modules/@octokit/plugin-rest-endpoint-methods": {
- "version": "7.0.1",
+ "node_modules/@octokit/plugin-throttling": {
+ "version": "5.2.3",
"dev": true,
"license": "MIT",
"dependencies": {
"@octokit/types": "^9.0.0",
- "deprecation": "^2.3.1"
+ "bottleneck": "^2.15.3"
},
"engines": {
"node": ">= 14"
},
"peerDependencies": {
- "@octokit/core": ">=3"
+ "@octokit/core": "^4.0.0"
}
},
"node_modules/@octokit/request": {
- "version": "6.2.3",
+ "version": "6.2.8",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6472,46 +9337,37 @@
"node": ">= 14"
}
},
- "node_modules/@octokit/rest": {
- "version": "19.0.7",
+ "node_modules/@octokit/tsconfig": {
+ "version": "1.0.2",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "@octokit/core": "^4.1.0",
- "@octokit/plugin-paginate-rest": "^6.0.0",
- "@octokit/plugin-request-log": "^1.0.4",
- "@octokit/plugin-rest-endpoint-methods": "^7.0.0"
- },
- "engines": {
- "node": ">= 14"
- }
+ "license": "MIT"
},
"node_modules/@octokit/types": {
- "version": "9.0.0",
+ "version": "9.3.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "@octokit/openapi-types": "^16.0.0"
+ "@octokit/openapi-types": "^18.0.0"
}
},
"node_modules/@openedx/brand-openedx": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/@openedx/brand-openedx/-/brand-openedx-1.2.2.tgz",
- "integrity": "sha512-mBvxR7aB9290j9+h3d/9G8VkG1b8ecLSmlxc0vskfm7DL/fKUzFmHAj3PI7Z4kkwCQOL4QT5mJHJKC0ZFf7qvQ=="
+ "version": "1.2.3",
+ "license": "GPL-3.0-or-later"
},
"node_modules/@parcel/bundler-default": {
- "version": "2.6.2",
+ "version": "2.8.3",
"license": "MIT",
"dependencies": {
- "@parcel/diagnostic": "2.6.2",
- "@parcel/hash": "2.6.2",
- "@parcel/plugin": "2.6.2",
- "@parcel/utils": "2.6.2",
+ "@parcel/diagnostic": "2.8.3",
+ "@parcel/graph": "2.8.3",
+ "@parcel/hash": "2.8.3",
+ "@parcel/plugin": "2.8.3",
+ "@parcel/utils": "2.8.3",
"nullthrows": "^1.1.1"
},
"engines": {
"node": ">= 12.0.0",
- "parcel": "^2.6.2"
+ "parcel": "^2.8.3"
},
"funding": {
"type": "opencollective",
@@ -6519,12 +9375,12 @@
}
},
"node_modules/@parcel/cache": {
- "version": "2.6.2",
+ "version": "2.8.3",
"license": "MIT",
"dependencies": {
- "@parcel/fs": "2.6.2",
- "@parcel/logger": "2.6.2",
- "@parcel/utils": "2.6.2",
+ "@parcel/fs": "2.8.3",
+ "@parcel/logger": "2.8.3",
+ "@parcel/utils": "2.8.3",
"lmdb": "2.5.2"
},
"engines": {
@@ -6535,16 +9391,15 @@
"url": "https://opencollective.com/parcel"
},
"peerDependencies": {
- "@parcel/core": "^2.6.2"
+ "@parcel/core": "^2.8.3"
}
},
"node_modules/@parcel/cache/node_modules/@lmdb/lmdb-darwin-arm64": {
"version": "2.5.2",
- "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz",
- "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==",
"cpu": [
"arm64"
],
+ "license": "MIT",
"optional": true,
"os": [
"darwin"
@@ -6575,7 +9430,7 @@
"license": "MIT"
},
"node_modules/@parcel/codeframe": {
- "version": "2.6.2",
+ "version": "2.8.3",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.0"
@@ -6589,14 +9444,14 @@
}
},
"node_modules/@parcel/compressor-raw": {
- "version": "2.6.2",
+ "version": "2.8.3",
"license": "MIT",
"dependencies": {
- "@parcel/plugin": "2.6.2"
+ "@parcel/plugin": "2.8.3"
},
"engines": {
"node": ">= 12.0.0",
- "parcel": "^2.6.2"
+ "parcel": "^2.8.3"
},
"funding": {
"type": "opencollective",
@@ -6604,23 +9459,23 @@
}
},
"node_modules/@parcel/core": {
- "version": "2.6.2",
+ "version": "2.8.3",
"license": "MIT",
"dependencies": {
"@mischnic/json-sourcemap": "^0.1.0",
- "@parcel/cache": "2.6.2",
- "@parcel/diagnostic": "2.6.2",
- "@parcel/events": "2.6.2",
- "@parcel/fs": "2.6.2",
- "@parcel/graph": "2.6.2",
- "@parcel/hash": "2.6.2",
- "@parcel/logger": "2.6.2",
- "@parcel/package-manager": "2.6.2",
- "@parcel/plugin": "2.6.2",
- "@parcel/source-map": "^2.0.0",
- "@parcel/types": "2.6.2",
- "@parcel/utils": "2.6.2",
- "@parcel/workers": "2.6.2",
+ "@parcel/cache": "2.8.3",
+ "@parcel/diagnostic": "2.8.3",
+ "@parcel/events": "2.8.3",
+ "@parcel/fs": "2.8.3",
+ "@parcel/graph": "2.8.3",
+ "@parcel/hash": "2.8.3",
+ "@parcel/logger": "2.8.3",
+ "@parcel/package-manager": "2.8.3",
+ "@parcel/plugin": "2.8.3",
+ "@parcel/source-map": "^2.1.1",
+ "@parcel/types": "2.8.3",
+ "@parcel/utils": "2.8.3",
+ "@parcel/workers": "2.8.3",
"abortcontroller-polyfill": "^1.1.9",
"base-x": "^3.0.8",
"browserslist": "^4.6.6",
@@ -6648,14 +9503,14 @@
}
},
"node_modules/@parcel/core/node_modules/semver": {
- "version": "5.7.1",
+ "version": "5.7.2",
"license": "ISC",
"bin": {
"semver": "bin/semver"
}
},
"node_modules/@parcel/diagnostic": {
- "version": "2.6.2",
+ "version": "2.8.3",
"license": "MIT",
"dependencies": {
"@mischnic/json-sourcemap": "^0.1.0",
@@ -6670,7 +9525,7 @@
}
},
"node_modules/@parcel/events": {
- "version": "2.6.2",
+ "version": "2.8.3",
"license": "MIT",
"engines": {
"node": ">= 12.0.0"
@@ -6681,14 +9536,14 @@
}
},
"node_modules/@parcel/fs": {
- "version": "2.6.2",
+ "version": "2.8.3",
"license": "MIT",
"dependencies": {
- "@parcel/fs-search": "2.6.2",
- "@parcel/types": "2.6.2",
- "@parcel/utils": "2.6.2",
- "@parcel/watcher": "^2.0.0",
- "@parcel/workers": "2.6.2"
+ "@parcel/fs-search": "2.8.3",
+ "@parcel/types": "2.8.3",
+ "@parcel/utils": "2.8.3",
+ "@parcel/watcher": "^2.0.7",
+ "@parcel/workers": "2.8.3"
},
"engines": {
"node": ">= 12.0.0"
@@ -6698,11 +9553,11 @@
"url": "https://opencollective.com/parcel"
},
"peerDependencies": {
- "@parcel/core": "^2.6.2"
+ "@parcel/core": "^2.8.3"
}
},
"node_modules/@parcel/fs-search": {
- "version": "2.6.2",
+ "version": "2.8.3",
"license": "MIT",
"dependencies": {
"detect-libc": "^1.0.3"
@@ -6716,10 +9571,9 @@
}
},
"node_modules/@parcel/graph": {
- "version": "2.6.2",
+ "version": "2.8.3",
"license": "MIT",
"dependencies": {
- "@parcel/utils": "2.6.2",
"nullthrows": "^1.1.1"
},
"engines": {
@@ -6731,7 +9585,7 @@
}
},
"node_modules/@parcel/hash": {
- "version": "2.6.2",
+ "version": "2.8.3",
"license": "MIT",
"dependencies": {
"detect-libc": "^1.0.3",
@@ -6746,11 +9600,11 @@
}
},
"node_modules/@parcel/logger": {
- "version": "2.6.2",
+ "version": "2.8.3",
"license": "MIT",
"dependencies": {
- "@parcel/diagnostic": "2.6.2",
- "@parcel/events": "2.6.2"
+ "@parcel/diagnostic": "2.8.3",
+ "@parcel/events": "2.8.3"
},
"engines": {
"node": ">= 12.0.0"
@@ -6761,7 +9615,7 @@
}
},
"node_modules/@parcel/markdown-ansi": {
- "version": "2.6.2",
+ "version": "2.8.3",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.0"
@@ -6775,16 +9629,16 @@
}
},
"node_modules/@parcel/namer-default": {
- "version": "2.6.2",
+ "version": "2.8.3",
"license": "MIT",
"dependencies": {
- "@parcel/diagnostic": "2.6.2",
- "@parcel/plugin": "2.6.2",
+ "@parcel/diagnostic": "2.8.3",
+ "@parcel/plugin": "2.8.3",
"nullthrows": "^1.1.1"
},
"engines": {
"node": ">= 12.0.0",
- "parcel": "^2.6.2"
+ "parcel": "^2.8.3"
},
"funding": {
"type": "opencollective",
@@ -6792,11 +9646,11 @@
}
},
"node_modules/@parcel/node-resolver-core": {
- "version": "2.6.2",
+ "version": "2.8.3",
"license": "MIT",
"dependencies": {
- "@parcel/diagnostic": "2.6.2",
- "@parcel/utils": "2.6.2",
+ "@parcel/diagnostic": "2.8.3",
+ "@parcel/utils": "2.8.3",
"nullthrows": "^1.1.1",
"semver": "^5.7.1"
},
@@ -6809,26 +9663,26 @@
}
},
"node_modules/@parcel/node-resolver-core/node_modules/semver": {
- "version": "5.7.1",
+ "version": "5.7.2",
"license": "ISC",
"bin": {
"semver": "bin/semver"
}
},
"node_modules/@parcel/optimizer-terser": {
- "version": "2.6.2",
+ "version": "2.8.3",
"license": "MIT",
"dependencies": {
- "@parcel/diagnostic": "2.6.2",
- "@parcel/plugin": "2.6.2",
- "@parcel/source-map": "^2.0.0",
- "@parcel/utils": "2.6.2",
+ "@parcel/diagnostic": "2.8.3",
+ "@parcel/plugin": "2.8.3",
+ "@parcel/source-map": "^2.1.1",
+ "@parcel/utils": "2.8.3",
"nullthrows": "^1.1.1",
"terser": "^5.2.0"
},
"engines": {
"node": ">= 12.0.0",
- "parcel": "^2.6.2"
+ "parcel": "^2.8.3"
},
"funding": {
"type": "opencollective",
@@ -6836,15 +9690,15 @@
}
},
"node_modules/@parcel/package-manager": {
- "version": "2.6.2",
+ "version": "2.8.3",
"license": "MIT",
"dependencies": {
- "@parcel/diagnostic": "2.6.2",
- "@parcel/fs": "2.6.2",
- "@parcel/logger": "2.6.2",
- "@parcel/types": "2.6.2",
- "@parcel/utils": "2.6.2",
- "@parcel/workers": "2.6.2",
+ "@parcel/diagnostic": "2.8.3",
+ "@parcel/fs": "2.8.3",
+ "@parcel/logger": "2.8.3",
+ "@parcel/types": "2.8.3",
+ "@parcel/utils": "2.8.3",
+ "@parcel/workers": "2.8.3",
"semver": "^5.7.1"
},
"engines": {
@@ -6855,335 +9709,760 @@
"url": "https://opencollective.com/parcel"
},
"peerDependencies": {
- "@parcel/core": "^2.6.2"
+ "@parcel/core": "^2.8.3"
}
},
"node_modules/@parcel/package-manager/node_modules/semver": {
- "version": "5.7.1",
+ "version": "5.7.2",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver"
+ }
+ },
+ "node_modules/@parcel/packager-js": {
+ "version": "2.8.3",
+ "license": "MIT",
+ "dependencies": {
+ "@parcel/diagnostic": "2.8.3",
+ "@parcel/hash": "2.8.3",
+ "@parcel/plugin": "2.8.3",
+ "@parcel/source-map": "^2.1.1",
+ "@parcel/utils": "2.8.3",
+ "globals": "^13.2.0",
+ "nullthrows": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 12.0.0",
+ "parcel": "^2.8.3"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/packager-raw": {
+ "version": "2.8.3",
+ "license": "MIT",
+ "dependencies": {
+ "@parcel/plugin": "2.8.3"
+ },
+ "engines": {
+ "node": ">= 12.0.0",
+ "parcel": "^2.8.3"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/plugin": {
+ "version": "2.8.3",
+ "license": "MIT",
+ "dependencies": {
+ "@parcel/types": "2.8.3"
+ },
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/reporter-dev-server": {
+ "version": "2.8.3",
+ "license": "MIT",
+ "dependencies": {
+ "@parcel/plugin": "2.8.3",
+ "@parcel/utils": "2.8.3"
+ },
+ "engines": {
+ "node": ">= 12.0.0",
+ "parcel": "^2.8.3"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/resolver-default": {
+ "version": "2.8.3",
+ "license": "MIT",
+ "dependencies": {
+ "@parcel/node-resolver-core": "2.8.3",
+ "@parcel/plugin": "2.8.3"
+ },
+ "engines": {
+ "node": ">= 12.0.0",
+ "parcel": "^2.8.3"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/runtime-js": {
+ "version": "2.8.3",
+ "license": "MIT",
+ "dependencies": {
+ "@parcel/plugin": "2.8.3",
+ "@parcel/utils": "2.8.3",
+ "nullthrows": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 12.0.0",
+ "parcel": "^2.8.3"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/source-map": {
+ "version": "2.1.1",
+ "license": "MIT",
+ "dependencies": {
+ "detect-libc": "^1.0.3"
+ },
+ "engines": {
+ "node": "^12.18.3 || >=14"
+ }
+ },
+ "node_modules/@parcel/transformer-js": {
+ "version": "2.8.3",
+ "license": "MIT",
+ "dependencies": {
+ "@parcel/diagnostic": "2.8.3",
+ "@parcel/plugin": "2.8.3",
+ "@parcel/source-map": "^2.1.1",
+ "@parcel/utils": "2.8.3",
+ "@parcel/workers": "2.8.3",
+ "@swc/helpers": "^0.4.12",
+ "browserslist": "^4.6.6",
+ "detect-libc": "^1.0.3",
+ "nullthrows": "^1.1.1",
+ "regenerator-runtime": "^0.13.7",
+ "semver": "^5.7.1"
+ },
+ "engines": {
+ "node": ">= 12.0.0",
+ "parcel": "^2.8.3"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ },
+ "peerDependencies": {
+ "@parcel/core": "^2.8.3"
+ }
+ },
+ "node_modules/@parcel/transformer-js/node_modules/semver": {
+ "version": "5.7.2",
"license": "ISC",
"bin": {
"semver": "bin/semver"
}
},
- "node_modules/@parcel/packager-js": {
- "version": "2.6.2",
+ "node_modules/@parcel/transformer-json": {
+ "version": "2.8.3",
+ "license": "MIT",
+ "dependencies": {
+ "@parcel/plugin": "2.8.3",
+ "json5": "^2.2.0"
+ },
+ "engines": {
+ "node": ">= 12.0.0",
+ "parcel": "^2.8.3"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/types": {
+ "version": "2.8.3",
+ "license": "MIT",
+ "dependencies": {
+ "@parcel/cache": "2.8.3",
+ "@parcel/diagnostic": "2.8.3",
+ "@parcel/fs": "2.8.3",
+ "@parcel/package-manager": "2.8.3",
+ "@parcel/source-map": "^2.1.1",
+ "@parcel/workers": "2.8.3",
+ "utility-types": "^3.10.0"
+ }
+ },
+ "node_modules/@parcel/utils": {
+ "version": "2.8.3",
+ "license": "MIT",
+ "dependencies": {
+ "@parcel/codeframe": "2.8.3",
+ "@parcel/diagnostic": "2.8.3",
+ "@parcel/hash": "2.8.3",
+ "@parcel/logger": "2.8.3",
+ "@parcel/markdown-ansi": "2.8.3",
+ "@parcel/source-map": "^2.1.1",
+ "chalk": "^4.1.0"
+ },
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher": {
+ "version": "2.5.0",
+ "hasInstallScript": true,
+ "license": "MIT",
+ "dependencies": {
+ "detect-libc": "^1.0.3",
+ "is-glob": "^4.0.3",
+ "micromatch": "^4.0.5",
+ "node-addon-api": "^7.0.0"
+ },
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ },
+ "optionalDependencies": {
+ "@parcel/watcher-android-arm64": "2.5.0",
+ "@parcel/watcher-darwin-arm64": "2.5.0",
+ "@parcel/watcher-darwin-x64": "2.5.0",
+ "@parcel/watcher-freebsd-x64": "2.5.0",
+ "@parcel/watcher-linux-arm-glibc": "2.5.0",
+ "@parcel/watcher-linux-arm-musl": "2.5.0",
+ "@parcel/watcher-linux-arm64-glibc": "2.5.0",
+ "@parcel/watcher-linux-arm64-musl": "2.5.0",
+ "@parcel/watcher-linux-x64-glibc": "2.5.0",
+ "@parcel/watcher-linux-x64-musl": "2.5.0",
+ "@parcel/watcher-win32-arm64": "2.5.0",
+ "@parcel/watcher-win32-ia32": "2.5.0",
+ "@parcel/watcher-win32-x64": "2.5.0"
+ }
+ },
+ "node_modules/@parcel/watcher-darwin-arm64": {
+ "version": "2.5.0",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/workers": {
+ "version": "2.8.3",
+ "license": "MIT",
+ "dependencies": {
+ "@parcel/diagnostic": "2.8.3",
+ "@parcel/logger": "2.8.3",
+ "@parcel/types": "2.8.3",
+ "@parcel/utils": "2.8.3",
+ "chrome-trace-event": "^1.0.2",
+ "nullthrows": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ },
+ "peerDependencies": {
+ "@parcel/core": "^2.8.3"
+ }
+ },
+ "node_modules/@pkgjs/parseargs": {
+ "version": "0.11.0",
+ "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
+ "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
+ "license": "MIT",
+ "optional": true,
+ "engines": {
+ "node": ">=14"
+ }
+ },
+ "node_modules/@pmmmwh/react-refresh-webpack-plugin": {
+ "version": "0.5.11",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-html-community": "^0.0.8",
+ "common-path-prefix": "^3.0.0",
+ "core-js-pure": "^3.23.3",
+ "error-stack-parser": "^2.0.6",
+ "find-up": "^5.0.0",
+ "html-entities": "^2.1.0",
+ "loader-utils": "^2.0.4",
+ "schema-utils": "^3.0.0",
+ "source-map": "^0.7.3"
+ },
+ "engines": {
+ "node": ">= 10.13"
+ },
+ "peerDependencies": {
+ "@types/webpack": "4.x || 5.x",
+ "react-refresh": ">=0.10.0 <1.0.0",
+ "sockjs-client": "^1.4.0",
+ "type-fest": ">=0.17.0 <5.0.0",
+ "webpack": ">=4.43.0 <6.0.0",
+ "webpack-dev-server": "3.x || 4.x",
+ "webpack-hot-middleware": "2.x",
+ "webpack-plugin-serve": "0.x || 1.x"
+ },
+ "peerDependenciesMeta": {
+ "@types/webpack": {
+ "optional": true
+ },
+ "sockjs-client": {
+ "optional": true
+ },
+ "type-fest": {
+ "optional": true
+ },
+ "webpack-dev-server": {
+ "optional": true
+ },
+ "webpack-hot-middleware": {
+ "optional": true
+ },
+ "webpack-plugin-serve": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/schema-utils": {
+ "version": "3.3.0",
+ "license": "MIT",
+ "dependencies": {
+ "@types/json-schema": "^7.0.8",
+ "ajv": "^6.12.5",
+ "ajv-keywords": "^3.5.2"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ }
+ },
+ "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/source-map": {
+ "version": "0.7.4",
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@pnpm/config.env-replace": {
+ "version": "1.1.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12.22.0"
+ }
+ },
+ "node_modules/@pnpm/network.ca-file": {
+ "version": "1.0.2",
+ "license": "MIT",
+ "dependencies": {
+ "graceful-fs": "4.2.10"
+ },
+ "engines": {
+ "node": ">=12.22.0"
+ }
+ },
+ "node_modules/@pnpm/network.ca-file/node_modules/graceful-fs": {
+ "version": "4.2.10",
+ "license": "ISC"
+ },
+ "node_modules/@pnpm/npm-conf": {
+ "version": "2.3.1",
+ "license": "MIT",
+ "dependencies": {
+ "@pnpm/config.env-replace": "^1.1.0",
+ "@pnpm/network.ca-file": "^1.0.1",
+ "config-chain": "^1.1.11"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@polka/url": {
+ "version": "1.0.0-next.28",
+ "license": "MIT"
+ },
+ "node_modules/@popperjs/core": {
+ "version": "2.11.8",
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/popperjs"
+ }
+ },
+ "node_modules/@remix-run/router": {
+ "version": "1.21.0",
+ "license": "MIT",
+ "peer": true,
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/@restart/context": {
+ "version": "2.1.4",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": ">=16.3.2"
+ }
+ },
+ "node_modules/@restart/hooks": {
+ "version": "0.4.16",
+ "license": "MIT",
+ "dependencies": {
+ "dequal": "^2.0.3"
+ },
+ "peerDependencies": {
+ "react": ">=16.8.0"
+ }
+ },
+ "node_modules/@rtsao/scc": {
+ "version": "1.1.0",
+ "license": "MIT"
+ },
+ "node_modules/@segment/loosely-validate-event": {
+ "version": "2.0.0",
+ "dependencies": {
+ "component-type": "^1.2.1",
+ "join-component": "^1.1.0"
+ }
+ },
+ "node_modules/@semantic-release/changelog": {
+ "version": "6.0.3",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@semantic-release/error": "^3.0.0",
+ "aggregate-error": "^3.0.0",
+ "fs-extra": "^11.0.0",
+ "lodash": "^4.17.4"
+ },
+ "engines": {
+ "node": ">=14.17"
+ },
+ "peerDependencies": {
+ "semantic-release": ">=18.0.0"
+ }
+ },
+ "node_modules/@semantic-release/commit-analyzer": {
+ "version": "9.0.2",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@parcel/diagnostic": "2.6.2",
- "@parcel/hash": "2.6.2",
- "@parcel/plugin": "2.6.2",
- "@parcel/source-map": "^2.0.0",
- "@parcel/utils": "2.6.2",
- "globals": "^13.2.0",
- "nullthrows": "^1.1.1"
+ "conventional-changelog-angular": "^5.0.0",
+ "conventional-commits-filter": "^2.0.0",
+ "conventional-commits-parser": "^3.2.3",
+ "debug": "^4.0.0",
+ "import-from": "^4.0.0",
+ "lodash": "^4.17.4",
+ "micromatch": "^4.0.2"
},
"engines": {
- "node": ">= 12.0.0",
- "parcel": "^2.6.2"
+ "node": ">=14.17"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "peerDependencies": {
+ "semantic-release": ">=18.0.0-beta.1"
}
},
- "node_modules/@parcel/packager-js/node_modules/globals": {
- "version": "13.20.0",
+ "node_modules/@semantic-release/commit-analyzer/node_modules/debug": {
+ "version": "4.4.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "type-fest": "^0.20.2"
+ "ms": "^2.1.3"
},
"engines": {
- "node": ">=8"
+ "node": ">=6.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
}
},
- "node_modules/@parcel/packager-js/node_modules/type-fest": {
- "version": "0.20.2",
- "license": "(MIT OR CC0-1.0)",
+ "node_modules/@semantic-release/error": {
+ "version": "3.0.0",
+ "dev": true,
+ "license": "MIT",
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=14.17"
}
},
- "node_modules/@parcel/packager-raw": {
- "version": "2.6.2",
+ "node_modules/@semantic-release/git": {
+ "version": "10.0.1",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@parcel/plugin": "2.6.2"
+ "@semantic-release/error": "^3.0.0",
+ "aggregate-error": "^3.0.0",
+ "debug": "^4.0.0",
+ "dir-glob": "^3.0.0",
+ "execa": "^5.0.0",
+ "lodash": "^4.17.4",
+ "micromatch": "^4.0.0",
+ "p-reduce": "^2.0.0"
},
"engines": {
- "node": ">= 12.0.0",
- "parcel": "^2.6.2"
+ "node": ">=14.17"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "peerDependencies": {
+ "semantic-release": ">=18.0.0"
}
},
- "node_modules/@parcel/plugin": {
- "version": "2.6.2",
+ "node_modules/@semantic-release/git/node_modules/debug": {
+ "version": "4.4.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@parcel/types": "2.6.2"
+ "ms": "^2.1.3"
},
"engines": {
- "node": ">= 12.0.0"
+ "node": ">=6.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
}
},
- "node_modules/@parcel/reporter-dev-server": {
- "version": "2.6.2",
+ "node_modules/@semantic-release/github": {
+ "version": "8.1.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@parcel/plugin": "2.6.2",
- "@parcel/utils": "2.6.2"
+ "@octokit/core": "^4.2.1",
+ "@octokit/plugin-paginate-rest": "^6.1.2",
+ "@octokit/plugin-retry": "^4.1.3",
+ "@octokit/plugin-throttling": "^5.2.3",
+ "@semantic-release/error": "^3.0.0",
+ "aggregate-error": "^3.0.0",
+ "debug": "^4.0.0",
+ "dir-glob": "^3.0.0",
+ "fs-extra": "^11.0.0",
+ "globby": "^11.0.0",
+ "http-proxy-agent": "^7.0.0",
+ "https-proxy-agent": "^7.0.0",
+ "issue-parser": "^6.0.0",
+ "lodash": "^4.17.4",
+ "mime": "^3.0.0",
+ "p-filter": "^2.0.0",
+ "url-join": "^4.0.0"
},
"engines": {
- "node": ">= 12.0.0",
- "parcel": "^2.6.2"
+ "node": ">=14.17"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "peerDependencies": {
+ "semantic-release": ">=18.0.0-beta.1"
}
},
- "node_modules/@parcel/resolver-default": {
- "version": "2.6.2",
+ "node_modules/@semantic-release/github/node_modules/agent-base": {
+ "version": "7.1.3",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 14"
+ }
+ },
+ "node_modules/@semantic-release/github/node_modules/debug": {
+ "version": "4.4.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@parcel/node-resolver-core": "2.6.2",
- "@parcel/plugin": "2.6.2"
+ "ms": "^2.1.3"
},
"engines": {
- "node": ">= 12.0.0",
- "parcel": "^2.6.2"
+ "node": ">=6.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
}
},
- "node_modules/@parcel/runtime-js": {
- "version": "2.6.2",
+ "node_modules/@semantic-release/github/node_modules/http-proxy-agent": {
+ "version": "7.0.2",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@parcel/plugin": "2.6.2",
- "@parcel/utils": "2.6.2",
- "nullthrows": "^1.1.1"
+ "agent-base": "^7.1.0",
+ "debug": "^4.3.4"
},
"engines": {
- "node": ">= 12.0.0",
- "parcel": "^2.6.2"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "node": ">= 14"
}
},
- "node_modules/@parcel/source-map": {
- "version": "2.1.1",
+ "node_modules/@semantic-release/github/node_modules/https-proxy-agent": {
+ "version": "7.0.6",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "detect-libc": "^1.0.3"
+ "agent-base": "^7.1.2",
+ "debug": "4"
},
"engines": {
- "node": "^12.18.3 || >=14"
+ "node": ">= 14"
}
},
- "node_modules/@parcel/transformer-js": {
- "version": "2.6.2",
+ "node_modules/@semantic-release/npm": {
+ "version": "9.0.2",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@parcel/diagnostic": "2.6.2",
- "@parcel/plugin": "2.6.2",
- "@parcel/source-map": "^2.0.0",
- "@parcel/utils": "2.6.2",
- "@parcel/workers": "2.6.2",
- "@swc/helpers": "^0.4.2",
- "browserslist": "^4.6.6",
- "detect-libc": "^1.0.3",
- "nullthrows": "^1.1.1",
- "regenerator-runtime": "^0.13.7",
- "semver": "^5.7.1"
+ "@semantic-release/error": "^3.0.0",
+ "aggregate-error": "^3.0.0",
+ "execa": "^5.0.0",
+ "fs-extra": "^11.0.0",
+ "lodash": "^4.17.15",
+ "nerf-dart": "^1.0.0",
+ "normalize-url": "^6.0.0",
+ "npm": "^8.3.0",
+ "rc": "^1.2.8",
+ "read-pkg": "^5.0.0",
+ "registry-auth-token": "^5.0.0",
+ "semver": "^7.1.2",
+ "tempy": "^1.0.0"
},
"engines": {
- "node": ">= 12.0.0",
- "parcel": "^2.6.2"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "node": ">=16 || ^14.17"
},
"peerDependencies": {
- "@parcel/core": "^2.6.2"
+ "semantic-release": ">=19.0.0"
}
},
- "node_modules/@parcel/transformer-js/node_modules/semver": {
- "version": "5.7.1",
+ "node_modules/@semantic-release/npm/node_modules/semver": {
+ "version": "7.6.3",
+ "dev": true,
"license": "ISC",
"bin": {
- "semver": "bin/semver"
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/@parcel/transformer-json": {
- "version": "2.6.2",
+ "node_modules/@semantic-release/release-notes-generator": {
+ "version": "10.0.3",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@parcel/plugin": "2.6.2",
- "json5": "^2.2.0"
+ "conventional-changelog-angular": "^5.0.0",
+ "conventional-changelog-writer": "^5.0.0",
+ "conventional-commits-filter": "^2.0.0",
+ "conventional-commits-parser": "^3.2.3",
+ "debug": "^4.0.0",
+ "get-stream": "^6.0.0",
+ "import-from": "^4.0.0",
+ "into-stream": "^6.0.0",
+ "lodash": "^4.17.4",
+ "read-pkg-up": "^7.0.0"
},
"engines": {
- "node": ">= 12.0.0",
- "parcel": "^2.6.2"
+ "node": ">=14.17"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/@parcel/types": {
- "version": "2.6.2",
- "license": "MIT",
- "dependencies": {
- "@parcel/cache": "2.6.2",
- "@parcel/diagnostic": "2.6.2",
- "@parcel/fs": "2.6.2",
- "@parcel/package-manager": "2.6.2",
- "@parcel/source-map": "^2.0.0",
- "@parcel/workers": "2.6.2",
- "utility-types": "^3.10.0"
+ "peerDependencies": {
+ "semantic-release": ">=18.0.0-beta.1"
}
},
- "node_modules/@parcel/utils": {
- "version": "2.6.2",
+ "node_modules/@semantic-release/release-notes-generator/node_modules/debug": {
+ "version": "4.4.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@parcel/codeframe": "2.6.2",
- "@parcel/diagnostic": "2.6.2",
- "@parcel/hash": "2.6.2",
- "@parcel/logger": "2.6.2",
- "@parcel/markdown-ansi": "2.6.2",
- "@parcel/source-map": "^2.0.0",
- "chalk": "^4.1.0"
+ "ms": "^2.1.3"
},
"engines": {
- "node": ">= 12.0.0"
+ "node": ">=6.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
}
},
- "node_modules/@parcel/watcher": {
- "version": "2.1.0",
- "hasInstallScript": true,
- "license": "MIT",
+ "node_modules/@sideway/address": {
+ "version": "4.1.5",
+ "license": "BSD-3-Clause",
"dependencies": {
- "is-glob": "^4.0.3",
- "micromatch": "^4.0.5",
- "node-addon-api": "^3.2.1",
- "node-gyp-build": "^4.3.0"
- },
- "engines": {
- "node": ">= 10.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "@hapi/hoek": "^9.0.0"
}
},
- "node_modules/@parcel/workers": {
- "version": "2.6.2",
+ "node_modules/@sideway/formula": {
+ "version": "3.0.1",
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/@sideway/pinpoint": {
+ "version": "2.0.0",
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/@sigmacomputing/babel-plugin-lodash": {
+ "version": "3.3.5",
"license": "MIT",
"dependencies": {
- "@parcel/diagnostic": "2.6.2",
- "@parcel/logger": "2.6.2",
- "@parcel/types": "2.6.2",
- "@parcel/utils": "2.6.2",
- "chrome-trace-event": "^1.0.2",
- "nullthrows": "^1.1.1"
+ "@babel/helper-module-imports": "^7.0.0",
+ "@babel/types": "^7.0.0",
+ "glob": "^7.1.1",
+ "lodash": "^4.17.10",
+ "require-package-name": "^2.0.1"
+ }
+ },
+ "node_modules/@sigmacomputing/babel-plugin-lodash/node_modules/glob": {
+ "version": "7.2.3",
+ "license": "ISC",
+ "dependencies": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
},
"engines": {
- "node": ">= 12.0.0"
+ "node": "*"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- },
- "peerDependencies": {
- "@parcel/core": "^2.6.2"
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/@pkgjs/parseargs": {
- "version": "0.11.0",
- "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
- "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
- "optional": true,
- "engines": {
- "node": ">=14"
- }
+ "node_modules/@sinclair/typebox": {
+ "version": "0.27.8",
+ "license": "MIT"
},
- "node_modules/@pmmmwh/react-refresh-webpack-plugin": {
- "version": "0.5.10",
+ "node_modules/@sindresorhus/is": {
+ "version": "4.6.0",
"license": "MIT",
- "dependencies": {
- "ansi-html-community": "^0.0.8",
- "common-path-prefix": "^3.0.0",
- "core-js-pure": "^3.23.3",
- "error-stack-parser": "^2.0.6",
- "find-up": "^5.0.0",
- "html-entities": "^2.1.0",
- "loader-utils": "^2.0.4",
- "schema-utils": "^3.0.0",
- "source-map": "^0.7.3"
- },
"engines": {
- "node": ">= 10.13"
- },
- "peerDependencies": {
- "@types/webpack": "4.x || 5.x",
- "react-refresh": ">=0.10.0 <1.0.0",
- "sockjs-client": "^1.4.0",
- "type-fest": ">=0.17.0 <4.0.0",
- "webpack": ">=4.43.0 <6.0.0",
- "webpack-dev-server": "3.x || 4.x",
- "webpack-hot-middleware": "2.x",
- "webpack-plugin-serve": "0.x || 1.x"
+ "node": ">=10"
},
- "peerDependenciesMeta": {
- "@types/webpack": {
- "optional": true
- },
- "sockjs-client": {
- "optional": true
- },
- "type-fest": {
- "optional": true
- },
- "webpack-dev-server": {
- "optional": true
- },
- "webpack-hot-middleware": {
- "optional": true
- },
- "webpack-plugin-serve": {
- "optional": true
- }
+ "funding": {
+ "url": "https://github.com/sindresorhus/is?sponsor=1"
}
},
- "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/find-up": {
- "version": "5.0.0",
+ "node_modules/@sindresorhus/slugify": {
+ "version": "1.1.2",
"license": "MIT",
"dependencies": {
- "locate-path": "^6.0.0",
- "path-exists": "^4.0.0"
+ "@sindresorhus/transliterate": "^0.1.1",
+ "escape-string-regexp": "^4.0.0"
},
"engines": {
"node": ">=10"
@@ -7192,11 +10471,12 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/locate-path": {
- "version": "6.0.0",
+ "node_modules/@sindresorhus/transliterate": {
+ "version": "0.1.2",
"license": "MIT",
"dependencies": {
- "p-locate": "^5.0.0"
+ "escape-string-regexp": "^2.0.0",
+ "lodash.deburr": "^4.1.0"
},
"engines": {
"node": ">=10"
@@ -7205,478 +10485,536 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/p-locate": {
- "version": "5.0.0",
+ "node_modules/@sindresorhus/transliterate/node_modules/escape-string-regexp": {
+ "version": "2.0.0",
"license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@sinonjs/commons": {
+ "version": "3.0.1",
+ "license": "BSD-3-Clause",
"dependencies": {
- "p-limit": "^3.0.2"
+ "type-detect": "4.0.8"
+ }
+ },
+ "node_modules/@sinonjs/fake-timers": {
+ "version": "10.3.0",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "@sinonjs/commons": "^3.0.0"
+ }
+ },
+ "node_modules/@socket.io/component-emitter": {
+ "version": "3.1.2",
+ "license": "MIT"
+ },
+ "node_modules/@soda/friendly-errors-webpack-plugin": {
+ "version": "1.8.1",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "chalk": "^3.0.0",
+ "error-stack-parser": "^2.0.6",
+ "string-width": "^4.2.3",
+ "strip-ansi": "^6.0.1"
},
"engines": {
- "node": ">=10"
+ "node": ">=8.0.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "peerDependencies": {
+ "webpack": "^4.0.0 || ^5.0.0"
}
},
- "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/schema-utils": {
- "version": "3.1.2",
+ "node_modules/@soda/friendly-errors-webpack-plugin/node_modules/chalk": {
+ "version": "3.0.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/json-schema": "^7.0.8",
- "ajv": "^6.12.5",
- "ajv-keywords": "^3.5.2"
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
},
"engines": {
- "node": ">= 10.13.0"
+ "node": ">=8"
+ }
+ },
+ "node_modules/@svgr/babel-plugin-add-jsx-attribute": {
+ "version": "8.0.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=14"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
+ "type": "github",
+ "url": "https://github.com/sponsors/gregberge"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/source-map": {
- "version": "0.7.4",
- "license": "BSD-3-Clause",
+ "node_modules/@svgr/babel-plugin-remove-jsx-attribute": {
+ "version": "8.0.0",
+ "license": "MIT",
"engines": {
- "node": ">= 8"
+ "node": ">=14"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/gregberge"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@pnpm/config.env-replace": {
- "version": "1.0.0",
- "dev": true,
+ "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": {
+ "version": "8.0.0",
"license": "MIT",
"engines": {
- "node": ">=12.22.0"
+ "node": ">=14"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/gregberge"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@pnpm/network.ca-file": {
- "version": "1.0.2",
- "dev": true,
+ "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": {
+ "version": "8.0.0",
"license": "MIT",
- "dependencies": {
- "graceful-fs": "4.2.10"
- },
"engines": {
- "node": ">=12.22.0"
+ "node": ">=14"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/gregberge"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@pnpm/network.ca-file/node_modules/graceful-fs": {
- "version": "4.2.10",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/@pnpm/npm-conf": {
- "version": "2.1.0",
- "dev": true,
+ "node_modules/@svgr/babel-plugin-svg-dynamic-title": {
+ "version": "8.0.0",
"license": "MIT",
- "dependencies": {
- "@pnpm/config.env-replace": "^1.0.0",
- "@pnpm/network.ca-file": "^1.0.1",
- "config-chain": "^1.1.11"
- },
"engines": {
- "node": ">=12"
+ "node": ">=14"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/gregberge"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@polka/url": {
- "version": "1.0.0-next.21",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@popperjs/core": {
- "version": "2.11.6",
+ "node_modules/@svgr/babel-plugin-svg-em-dimensions": {
+ "version": "8.0.0",
"license": "MIT",
+ "engines": {
+ "node": ">=14"
+ },
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/popperjs"
+ "type": "github",
+ "url": "https://github.com/sponsors/gregberge"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@restart/context": {
- "version": "2.1.4",
+ "node_modules/@svgr/babel-plugin-transform-react-native-svg": {
+ "version": "8.1.0",
"license": "MIT",
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/gregberge"
+ },
"peerDependencies": {
- "react": ">=16.3.2"
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@restart/hooks": {
- "version": "0.4.9",
+ "node_modules/@svgr/babel-plugin-transform-svg-component": {
+ "version": "8.0.0",
"license": "MIT",
- "dependencies": {
- "dequal": "^2.0.2"
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/gregberge"
},
"peerDependencies": {
- "react": ">=16.8.0"
- }
- },
- "node_modules/@segment/loosely-validate-event": {
- "version": "2.0.0",
- "dependencies": {
- "component-type": "^1.2.1",
- "join-component": "^1.1.0"
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@semantic-release/changelog": {
- "version": "6.0.2",
- "dev": true,
+ "node_modules/@svgr/babel-preset": {
+ "version": "8.1.0",
"license": "MIT",
"dependencies": {
- "@semantic-release/error": "^3.0.0",
- "aggregate-error": "^3.0.0",
- "fs-extra": "^11.0.0",
- "lodash": "^4.17.4"
+ "@svgr/babel-plugin-add-jsx-attribute": "8.0.0",
+ "@svgr/babel-plugin-remove-jsx-attribute": "8.0.0",
+ "@svgr/babel-plugin-remove-jsx-empty-expression": "8.0.0",
+ "@svgr/babel-plugin-replace-jsx-attribute-value": "8.0.0",
+ "@svgr/babel-plugin-svg-dynamic-title": "8.0.0",
+ "@svgr/babel-plugin-svg-em-dimensions": "8.0.0",
+ "@svgr/babel-plugin-transform-react-native-svg": "8.1.0",
+ "@svgr/babel-plugin-transform-svg-component": "8.0.0"
},
"engines": {
- "node": ">=14.17"
+ "node": ">=14"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/gregberge"
},
"peerDependencies": {
- "semantic-release": ">=18.0.0"
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@semantic-release/commit-analyzer": {
- "version": "9.0.2",
+ "node_modules/@svgr/cli": {
+ "version": "6.5.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "conventional-changelog-angular": "^5.0.0",
- "conventional-commits-filter": "^2.0.0",
- "conventional-commits-parser": "^3.2.3",
- "debug": "^4.0.0",
- "import-from": "^4.0.0",
- "lodash": "^4.17.4",
- "micromatch": "^4.0.2"
+ "@svgr/core": "^6.5.1",
+ "@svgr/plugin-jsx": "^6.5.1",
+ "@svgr/plugin-prettier": "^6.5.1",
+ "@svgr/plugin-svgo": "^6.5.1",
+ "camelcase": "^6.2.0",
+ "chalk": "^4.1.2",
+ "commander": "^9.4.1",
+ "dashify": "^2.0.0",
+ "glob": "^8.0.3"
+ },
+ "bin": {
+ "svgr": "bin/svgr"
},
"engines": {
- "node": ">=14.17"
+ "node": ">=10"
},
- "peerDependencies": {
- "semantic-release": ">=18.0.0-beta.1"
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/gregberge"
}
},
- "node_modules/@semantic-release/error": {
- "version": "3.0.0",
+ "node_modules/@svgr/cli/node_modules/@svgr/babel-plugin-add-jsx-attribute": {
+ "version": "6.5.1",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=14.17"
+ "node": ">=10"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/gregberge"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@semantic-release/git": {
- "version": "10.0.1",
+ "node_modules/@svgr/cli/node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": {
+ "version": "6.5.1",
"dev": true,
"license": "MIT",
- "dependencies": {
- "@semantic-release/error": "^3.0.0",
- "aggregate-error": "^3.0.0",
- "debug": "^4.0.0",
- "dir-glob": "^3.0.0",
- "execa": "^5.0.0",
- "lodash": "^4.17.4",
- "micromatch": "^4.0.0",
- "p-reduce": "^2.0.0"
- },
"engines": {
- "node": ">=14.17"
+ "node": ">=10"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/gregberge"
},
"peerDependencies": {
- "semantic-release": ">=18.0.0"
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@semantic-release/github": {
- "version": "8.0.7",
+ "node_modules/@svgr/cli/node_modules/@svgr/babel-plugin-svg-dynamic-title": {
+ "version": "6.5.1",
"dev": true,
"license": "MIT",
- "dependencies": {
- "@octokit/rest": "^19.0.0",
- "@semantic-release/error": "^3.0.0",
- "aggregate-error": "^3.0.0",
- "bottleneck": "^2.18.1",
- "debug": "^4.0.0",
- "dir-glob": "^3.0.0",
- "fs-extra": "^11.0.0",
- "globby": "^11.0.0",
- "http-proxy-agent": "^5.0.0",
- "https-proxy-agent": "^5.0.0",
- "issue-parser": "^6.0.0",
- "lodash": "^4.17.4",
- "mime": "^3.0.0",
- "p-filter": "^2.0.0",
- "p-retry": "^4.0.0",
- "url-join": "^4.0.0"
- },
"engines": {
- "node": ">=14.17"
+ "node": ">=10"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/gregberge"
},
"peerDependencies": {
- "semantic-release": ">=18.0.0-beta.1"
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@semantic-release/npm": {
- "version": "9.0.2",
+ "node_modules/@svgr/cli/node_modules/@svgr/babel-plugin-svg-em-dimensions": {
+ "version": "6.5.1",
"dev": true,
"license": "MIT",
- "dependencies": {
- "@semantic-release/error": "^3.0.0",
- "aggregate-error": "^3.0.0",
- "execa": "^5.0.0",
- "fs-extra": "^11.0.0",
- "lodash": "^4.17.15",
- "nerf-dart": "^1.0.0",
- "normalize-url": "^6.0.0",
- "npm": "^8.3.0",
- "rc": "^1.2.8",
- "read-pkg": "^5.0.0",
- "registry-auth-token": "^5.0.0",
- "semver": "^7.1.2",
- "tempy": "^1.0.0"
- },
"engines": {
- "node": ">=16 || ^14.17"
+ "node": ">=10"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/gregberge"
},
"peerDependencies": {
- "semantic-release": ">=19.0.0"
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@semantic-release/npm/node_modules/lru-cache": {
- "version": "6.0.0",
+ "node_modules/@svgr/cli/node_modules/@svgr/babel-plugin-transform-react-native-svg": {
+ "version": "6.5.1",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "yallist": "^4.0.0"
- },
+ "license": "MIT",
"engines": {
"node": ">=10"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/gregberge"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@semantic-release/npm/node_modules/semver": {
- "version": "7.3.8",
+ "node_modules/@svgr/cli/node_modules/@svgr/babel-plugin-transform-svg-component": {
+ "version": "6.5.1",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
},
- "bin": {
- "semver": "bin/semver.js"
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/gregberge"
},
- "engines": {
- "node": ">=10"
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@semantic-release/npm/node_modules/yallist": {
- "version": "4.0.0",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/@semantic-release/release-notes-generator": {
- "version": "10.0.3",
+ "node_modules/@svgr/cli/node_modules/@svgr/babel-preset": {
+ "version": "6.5.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "conventional-changelog-angular": "^5.0.0",
- "conventional-changelog-writer": "^5.0.0",
- "conventional-commits-filter": "^2.0.0",
- "conventional-commits-parser": "^3.2.3",
- "debug": "^4.0.0",
- "get-stream": "^6.0.0",
- "import-from": "^4.0.0",
- "into-stream": "^6.0.0",
- "lodash": "^4.17.4",
- "read-pkg-up": "^7.0.0"
+ "@svgr/babel-plugin-add-jsx-attribute": "^6.5.1",
+ "@svgr/babel-plugin-remove-jsx-attribute": "*",
+ "@svgr/babel-plugin-remove-jsx-empty-expression": "*",
+ "@svgr/babel-plugin-replace-jsx-attribute-value": "^6.5.1",
+ "@svgr/babel-plugin-svg-dynamic-title": "^6.5.1",
+ "@svgr/babel-plugin-svg-em-dimensions": "^6.5.1",
+ "@svgr/babel-plugin-transform-react-native-svg": "^6.5.1",
+ "@svgr/babel-plugin-transform-svg-component": "^6.5.1"
},
"engines": {
- "node": ">=14.17"
+ "node": ">=10"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/gregberge"
},
"peerDependencies": {
- "semantic-release": ">=18.0.0-beta.1"
- }
- },
- "node_modules/@sideway/address": {
- "version": "4.1.4",
- "license": "BSD-3-Clause",
- "dependencies": {
- "@hapi/hoek": "^9.0.0"
+ "@babel/core": "^7.0.0-0"
}
},
- "node_modules/@sideway/formula": {
- "version": "3.0.1",
- "license": "BSD-3-Clause"
- },
- "node_modules/@sideway/pinpoint": {
- "version": "2.0.0",
- "license": "BSD-3-Clause"
- },
- "node_modules/@sinclair/typebox": {
- "version": "0.27.8",
- "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz",
- "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==",
- "dev": true
- },
- "node_modules/@sindresorhus/is": {
- "version": "4.6.0",
+ "node_modules/@svgr/cli/node_modules/@svgr/core": {
+ "version": "6.5.1",
+ "dev": true,
"license": "MIT",
+ "dependencies": {
+ "@babel/core": "^7.19.6",
+ "@svgr/babel-preset": "^6.5.1",
+ "@svgr/plugin-jsx": "^6.5.1",
+ "camelcase": "^6.2.0",
+ "cosmiconfig": "^7.0.1"
+ },
"engines": {
"node": ">=10"
},
"funding": {
- "url": "https://github.com/sindresorhus/is?sponsor=1"
+ "type": "github",
+ "url": "https://github.com/sponsors/gregberge"
}
},
- "node_modules/@sindresorhus/slugify": {
- "version": "1.1.2",
+ "node_modules/@svgr/cli/node_modules/@svgr/hast-util-to-babel-ast": {
+ "version": "6.5.1",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@sindresorhus/transliterate": "^0.1.1",
- "escape-string-regexp": "^4.0.0"
+ "@babel/types": "^7.20.0",
+ "entities": "^4.4.0"
},
"engines": {
"node": ">=10"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "type": "github",
+ "url": "https://github.com/sponsors/gregberge"
}
},
- "node_modules/@sindresorhus/slugify/node_modules/escape-string-regexp": {
- "version": "4.0.0",
+ "node_modules/@svgr/cli/node_modules/@svgr/plugin-jsx": {
+ "version": "6.5.1",
+ "dev": true,
"license": "MIT",
+ "dependencies": {
+ "@babel/core": "^7.19.6",
+ "@svgr/babel-preset": "^6.5.1",
+ "@svgr/hast-util-to-babel-ast": "^6.5.1",
+ "svg-parser": "^2.0.4"
+ },
"engines": {
"node": ">=10"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "type": "github",
+ "url": "https://github.com/sponsors/gregberge"
+ },
+ "peerDependencies": {
+ "@svgr/core": "^6.0.0"
}
},
- "node_modules/@sindresorhus/transliterate": {
- "version": "0.1.2",
+ "node_modules/@svgr/cli/node_modules/@svgr/plugin-svgo": {
+ "version": "6.5.1",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "escape-string-regexp": "^2.0.0",
- "lodash.deburr": "^4.1.0"
+ "cosmiconfig": "^7.0.1",
+ "deepmerge": "^4.2.2",
+ "svgo": "^2.8.0"
},
"engines": {
"node": ">=10"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@sindresorhus/transliterate/node_modules/escape-string-regexp": {
- "version": "2.0.0",
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@sinonjs/commons": {
- "version": "1.8.6",
- "dev": true,
- "license": "BSD-3-Clause",
- "dependencies": {
- "type-detect": "4.0.8"
- }
- },
- "node_modules/@sinonjs/fake-timers": {
- "version": "10.3.0",
- "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz",
- "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==",
- "dev": true,
- "dependencies": {
- "@sinonjs/commons": "^3.0.0"
+ "type": "github",
+ "url": "https://github.com/sponsors/gregberge"
+ },
+ "peerDependencies": {
+ "@svgr/core": "*"
}
},
- "node_modules/@sinonjs/fake-timers/node_modules/@sinonjs/commons": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz",
- "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==",
+ "node_modules/@svgr/cli/node_modules/cosmiconfig": {
+ "version": "7.1.0",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "type-detect": "4.0.8"
+ "@types/parse-json": "^4.0.0",
+ "import-fresh": "^3.2.1",
+ "parse-json": "^5.0.0",
+ "path-type": "^4.0.0",
+ "yaml": "^1.10.0"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/@socket.io/component-emitter": {
- "version": "3.1.0",
- "license": "MIT"
- },
- "node_modules/@soda/friendly-errors-webpack-plugin": {
- "version": "1.8.1",
+ "node_modules/@svgr/cli/node_modules/csso": {
+ "version": "4.2.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "chalk": "^3.0.0",
- "error-stack-parser": "^2.0.6",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1"
+ "css-tree": "^1.1.2"
},
"engines": {
"node": ">=8.0.0"
- },
- "peerDependencies": {
- "webpack": "^4.0.0 || ^5.0.0"
}
},
- "node_modules/@soda/friendly-errors-webpack-plugin/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/@svgr/cli/node_modules/svgo": {
+ "version": "2.8.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "@trysound/sax": "0.2.0",
+ "commander": "^7.2.0",
+ "css-select": "^4.1.3",
+ "css-tree": "^1.1.3",
+ "csso": "^4.2.0",
+ "picocolors": "^1.0.0",
+ "stable": "^0.1.8"
},
- "engines": {
- "node": ">=8"
+ "bin": {
+ "svgo": "bin/svgo"
},
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "engines": {
+ "node": ">=10.13.0"
}
},
- "node_modules/@soda/friendly-errors-webpack-plugin/node_modules/chalk": {
- "version": "3.0.0",
+ "node_modules/@svgr/cli/node_modules/svgo/node_modules/commander": {
+ "version": "7.2.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
"engines": {
- "node": ">=8"
+ "node": ">= 10"
}
},
- "node_modules/@soda/friendly-errors-webpack-plugin/node_modules/color-convert": {
- "version": "2.0.1",
+ "node_modules/@svgr/cli/node_modules/yaml": {
+ "version": "1.10.2",
"dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/@svgr/core": {
+ "version": "8.1.0",
"license": "MIT",
"dependencies": {
- "color-name": "~1.1.4"
+ "@babel/core": "^7.21.3",
+ "@svgr/babel-preset": "8.1.0",
+ "camelcase": "^6.2.0",
+ "cosmiconfig": "^8.1.3",
+ "snake-case": "^3.0.4"
},
"engines": {
- "node": ">=7.0.0"
+ "node": ">=14"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/gregberge"
}
},
- "node_modules/@soda/friendly-errors-webpack-plugin/node_modules/color-name": {
- "version": "1.1.4",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@soda/friendly-errors-webpack-plugin/node_modules/has-flag": {
- "version": "4.0.0",
- "dev": true,
+ "node_modules/@svgr/hast-util-to-babel-ast": {
+ "version": "8.0.0",
"license": "MIT",
+ "dependencies": {
+ "@babel/types": "^7.21.3",
+ "entities": "^4.4.0"
+ },
"engines": {
- "node": ">=8"
+ "node": ">=14"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/gregberge"
}
},
- "node_modules/@soda/friendly-errors-webpack-plugin/node_modules/supports-color": {
- "version": "7.2.0",
- "dev": true,
+ "node_modules/@svgr/plugin-jsx": {
+ "version": "8.1.0",
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
+ "@babel/core": "^7.21.3",
+ "@svgr/babel-preset": "8.1.0",
+ "@svgr/hast-util-to-babel-ast": "8.0.0",
+ "svg-parser": "^2.0.4"
},
"engines": {
- "node": ">=8"
+ "node": ">=14"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/gregberge"
+ },
+ "peerDependencies": {
+ "@svgr/core": "*"
}
},
- "node_modules/@svgr/babel-plugin-add-jsx-attribute": {
+ "node_modules/@svgr/plugin-prettier": {
"version": "6.5.1",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "deepmerge": "^4.2.2",
+ "prettier": "^2.7.1"
+ },
"engines": {
"node": ">=10"
},
@@ -7685,14 +11023,17 @@
"url": "https://github.com/sponsors/gregberge"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@svgr/core": "*"
}
},
- "node_modules/@svgr/babel-plugin-remove-jsx-attribute": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-8.0.0.tgz",
- "integrity": "sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==",
- "dev": true,
+ "node_modules/@svgr/plugin-svgo": {
+ "version": "8.1.0",
+ "license": "MIT",
+ "dependencies": {
+ "cosmiconfig": "^8.1.3",
+ "deepmerge": "^4.3.1",
+ "svgo": "^3.0.2"
+ },
"engines": {
"node": ">=14"
},
@@ -7701,16 +11042,37 @@
"url": "https://github.com/sponsors/gregberge"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@svgr/core": "*"
}
},
- "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-8.0.0.tgz",
- "integrity": "sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==",
+ "node_modules/@svgr/webpack": {
+ "version": "6.5.1",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/core": "^7.19.6",
+ "@babel/plugin-transform-react-constant-elements": "^7.18.12",
+ "@babel/preset-env": "^7.19.4",
+ "@babel/preset-react": "^7.18.6",
+ "@babel/preset-typescript": "^7.18.6",
+ "@svgr/core": "^6.5.1",
+ "@svgr/plugin-jsx": "^6.5.1",
+ "@svgr/plugin-svgo": "^6.5.1"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/gregberge"
+ }
+ },
+ "node_modules/@svgr/webpack/node_modules/@svgr/babel-plugin-add-jsx-attribute": {
+ "version": "6.5.1",
"dev": true,
+ "license": "MIT",
"engines": {
- "node": ">=14"
+ "node": ">=10"
},
"funding": {
"type": "github",
@@ -7720,11 +11082,10 @@
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": {
+ "node_modules/@svgr/webpack/node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": {
"version": "6.5.1",
- "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-6.5.1.tgz",
- "integrity": "sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=10"
},
@@ -7736,11 +11097,10 @@
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@svgr/babel-plugin-svg-dynamic-title": {
+ "node_modules/@svgr/webpack/node_modules/@svgr/babel-plugin-svg-dynamic-title": {
"version": "6.5.1",
- "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-6.5.1.tgz",
- "integrity": "sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=10"
},
@@ -7752,11 +11112,10 @@
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@svgr/babel-plugin-svg-em-dimensions": {
+ "node_modules/@svgr/webpack/node_modules/@svgr/babel-plugin-svg-em-dimensions": {
"version": "6.5.1",
- "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-6.5.1.tgz",
- "integrity": "sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=10"
},
@@ -7768,11 +11127,10 @@
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@svgr/babel-plugin-transform-react-native-svg": {
+ "node_modules/@svgr/webpack/node_modules/@svgr/babel-plugin-transform-react-native-svg": {
"version": "6.5.1",
- "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-6.5.1.tgz",
- "integrity": "sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=10"
},
@@ -7784,11 +11142,10 @@
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@svgr/babel-plugin-transform-svg-component": {
+ "node_modules/@svgr/webpack/node_modules/@svgr/babel-plugin-transform-svg-component": {
"version": "6.5.1",
- "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-6.5.1.tgz",
- "integrity": "sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=12"
},
@@ -7800,11 +11157,10 @@
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@svgr/babel-preset": {
+ "node_modules/@svgr/webpack/node_modules/@svgr/babel-preset": {
"version": "6.5.1",
- "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-6.5.1.tgz",
- "integrity": "sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@svgr/babel-plugin-add-jsx-attribute": "^6.5.1",
"@svgr/babel-plugin-remove-jsx-attribute": "*",
@@ -7826,50 +11182,10 @@
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@svgr/cli": {
- "version": "6.5.1",
- "resolved": "https://registry.npmjs.org/@svgr/cli/-/cli-6.5.1.tgz",
- "integrity": "sha512-HdxcV0NeySUU25/wQ1smXspDc7S8Z+TLt3K7pSrEO2FiLVglCRBX5gw+yROGXrcHH5p2Ui4A0xo/pdshfVbBuA==",
- "dev": true,
- "dependencies": {
- "@svgr/core": "^6.5.1",
- "@svgr/plugin-jsx": "^6.5.1",
- "@svgr/plugin-prettier": "^6.5.1",
- "@svgr/plugin-svgo": "^6.5.1",
- "camelcase": "^6.2.0",
- "chalk": "^4.1.2",
- "commander": "^9.4.1",
- "dashify": "^2.0.0",
- "glob": "^8.0.3"
- },
- "bin": {
- "svgr": "bin/svgr"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/gregberge"
- }
- },
- "node_modules/@svgr/cli/node_modules/camelcase": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
- "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
- "dev": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@svgr/core": {
+ "node_modules/@svgr/webpack/node_modules/@svgr/core": {
"version": "6.5.1",
- "resolved": "https://registry.npmjs.org/@svgr/core/-/core-6.5.1.tgz",
- "integrity": "sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@babel/core": "^7.19.6",
"@svgr/babel-preset": "^6.5.1",
@@ -7885,23 +11201,10 @@
"url": "https://github.com/sponsors/gregberge"
}
},
- "node_modules/@svgr/core/node_modules/camelcase": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
- "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
- "dev": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@svgr/hast-util-to-babel-ast": {
+ "node_modules/@svgr/webpack/node_modules/@svgr/hast-util-to-babel-ast": {
"version": "6.5.1",
- "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-6.5.1.tgz",
- "integrity": "sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@babel/types": "^7.20.0",
"entities": "^4.4.0"
@@ -7914,11 +11217,10 @@
"url": "https://github.com/sponsors/gregberge"
}
},
- "node_modules/@svgr/plugin-jsx": {
+ "node_modules/@svgr/webpack/node_modules/@svgr/plugin-jsx": {
"version": "6.5.1",
- "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-6.5.1.tgz",
- "integrity": "sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@babel/core": "^7.19.6",
"@svgr/babel-preset": "^6.5.1",
@@ -7936,14 +11238,14 @@
"@svgr/core": "^6.0.0"
}
},
- "node_modules/@svgr/plugin-prettier": {
+ "node_modules/@svgr/webpack/node_modules/@svgr/plugin-svgo": {
"version": "6.5.1",
- "resolved": "https://registry.npmjs.org/@svgr/plugin-prettier/-/plugin-prettier-6.5.1.tgz",
- "integrity": "sha512-nJTtamrxQjsHcP9vb5PVBiaVW9kEtAt0hzGK8e4+zbaIUHq6RPeR8+SvYaAbIIn1TExFszFuZSz1U08UX7kz7w==",
"dev": true,
+ "license": "MIT",
"dependencies": {
+ "cosmiconfig": "^7.0.1",
"deepmerge": "^4.2.2",
- "prettier": "^2.7.1"
+ "svgo": "^2.8.0"
},
"engines": {
"node": ">=10"
@@ -7956,50 +11258,78 @@
"@svgr/core": "*"
}
},
- "node_modules/@svgr/plugin-svgo": {
- "version": "6.5.1",
- "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-6.5.1.tgz",
- "integrity": "sha512-omvZKf8ixP9z6GWgwbtmP9qQMPX4ODXi+wzbVZgomNFsUIlHA1sf4fThdwTWSsZGgvGAG6yE+b/F5gWUkcZ/iQ==",
+ "node_modules/@svgr/webpack/node_modules/commander": {
+ "version": "7.2.0",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@svgr/webpack/node_modules/cosmiconfig": {
+ "version": "7.1.0",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "cosmiconfig": "^7.0.1",
- "deepmerge": "^4.2.2",
- "svgo": "^2.8.0"
+ "@types/parse-json": "^4.0.0",
+ "import-fresh": "^3.2.1",
+ "parse-json": "^5.0.0",
+ "path-type": "^4.0.0",
+ "yaml": "^1.10.0"
},
"engines": {
"node": ">=10"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/gregberge"
- },
- "peerDependencies": {
- "@svgr/core": "*"
}
},
- "node_modules/@svgr/webpack": {
- "version": "6.5.1",
+ "node_modules/@svgr/webpack/node_modules/csso": {
+ "version": "4.2.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/core": "^7.19.6",
- "@babel/plugin-transform-react-constant-elements": "^7.18.12",
- "@babel/preset-env": "^7.19.4",
- "@babel/preset-react": "^7.18.6",
- "@babel/preset-typescript": "^7.18.6",
- "@svgr/core": "^6.5.1",
- "@svgr/plugin-jsx": "^6.5.1",
- "@svgr/plugin-svgo": "^6.5.1"
+ "css-tree": "^1.1.2"
},
"engines": {
- "node": ">=10"
+ "node": ">=8.0.0"
+ }
+ },
+ "node_modules/@svgr/webpack/node_modules/svgo": {
+ "version": "2.8.0",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@trysound/sax": "0.2.0",
+ "commander": "^7.2.0",
+ "css-select": "^4.1.3",
+ "css-tree": "^1.1.3",
+ "csso": "^4.2.0",
+ "picocolors": "^1.0.0",
+ "stable": "^0.1.8"
},
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/gregberge"
+ "bin": {
+ "svgo": "bin/svgo"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ }
+ },
+ "node_modules/@svgr/webpack/node_modules/yaml": {
+ "version": "1.10.2",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">= 6"
}
},
"node_modules/@swc/helpers": {
+ "version": "0.4.37",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@swc/legacy-helpers": "npm:@swc/helpers@=0.4.14",
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@swc/legacy-helpers": {
+ "name": "@swc/helpers",
"version": "0.4.14",
"license": "MIT",
"dependencies": {
@@ -8018,9 +11348,9 @@
},
"node_modules/@testing-library/dom": {
"version": "9.3.3",
- "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-9.3.3.tgz",
- "integrity": "sha512-fB0R+fa3AUqbLHWyxXa2kGVtf1Fe1ZZFr0Zp6AIbIAzXb2mKbEXl+PCQNUOaq5lbTab5tfctfXRNsWXxa2f7Aw==",
"dev": true,
+ "license": "MIT",
+ "peer": true,
"dependencies": {
"@babel/code-frame": "^7.10.4",
"@babel/runtime": "^7.12.5",
@@ -8036,58 +11366,22 @@
}
},
"node_modules/@testing-library/jest-dom": {
- "version": "6.1.4",
- "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-6.1.4.tgz",
- "integrity": "sha512-wpoYrCYwSZ5/AxcrjLxJmCU6I5QAJXslEeSiMQqaWmP2Kzpd1LvF/qxmAIW2qposULGWq2gw30GgVNFLSc2Jnw==",
+ "version": "6.6.3",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@adobe/css-tools": "^4.3.1",
- "@babel/runtime": "^7.9.2",
+ "@adobe/css-tools": "^4.4.0",
"aria-query": "^5.0.0",
"chalk": "^3.0.0",
"css.escape": "^1.5.1",
- "dom-accessibility-api": "^0.5.6",
- "lodash": "^4.17.15",
+ "dom-accessibility-api": "^0.6.3",
+ "lodash": "^4.17.21",
"redent": "^3.0.0"
},
"engines": {
"node": ">=14",
"npm": ">=6",
"yarn": ">=1"
- },
- "peerDependencies": {
- "@jest/globals": ">= 28",
- "@types/jest": ">= 28",
- "jest": ">= 28",
- "vitest": ">= 0.32"
- },
- "peerDependenciesMeta": {
- "@jest/globals": {
- "optional": true
- },
- "@types/jest": {
- "optional": true
- },
- "jest": {
- "optional": true
- },
- "vitest": {
- "optional": true
- }
- }
- },
- "node_modules/@testing-library/jest-dom/node_modules/ansi-styles": {
- "version": "4.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
"node_modules/@testing-library/jest-dom/node_modules/chalk": {
@@ -8102,97 +11396,43 @@
"node": ">=8"
}
},
- "node_modules/@testing-library/jest-dom/node_modules/color-convert": {
- "version": "2.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/@testing-library/jest-dom/node_modules/color-name": {
- "version": "1.1.4",
+ "node_modules/@testing-library/jest-dom/node_modules/dom-accessibility-api": {
+ "version": "0.6.3",
"dev": true,
"license": "MIT"
},
- "node_modules/@testing-library/jest-dom/node_modules/has-flag": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@testing-library/jest-dom/node_modules/supports-color": {
- "version": "7.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/@testing-library/react": {
- "version": "12.1.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.12.5",
- "@testing-library/dom": "^8.0.0",
- "@types/react-dom": "<18.0.0"
- },
- "engines": {
- "node": ">=12"
- },
- "peerDependencies": {
- "react": "<18.0.0",
- "react-dom": "<18.0.0"
- }
- },
- "node_modules/@testing-library/react-hooks": {
- "version": "8.0.1",
+ "version": "16.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.12.5",
- "react-error-boundary": "^3.1.0"
+ "@babel/runtime": "^7.12.5"
},
"engines": {
- "node": ">=12"
+ "node": ">=18"
},
"peerDependencies": {
- "@types/react": "^16.9.0 || ^17.0.0",
- "react": "^16.9.0 || ^17.0.0",
- "react-dom": "^16.9.0 || ^17.0.0",
- "react-test-renderer": "^16.9.0 || ^17.0.0"
+ "@testing-library/dom": "^10.0.0",
+ "@types/react": "^18.0.0 || ^19.0.0",
+ "@types/react-dom": "^18.0.0 || ^19.0.0",
+ "react": "^18.0.0 || ^19.0.0",
+ "react-dom": "^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
- "react-dom": {
- "optional": true
- },
- "react-test-renderer": {
+ "@types/react-dom": {
"optional": true
}
}
},
"node_modules/@testing-library/user-event": {
- "version": "13.5.0",
- "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-13.5.0.tgz",
- "integrity": "sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==",
+ "version": "14.5.2",
"dev": true,
- "dependencies": {
- "@babel/runtime": "^7.12.5"
- },
+ "license": "MIT",
"engines": {
- "node": ">=10",
+ "node": ">=12",
"npm": ">=6"
},
"peerDependencies": {
@@ -8204,9 +11444,10 @@
"license": "MIT"
},
"node_modules/@tokens-studio/sd-transforms": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/@tokens-studio/sd-transforms/-/sd-transforms-1.2.4.tgz",
- "integrity": "sha512-Blf7Y5D7uieRBTcmyrFxZ/oEB7OYAa/Ns7DJU4/fyV69pvm7DC3K3zHxrFwHSRcoa7C/dFoF3p3AgohkdXzjfA==",
+ "version": "1.2.9",
+ "resolved": "https://registry.npmjs.org/@tokens-studio/sd-transforms/-/sd-transforms-1.2.9.tgz",
+ "integrity": "sha512-doRL3tjhwmSck/9fH0X1mlBA6derw+8wpmi5hbG2vhAmvc8F89MxIN6JCKSIbVIJNvaprDVlQqSzXLG7Ug7F9A==",
+ "license": "MIT",
"dependencies": {
"@bundled-es-modules/deepmerge": "^4.3.1",
"@bundled-es-modules/postcss-calc-ast-parser": "^0.1.6",
@@ -8219,17 +11460,17 @@
"node": ">=18.0.0"
},
"peerDependencies": {
- "style-dictionary": "^4.0.1"
+ "style-dictionary": "^4.1.4"
}
},
"node_modules/@tokens-studio/types": {
- "version": "0.5.1",
- "resolved": "https://registry.npmjs.org/@tokens-studio/types/-/types-0.5.1.tgz",
- "integrity": "sha512-LdCF9ZH5ej4Gb6n58x5fTkhstxjXDZc1SWteMWY6EiddLQJVONMIgYOrWrf1extlkSLjagX8WS0B63bAqeltnA=="
+ "version": "0.5.2",
+ "resolved": "https://registry.npmjs.org/@tokens-studio/types/-/types-0.5.2.tgz",
+ "integrity": "sha512-rzMcZP0bj2E5jaa7Fj0LGgYHysoCrbrxILVbT0ohsCUH5uCHY/u6J7Qw/TE0n6gR9Js/c9ZO9T8mOoz0HdLMbA==",
+ "license": "MIT"
},
"node_modules/@tootallnate/once": {
"version": "2.0.0",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">= 10"
@@ -8242,28 +11483,21 @@
"node": ">=10.13.0"
}
},
- "node_modules/@turist/fetch": {
- "version": "7.2.0",
+ "node_modules/@types/acorn": {
+ "version": "4.0.6",
"license": "MIT",
"dependencies": {
- "@types/node-fetch": "2"
- },
- "peerDependencies": {
- "node-fetch": "2"
+ "@types/estree": "*"
}
},
- "node_modules/@turist/time": {
- "version": "0.0.2",
- "license": "MIT"
- },
"node_modules/@types/aria-query": {
- "version": "5.0.1",
+ "version": "5.0.4",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "peer": true
},
"node_modules/@types/babel__core": {
- "version": "7.20.0",
- "dev": true,
+ "version": "7.20.5",
"license": "MIT",
"dependencies": {
"@babel/parser": "^7.20.7",
@@ -8274,16 +11508,21 @@
}
},
"node_modules/@types/babel__generator": {
- "version": "7.6.4",
- "dev": true,
+ "version": "7.6.8",
"license": "MIT",
"dependencies": {
"@babel/types": "^7.0.0"
}
},
+ "node_modules/@types/babel__helper-plugin-utils": {
+ "version": "7.10.3",
+ "license": "MIT",
+ "dependencies": {
+ "@types/babel__core": "*"
+ }
+ },
"node_modules/@types/babel__template": {
- "version": "7.4.1",
- "dev": true,
+ "version": "7.4.4",
"license": "MIT",
"dependencies": {
"@babel/parser": "^7.1.0",
@@ -8291,21 +11530,19 @@
}
},
"node_modules/@types/babel__traverse": {
- "version": "7.18.3",
- "dev": true,
+ "version": "7.20.6",
"license": "MIT",
"dependencies": {
- "@babel/types": "^7.3.0"
+ "@babel/types": "^7.20.7"
}
},
"node_modules/@types/base64-url": {
- "version": "2.2.0",
+ "version": "2.2.2",
"dev": true,
"license": "MIT"
},
"node_modules/@types/body-parser": {
- "version": "1.19.2",
- "devOptional": true,
+ "version": "1.19.5",
"license": "MIT",
"dependencies": {
"@types/connect": "*",
@@ -8313,15 +11550,14 @@
}
},
"node_modules/@types/bonjour": {
- "version": "3.5.10",
- "devOptional": true,
+ "version": "3.5.13",
"license": "MIT",
"dependencies": {
"@types/node": "*"
}
},
"node_modules/@types/buble": {
- "version": "0.20.1",
+ "version": "0.20.5",
"license": "MIT",
"dependencies": {
"magic-string": "^0.25.0"
@@ -8338,7 +11574,7 @@
}
},
"node_modules/@types/codemirror": {
- "version": "5.60.7",
+ "version": "5.60.15",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8346,7 +11582,7 @@
}
},
"node_modules/@types/common-tags": {
- "version": "1.8.1",
+ "version": "1.8.4",
"license": "MIT"
},
"node_modules/@types/configstore": {
@@ -8354,16 +11590,14 @@
"license": "MIT"
},
"node_modules/@types/connect": {
- "version": "3.4.35",
- "devOptional": true,
+ "version": "3.4.38",
"license": "MIT",
"dependencies": {
"@types/node": "*"
}
},
"node_modules/@types/connect-history-api-fallback": {
- "version": "1.3.5",
- "devOptional": true,
+ "version": "1.5.4",
"license": "MIT",
"dependencies": {
"@types/express-serve-static-core": "*",
@@ -8375,7 +11609,7 @@
"license": "MIT"
},
"node_modules/@types/cors": {
- "version": "2.8.13",
+ "version": "2.8.17",
"license": "MIT",
"dependencies": {
"@types/node": "*"
@@ -8386,12 +11620,12 @@
"license": "MIT"
},
"node_modules/@types/dedent": {
- "version": "0.7.0",
+ "version": "0.7.2",
"dev": true,
"license": "MIT"
},
"node_modules/@types/eslint": {
- "version": "8.21.2",
+ "version": "9.6.1",
"license": "MIT",
"dependencies": {
"@types/estree": "*",
@@ -8399,7 +11633,7 @@
}
},
"node_modules/@types/eslint-scope": {
- "version": "3.7.4",
+ "version": "3.7.7",
"license": "MIT",
"dependencies": {
"@types/eslint": "*",
@@ -8407,2704 +11641,3108 @@
}
},
"node_modules/@types/estree": {
- "version": "1.0.1",
+ "version": "1.0.6",
"license": "MIT"
},
+ "node_modules/@types/estree-jsx": {
+ "version": "1.0.5",
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "*"
+ }
+ },
"node_modules/@types/express": {
- "version": "4.17.17",
- "devOptional": true,
+ "version": "4.17.21",
+ "license": "MIT",
+ "dependencies": {
+ "@types/body-parser": "*",
+ "@types/express-serve-static-core": "^4.17.33",
+ "@types/qs": "*",
+ "@types/serve-static": "*"
+ }
+ },
+ "node_modules/@types/express-serve-static-core": {
+ "version": "5.0.2",
+ "license": "MIT",
+ "dependencies": {
+ "@types/node": "*",
+ "@types/qs": "*",
+ "@types/range-parser": "*",
+ "@types/send": "*"
+ }
+ },
+ "node_modules/@types/express/node_modules/@types/express-serve-static-core": {
+ "version": "4.19.6",
+ "license": "MIT",
+ "dependencies": {
+ "@types/node": "*",
+ "@types/qs": "*",
+ "@types/range-parser": "*",
+ "@types/send": "*"
+ }
+ },
+ "node_modules/@types/extend": {
+ "version": "3.0.4",
+ "license": "MIT"
+ },
+ "node_modules/@types/get-port": {
+ "version": "3.2.0",
+ "license": "MIT"
+ },
+ "node_modules/@types/glob": {
+ "version": "7.2.0",
+ "license": "MIT",
+ "dependencies": {
+ "@types/minimatch": "*",
+ "@types/node": "*"
+ }
+ },
+ "node_modules/@types/graceful-fs": {
+ "version": "4.1.9",
+ "license": "MIT",
+ "dependencies": {
+ "@types/node": "*"
+ }
+ },
+ "node_modules/@types/hast": {
+ "version": "2.3.10",
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^2"
+ }
+ },
+ "node_modules/@types/hoist-non-react-statics": {
+ "version": "3.3.6",
+ "license": "MIT",
+ "dependencies": {
+ "@types/react": "*",
+ "hoist-non-react-statics": "^3.3.0"
+ }
+ },
+ "node_modules/@types/html-minifier-terser": {
+ "version": "6.1.0",
+ "license": "MIT"
+ },
+ "node_modules/@types/http-cache-semantics": {
+ "version": "4.0.4",
+ "license": "MIT"
+ },
+ "node_modules/@types/http-errors": {
+ "version": "2.0.4",
+ "license": "MIT"
+ },
+ "node_modules/@types/http-proxy": {
+ "version": "1.17.15",
+ "license": "MIT",
+ "dependencies": {
+ "@types/node": "*"
+ }
+ },
+ "node_modules/@types/invariant": {
+ "version": "2.2.37",
+ "license": "MIT"
+ },
+ "node_modules/@types/istanbul-lib-coverage": {
+ "version": "2.0.6",
+ "license": "MIT"
+ },
+ "node_modules/@types/istanbul-lib-report": {
+ "version": "3.0.3",
+ "license": "MIT",
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "*"
+ }
+ },
+ "node_modules/@types/istanbul-reports": {
+ "version": "3.0.4",
+ "license": "MIT",
+ "dependencies": {
+ "@types/istanbul-lib-report": "*"
+ }
+ },
+ "node_modules/@types/jest": {
+ "version": "29.5.14",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "expect": "^29.0.0",
+ "pretty-format": "^29.0.0"
+ }
+ },
+ "node_modules/@types/jest/node_modules/ansi-styles": {
+ "version": "5.2.0",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/@types/jest/node_modules/pretty-format": {
+ "version": "29.7.0",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@jest/schemas": "^29.6.3",
+ "ansi-styles": "^5.0.0",
+ "react-is": "^18.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "node_modules/@types/jest/node_modules/react-is": {
+ "version": "18.3.1",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/js-cookie": {
+ "version": "2.2.7",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/jsdom": {
+ "version": "20.0.1",
+ "license": "MIT",
+ "dependencies": {
+ "@types/node": "*",
+ "@types/tough-cookie": "*",
+ "parse5": "^7.0.0"
+ }
+ },
+ "node_modules/@types/json-schema": {
+ "version": "7.0.15",
+ "license": "MIT"
+ },
+ "node_modules/@types/json-stable-stringify": {
+ "version": "1.1.0",
+ "license": "MIT"
+ },
+ "node_modules/@types/json5": {
+ "version": "0.0.29",
+ "license": "MIT"
+ },
+ "node_modules/@types/keyv": {
+ "version": "3.1.4",
+ "license": "MIT",
+ "dependencies": {
+ "@types/node": "*"
+ }
+ },
+ "node_modules/@types/lodash": {
+ "version": "4.17.13",
+ "license": "MIT"
+ },
+ "node_modules/@types/lz-string": {
+ "version": "1.5.0",
+ "deprecated": "This is a stub types definition. lz-string provides its own type definitions, so you do not need this installed.",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "lz-string": "*"
+ }
+ },
+ "node_modules/@types/mdast": {
+ "version": "3.0.15",
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^2"
+ }
+ },
+ "node_modules/@types/mdx": {
+ "version": "2.0.13",
+ "license": "MIT"
+ },
+ "node_modules/@types/mdx-js__react": {
+ "version": "1.5.8",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/react": "*"
+ }
+ },
+ "node_modules/@types/mime": {
+ "version": "1.3.5",
+ "license": "MIT"
+ },
+ "node_modules/@types/minimatch": {
+ "version": "5.1.2",
+ "license": "MIT"
+ },
+ "node_modules/@types/minimist": {
+ "version": "1.2.5",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/mkdirp": {
+ "version": "0.5.2",
+ "license": "MIT",
+ "dependencies": {
+ "@types/node": "*"
+ }
+ },
+ "node_modules/@types/ms": {
+ "version": "0.7.34",
+ "license": "MIT"
+ },
+ "node_modules/@types/node": {
+ "version": "22.10.2",
+ "license": "MIT",
+ "dependencies": {
+ "undici-types": "~6.20.0"
+ }
+ },
+ "node_modules/@types/node-forge": {
+ "version": "1.3.11",
+ "license": "MIT",
+ "dependencies": {
+ "@types/node": "*"
+ }
+ },
+ "node_modules/@types/normalize-package-data": {
+ "version": "2.4.4",
+ "license": "MIT"
+ },
+ "node_modules/@types/parse-json": {
+ "version": "4.0.2",
+ "license": "MIT"
+ },
+ "node_modules/@types/picomatch": {
+ "version": "2.3.4",
+ "license": "MIT",
+ "peer": true
+ },
+ "node_modules/@types/prettier": {
+ "version": "2.7.3",
+ "license": "MIT"
+ },
+ "node_modules/@types/prop-types": {
+ "version": "15.7.14",
+ "license": "MIT"
+ },
+ "node_modules/@types/qs": {
+ "version": "6.9.17",
+ "license": "MIT"
+ },
+ "node_modules/@types/range-parser": {
+ "version": "1.2.7",
+ "license": "MIT"
+ },
+ "node_modules/@types/reach__router": {
+ "version": "1.3.15",
+ "license": "MIT",
+ "dependencies": {
+ "@types/react": "*"
+ }
+ },
+ "node_modules/@types/react": {
+ "version": "18.3.16",
+ "license": "MIT",
+ "dependencies": {
+ "@types/prop-types": "*",
+ "csstype": "^3.0.2"
+ }
+ },
+ "node_modules/@types/react-dom": {
+ "version": "18.3.5",
+ "dev": true,
+ "license": "MIT",
+ "peerDependencies": {
+ "@types/react": "^18.0.0"
+ }
+ },
+ "node_modules/@types/react-helmet": {
+ "version": "6.1.11",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/react": "*"
+ }
+ },
+ "node_modules/@types/react-redux": {
+ "version": "7.1.34",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@types/hoist-non-react-statics": "^3.3.0",
+ "@types/react": "*",
+ "hoist-non-react-statics": "^3.3.0",
+ "redux": "^4.0.0"
+ }
+ },
+ "node_modules/@types/react-responsive": {
+ "version": "8.0.8",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/body-parser": "*",
- "@types/express-serve-static-core": "^4.17.33",
- "@types/qs": "*",
- "@types/serve-static": "*"
+ "@types/react": "*"
}
},
- "node_modules/@types/express-serve-static-core": {
- "version": "4.17.33",
- "devOptional": true,
+ "node_modules/@types/react-table": {
+ "version": "7.7.20",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/node": "*",
- "@types/qs": "*",
- "@types/range-parser": "*"
+ "@types/react": "*"
}
},
- "node_modules/@types/fs-extra": {
- "version": "9.0.13",
+ "node_modules/@types/react-test-renderer": {
+ "version": "18.3.1",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "@types/react": "^18"
+ }
+ },
+ "node_modules/@types/react-transition-group": {
+ "version": "4.4.12",
+ "license": "MIT",
+ "peerDependencies": {
+ "@types/react": "*"
+ }
+ },
+ "node_modules/@types/responselike": {
+ "version": "1.0.3",
+ "license": "MIT",
"dependencies": {
"@types/node": "*"
}
},
- "node_modules/@types/get-port": {
- "version": "3.2.0",
+ "node_modules/@types/retry": {
+ "version": "0.12.0",
"license": "MIT"
},
- "node_modules/@types/glob": {
- "version": "5.0.38",
+ "node_modules/@types/rimraf": {
+ "version": "2.0.5",
"license": "MIT",
"dependencies": {
- "@types/minimatch": "*",
+ "@types/glob": "*",
"@types/node": "*"
}
},
- "node_modules/@types/graceful-fs": {
- "version": "4.1.6",
- "dev": true,
+ "node_modules/@types/semver": {
+ "version": "7.5.8",
+ "license": "MIT"
+ },
+ "node_modules/@types/send": {
+ "version": "0.17.4",
"license": "MIT",
"dependencies": {
+ "@types/mime": "^1",
"@types/node": "*"
}
},
- "node_modules/@types/hast": {
- "version": "2.3.4",
+ "node_modules/@types/serve-index": {
+ "version": "1.9.4",
"license": "MIT",
"dependencies": {
- "@types/unist": "*"
+ "@types/express": "*"
}
},
- "node_modules/@types/hoist-non-react-statics": {
- "version": "3.3.1",
+ "node_modules/@types/serve-static": {
+ "version": "1.15.7",
"license": "MIT",
"dependencies": {
- "@types/react": "*",
- "hoist-non-react-statics": "^3.3.0"
+ "@types/http-errors": "*",
+ "@types/node": "*",
+ "@types/send": "*"
}
},
- "node_modules/@types/html-minifier-terser": {
- "version": "6.1.0",
- "dev": true,
- "license": "MIT"
+ "node_modules/@types/sockjs": {
+ "version": "0.3.36",
+ "license": "MIT",
+ "dependencies": {
+ "@types/node": "*"
+ }
},
- "node_modules/@types/http-cache-semantics": {
- "version": "4.0.1",
+ "node_modules/@types/stack-utils": {
+ "version": "2.0.3",
"license": "MIT"
},
- "node_modules/@types/http-proxy": {
- "version": "1.17.10",
+ "node_modules/@types/tern": {
+ "version": "0.23.9",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/node": "*"
+ "@types/estree": "*"
}
},
- "node_modules/@types/invariant": {
- "version": "2.2.35",
+ "node_modules/@types/tmp": {
+ "version": "0.0.33",
"license": "MIT"
},
- "node_modules/@types/istanbul-lib-coverage": {
- "version": "2.0.4",
+ "node_modules/@types/tough-cookie": {
+ "version": "4.0.5",
"license": "MIT"
},
- "node_modules/@types/istanbul-lib-report": {
- "version": "3.0.0",
+ "node_modules/@types/unist": {
+ "version": "2.0.11",
+ "license": "MIT"
+ },
+ "node_modules/@types/uuid": {
+ "version": "9.0.8",
"dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/warning": {
+ "version": "3.0.3",
+ "license": "MIT"
+ },
+ "node_modules/@types/ws": {
+ "version": "8.5.13",
"license": "MIT",
"dependencies": {
- "@types/istanbul-lib-coverage": "*"
+ "@types/node": "*"
}
},
- "node_modules/@types/istanbul-reports": {
- "version": "3.0.1",
- "dev": true,
+ "node_modules/@types/yargs": {
+ "version": "15.0.19",
"license": "MIT",
"dependencies": {
- "@types/istanbul-lib-report": "*"
+ "@types/yargs-parser": "*"
}
},
- "node_modules/@types/jest": {
- "version": "29.5.10",
- "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.10.tgz",
- "integrity": "sha512-tE4yxKEphEyxj9s4inideLHktW/x6DwesIwWZ9NN1FKf9zbJYsnhBoA9vrHA/IuIOKwPa5PcFBNV4lpMIOEzyQ==",
- "dev": true,
- "dependencies": {
- "expect": "^29.0.0",
- "pretty-format": "^29.0.0"
- }
+ "node_modules/@types/yargs-parser": {
+ "version": "21.0.3",
+ "license": "MIT"
},
- "node_modules/@types/jest/node_modules/ansi-styles": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
- "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
- "dev": true,
+ "node_modules/@types/yoga-layout": {
+ "version": "1.9.2",
+ "license": "MIT"
+ },
+ "node_modules/@typescript-eslint/eslint-plugin": {
+ "version": "5.62.0",
+ "license": "MIT",
+ "dependencies": {
+ "@eslint-community/regexpp": "^4.4.0",
+ "@typescript-eslint/scope-manager": "5.62.0",
+ "@typescript-eslint/type-utils": "5.62.0",
+ "@typescript-eslint/utils": "5.62.0",
+ "debug": "^4.3.4",
+ "graphemer": "^1.4.0",
+ "ignore": "^5.2.0",
+ "natural-compare-lite": "^1.4.0",
+ "semver": "^7.3.7",
+ "tsutils": "^3.21.0"
+ },
"engines": {
- "node": ">=10"
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "@typescript-eslint/parser": "^5.0.0",
+ "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
}
},
- "node_modules/@types/jest/node_modules/pretty-format": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz",
- "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==",
- "dev": true,
+ "node_modules/@typescript-eslint/eslint-plugin/node_modules/debug": {
+ "version": "4.4.0",
+ "license": "MIT",
"dependencies": {
- "@jest/schemas": "^29.6.3",
- "ansi-styles": "^5.0.0",
- "react-is": "^18.0.0"
+ "ms": "^2.1.3"
},
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
}
},
- "node_modules/@types/jest/node_modules/react-is": {
- "version": "18.2.0",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz",
- "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==",
- "dev": true
- },
- "node_modules/@types/js-cookie": {
- "version": "2.2.7",
- "dev": true,
- "license": "MIT"
+ "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": {
+ "version": "7.6.3",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
},
- "node_modules/@types/jsdom": {
- "version": "20.0.1",
- "resolved": "https://registry.npmjs.org/@types/jsdom/-/jsdom-20.0.1.tgz",
- "integrity": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==",
- "dev": true,
+ "node_modules/@typescript-eslint/parser": {
+ "version": "5.62.0",
+ "license": "BSD-2-Clause",
"dependencies": {
- "@types/node": "*",
- "@types/tough-cookie": "*",
- "parse5": "^7.0.0"
+ "@typescript-eslint/scope-manager": "5.62.0",
+ "@typescript-eslint/types": "5.62.0",
+ "@typescript-eslint/typescript-estree": "5.62.0",
+ "debug": "^4.3.4"
+ },
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
}
},
- "node_modules/@types/json-schema": {
- "version": "7.0.11",
- "license": "MIT"
- },
- "node_modules/@types/json5": {
- "version": "0.0.29",
- "license": "MIT"
- },
- "node_modules/@types/keyv": {
- "version": "3.1.4",
+ "node_modules/@typescript-eslint/parser/node_modules/debug": {
+ "version": "4.4.0",
"license": "MIT",
"dependencies": {
- "@types/node": "*"
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
}
},
- "node_modules/@types/lodash": {
- "version": "4.14.194",
- "license": "MIT"
- },
- "node_modules/@types/lz-string": {
- "version": "1.5.0",
- "deprecated": "This is a stub types definition. lz-string provides its own type definitions, so you do not need this installed.",
- "dev": true,
+ "node_modules/@typescript-eslint/scope-manager": {
+ "version": "5.62.0",
"license": "MIT",
"dependencies": {
- "lz-string": "*"
+ "@typescript-eslint/types": "5.62.0",
+ "@typescript-eslint/visitor-keys": "5.62.0"
+ },
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
}
},
- "node_modules/@types/mdast": {
- "version": "3.0.11",
+ "node_modules/@typescript-eslint/type-utils": {
+ "version": "5.62.0",
"license": "MIT",
"dependencies": {
- "@types/unist": "*"
+ "@typescript-eslint/typescript-estree": "5.62.0",
+ "@typescript-eslint/utils": "5.62.0",
+ "debug": "^4.3.4",
+ "tsutils": "^3.21.0"
+ },
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "eslint": "*"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
}
},
- "node_modules/@types/mdx": {
- "version": "2.0.4",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/mdx-js__react": {
- "version": "1.5.5",
- "dev": true,
+ "node_modules/@typescript-eslint/type-utils/node_modules/debug": {
+ "version": "4.4.0",
"license": "MIT",
"dependencies": {
- "@types/react": "*"
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
}
},
- "node_modules/@types/mime": {
- "version": "3.0.1",
- "devOptional": true,
- "license": "MIT"
- },
- "node_modules/@types/minimatch": {
- "version": "5.1.2",
- "license": "MIT"
+ "node_modules/@typescript-eslint/types": {
+ "version": "5.62.0",
+ "license": "MIT",
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ }
},
- "node_modules/@types/minimist": {
- "version": "1.2.2",
- "dev": true,
- "license": "MIT"
+ "node_modules/@typescript-eslint/typescript-estree": {
+ "version": "5.62.0",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "@typescript-eslint/types": "5.62.0",
+ "@typescript-eslint/visitor-keys": "5.62.0",
+ "debug": "^4.3.4",
+ "globby": "^11.1.0",
+ "is-glob": "^4.0.3",
+ "semver": "^7.3.7",
+ "tsutils": "^3.21.0"
+ },
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
+ }
},
- "node_modules/@types/mkdirp": {
- "version": "0.5.2",
+ "node_modules/@typescript-eslint/typescript-estree/node_modules/debug": {
+ "version": "4.4.0",
"license": "MIT",
"dependencies": {
- "@types/node": "*"
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
}
},
- "node_modules/@types/node": {
- "version": "18.15.3",
- "license": "MIT"
+ "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": {
+ "version": "7.6.3",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
},
- "node_modules/@types/node-fetch": {
- "version": "2.6.3",
+ "node_modules/@typescript-eslint/utils": {
+ "version": "5.62.0",
"license": "MIT",
"dependencies": {
- "@types/node": "*",
- "form-data": "^3.0.0"
+ "@eslint-community/eslint-utils": "^4.2.0",
+ "@types/json-schema": "^7.0.9",
+ "@types/semver": "^7.3.12",
+ "@typescript-eslint/scope-manager": "5.62.0",
+ "@typescript-eslint/types": "5.62.0",
+ "@typescript-eslint/typescript-estree": "5.62.0",
+ "eslint-scope": "^5.1.1",
+ "semver": "^7.3.7"
+ },
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
}
},
- "node_modules/@types/node-fetch/node_modules/form-data": {
- "version": "3.0.1",
+ "node_modules/@typescript-eslint/utils/node_modules/eslint-scope": {
+ "version": "5.1.1",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "esrecurse": "^4.3.0",
+ "estraverse": "^4.1.1"
+ },
+ "engines": {
+ "node": ">=8.0.0"
+ }
+ },
+ "node_modules/@typescript-eslint/utils/node_modules/estraverse": {
+ "version": "4.3.0",
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
+ "node_modules/@typescript-eslint/utils/node_modules/semver": {
+ "version": "7.6.3",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/@typescript-eslint/visitor-keys": {
+ "version": "5.62.0",
"license": "MIT",
"dependencies": {
- "asynckit": "^0.4.0",
- "combined-stream": "^1.0.8",
- "mime-types": "^2.1.12"
+ "@typescript-eslint/types": "5.62.0",
+ "eslint-visitor-keys": "^3.3.0"
},
"engines": {
- "node": ">= 6"
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
}
},
- "node_modules/@types/normalize-package-data": {
- "version": "2.4.1",
- "dev": true,
- "license": "MIT"
+ "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": {
+ "version": "3.4.3",
+ "license": "Apache-2.0",
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
},
- "node_modules/@types/parse-json": {
- "version": "4.0.0",
- "license": "MIT"
+ "node_modules/@ungap/structured-clone": {
+ "version": "1.2.1",
+ "license": "ISC"
},
- "node_modules/@types/prettier": {
- "version": "2.7.2",
+ "node_modules/@vanilla-extract/css": {
+ "version": "1.16.1",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "dependencies": {
+ "@emotion/hash": "^0.9.0",
+ "@vanilla-extract/private": "^1.0.6",
+ "css-what": "^6.1.0",
+ "cssesc": "^3.0.0",
+ "csstype": "^3.0.7",
+ "dedent": "^1.5.3",
+ "deep-object-diff": "^1.1.9",
+ "deepmerge": "^4.2.2",
+ "lru-cache": "^10.4.3",
+ "media-query-parser": "^2.0.2",
+ "modern-ahocorasick": "^1.0.0",
+ "picocolors": "^1.0.0"
+ }
},
- "node_modules/@types/prop-types": {
- "version": "15.7.5",
+ "node_modules/@vanilla-extract/css-utils": {
+ "version": "0.1.4",
+ "dev": true,
"license": "MIT"
},
- "node_modules/@types/qs": {
- "version": "6.9.7",
- "devOptional": true,
- "license": "MIT"
+ "node_modules/@vanilla-extract/css/node_modules/dedent": {
+ "version": "1.5.3",
+ "dev": true,
+ "license": "MIT",
+ "peerDependencies": {
+ "babel-plugin-macros": "^3.1.0"
+ },
+ "peerDependenciesMeta": {
+ "babel-plugin-macros": {
+ "optional": true
+ }
+ }
},
- "node_modules/@types/range-parser": {
- "version": "1.2.4",
- "devOptional": true,
- "license": "MIT"
+ "node_modules/@vanilla-extract/css/node_modules/lru-cache": {
+ "version": "10.4.3",
+ "dev": true,
+ "license": "ISC"
},
- "node_modules/@types/reach__router": {
- "version": "1.3.11",
+ "node_modules/@vanilla-extract/integration": {
+ "version": "5.0.1",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/react": "*"
+ "@vanilla-extract/css": "^1.7.2",
+ "esbuild": "^0.11.16",
+ "eval": "0.1.6",
+ "find-up": "^5.0.0",
+ "javascript-stringify": "^2.0.1",
+ "lodash": "^4.17.21",
+ "outdent": "^0.8.0"
}
},
- "node_modules/@types/react": {
- "version": "17.0.80",
- "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.80.tgz",
- "integrity": "sha512-LrgHIu2lEtIo8M7d1FcI3BdwXWoRQwMoXOZ7+dPTW0lYREjmlHl3P0U1VD0i/9tppOuv8/sam7sOjx34TxSFbA==",
- "dependencies": {
- "@types/prop-types": "*",
- "@types/scheduler": "^0.16",
- "csstype": "^3.0.2"
+ "node_modules/@vanilla-extract/private": {
+ "version": "1.0.6",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@vanilla-extract/sprinkles": {
+ "version": "1.6.3",
+ "dev": true,
+ "license": "MIT",
+ "peerDependencies": {
+ "@vanilla-extract/css": "^1.0.0"
}
},
- "node_modules/@types/react-dom": {
- "version": "17.0.11",
- "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-17.0.11.tgz",
- "integrity": "sha512-f96K3k+24RaLGVu/Y2Ng3e1EbZ8/cVJvypZWd7cy0ofCBaf2lcM46xNhycMZ2xGwbBjRql7hOlZ+e2WlJ5MH3Q==",
+ "node_modules/@vanilla-extract/webpack-plugin": {
+ "version": "2.1.12",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@types/react": "*"
+ "@vanilla-extract/integration": "^5.0.0",
+ "chalk": "^4.1.1",
+ "debug": "^4.3.1",
+ "loader-utils": "^2.0.0"
+ },
+ "peerDependencies": {
+ "webpack": "^4.30.0 || ^5.20.2"
}
},
- "node_modules/@types/react-helmet": {
- "version": "6.1.6",
+ "node_modules/@vanilla-extract/webpack-plugin/node_modules/debug": {
+ "version": "4.4.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@types/react": "*"
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
}
},
- "node_modules/@types/react-redux": {
- "version": "7.1.25",
+ "node_modules/@vercel/webpack-asset-relocator-loader": {
+ "version": "1.7.3",
"license": "MIT",
- "peer": true,
"dependencies": {
- "@types/hoist-non-react-statics": "^3.3.0",
- "@types/react": "*",
- "hoist-non-react-statics": "^3.3.0",
- "redux": "^4.0.0"
+ "resolve": "^1.10.0"
}
},
- "node_modules/@types/react-responsive": {
- "version": "8.0.8",
- "resolved": "https://registry.npmjs.org/@types/react-responsive/-/react-responsive-8.0.8.tgz",
- "integrity": "sha512-HDUZtoeFRHrShCGaND23HmXAB9evOOTjkghd2wAasLkuorYYitm5A1XLeKkhXKZppcMBxqB/8V4Snl6hRUTA8g==",
- "dev": true,
+ "node_modules/@webassemblyjs/ast": {
+ "version": "1.14.1",
+ "license": "MIT",
"dependencies": {
- "@types/react": "*"
+ "@webassemblyjs/helper-numbers": "1.13.2",
+ "@webassemblyjs/helper-wasm-bytecode": "1.13.2"
}
},
- "node_modules/@types/react-table": {
- "version": "7.7.19",
- "resolved": "https://registry.npmjs.org/@types/react-table/-/react-table-7.7.19.tgz",
- "integrity": "sha512-47jMa1Pai7ily6BXJCW33IL5ghqmCWs2VM9s+h1D4mCaK5P4uNkZOW3RMMg8MCXBvAJ0v9+sPqKjhid0PaJPQA==",
- "dev": true,
- "dependencies": {
- "@types/react": "*"
- }
+ "node_modules/@webassemblyjs/floating-point-hex-parser": {
+ "version": "1.13.2",
+ "license": "MIT"
},
- "node_modules/@types/react-test-renderer": {
- "version": "18.0.0",
- "dev": true,
+ "node_modules/@webassemblyjs/helper-api-error": {
+ "version": "1.13.2",
+ "license": "MIT"
+ },
+ "node_modules/@webassemblyjs/helper-buffer": {
+ "version": "1.14.1",
+ "license": "MIT"
+ },
+ "node_modules/@webassemblyjs/helper-numbers": {
+ "version": "1.13.2",
"license": "MIT",
"dependencies": {
- "@types/react": "*"
+ "@webassemblyjs/floating-point-hex-parser": "1.13.2",
+ "@webassemblyjs/helper-api-error": "1.13.2",
+ "@xtuc/long": "4.2.2"
}
},
- "node_modules/@types/react-transition-group": {
- "version": "4.4.5",
+ "node_modules/@webassemblyjs/helper-wasm-bytecode": {
+ "version": "1.13.2",
+ "license": "MIT"
+ },
+ "node_modules/@webassemblyjs/helper-wasm-section": {
+ "version": "1.14.1",
"license": "MIT",
"dependencies": {
- "@types/react": "*"
+ "@webassemblyjs/ast": "1.14.1",
+ "@webassemblyjs/helper-buffer": "1.14.1",
+ "@webassemblyjs/helper-wasm-bytecode": "1.13.2",
+ "@webassemblyjs/wasm-gen": "1.14.1"
}
},
- "node_modules/@types/responselike": {
- "version": "1.0.0",
+ "node_modules/@webassemblyjs/ieee754": {
+ "version": "1.13.2",
"license": "MIT",
"dependencies": {
- "@types/node": "*"
+ "@xtuc/ieee754": "^1.2.0"
}
},
- "node_modules/@types/retry": {
- "version": "0.12.0",
- "devOptional": true,
- "license": "MIT"
- },
- "node_modules/@types/rimraf": {
- "version": "2.0.5",
- "license": "MIT",
+ "node_modules/@webassemblyjs/leb128": {
+ "version": "1.13.2",
+ "license": "Apache-2.0",
"dependencies": {
- "@types/glob": "*",
- "@types/node": "*"
+ "@xtuc/long": "4.2.2"
}
},
- "node_modules/@types/scheduler": {
- "version": "0.16.3",
+ "node_modules/@webassemblyjs/utf8": {
+ "version": "1.13.2",
"license": "MIT"
},
- "node_modules/@types/schema-utils": {
- "version": "2.4.0",
- "dev": true,
+ "node_modules/@webassemblyjs/wasm-edit": {
+ "version": "1.14.1",
"license": "MIT",
"dependencies": {
- "schema-utils": "*"
+ "@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"
}
},
- "node_modules/@types/semver": {
- "version": "7.5.8",
- "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz",
- "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==",
- "dev": true
- },
- "node_modules/@types/serve-index": {
- "version": "1.9.1",
- "devOptional": true,
+ "node_modules/@webassemblyjs/wasm-gen": {
+ "version": "1.14.1",
"license": "MIT",
"dependencies": {
- "@types/express": "*"
+ "@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"
}
},
- "node_modules/@types/serve-static": {
- "version": "1.15.1",
- "devOptional": true,
+ "node_modules/@webassemblyjs/wasm-opt": {
+ "version": "1.14.1",
"license": "MIT",
"dependencies": {
- "@types/mime": "*",
- "@types/node": "*"
+ "@webassemblyjs/ast": "1.14.1",
+ "@webassemblyjs/helper-buffer": "1.14.1",
+ "@webassemblyjs/wasm-gen": "1.14.1",
+ "@webassemblyjs/wasm-parser": "1.14.1"
}
},
- "node_modules/@types/sharp": {
- "version": "0.30.5",
+ "node_modules/@webassemblyjs/wasm-parser": {
+ "version": "1.14.1",
"license": "MIT",
"dependencies": {
- "@types/node": "*"
+ "@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"
}
},
- "node_modules/@types/sockjs": {
- "version": "0.3.33",
- "devOptional": true,
+ "node_modules/@webassemblyjs/wast-printer": {
+ "version": "1.14.1",
"license": "MIT",
"dependencies": {
- "@types/node": "*"
+ "@webassemblyjs/ast": "1.14.1",
+ "@xtuc/long": "4.2.2"
}
},
- "node_modules/@types/source-list-map": {
- "version": "0.1.2",
- "devOptional": true,
- "license": "MIT"
- },
- "node_modules/@types/stack-utils": {
- "version": "2.0.1",
- "dev": true,
- "license": "MIT"
+ "node_modules/@webpack-cli/configtest": {
+ "version": "2.1.1",
+ "license": "MIT",
+ "engines": {
+ "node": ">=14.15.0"
+ },
+ "peerDependencies": {
+ "webpack": "5.x.x",
+ "webpack-cli": "5.x.x"
+ }
},
- "node_modules/@types/tapable": {
- "version": "1.0.8",
- "devOptional": true,
- "license": "MIT"
+ "node_modules/@webpack-cli/info": {
+ "version": "2.0.2",
+ "license": "MIT",
+ "engines": {
+ "node": ">=14.15.0"
+ },
+ "peerDependencies": {
+ "webpack": "5.x.x",
+ "webpack-cli": "5.x.x"
+ }
},
- "node_modules/@types/tern": {
- "version": "0.23.4",
- "dev": true,
+ "node_modules/@webpack-cli/serve": {
+ "version": "2.0.5",
"license": "MIT",
- "dependencies": {
- "@types/estree": "*"
+ "engines": {
+ "node": ">=14.15.0"
+ },
+ "peerDependencies": {
+ "webpack": "5.x.x",
+ "webpack-cli": "5.x.x"
+ },
+ "peerDependenciesMeta": {
+ "webpack-dev-server": {
+ "optional": true
+ }
}
},
- "node_modules/@types/tmp": {
- "version": "0.0.33",
+ "node_modules/@xobotyi/scrollbar-width": {
+ "version": "1.9.5",
+ "dev": true,
"license": "MIT"
},
- "node_modules/@types/tough-cookie": {
- "version": "4.0.5",
- "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.5.tgz",
- "integrity": "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==",
- "dev": true
+ "node_modules/@xtuc/ieee754": {
+ "version": "1.2.0",
+ "license": "BSD-3-Clause"
},
- "node_modules/@types/uglify-js": {
- "version": "3.17.1",
- "devOptional": true,
- "license": "MIT",
- "dependencies": {
- "source-map": "^0.6.1"
+ "node_modules/@xtuc/long": {
+ "version": "4.2.2",
+ "license": "Apache-2.0"
+ },
+ "node_modules/@yarnpkg/lockfile": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz",
+ "integrity": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==",
+ "license": "BSD-2-Clause"
+ },
+ "node_modules/@zip.js/zip.js": {
+ "version": "2.7.54",
+ "resolved": "https://registry.npmjs.org/@zip.js/zip.js/-/zip.js-2.7.54.tgz",
+ "integrity": "sha512-qMrJVg2hoEsZJjMJez9yI2+nZlBUxgYzGV3mqcb2B/6T1ihXp0fWBDYlVHlHquuorgNUQP5a8qSmX6HF5rFJNg==",
+ "license": "BSD-3-Clause",
+ "engines": {
+ "bun": ">=0.7.0",
+ "deno": ">=1.0.0",
+ "node": ">=16.5.0"
}
},
- "node_modules/@types/unist": {
+ "node_modules/abab": {
"version": "2.0.6",
- "license": "MIT"
+ "license": "BSD-3-Clause"
},
- "node_modules/@types/uuid": {
- "version": "9.0.1",
- "dev": true,
+ "node_modules/abortcontroller-polyfill": {
+ "version": "1.7.8",
"license": "MIT"
},
- "node_modules/@types/vfile": {
- "version": "3.0.2",
+ "node_modules/accepts": {
+ "version": "1.3.8",
"license": "MIT",
"dependencies": {
- "@types/node": "*",
- "@types/unist": "*",
- "@types/vfile-message": "*"
+ "mime-types": "~2.1.34",
+ "negotiator": "0.6.3"
+ },
+ "engines": {
+ "node": ">= 0.6"
}
},
- "node_modules/@types/vfile-message": {
- "version": "2.0.0",
+ "node_modules/acorn": {
+ "version": "8.14.0",
"license": "MIT",
- "dependencies": {
- "vfile-message": "*"
+ "bin": {
+ "acorn": "bin/acorn"
+ },
+ "engines": {
+ "node": ">=0.4.0"
}
},
- "node_modules/@types/warning": {
- "version": "3.0.0",
- "license": "MIT"
- },
- "node_modules/@types/webpack": {
- "version": "4.41.33",
- "devOptional": true,
+ "node_modules/acorn-globals": {
+ "version": "7.0.1",
"license": "MIT",
"dependencies": {
- "@types/node": "*",
- "@types/tapable": "^1",
- "@types/uglify-js": "*",
- "@types/webpack-sources": "*",
- "anymatch": "^3.0.0",
- "source-map": "^0.6.0"
+ "acorn": "^8.1.0",
+ "acorn-walk": "^8.0.2"
}
},
- "node_modules/@types/webpack-sources": {
- "version": "3.2.0",
- "devOptional": true,
+ "node_modules/acorn-import-assertions": {
+ "version": "1.9.0",
"license": "MIT",
- "dependencies": {
- "@types/node": "*",
- "@types/source-list-map": "*",
- "source-map": "^0.7.3"
+ "peerDependencies": {
+ "acorn": "^8"
}
},
- "node_modules/@types/webpack-sources/node_modules/source-map": {
- "version": "0.7.4",
- "devOptional": true,
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">= 8"
+ "node_modules/acorn-jsx": {
+ "version": "5.3.2",
+ "license": "MIT",
+ "peerDependencies": {
+ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
}
},
- "node_modules/@types/ws": {
- "version": "8.5.4",
- "devOptional": true,
+ "node_modules/acorn-loose": {
+ "version": "8.4.0",
"license": "MIT",
"dependencies": {
- "@types/node": "*"
+ "acorn": "^8.11.0"
+ },
+ "engines": {
+ "node": ">=0.4.0"
}
},
- "node_modules/@types/yargs": {
- "version": "17.0.22",
- "dev": true,
+ "node_modules/acorn-walk": {
+ "version": "8.3.4",
"license": "MIT",
"dependencies": {
- "@types/yargs-parser": "*"
+ "acorn": "^8.11.0"
+ },
+ "engines": {
+ "node": ">=0.4.0"
}
},
- "node_modules/@types/yargs-parser": {
- "version": "21.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/yoga-layout": {
- "version": "1.9.2",
- "license": "MIT"
- },
- "node_modules/@typescript-eslint/eslint-plugin": {
- "version": "5.62.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz",
- "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==",
- "dev": true,
- "dependencies": {
- "@eslint-community/regexpp": "^4.4.0",
- "@typescript-eslint/scope-manager": "5.62.0",
- "@typescript-eslint/type-utils": "5.62.0",
- "@typescript-eslint/utils": "5.62.0",
- "debug": "^4.3.4",
- "graphemer": "^1.4.0",
- "ignore": "^5.2.0",
- "natural-compare-lite": "^1.4.0",
- "semver": "^7.3.7",
- "tsutils": "^3.21.0"
- },
+ "node_modules/address": {
+ "version": "1.2.2",
+ "license": "MIT",
"engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "@typescript-eslint/parser": "^5.0.0",
- "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
+ "node": ">= 10.0.0"
}
},
- "node_modules/@typescript-eslint/eslint-plugin/node_modules/lru-cache": {
- "version": "6.0.0",
- "dev": true,
- "license": "ISC",
+ "node_modules/adjust-sourcemap-loader": {
+ "version": "4.0.0",
+ "license": "MIT",
"dependencies": {
- "yallist": "^4.0.0"
+ "loader-utils": "^2.0.0",
+ "regex-parser": "^2.2.11"
},
"engines": {
- "node": ">=10"
+ "node": ">=8.9"
}
},
- "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": {
- "version": "7.3.8",
- "dev": true,
- "license": "ISC",
+ "node_modules/agent-base": {
+ "version": "6.0.2",
+ "license": "MIT",
"dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
+ "debug": "4"
},
"engines": {
- "node": ">=10"
+ "node": ">= 6.0.0"
}
},
- "node_modules/@typescript-eslint/eslint-plugin/node_modules/yallist": {
- "version": "4.0.0",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/@typescript-eslint/experimental-utils": {
- "version": "4.33.0",
+ "node_modules/agent-base/node_modules/debug": {
+ "version": "4.4.0",
"license": "MIT",
"dependencies": {
- "@types/json-schema": "^7.0.7",
- "@typescript-eslint/scope-manager": "4.33.0",
- "@typescript-eslint/types": "4.33.0",
- "@typescript-eslint/typescript-estree": "4.33.0",
- "eslint-scope": "^5.1.1",
- "eslint-utils": "^3.0.0"
+ "ms": "^2.1.3"
},
"engines": {
- "node": "^10.12.0 || >=12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
+ "node": ">=6.0"
},
- "peerDependencies": {
- "eslint": "*"
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
}
},
- "node_modules/@typescript-eslint/experimental-utils/node_modules/@typescript-eslint/scope-manager": {
- "version": "4.33.0",
+ "node_modules/aggregate-error": {
+ "version": "3.1.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@typescript-eslint/types": "4.33.0",
- "@typescript-eslint/visitor-keys": "4.33.0"
+ "clean-stack": "^2.0.0",
+ "indent-string": "^4.0.0"
},
"engines": {
- "node": "^8.10.0 || ^10.13.0 || >=11.10.1"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
+ "node": ">=8"
}
},
- "node_modules/@typescript-eslint/experimental-utils/node_modules/@typescript-eslint/types": {
- "version": "4.33.0",
+ "node_modules/ajv": {
+ "version": "6.12.6",
"license": "MIT",
- "engines": {
- "node": "^8.10.0 || ^10.13.0 || >=11.10.1"
+ "dependencies": {
+ "fast-deep-equal": "^3.1.1",
+ "fast-json-stable-stringify": "^2.0.0",
+ "json-schema-traverse": "^0.4.1",
+ "uri-js": "^4.2.2"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
+ "type": "github",
+ "url": "https://github.com/sponsors/epoberezkin"
}
},
- "node_modules/@typescript-eslint/experimental-utils/node_modules/@typescript-eslint/typescript-estree": {
- "version": "4.33.0",
- "license": "BSD-2-Clause",
+ "node_modules/ajv-formats": {
+ "version": "2.1.1",
+ "license": "MIT",
"dependencies": {
- "@typescript-eslint/types": "4.33.0",
- "@typescript-eslint/visitor-keys": "4.33.0",
- "debug": "^4.3.1",
- "globby": "^11.0.3",
- "is-glob": "^4.0.1",
- "semver": "^7.3.5",
- "tsutils": "^3.21.0"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
+ "ajv": "^8.0.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
+ "peerDependencies": {
+ "ajv": "^8.0.0"
},
"peerDependenciesMeta": {
- "typescript": {
+ "ajv": {
"optional": true
}
}
},
- "node_modules/@typescript-eslint/experimental-utils/node_modules/@typescript-eslint/visitor-keys": {
- "version": "4.33.0",
+ "node_modules/ajv-formats/node_modules/ajv": {
+ "version": "8.17.1",
"license": "MIT",
"dependencies": {
- "@typescript-eslint/types": "4.33.0",
- "eslint-visitor-keys": "^2.0.0"
- },
- "engines": {
- "node": "^8.10.0 || ^10.13.0 || >=11.10.1"
+ "fast-deep-equal": "^3.1.3",
+ "fast-uri": "^3.0.1",
+ "json-schema-traverse": "^1.0.0",
+ "require-from-string": "^2.0.2"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
+ "type": "github",
+ "url": "https://github.com/sponsors/epoberezkin"
}
},
- "node_modules/@typescript-eslint/experimental-utils/node_modules/lru-cache": {
- "version": "6.0.0",
- "license": "ISC",
+ "node_modules/ajv-formats/node_modules/json-schema-traverse": {
+ "version": "1.0.0",
+ "license": "MIT"
+ },
+ "node_modules/ajv-keywords": {
+ "version": "3.5.2",
+ "license": "MIT",
+ "peerDependencies": {
+ "ajv": "^6.9.1"
+ }
+ },
+ "node_modules/algoliasearch": {
+ "version": "5.17.0",
+ "license": "MIT",
"dependencies": {
- "yallist": "^4.0.0"
+ "@algolia/client-abtesting": "5.17.0",
+ "@algolia/client-analytics": "5.17.0",
+ "@algolia/client-common": "5.17.0",
+ "@algolia/client-insights": "5.17.0",
+ "@algolia/client-personalization": "5.17.0",
+ "@algolia/client-query-suggestions": "5.17.0",
+ "@algolia/client-search": "5.17.0",
+ "@algolia/ingestion": "1.17.0",
+ "@algolia/monitoring": "1.17.0",
+ "@algolia/recommend": "5.17.0",
+ "@algolia/requester-browser-xhr": "5.17.0",
+ "@algolia/requester-fetch": "5.17.0",
+ "@algolia/requester-node-http": "5.17.0"
},
"engines": {
- "node": ">=10"
+ "node": ">= 14.0.0"
}
},
- "node_modules/@typescript-eslint/experimental-utils/node_modules/semver": {
- "version": "7.5.0",
- "license": "ISC",
+ "node_modules/analytics-node": {
+ "version": "6.2.0",
+ "license": "MIT",
"dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
+ "@segment/loosely-validate-event": "^2.0.0",
+ "axios": "^0.27.2",
+ "axios-retry": "3.2.0",
+ "lodash.isstring": "^4.0.1",
+ "md5": "^2.2.1",
+ "ms": "^2.0.0",
+ "remove-trailing-slash": "^0.1.0",
+ "uuid": "^8.3.2"
},
"engines": {
- "node": ">=10"
+ "node": ">=4"
}
},
- "node_modules/@typescript-eslint/experimental-utils/node_modules/yallist": {
- "version": "4.0.0",
- "license": "ISC"
+ "node_modules/analytics-node/node_modules/axios": {
+ "version": "0.27.2",
+ "license": "MIT",
+ "dependencies": {
+ "follow-redirects": "^1.14.9",
+ "form-data": "^4.0.0"
+ }
},
- "node_modules/@typescript-eslint/parser": {
- "version": "5.62.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz",
- "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==",
- "dev": true,
+ "node_modules/analytics-node/node_modules/uuid": {
+ "version": "8.3.2",
+ "license": "MIT",
+ "bin": {
+ "uuid": "dist/bin/uuid"
+ }
+ },
+ "node_modules/anser": {
+ "version": "2.3.0",
+ "license": "MIT"
+ },
+ "node_modules/ansi-align": {
+ "version": "3.0.1",
+ "license": "ISC",
"dependencies": {
- "@typescript-eslint/scope-manager": "5.62.0",
- "@typescript-eslint/types": "5.62.0",
- "@typescript-eslint/typescript-estree": "5.62.0",
- "debug": "^4.3.4"
- },
+ "string-width": "^4.1.0"
+ }
+ },
+ "node_modules/ansi-colors": {
+ "version": "4.1.3",
+ "license": "MIT",
"engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
+ "node": ">=6"
}
},
- "node_modules/@typescript-eslint/scope-manager": {
- "version": "5.62.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz",
- "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==",
- "dev": true,
+ "node_modules/ansi-escapes": {
+ "version": "4.3.2",
+ "license": "MIT",
"dependencies": {
- "@typescript-eslint/types": "5.62.0",
- "@typescript-eslint/visitor-keys": "5.62.0"
+ "type-fest": "^0.21.3"
},
"engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ "node": ">=8"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/ansi-html": {
+ "version": "0.0.9",
+ "engines": [
+ "node >= 0.8.0"
+ ],
+ "license": "Apache-2.0",
+ "peer": true,
+ "bin": {
+ "ansi-html": "bin/ansi-html"
+ }
+ },
+ "node_modules/ansi-html-community": {
+ "version": "0.0.8",
+ "engines": [
+ "node >= 0.8.0"
+ ],
+ "license": "Apache-2.0",
+ "bin": {
+ "ansi-html": "bin/ansi-html"
+ }
+ },
+ "node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/@typescript-eslint/type-utils": {
- "version": "5.62.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz",
- "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==",
- "dev": true,
+ "node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "license": "MIT",
"dependencies": {
- "@typescript-eslint/typescript-estree": "5.62.0",
- "@typescript-eslint/utils": "5.62.0",
- "debug": "^4.3.4",
- "tsutils": "^3.21.0"
+ "color-convert": "^2.0.1"
},
"engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ "node": ">=8"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "eslint": "*"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/@typescript-eslint/types": {
- "version": "5.62.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz",
- "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==",
+ "node_modules/ansicolors": {
+ "version": "0.3.2",
"dev": true,
+ "license": "MIT"
+ },
+ "node_modules/ansis": {
+ "version": "1.5.2",
+ "license": "ISC",
+ "peer": true,
"engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ "node": ">=12.13"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
+ "type": "patreon",
+ "url": "https://patreon.com/biodiscus"
}
},
- "node_modules/@typescript-eslint/typescript-estree": {
- "version": "5.62.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz",
- "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==",
- "dev": true,
+ "node_modules/anymatch": {
+ "version": "3.1.3",
+ "license": "ISC",
"dependencies": {
- "@typescript-eslint/types": "5.62.0",
- "@typescript-eslint/visitor-keys": "5.62.0",
- "debug": "^4.3.4",
- "globby": "^11.1.0",
- "is-glob": "^4.0.3",
- "semver": "^7.3.7",
- "tsutils": "^3.21.0"
+ "normalize-path": "^3.0.0",
+ "picomatch": "^2.0.4"
},
"engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
+ "node": ">= 8"
}
},
- "node_modules/@typescript-eslint/typescript-estree/node_modules/lru-cache": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
- "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
+ "node_modules/append-field": {
+ "version": "1.0.0",
+ "license": "MIT"
+ },
+ "node_modules/application-config-path": {
+ "version": "0.1.1",
+ "license": "MIT"
+ },
+ "node_modules/argparse": {
+ "version": "2.0.1",
+ "license": "Python-2.0"
+ },
+ "node_modules/argv-formatter": {
+ "version": "1.0.0",
"dev": true,
+ "license": "MIT"
+ },
+ "node_modules/aria-hidden": {
+ "version": "1.2.4",
+ "license": "MIT",
"dependencies": {
- "yallist": "^4.0.0"
+ "tslib": "^2.0.0"
},
"engines": {
"node": ">=10"
}
},
- "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": {
- "version": "7.6.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz",
- "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==",
- "dev": true,
- "license": "ISC",
+ "node_modules/aria-query": {
+ "version": "5.1.3",
+ "license": "Apache-2.0",
"dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
+ "deep-equal": "^2.0.5"
}
},
- "node_modules/@typescript-eslint/typescript-estree/node_modules/yallist": {
+ "node_modules/arity-n": {
+ "version": "1.0.4",
+ "license": "MIT"
+ },
+ "node_modules/arr-diff": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
- "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
- "dev": true
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "node_modules/@typescript-eslint/utils": {
- "version": "5.62.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz",
- "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==",
- "dev": true,
- "dependencies": {
- "@eslint-community/eslint-utils": "^4.2.0",
- "@types/json-schema": "^7.0.9",
- "@types/semver": "^7.3.12",
- "@typescript-eslint/scope-manager": "5.62.0",
- "@typescript-eslint/types": "5.62.0",
- "@typescript-eslint/typescript-estree": "5.62.0",
- "eslint-scope": "^5.1.1",
- "semver": "^7.3.7"
- },
+ "node_modules/arr-flatten": {
+ "version": "1.1.0",
+ "license": "MIT",
"engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
+ "node": ">=0.10.0"
}
},
- "node_modules/@typescript-eslint/utils/node_modules/lru-cache": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
- "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
- "dev": true,
- "dependencies": {
- "yallist": "^4.0.0"
- },
+ "node_modules/arr-union": {
+ "version": "3.1.0",
+ "license": "MIT",
"engines": {
- "node": ">=10"
+ "node": ">=0.10.0"
}
},
- "node_modules/@typescript-eslint/utils/node_modules/semver": {
- "version": "7.6.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz",
- "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==",
+ "node_modules/array-back": {
+ "version": "3.1.0",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
+ "license": "MIT",
"engines": {
- "node": ">=10"
+ "node": ">=6"
}
},
- "node_modules/@typescript-eslint/utils/node_modules/yallist": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
- "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
- "dev": true
- },
- "node_modules/@typescript-eslint/visitor-keys": {
- "version": "5.62.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz",
- "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==",
- "dev": true,
+ "node_modules/array-buffer-byte-length": {
+ "version": "1.0.1",
+ "license": "MIT",
"dependencies": {
- "@typescript-eslint/types": "5.62.0",
- "eslint-visitor-keys": "^3.3.0"
+ "call-bind": "^1.0.5",
+ "is-array-buffer": "^3.0.4"
},
"engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ "node": ">= 0.4"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": {
- "version": "3.4.3",
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
- "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
+ "node_modules/array-flatten": {
+ "version": "1.1.1",
+ "license": "MIT"
+ },
+ "node_modules/array-ify": {
+ "version": "1.0.0",
"dev": true,
+ "license": "MIT"
+ },
+ "node_modules/array-includes": {
+ "version": "3.1.8",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2",
+ "es-object-atoms": "^1.0.0",
+ "get-intrinsic": "^1.2.4",
+ "is-string": "^1.0.7"
+ },
"engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://opencollective.com/eslint"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/@vanilla-extract/css": {
- "version": "1.11.0",
- "dev": true,
+ "node_modules/array-union": {
+ "version": "2.1.0",
"license": "MIT",
- "dependencies": {
- "@emotion/hash": "^0.9.0",
- "@vanilla-extract/private": "^1.0.3",
- "ahocorasick": "1.0.2",
- "chalk": "^4.1.1",
- "css-what": "^5.0.1",
- "cssesc": "^3.0.0",
- "csstype": "^3.0.7",
- "deep-object-diff": "^1.1.9",
- "deepmerge": "^4.2.2",
- "media-query-parser": "^2.0.2",
- "outdent": "^0.8.0"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/@vanilla-extract/css-utils": {
- "version": "0.1.3",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@vanilla-extract/css/node_modules/css-what": {
- "version": "5.1.0",
- "dev": true,
- "license": "BSD-2-Clause",
+ "node_modules/array-uniq": {
+ "version": "1.0.3",
+ "license": "MIT",
"engines": {
- "node": ">= 6"
- },
- "funding": {
- "url": "https://github.com/sponsors/fb55"
+ "node": ">=0.10.0"
}
},
- "node_modules/@vanilla-extract/integration": {
- "version": "5.0.1",
- "dev": true,
+ "node_modules/array-unique": {
+ "version": "0.3.2",
"license": "MIT",
- "dependencies": {
- "@vanilla-extract/css": "^1.7.2",
- "esbuild": "^0.11.16",
- "eval": "0.1.6",
- "find-up": "^5.0.0",
- "javascript-stringify": "^2.0.1",
- "lodash": "^4.17.21",
- "outdent": "^0.8.0"
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/@vanilla-extract/integration/node_modules/eval": {
- "version": "0.1.6",
- "dev": true,
+ "node_modules/array.prototype.findlast": {
+ "version": "1.2.5",
+ "license": "MIT",
"dependencies": {
- "require-like": ">= 0.1.1"
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
+ "es-shim-unscopables": "^1.0.2"
},
"engines": {
- "node": ">= 0.8"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/@vanilla-extract/integration/node_modules/find-up": {
- "version": "5.0.0",
- "dev": true,
+ "node_modules/array.prototype.findlastindex": {
+ "version": "1.2.5",
"license": "MIT",
"dependencies": {
- "locate-path": "^6.0.0",
- "path-exists": "^4.0.0"
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
+ "es-shim-unscopables": "^1.0.2"
},
"engines": {
- "node": ">=10"
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/@vanilla-extract/integration/node_modules/locate-path": {
- "version": "6.0.0",
- "dev": true,
+ "node_modules/array.prototype.flat": {
+ "version": "1.3.2",
"license": "MIT",
"dependencies": {
- "p-locate": "^5.0.0"
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
+ "es-shim-unscopables": "^1.0.0"
},
"engines": {
- "node": ">=10"
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/@vanilla-extract/integration/node_modules/p-locate": {
- "version": "5.0.0",
- "dev": true,
+ "node_modules/array.prototype.flatmap": {
+ "version": "1.3.2",
"license": "MIT",
"dependencies": {
- "p-limit": "^3.0.2"
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
+ "es-shim-unscopables": "^1.0.0"
},
"engines": {
- "node": ">=10"
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@vanilla-extract/private": {
- "version": "1.0.3",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@vanilla-extract/sprinkles": {
- "version": "1.6.0",
- "dev": true,
- "license": "MIT",
- "peerDependencies": {
- "@vanilla-extract/css": "^1.0.0"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/@vanilla-extract/webpack-plugin": {
- "version": "2.1.12",
- "dev": true,
+ "node_modules/array.prototype.tosorted": {
+ "version": "1.1.4",
"license": "MIT",
"dependencies": {
- "@vanilla-extract/integration": "^5.0.0",
- "chalk": "^4.1.1",
- "debug": "^4.3.1",
- "loader-utils": "^2.0.0"
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.3",
+ "es-errors": "^1.3.0",
+ "es-shim-unscopables": "^1.0.2"
},
- "peerDependencies": {
- "webpack": "^4.30.0 || ^5.20.2"
+ "engines": {
+ "node": ">= 0.4"
}
},
- "node_modules/@vercel/webpack-asset-relocator-loader": {
- "version": "1.7.3",
+ "node_modules/arraybuffer.prototype.slice": {
+ "version": "1.0.3",
"license": "MIT",
"dependencies": {
- "resolve": "^1.10.0"
+ "array-buffer-byte-length": "^1.0.1",
+ "call-bind": "^1.0.5",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.22.3",
+ "es-errors": "^1.2.1",
+ "get-intrinsic": "^1.2.3",
+ "is-array-buffer": "^3.0.4",
+ "is-shared-array-buffer": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/@webassemblyjs/ast": {
- "version": "1.11.1",
+ "node_modules/arrify": {
+ "version": "2.0.1",
"license": "MIT",
- "dependencies": {
- "@webassemblyjs/helper-numbers": "1.11.1",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.1"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/@webassemblyjs/floating-point-hex-parser": {
- "version": "1.11.1",
- "license": "MIT"
- },
- "node_modules/@webassemblyjs/helper-api-error": {
- "version": "1.11.1",
- "license": "MIT"
- },
- "node_modules/@webassemblyjs/helper-buffer": {
- "version": "1.11.1",
+ "node_modules/asap": {
+ "version": "2.0.6",
"license": "MIT"
},
- "node_modules/@webassemblyjs/helper-numbers": {
- "version": "1.11.1",
+ "node_modules/assert": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/assert/-/assert-2.1.0.tgz",
+ "integrity": "sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==",
"license": "MIT",
"dependencies": {
- "@webassemblyjs/floating-point-hex-parser": "1.11.1",
- "@webassemblyjs/helper-api-error": "1.11.1",
- "@xtuc/long": "4.2.2"
+ "call-bind": "^1.0.2",
+ "is-nan": "^1.3.2",
+ "object-is": "^1.1.5",
+ "object.assign": "^4.1.4",
+ "util": "^0.12.5"
}
},
- "node_modules/@webassemblyjs/helper-wasm-bytecode": {
- "version": "1.11.1",
+ "node_modules/assert-ok": {
+ "version": "1.0.0",
"license": "MIT"
},
- "node_modules/@webassemblyjs/helper-wasm-section": {
- "version": "1.11.1",
+ "node_modules/assign-symbols": {
+ "version": "1.0.0",
"license": "MIT",
- "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"
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/@webassemblyjs/ieee754": {
- "version": "1.11.1",
+ "node_modules/ast-types": {
+ "version": "0.14.2",
"license": "MIT",
"dependencies": {
- "@xtuc/ieee754": "^1.2.0"
- }
- },
- "node_modules/@webassemblyjs/leb128": {
- "version": "1.11.1",
- "license": "Apache-2.0",
- "dependencies": {
- "@xtuc/long": "4.2.2"
+ "tslib": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/@webassemblyjs/utf8": {
- "version": "1.11.1",
- "license": "MIT"
+ "node_modules/ast-types-flow": {
+ "version": "0.0.7",
+ "license": "ISC"
},
- "node_modules/@webassemblyjs/wasm-edit": {
- "version": "1.11.1",
+ "node_modules/astral-regex": {
+ "version": "2.0.0",
"license": "MIT",
- "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"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/@webassemblyjs/wasm-gen": {
- "version": "1.11.1",
+ "node_modules/astring": {
+ "version": "1.9.0",
"license": "MIT",
- "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"
+ "bin": {
+ "astring": "bin/astring"
}
},
- "node_modules/@webassemblyjs/wasm-opt": {
- "version": "1.11.1",
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/helper-buffer": "1.11.1",
- "@webassemblyjs/wasm-gen": "1.11.1",
- "@webassemblyjs/wasm-parser": "1.11.1"
- }
+ "node_modules/async": {
+ "version": "1.5.2",
+ "license": "MIT"
},
- "node_modules/@webassemblyjs/wasm-parser": {
- "version": "1.11.1",
- "license": "MIT",
- "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"
- }
+ "node_modules/asynckit": {
+ "version": "0.4.0",
+ "license": "MIT"
},
- "node_modules/@webassemblyjs/wast-printer": {
- "version": "1.11.1",
- "license": "MIT",
- "dependencies": {
- "@webassemblyjs/ast": "1.11.1",
- "@xtuc/long": "4.2.2"
+ "node_modules/at-least-node": {
+ "version": "1.0.0",
+ "license": "ISC",
+ "engines": {
+ "node": ">= 4.0.0"
}
},
- "node_modules/@webpack-cli/configtest": {
- "version": "2.0.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=14.15.0"
+ "node_modules/atob": {
+ "version": "2.1.2",
+ "license": "(MIT OR Apache-2.0)",
+ "bin": {
+ "atob": "bin/atob.js"
},
- "peerDependencies": {
- "webpack": "5.x.x",
- "webpack-cli": "5.x.x"
+ "engines": {
+ "node": ">= 4.5.0"
}
},
- "node_modules/@webpack-cli/info": {
- "version": "2.0.1",
- "dev": true,
+ "node_modules/attr-accept": {
+ "version": "2.2.5",
"license": "MIT",
"engines": {
- "node": ">=14.15.0"
- },
- "peerDependencies": {
- "webpack": "5.x.x",
- "webpack-cli": "5.x.x"
+ "node": ">=4"
}
},
- "node_modules/@webpack-cli/serve": {
- "version": "2.0.2",
- "dev": true,
+ "node_modules/auto-bind": {
+ "version": "4.0.0",
"license": "MIT",
"engines": {
- "node": ">=14.15.0"
- },
- "peerDependencies": {
- "webpack": "5.x.x",
- "webpack-cli": "5.x.x"
+ "node": ">=8"
},
- "peerDependenciesMeta": {
- "webpack-dev-server": {
- "optional": true
- }
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/@xobotyi/scrollbar-width": {
- "version": "1.9.5",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@xtuc/ieee754": {
- "version": "1.2.0",
- "license": "BSD-3-Clause"
- },
- "node_modules/@xtuc/long": {
- "version": "4.2.2",
- "license": "Apache-2.0"
- },
- "node_modules/@yarnpkg/lockfile": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz",
- "integrity": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ=="
- },
- "node_modules/@zip.js/zip.js": {
- "version": "2.7.48",
- "resolved": "https://registry.npmjs.org/@zip.js/zip.js/-/zip.js-2.7.48.tgz",
- "integrity": "sha512-J7cliimZ2snAbr0IhLx2U8BwfA1pKucahKzTpFtYq4hEgKxwvFJcIjCIVNPwQpfVab7iVP+AKmoH1gidBlyhiQ==",
+ "node_modules/autoprefixer": {
+ "version": "10.4.16",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/autoprefixer"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "browserslist": "^4.21.10",
+ "caniuse-lite": "^1.0.30001538",
+ "fraction.js": "^4.3.6",
+ "normalize-range": "^0.1.2",
+ "picocolors": "^1.0.0",
+ "postcss-value-parser": "^4.2.0"
+ },
+ "bin": {
+ "autoprefixer": "bin/autoprefixer"
+ },
"engines": {
- "bun": ">=0.7.0",
- "deno": ">=1.0.0",
- "node": ">=16.5.0"
+ "node": "^10 || ^12 || >=14"
+ },
+ "peerDependencies": {
+ "postcss": "^8.1.0"
}
},
- "node_modules/abab": {
- "version": "2.0.6",
- "dev": true,
- "license": "BSD-3-Clause"
- },
- "node_modules/abortcontroller-polyfill": {
- "version": "1.7.5",
- "license": "MIT"
- },
- "node_modules/accepts": {
- "version": "1.3.8",
+ "node_modules/available-typed-arrays": {
+ "version": "1.0.7",
"license": "MIT",
"dependencies": {
- "mime-types": "~2.1.34",
- "negotiator": "0.6.3"
+ "possible-typed-array-names": "^1.0.0"
},
"engines": {
- "node": ">= 0.6"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/acorn": {
- "version": "8.8.2",
- "license": "MIT",
- "bin": {
- "acorn": "bin/acorn"
- },
+ "node_modules/axe-core": {
+ "version": "4.10.2",
+ "license": "MPL-2.0",
"engines": {
- "node": ">=0.4.0"
+ "node": ">=4"
}
},
- "node_modules/acorn-globals": {
- "version": "6.0.0",
- "dev": true,
+ "node_modules/axios": {
+ "version": "0.28.1",
"license": "MIT",
"dependencies": {
- "acorn": "^7.1.1",
- "acorn-walk": "^7.1.1"
+ "follow-redirects": "^1.15.0",
+ "form-data": "^4.0.0",
+ "proxy-from-env": "^1.1.0"
}
},
- "node_modules/acorn-globals/node_modules/acorn": {
- "version": "7.4.1",
+ "node_modules/axios-mock-adapter": {
+ "version": "1.22.0",
"dev": true,
"license": "MIT",
- "bin": {
- "acorn": "bin/acorn"
+ "dependencies": {
+ "fast-deep-equal": "^3.1.3",
+ "is-buffer": "^2.0.5"
},
- "engines": {
- "node": ">=0.4.0"
+ "peerDependencies": {
+ "axios": ">= 0.17.0"
}
},
- "node_modules/acorn-import-assertions": {
- "version": "1.8.0",
- "license": "MIT",
- "peerDependencies": {
- "acorn": "^8"
+ "node_modules/axios-retry": {
+ "version": "3.2.0",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "is-retry-allowed": "^1.1.0"
}
},
- "node_modules/acorn-jsx": {
- "version": "5.3.2",
- "license": "MIT",
- "peerDependencies": {
- "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
+ "node_modules/axobject-query": {
+ "version": "3.2.4",
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">= 0.4"
}
},
- "node_modules/acorn-loose": {
- "version": "8.3.0",
+ "node_modules/b4a": {
+ "version": "1.6.7",
+ "license": "Apache-2.0"
+ },
+ "node_modules/babel-eslint": {
+ "version": "10.1.0",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "acorn": "^8.5.0"
+ "@babel/code-frame": "^7.0.0",
+ "@babel/parser": "^7.7.0",
+ "@babel/traverse": "^7.7.0",
+ "@babel/types": "^7.7.0",
+ "eslint-visitor-keys": "^1.0.0",
+ "resolve": "^1.12.0"
},
"engines": {
- "node": ">=0.4.0"
+ "node": ">=6"
+ },
+ "peerDependencies": {
+ "eslint": ">= 4.12.1"
}
},
- "node_modules/acorn-walk": {
- "version": "7.2.0",
- "dev": true,
- "license": "MIT",
+ "node_modules/babel-eslint/node_modules/eslint-visitor-keys": {
+ "version": "1.3.0",
+ "license": "Apache-2.0",
+ "peer": true,
"engines": {
- "node": ">=0.4.0"
+ "node": ">=4"
}
},
- "node_modules/address": {
- "version": "1.1.2",
+ "node_modules/babel-jest": {
+ "version": "29.7.0",
"license": "MIT",
+ "dependencies": {
+ "@jest/transform": "^29.7.0",
+ "@types/babel__core": "^7.1.14",
+ "babel-plugin-istanbul": "^6.1.1",
+ "babel-preset-jest": "^29.6.3",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.9",
+ "slash": "^3.0.0"
+ },
"engines": {
- "node": ">= 0.12.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.8.0"
}
},
- "node_modules/adjust-sourcemap-loader": {
- "version": "4.0.0",
- "dev": true,
+ "node_modules/babel-jest/node_modules/babel-plugin-jest-hoist": {
+ "version": "29.6.3",
"license": "MIT",
"dependencies": {
- "loader-utils": "^2.0.0",
- "regex-parser": "^2.2.11"
+ "@babel/template": "^7.3.3",
+ "@babel/types": "^7.3.3",
+ "@types/babel__core": "^7.1.14",
+ "@types/babel__traverse": "^7.0.6"
},
"engines": {
- "node": ">=8.9"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/agent-base": {
- "version": "6.0.2",
- "dev": true,
+ "node_modules/babel-jest/node_modules/babel-preset-jest": {
+ "version": "29.6.3",
"license": "MIT",
"dependencies": {
- "debug": "4"
+ "babel-plugin-jest-hoist": "^29.6.3",
+ "babel-preset-current-node-syntax": "^1.0.0"
},
"engines": {
- "node": ">= 6.0.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
}
},
- "node_modules/aggregate-error": {
- "version": "3.1.0",
- "dev": true,
+ "node_modules/babel-jest/node_modules/slash": {
+ "version": "3.0.0",
"license": "MIT",
- "dependencies": {
- "clean-stack": "^2.0.0",
- "indent-string": "^4.0.0"
- },
"engines": {
"node": ">=8"
}
},
- "node_modules/ahocorasick": {
- "version": "1.0.2",
- "dev": true,
+ "node_modules/babel-jsx-utils": {
+ "version": "1.1.0",
"license": "MIT"
},
- "node_modules/ajv": {
- "version": "6.12.6",
+ "node_modules/babel-loader": {
+ "version": "8.4.1",
"license": "MIT",
"dependencies": {
- "fast-deep-equal": "^3.1.1",
- "fast-json-stable-stringify": "^2.0.0",
- "json-schema-traverse": "^0.4.1",
- "uri-js": "^4.2.2"
+ "find-cache-dir": "^3.3.1",
+ "loader-utils": "^2.0.4",
+ "make-dir": "^3.1.0",
+ "schema-utils": "^2.6.5"
},
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
- }
- },
- "node_modules/ajv-formats": {
- "version": "2.1.1",
- "devOptional": true,
- "license": "MIT",
- "dependencies": {
- "ajv": "^8.0.0"
+ "engines": {
+ "node": ">= 8.9"
},
"peerDependencies": {
- "ajv": "^8.0.0"
- },
- "peerDependenciesMeta": {
- "ajv": {
- "optional": true
- }
+ "@babel/core": "^7.0.0",
+ "webpack": ">=2"
}
},
- "node_modules/ajv-formats/node_modules/ajv": {
- "version": "8.12.0",
- "devOptional": true,
+ "node_modules/babel-loader/node_modules/find-cache-dir": {
+ "version": "3.3.2",
"license": "MIT",
"dependencies": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
+ "commondir": "^1.0.1",
+ "make-dir": "^3.0.2",
+ "pkg-dir": "^4.1.0"
+ },
+ "engines": {
+ "node": ">=8"
},
"funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
+ "url": "https://github.com/avajs/find-cache-dir?sponsor=1"
}
},
- "node_modules/ajv-formats/node_modules/json-schema-traverse": {
- "version": "1.0.0",
- "devOptional": true,
- "license": "MIT"
- },
- "node_modules/ajv-keywords": {
- "version": "3.5.2",
+ "node_modules/babel-loader/node_modules/find-up": {
+ "version": "4.1.0",
"license": "MIT",
- "peerDependencies": {
- "ajv": "^6.9.1"
+ "dependencies": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/algoliasearch": {
- "version": "4.17.0",
+ "node_modules/babel-loader/node_modules/locate-path": {
+ "version": "5.0.0",
"license": "MIT",
"dependencies": {
- "@algolia/cache-browser-local-storage": "4.17.0",
- "@algolia/cache-common": "4.17.0",
- "@algolia/cache-in-memory": "4.17.0",
- "@algolia/client-account": "4.17.0",
- "@algolia/client-analytics": "4.17.0",
- "@algolia/client-common": "4.17.0",
- "@algolia/client-personalization": "4.17.0",
- "@algolia/client-search": "4.17.0",
- "@algolia/logger-common": "4.17.0",
- "@algolia/logger-console": "4.17.0",
- "@algolia/requester-browser-xhr": "4.17.0",
- "@algolia/requester-common": "4.17.0",
- "@algolia/requester-node-http": "4.17.0",
- "@algolia/transporter": "4.17.0"
+ "p-locate": "^4.1.0"
+ },
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/analytics-node": {
- "version": "6.2.0",
+ "node_modules/babel-loader/node_modules/make-dir": {
+ "version": "3.1.0",
"license": "MIT",
"dependencies": {
- "@segment/loosely-validate-event": "^2.0.0",
- "axios": "^0.27.2",
- "axios-retry": "3.2.0",
- "lodash.isstring": "^4.0.1",
- "md5": "^2.2.1",
- "ms": "^2.0.0",
- "remove-trailing-slash": "^0.1.0",
- "uuid": "^8.3.2"
+ "semver": "^6.0.0"
},
"engines": {
- "node": ">=4"
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/analytics-node/node_modules/axios": {
- "version": "0.27.2",
- "resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz",
- "integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==",
+ "node_modules/babel-loader/node_modules/p-limit": {
+ "version": "2.3.0",
+ "license": "MIT",
"dependencies": {
- "follow-redirects": "^1.14.9",
- "form-data": "^4.0.0"
+ "p-try": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/analytics-node/node_modules/uuid": {
- "version": "8.3.2",
+ "node_modules/babel-loader/node_modules/p-locate": {
+ "version": "4.1.0",
"license": "MIT",
- "bin": {
- "uuid": "dist/bin/uuid"
- }
- },
- "node_modules/anser": {
- "version": "2.1.1",
- "license": "MIT"
- },
- "node_modules/ansi-align": {
- "version": "3.0.1",
- "license": "ISC",
"dependencies": {
- "string-width": "^4.1.0"
+ "p-limit": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/ansi-colors": {
- "version": "4.1.3",
+ "node_modules/babel-loader/node_modules/pkg-dir": {
+ "version": "4.2.0",
"license": "MIT",
+ "dependencies": {
+ "find-up": "^4.0.0"
+ },
"engines": {
- "node": ">=6"
+ "node": ">=8"
}
},
- "node_modules/ansi-escapes": {
- "version": "4.3.2",
+ "node_modules/babel-loader/node_modules/schema-utils": {
+ "version": "2.7.1",
"license": "MIT",
"dependencies": {
- "type-fest": "^0.21.3"
+ "@types/json-schema": "^7.0.5",
+ "ajv": "^6.12.4",
+ "ajv-keywords": "^3.5.2"
},
"engines": {
- "node": ">=8"
+ "node": ">= 8.9.0"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
}
},
- "node_modules/ansi-html-community": {
- "version": "0.0.8",
- "engines": [
- "node >= 0.8.0"
- ],
- "license": "Apache-2.0",
- "bin": {
- "ansi-html": "bin/ansi-html"
+ "node_modules/babel-plugin-add-module-exports": {
+ "version": "1.0.4",
+ "license": "MIT"
+ },
+ "node_modules/babel-plugin-dynamic-import-node": {
+ "version": "2.3.3",
+ "license": "MIT",
+ "dependencies": {
+ "object.assign": "^4.1.0"
}
},
- "node_modules/ansi-regex": {
- "version": "5.0.1",
+ "node_modules/babel-plugin-formatjs": {
+ "version": "10.5.30",
"license": "MIT",
+ "dependencies": {
+ "@babel/core": "^7.25.0",
+ "@babel/helper-plugin-utils": "^7.25.0",
+ "@babel/plugin-syntax-jsx": "^7.25.0",
+ "@babel/traverse": "^7.25.0",
+ "@babel/types": "^7.25.0",
+ "@formatjs/icu-messageformat-parser": "2.9.8",
+ "@formatjs/ts-transformer": "3.13.27",
+ "@types/babel__core": "^7.20.5",
+ "@types/babel__helper-plugin-utils": "^7.10.3",
+ "@types/babel__traverse": "^7.20.6",
+ "tslib": "2"
+ }
+ },
+ "node_modules/babel-plugin-istanbul": {
+ "version": "6.1.1",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.0.0",
+ "@istanbuljs/load-nyc-config": "^1.0.0",
+ "@istanbuljs/schema": "^0.1.2",
+ "istanbul-lib-instrument": "^5.0.4",
+ "test-exclude": "^6.0.0"
+ },
"engines": {
"node": ">=8"
}
},
- "node_modules/ansi-styles": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": {
+ "version": "5.2.1",
+ "license": "BSD-3-Clause",
"dependencies": {
- "color-convert": "^1.9.0"
+ "@babel/core": "^7.12.3",
+ "@babel/parser": "^7.14.7",
+ "@istanbuljs/schema": "^0.1.2",
+ "istanbul-lib-coverage": "^3.2.0",
+ "semver": "^6.3.0"
},
"engines": {
- "node": ">=4"
+ "node": ">=8"
}
},
- "node_modules/ansicolors": {
- "version": "0.3.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/anymatch": {
- "version": "3.1.3",
- "license": "ISC",
+ "node_modules/babel-plugin-jest-hoist": {
+ "version": "26.6.2",
+ "license": "MIT",
"dependencies": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
+ "@babel/template": "^7.3.3",
+ "@babel/types": "^7.3.3",
+ "@types/babel__core": "^7.0.0",
+ "@types/babel__traverse": "^7.0.6"
},
"engines": {
- "node": ">= 8"
+ "node": ">= 10.14.2"
}
},
- "node_modules/append-field": {
- "version": "1.0.0",
- "license": "MIT"
- },
- "node_modules/application-config-path": {
- "version": "0.1.1",
- "license": "MIT"
- },
- "node_modules/arch": {
- "version": "2.2.0",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "MIT"
- },
- "node_modules/argparse": {
- "version": "1.0.10",
+ "node_modules/babel-plugin-macros": {
+ "version": "3.1.0",
"license": "MIT",
"dependencies": {
- "sprintf-js": "~1.0.2"
+ "@babel/runtime": "^7.12.5",
+ "cosmiconfig": "^7.0.0",
+ "resolve": "^1.19.0"
+ },
+ "engines": {
+ "node": ">=10",
+ "npm": ">=6"
}
},
- "node_modules/argv-formatter": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/aria-hidden": {
- "version": "1.2.3",
+ "node_modules/babel-plugin-macros/node_modules/cosmiconfig": {
+ "version": "7.1.0",
"license": "MIT",
"dependencies": {
- "tslib": "^2.0.0"
+ "@types/parse-json": "^4.0.0",
+ "import-fresh": "^3.2.1",
+ "parse-json": "^5.0.0",
+ "path-type": "^4.0.0",
+ "yaml": "^1.10.0"
},
"engines": {
"node": ">=10"
}
},
- "node_modules/aria-query": {
- "version": "5.1.3",
- "license": "Apache-2.0",
- "dependencies": {
- "deep-equal": "^2.0.5"
+ "node_modules/babel-plugin-macros/node_modules/yaml": {
+ "version": "1.10.2",
+ "license": "ISC",
+ "engines": {
+ "node": ">= 6"
}
},
- "node_modules/arity-n": {
- "version": "1.0.4",
- "license": "MIT"
- },
- "node_modules/arr-diff": {
- "version": "4.0.0",
- "dev": true,
+ "node_modules/babel-plugin-polyfill-corejs2": {
+ "version": "0.4.12",
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "@babel/compat-data": "^7.22.6",
+ "@babel/helper-define-polyfill-provider": "^0.6.3",
+ "semver": "^6.3.1"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
}
},
- "node_modules/arr-flatten": {
- "version": "1.1.0",
- "dev": true,
+ "node_modules/babel-plugin-polyfill-corejs3": {
+ "version": "0.8.7",
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "@babel/helper-define-polyfill-provider": "^0.4.4",
+ "core-js-compat": "^3.33.1"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
}
},
- "node_modules/arr-union": {
- "version": "3.1.0",
- "dev": true,
+ "node_modules/babel-plugin-polyfill-corejs3/node_modules/@babel/helper-define-polyfill-provider": {
+ "version": "0.4.4",
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "@babel/helper-compilation-targets": "^7.22.6",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "debug": "^4.1.1",
+ "lodash.debounce": "^4.0.8",
+ "resolve": "^1.14.2"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
}
},
- "node_modules/array-back": {
- "version": "3.1.0",
- "dev": true,
+ "node_modules/babel-plugin-polyfill-corejs3/node_modules/debug": {
+ "version": "4.4.0",
"license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
"engines": {
- "node": ">=6"
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
}
},
- "node_modules/array-buffer-byte-length": {
- "version": "1.0.0",
+ "node_modules/babel-plugin-polyfill-regenerator": {
+ "version": "0.5.5",
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "is-array-buffer": "^3.0.1"
+ "@babel/helper-define-polyfill-provider": "^0.5.0"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "peerDependencies": {
+ "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
}
},
- "node_modules/array-find": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/array-flatten": {
- "version": "1.1.1",
- "license": "MIT"
+ "node_modules/babel-plugin-polyfill-regenerator/node_modules/@babel/helper-define-polyfill-provider": {
+ "version": "0.5.0",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-compilation-targets": "^7.22.6",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "debug": "^4.1.1",
+ "lodash.debounce": "^4.0.8",
+ "resolve": "^1.14.2"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
+ }
},
- "node_modules/array-ify": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT"
+ "node_modules/babel-plugin-polyfill-regenerator/node_modules/debug": {
+ "version": "4.4.0",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
},
- "node_modules/array-includes": {
- "version": "3.1.6",
+ "node_modules/babel-plugin-remove-graphql-queries": {
+ "version": "5.14.0",
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4",
- "get-intrinsic": "^1.1.3",
- "is-string": "^1.0.7"
+ "@babel/runtime": "^7.20.13",
+ "@babel/types": "^7.20.7",
+ "gatsby-core-utils": "^4.14.0"
},
"engines": {
- "node": ">= 0.4"
+ "node": ">=18.0.0"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "peerDependencies": {
+ "@babel/core": "^7.0.0",
+ "gatsby": "^5.0.0-next"
}
},
- "node_modules/array-iterate": {
- "version": "1.1.4",
- "license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "node_modules/babel-plugin-syntax-trailing-function-commas": {
+ "version": "7.0.0-beta.0",
+ "license": "MIT"
+ },
+ "node_modules/babel-plugin-transform-imports": {
+ "version": "2.0.0",
+ "license": "ISC",
+ "dependencies": {
+ "@babel/types": "^7.4",
+ "is-valid-path": "^0.1.1"
}
},
- "node_modules/array-union": {
- "version": "2.1.0",
+ "node_modules/babel-plugin-transform-react-remove-prop-types": {
+ "version": "0.4.24",
+ "license": "MIT"
+ },
+ "node_modules/babel-polyfill": {
+ "version": "6.26.0",
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "babel-runtime": "^6.26.0",
+ "core-js": "^2.5.0",
+ "regenerator-runtime": "^0.10.5"
}
},
- "node_modules/array-uniq": {
- "version": "1.0.3",
- "dev": true,
+ "node_modules/babel-polyfill/node_modules/core-js": {
+ "version": "2.6.12",
+ "hasInstallScript": true,
+ "license": "MIT"
+ },
+ "node_modules/babel-polyfill/node_modules/regenerator-runtime": {
+ "version": "0.10.5",
+ "license": "MIT"
+ },
+ "node_modules/babel-preset-current-node-syntax": {
+ "version": "1.1.0",
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "@babel/plugin-syntax-async-generators": "^7.8.4",
+ "@babel/plugin-syntax-bigint": "^7.8.3",
+ "@babel/plugin-syntax-class-properties": "^7.12.13",
+ "@babel/plugin-syntax-class-static-block": "^7.14.5",
+ "@babel/plugin-syntax-import-attributes": "^7.24.7",
+ "@babel/plugin-syntax-import-meta": "^7.10.4",
+ "@babel/plugin-syntax-json-strings": "^7.8.3",
+ "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
+ "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
+ "@babel/plugin-syntax-numeric-separator": "^7.10.4",
+ "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
+ "@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
+ "@babel/plugin-syntax-optional-chaining": "^7.8.3",
+ "@babel/plugin-syntax-private-property-in-object": "^7.14.5",
+ "@babel/plugin-syntax-top-level-await": "^7.14.5"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
}
},
- "node_modules/array-unique": {
- "version": "0.3.2",
- "dev": true,
+ "node_modules/babel-preset-fbjs": {
+ "version": "3.4.0",
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "@babel/plugin-proposal-class-properties": "^7.0.0",
+ "@babel/plugin-proposal-object-rest-spread": "^7.0.0",
+ "@babel/plugin-syntax-class-properties": "^7.0.0",
+ "@babel/plugin-syntax-flow": "^7.0.0",
+ "@babel/plugin-syntax-jsx": "^7.0.0",
+ "@babel/plugin-syntax-object-rest-spread": "^7.0.0",
+ "@babel/plugin-transform-arrow-functions": "^7.0.0",
+ "@babel/plugin-transform-block-scoped-functions": "^7.0.0",
+ "@babel/plugin-transform-block-scoping": "^7.0.0",
+ "@babel/plugin-transform-classes": "^7.0.0",
+ "@babel/plugin-transform-computed-properties": "^7.0.0",
+ "@babel/plugin-transform-destructuring": "^7.0.0",
+ "@babel/plugin-transform-flow-strip-types": "^7.0.0",
+ "@babel/plugin-transform-for-of": "^7.0.0",
+ "@babel/plugin-transform-function-name": "^7.0.0",
+ "@babel/plugin-transform-literals": "^7.0.0",
+ "@babel/plugin-transform-member-expression-literals": "^7.0.0",
+ "@babel/plugin-transform-modules-commonjs": "^7.0.0",
+ "@babel/plugin-transform-object-super": "^7.0.0",
+ "@babel/plugin-transform-parameters": "^7.0.0",
+ "@babel/plugin-transform-property-literals": "^7.0.0",
+ "@babel/plugin-transform-react-display-name": "^7.0.0",
+ "@babel/plugin-transform-react-jsx": "^7.0.0",
+ "@babel/plugin-transform-shorthand-properties": "^7.0.0",
+ "@babel/plugin-transform-spread": "^7.0.0",
+ "@babel/plugin-transform-template-literals": "^7.0.0",
+ "babel-plugin-syntax-trailing-function-commas": "^7.0.0-beta.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
}
},
- "node_modules/array.prototype.flat": {
- "version": "1.3.1",
+ "node_modules/babel-preset-gatsby": {
+ "version": "3.14.0",
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4",
- "es-shim-unscopables": "^1.0.0"
+ "@babel/plugin-proposal-class-properties": "^7.18.6",
+ "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
+ "@babel/plugin-proposal-optional-chaining": "^7.20.7",
+ "@babel/plugin-syntax-dynamic-import": "^7.8.3",
+ "@babel/plugin-transform-classes": "^7.20.7",
+ "@babel/plugin-transform-runtime": "^7.19.6",
+ "@babel/plugin-transform-spread": "^7.20.7",
+ "@babel/preset-env": "^7.20.2",
+ "@babel/preset-react": "^7.18.6",
+ "@babel/runtime": "^7.20.13",
+ "babel-plugin-dynamic-import-node": "^2.3.3",
+ "babel-plugin-macros": "^3.1.0",
+ "babel-plugin-transform-react-remove-prop-types": "^0.4.24",
+ "gatsby-core-utils": "^4.14.0",
+ "gatsby-legacy-polyfills": "^3.14.0"
},
"engines": {
- "node": ">= 0.4"
+ "node": ">=18.0.0"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "peerDependencies": {
+ "@babel/core": "^7.11.6",
+ "core-js": "^3.0.0"
}
},
- "node_modules/array.prototype.flatmap": {
- "version": "1.3.1",
+ "node_modules/babel-preset-jest": {
+ "version": "26.6.2",
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4",
- "es-shim-unscopables": "^1.0.0"
+ "babel-plugin-jest-hoist": "^26.6.2",
+ "babel-preset-current-node-syntax": "^1.0.0"
},
"engines": {
- "node": ">= 0.4"
+ "node": ">= 10.14.2"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
}
},
- "node_modules/array.prototype.tosorted": {
- "version": "1.1.1",
+ "node_modules/babel-runtime": {
+ "version": "6.26.0",
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4",
- "es-shim-unscopables": "^1.0.0",
- "get-intrinsic": "^1.1.3"
- }
- },
- "node_modules/arrify": {
- "version": "1.0.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "core-js": "^2.4.0",
+ "regenerator-runtime": "^0.11.0"
}
},
- "node_modules/asap": {
- "version": "2.0.6",
+ "node_modules/babel-runtime/node_modules/core-js": {
+ "version": "2.6.12",
+ "hasInstallScript": true,
"license": "MIT"
},
- "node_modules/assert": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/assert/-/assert-2.1.0.tgz",
- "integrity": "sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==",
- "dependencies": {
- "call-bind": "^1.0.2",
- "is-nan": "^1.3.2",
- "object-is": "^1.1.5",
- "object.assign": "^4.1.4",
- "util": "^0.12.5"
- }
- },
- "node_modules/assert-ok": {
- "version": "1.0.0",
+ "node_modules/babel-runtime/node_modules/regenerator-runtime": {
+ "version": "0.11.1",
"license": "MIT"
},
- "node_modules/assign-symbols": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/ast-types": {
- "version": "0.9.6",
- "dev": true,
+ "node_modules/babel-walk": {
+ "version": "3.0.1",
"license": "MIT",
+ "dependencies": {
+ "@babel/types": "^7.9.6"
+ },
"engines": {
- "node": ">= 0.8"
+ "node": ">= 10.0.0"
}
},
- "node_modules/ast-types-flow": {
- "version": "0.0.7",
- "license": "ISC"
- },
- "node_modules/astral-regex": {
- "version": "2.0.0",
+ "node_modules/bail": {
+ "version": "2.0.2",
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/async": {
- "version": "1.5.2",
+ "node_modules/balanced-match": {
+ "version": "1.0.2",
"license": "MIT"
},
- "node_modules/async-cache": {
- "version": "1.1.0",
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^4.0.0"
- }
+ "node_modules/bare-events": {
+ "version": "2.5.0",
+ "license": "Apache-2.0",
+ "optional": true
},
- "node_modules/async-cache/node_modules/lru-cache": {
- "version": "4.1.5",
- "license": "ISC",
+ "node_modules/bare-fs": {
+ "version": "2.3.5",
+ "license": "Apache-2.0",
+ "optional": true,
"dependencies": {
- "pseudomap": "^1.0.2",
- "yallist": "^2.1.2"
+ "bare-events": "^2.0.0",
+ "bare-path": "^2.0.0",
+ "bare-stream": "^2.0.0"
}
},
- "node_modules/async-cache/node_modules/yallist": {
- "version": "2.1.2",
- "license": "ISC"
+ "node_modules/bare-os": {
+ "version": "2.4.4",
+ "license": "Apache-2.0",
+ "optional": true
},
- "node_modules/asynckit": {
- "version": "0.4.0",
- "license": "MIT"
+ "node_modules/bare-path": {
+ "version": "2.1.3",
+ "license": "Apache-2.0",
+ "optional": true,
+ "dependencies": {
+ "bare-os": "^2.1.0"
+ }
},
- "node_modules/at-least-node": {
- "version": "1.0.0",
- "license": "ISC",
- "engines": {
- "node": ">= 4.0.0"
+ "node_modules/bare-stream": {
+ "version": "2.5.2",
+ "license": "Apache-2.0",
+ "optional": true,
+ "dependencies": {
+ "streamx": "^2.21.0"
}
},
- "node_modules/atob": {
- "version": "2.1.2",
- "license": "(MIT OR Apache-2.0)",
- "bin": {
- "atob": "bin/atob.js"
+ "node_modules/base": {
+ "version": "0.11.2",
+ "license": "MIT",
+ "dependencies": {
+ "cache-base": "^1.0.1",
+ "class-utils": "^0.3.5",
+ "component-emitter": "^1.2.1",
+ "define-property": "^1.0.0",
+ "isobject": "^3.0.1",
+ "mixin-deep": "^1.2.0",
+ "pascalcase": "^0.1.1"
},
"engines": {
- "node": ">= 4.5.0"
+ "node": ">=0.10.0"
}
},
- "node_modules/attr-accept": {
- "version": "2.2.2",
+ "node_modules/base-x": {
+ "version": "3.0.10",
"license": "MIT",
- "engines": {
- "node": ">=4"
+ "dependencies": {
+ "safe-buffer": "^5.0.1"
}
},
- "node_modules/auto-bind": {
- "version": "4.0.0",
+ "node_modules/base/node_modules/define-property": {
+ "version": "1.0.0",
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "is-descriptor": "^1.0.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/autoprefixer": {
- "version": "10.4.14",
+ "node_modules/base64-js": {
+ "version": "1.5.1",
"funding": [
{
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
},
{
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/autoprefixer"
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
}
],
+ "license": "MIT"
+ },
+ "node_modules/base64id": {
+ "version": "2.0.0",
"license": "MIT",
- "dependencies": {
- "browserslist": "^4.21.5",
- "caniuse-lite": "^1.0.30001464",
- "fraction.js": "^4.2.0",
- "normalize-range": "^0.1.2",
- "picocolors": "^1.0.0",
- "postcss-value-parser": "^4.2.0"
- },
- "bin": {
- "autoprefixer": "bin/autoprefixer"
- },
"engines": {
- "node": "^10 || ^12 || >=14"
- },
- "peerDependencies": {
- "postcss": "^8.1.0"
+ "node": "^4.5.0 || >= 5.9"
}
},
- "node_modules/available-typed-arrays": {
- "version": "1.0.5",
+ "node_modules/batch": {
+ "version": "0.6.1",
+ "license": "MIT"
+ },
+ "node_modules/bcp-47-match": {
+ "version": "2.0.3",
"license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
"funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/axe-core": {
- "version": "4.6.3",
- "license": "MPL-2.0",
- "engines": {
- "node": ">=4"
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/axios": {
- "version": "0.28.0",
- "resolved": "https://registry.npmjs.org/axios/-/axios-0.28.0.tgz",
- "integrity": "sha512-Tu7NYoGY4Yoc7I+Npf9HhUMtEEpV7ZiLH9yndTCoNhcpBH0kwcvFbzYN9/u5QKI5A6uefjsNNWaz5olJVYS62Q==",
- "dependencies": {
- "follow-redirects": "^1.15.0",
- "form-data": "^4.0.0",
- "proxy-from-env": "^1.1.0"
- }
+ "node_modules/before-after-hook": {
+ "version": "2.2.3",
+ "dev": true,
+ "license": "Apache-2.0"
},
- "node_modules/axios-cache-interceptor": {
- "version": "0.10.7",
+ "node_modules/better-opn": {
+ "version": "2.1.1",
"license": "MIT",
"dependencies": {
- "cache-parser": "^1.2.4",
- "fast-defer": "^1.1.7",
- "object-code": "^1.2.4"
+ "open": "^7.0.3"
},
- "funding": {
- "url": "https://github.com/ArthurFiorette/axios-cache-interceptor?sponsor=1"
+ "engines": {
+ "node": ">8.0.0"
}
},
- "node_modules/axios-mock-adapter": {
- "version": "1.21.2",
- "dev": true,
+ "node_modules/big.js": {
+ "version": "5.2.2",
"license": "MIT",
- "dependencies": {
- "fast-deep-equal": "^3.1.3",
- "is-buffer": "^2.0.5"
- },
- "peerDependencies": {
- "axios": ">= 0.17.0"
+ "engines": {
+ "node": "*"
}
},
- "node_modules/axios-retry": {
- "version": "3.2.0",
- "license": "Apache-2.0",
- "dependencies": {
- "is-retry-allowed": "^1.1.0"
+ "node_modules/binary-extensions": {
+ "version": "2.3.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/axobject-query": {
- "version": "3.1.1",
- "license": "Apache-2.0",
+ "node_modules/bl": {
+ "version": "4.1.0",
+ "license": "MIT",
"dependencies": {
- "deep-equal": "^2.0.5"
+ "buffer": "^5.5.0",
+ "inherits": "^2.0.4",
+ "readable-stream": "^3.4.0"
}
},
- "node_modules/babel-eslint": {
- "version": "10.1.0",
+ "node_modules/bl/node_modules/readable-stream": {
+ "version": "3.6.2",
"license": "MIT",
- "peer": true,
"dependencies": {
- "@babel/code-frame": "^7.0.0",
- "@babel/parser": "^7.7.0",
- "@babel/traverse": "^7.7.0",
- "@babel/types": "^7.7.0",
- "eslint-visitor-keys": "^1.0.0",
- "resolve": "^1.12.0"
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
},
"engines": {
- "node": ">=6"
- },
- "peerDependencies": {
- "eslint": ">= 4.12.1"
+ "node": ">= 6"
}
},
- "node_modules/babel-eslint/node_modules/eslint-visitor-keys": {
- "version": "1.3.0",
- "license": "Apache-2.0",
- "peer": true,
- "engines": {
- "node": ">=4"
- }
+ "node_modules/bluebird": {
+ "version": "3.7.2",
+ "license": "MIT"
},
- "node_modules/babel-jest": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz",
- "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==",
- "dev": true,
+ "node_modules/body-parser": {
+ "version": "1.20.1",
+ "license": "MIT",
"dependencies": {
- "@jest/transform": "^29.7.0",
- "@types/babel__core": "^7.1.14",
- "babel-plugin-istanbul": "^6.1.1",
- "babel-preset-jest": "^29.6.3",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.9",
- "slash": "^3.0.0"
+ "bytes": "3.1.2",
+ "content-type": "~1.0.4",
+ "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",
+ "type-is": "~1.6.18",
+ "unpipe": "1.0.0"
},
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.8.0"
+ "node": ">= 0.8",
+ "npm": "1.2.8000 || >= 1.4.16"
}
},
- "node_modules/babel-jest/node_modules/slash": {
- "version": "3.0.0",
- "dev": true,
+ "node_modules/body-parser/node_modules/debug": {
+ "version": "2.6.9",
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "ms": "2.0.0"
}
},
- "node_modules/babel-loader": {
- "version": "8.3.0",
+ "node_modules/body-parser/node_modules/ms": {
+ "version": "2.0.0",
+ "license": "MIT"
+ },
+ "node_modules/bonjour-service": {
+ "version": "1.3.0",
"license": "MIT",
"dependencies": {
- "find-cache-dir": "^3.3.1",
- "loader-utils": "^2.0.0",
- "make-dir": "^3.1.0",
- "schema-utils": "^2.6.5"
- },
- "engines": {
- "node": ">= 8.9"
- },
+ "fast-deep-equal": "^3.1.3",
+ "multicast-dns": "^7.2.5"
+ }
+ },
+ "node_modules/boolbase": {
+ "version": "1.0.0",
+ "license": "ISC"
+ },
+ "node_modules/bootstrap": {
+ "version": "4.6.2",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/twbs"
+ },
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/bootstrap"
+ }
+ ],
+ "license": "MIT",
"peerDependencies": {
- "@babel/core": "^7.0.0",
- "webpack": ">=2"
+ "jquery": "1.9.1 - 3",
+ "popper.js": "^1.16.1"
}
},
- "node_modules/babel-loader/node_modules/make-dir": {
- "version": "3.1.0",
+ "node_modules/bottleneck": {
+ "version": "2.19.5",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/boxen": {
+ "version": "5.1.2",
"license": "MIT",
"dependencies": {
- "semver": "^6.0.0"
+ "ansi-align": "^3.0.0",
+ "camelcase": "^6.2.0",
+ "chalk": "^4.1.0",
+ "cli-boxes": "^2.2.1",
+ "string-width": "^4.2.2",
+ "type-fest": "^0.20.2",
+ "widest-line": "^3.1.0",
+ "wrap-ansi": "^7.0.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/babel-plugin-add-module-exports": {
- "version": "1.0.4",
- "license": "MIT"
- },
- "node_modules/babel-plugin-apply-mdx-type-prop": {
- "version": "1.6.22",
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "7.10.4",
- "@mdx-js/util": "1.6.22"
+ "node_modules/boxen/node_modules/type-fest": {
+ "version": "0.20.2",
+ "license": "(MIT OR CC0-1.0)",
+ "engines": {
+ "node": ">=10"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- },
- "peerDependencies": {
- "@babel/core": "^7.11.6"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/babel-plugin-apply-mdx-type-prop/node_modules/@babel/helper-plugin-utils": {
- "version": "7.10.4",
- "license": "MIT"
- },
- "node_modules/babel-plugin-dynamic-import-node": {
- "version": "2.3.3",
+ "node_modules/brace-expansion": {
+ "version": "1.1.11",
"license": "MIT",
"dependencies": {
- "object.assign": "^4.1.0"
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
}
},
- "node_modules/babel-plugin-extract-import-names": {
- "version": "1.6.22",
+ "node_modules/braces": {
+ "version": "3.0.3",
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "7.10.4"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/babel-plugin-extract-import-names/node_modules/@babel/helper-plugin-utils": {
- "version": "7.10.4",
- "license": "MIT"
- },
- "node_modules/babel-plugin-istanbul": {
- "version": "6.1.1",
- "dev": true,
- "license": "BSD-3-Clause",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.0.0",
- "@istanbuljs/load-nyc-config": "^1.0.0",
- "@istanbuljs/schema": "^0.1.2",
- "istanbul-lib-instrument": "^5.0.4",
- "test-exclude": "^6.0.0"
+ "fill-range": "^7.1.1"
},
"engines": {
"node": ">=8"
}
},
- "node_modules/babel-plugin-jest-hoist": {
- "version": "29.6.3",
- "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz",
- "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==",
- "dev": true,
+ "node_modules/browser-process-hrtime": {
+ "version": "1.0.0",
+ "license": "BSD-2-Clause"
+ },
+ "node_modules/browserslist": {
+ "version": "4.24.2",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
"dependencies": {
- "@babel/template": "^7.3.3",
- "@babel/types": "^7.3.3",
- "@types/babel__core": "^7.1.14",
- "@types/babel__traverse": "^7.0.6"
+ "caniuse-lite": "^1.0.30001669",
+ "electron-to-chromium": "^1.5.41",
+ "node-releases": "^2.0.18",
+ "update-browserslist-db": "^1.1.1"
+ },
+ "bin": {
+ "browserslist": "cli.js"
},
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
}
},
- "node_modules/babel-plugin-lodash": {
- "version": "3.3.4",
+ "node_modules/bs-logger": {
+ "version": "0.2.6",
"license": "MIT",
"dependencies": {
- "@babel/helper-module-imports": "^7.0.0-beta.49",
- "@babel/types": "^7.0.0-beta.49",
- "glob": "^7.1.1",
- "lodash": "^4.17.10",
- "require-package-name": "^2.0.1"
- }
- },
- "node_modules/babel-plugin-lodash/node_modules/glob": {
- "version": "7.2.3",
- "license": "ISC",
- "dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.1.1",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
+ "fast-json-stable-stringify": "2.x"
},
"engines": {
- "node": "*"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
+ "node": ">= 6"
}
},
- "node_modules/babel-plugin-macros": {
- "version": "3.1.0",
- "license": "MIT",
+ "node_modules/bser": {
+ "version": "2.1.1",
+ "license": "Apache-2.0",
"dependencies": {
- "@babel/runtime": "^7.12.5",
- "cosmiconfig": "^7.0.0",
- "resolve": "^1.19.0"
- },
- "engines": {
- "node": ">=10",
- "npm": ">=6"
+ "node-int64": "^0.4.0"
}
},
- "node_modules/babel-plugin-polyfill-corejs2": {
- "version": "0.3.3",
+ "node_modules/buble": {
+ "version": "0.19.6",
"license": "MIT",
"dependencies": {
- "@babel/compat-data": "^7.17.7",
- "@babel/helper-define-polyfill-provider": "^0.3.3",
- "semver": "^6.1.1"
+ "chalk": "^2.4.1",
+ "magic-string": "^0.25.1",
+ "minimist": "^1.2.0",
+ "os-homedir": "^1.0.1",
+ "regexpu-core": "^4.2.0",
+ "vlq": "^1.0.0"
},
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "bin": {
+ "buble": "bin/buble"
}
},
- "node_modules/babel-plugin-polyfill-corejs3": {
- "version": "0.6.0",
+ "node_modules/buble/node_modules/ansi-styles": {
+ "version": "3.2.1",
"license": "MIT",
"dependencies": {
- "@babel/helper-define-polyfill-provider": "^0.3.3",
- "core-js-compat": "^3.25.1"
+ "color-convert": "^1.9.0"
},
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/babel-plugin-polyfill-regenerator": {
- "version": "0.4.1",
+ "node_modules/buble/node_modules/chalk": {
+ "version": "2.4.2",
"license": "MIT",
"dependencies": {
- "@babel/helper-define-polyfill-provider": "^0.3.3"
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
},
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/babel-plugin-react-intl": {
- "version": "7.9.4",
- "dev": true,
- "license": "BSD-3-Clause",
+ "node_modules/buble/node_modules/color-convert": {
+ "version": "1.9.3",
+ "license": "MIT",
"dependencies": {
- "@babel/core": "^7.9.0",
- "@babel/helper-plugin-utils": "^7.8.3",
- "@babel/types": "^7.9.5",
- "@formatjs/ts-transformer": "^2.6.0",
- "@types/babel__core": "^7.1.7",
- "@types/fs-extra": "^9.0.1",
- "@types/schema-utils": "^2.4.0",
- "fs-extra": "^9.0.0",
- "intl-messageformat-parser": "^5.3.7",
- "schema-utils": "^2.6.6"
+ "color-name": "1.1.3"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/@formatjs/ecma402-abstract": {
- "version": "1.5.0",
- "dev": true,
+ "node_modules/buble/node_modules/color-name": {
+ "version": "1.1.3",
+ "license": "MIT"
+ },
+ "node_modules/buble/node_modules/escape-string-regexp": {
+ "version": "1.0.5",
"license": "MIT",
- "dependencies": {
- "tslib": "^2.0.1"
+ "engines": {
+ "node": ">=0.8.0"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/@formatjs/ts-transformer": {
- "version": "2.13.0",
- "dev": true,
+ "node_modules/buble/node_modules/has-flag": {
+ "version": "3.0.0",
"license": "MIT",
- "dependencies": {
- "intl-messageformat-parser": "6.1.2",
- "tslib": "^2.0.1",
- "typescript": "^4.0"
- },
- "peerDependencies": {
- "ts-jest": "^26.4.0"
- },
- "peerDependenciesMeta": {
- "ts-jest": {
- "optional": true
- }
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/@formatjs/ts-transformer/node_modules/intl-messageformat-parser": {
- "version": "6.1.2",
- "dev": true,
- "license": "BSD-3-Clause",
- "dependencies": {
- "@formatjs/ecma402-abstract": "1.5.0",
- "tslib": "^2.0.1"
+ "node_modules/buble/node_modules/jsesc": {
+ "version": "0.5.0",
+ "bin": {
+ "jsesc": "bin/jsesc"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/@jest/console": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/buble/node_modules/regenerate-unicode-properties": {
+ "version": "9.0.0",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "jest-message-util": "^26.6.2",
- "jest-util": "^26.6.2",
- "slash": "^3.0.0"
+ "regenerate": "^1.4.2"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=4"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/@jest/core": {
- "version": "26.6.3",
- "dev": true,
+ "node_modules/buble/node_modules/regexpu-core": {
+ "version": "4.8.0",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "@jest/console": "^26.6.2",
- "@jest/reporters": "^26.6.2",
- "@jest/test-result": "^26.6.2",
- "@jest/transform": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "ansi-escapes": "^4.2.1",
- "chalk": "^4.0.0",
- "exit": "^0.1.2",
- "graceful-fs": "^4.2.4",
- "jest-changed-files": "^26.6.2",
- "jest-config": "^26.6.3",
- "jest-haste-map": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-regex-util": "^26.0.0",
- "jest-resolve": "^26.6.2",
- "jest-resolve-dependencies": "^26.6.3",
- "jest-runner": "^26.6.3",
- "jest-runtime": "^26.6.3",
- "jest-snapshot": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-validate": "^26.6.2",
- "jest-watcher": "^26.6.2",
- "micromatch": "^4.0.2",
- "p-each-series": "^2.1.0",
- "rimraf": "^3.0.0",
- "slash": "^3.0.0",
- "strip-ansi": "^6.0.0"
+ "regenerate": "^1.4.2",
+ "regenerate-unicode-properties": "^9.0.0",
+ "regjsgen": "^0.5.2",
+ "regjsparser": "^0.7.0",
+ "unicode-match-property-ecmascript": "^2.0.0",
+ "unicode-match-property-value-ecmascript": "^2.0.0"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=4"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/@jest/core/node_modules/jest-config": {
- "version": "26.6.3",
- "dev": true,
- "license": "MIT",
- "optional": true,
- "peer": true,
+ "node_modules/buble/node_modules/regjsgen": {
+ "version": "0.5.2",
+ "license": "MIT"
+ },
+ "node_modules/buble/node_modules/regjsparser": {
+ "version": "0.7.0",
+ "license": "BSD-2-Clause",
"dependencies": {
- "@babel/core": "^7.1.0",
- "@jest/test-sequencer": "^26.6.3",
- "@jest/types": "^26.6.2",
- "babel-jest": "^26.6.3",
- "chalk": "^4.0.0",
- "deepmerge": "^4.2.2",
- "glob": "^7.1.1",
- "graceful-fs": "^4.2.4",
- "jest-environment-jsdom": "^26.6.2",
- "jest-environment-node": "^26.6.2",
- "jest-get-type": "^26.3.0",
- "jest-jasmine2": "^26.6.3",
- "jest-regex-util": "^26.0.0",
- "jest-resolve": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-validate": "^26.6.2",
- "micromatch": "^4.0.2",
- "pretty-format": "^26.6.2"
- },
- "engines": {
- "node": ">= 10.14.2"
- },
- "peerDependencies": {
- "ts-node": ">=9.0.0"
+ "jsesc": "~0.5.0"
},
- "peerDependenciesMeta": {
- "ts-node": {
- "optional": true
- }
+ "bin": {
+ "regjsparser": "bin/parser"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/@jest/environment": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/buble/node_modules/supports-color": {
+ "version": "5.5.0",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "@jest/fake-timers": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "jest-mock": "^26.6.2"
+ "has-flag": "^3.0.0"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=4"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/@jest/fake-timers": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/buffer": {
+ "version": "5.7.1",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "@jest/types": "^26.6.2",
- "@sinonjs/fake-timers": "^6.0.1",
- "@types/node": "*",
- "jest-message-util": "^26.6.2",
- "jest-mock": "^26.6.2",
- "jest-util": "^26.6.2"
- },
- "engines": {
- "node": ">= 10.14.2"
+ "base64-js": "^1.3.1",
+ "ieee754": "^1.1.13"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/@jest/globals": {
- "version": "26.6.2",
- "dev": true,
- "license": "MIT",
- "optional": true,
- "peer": true,
+ "node_modules/buffer-from": {
+ "version": "1.1.2",
+ "license": "MIT"
+ },
+ "node_modules/busboy": {
+ "version": "1.6.0",
"dependencies": {
- "@jest/environment": "^26.6.2",
- "@jest/types": "^26.6.2",
- "expect": "^26.6.2"
+ "streamsearch": "^1.1.0"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=10.16.0"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/@jest/reporters": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/bytes": {
+ "version": "3.1.2",
"license": "MIT",
- "optional": true,
- "peer": true,
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/c8": {
+ "version": "7.14.0",
+ "license": "ISC",
"dependencies": {
"@bcoe/v8-coverage": "^0.2.3",
- "@jest/console": "^26.6.2",
- "@jest/test-result": "^26.6.2",
- "@jest/transform": "^26.6.2",
- "@jest/types": "^26.6.2",
- "chalk": "^4.0.0",
- "collect-v8-coverage": "^1.0.0",
- "exit": "^0.1.2",
- "glob": "^7.1.2",
- "graceful-fs": "^4.2.4",
- "istanbul-lib-coverage": "^3.0.0",
- "istanbul-lib-instrument": "^4.0.3",
+ "@istanbuljs/schema": "^0.1.3",
+ "find-up": "^5.0.0",
+ "foreground-child": "^2.0.0",
+ "istanbul-lib-coverage": "^3.2.0",
"istanbul-lib-report": "^3.0.0",
- "istanbul-lib-source-maps": "^4.0.0",
- "istanbul-reports": "^3.0.2",
- "jest-haste-map": "^26.6.2",
- "jest-resolve": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-worker": "^26.6.2",
- "slash": "^3.0.0",
- "source-map": "^0.6.0",
- "string-length": "^4.0.1",
- "terminal-link": "^2.0.0",
- "v8-to-istanbul": "^7.0.0"
+ "istanbul-reports": "^3.1.4",
+ "rimraf": "^3.0.2",
+ "test-exclude": "^6.0.0",
+ "v8-to-istanbul": "^9.0.0",
+ "yargs": "^16.2.0",
+ "yargs-parser": "^20.2.9"
},
- "engines": {
- "node": ">= 10.14.2"
+ "bin": {
+ "c8": "bin/c8.js"
},
- "optionalDependencies": {
- "node-notifier": "^8.0.0"
+ "engines": {
+ "node": ">=10.12.0"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/@jest/source-map": {
- "version": "26.6.2",
- "dev": true,
- "license": "MIT",
- "optional": true,
- "peer": true,
+ "node_modules/c8/node_modules/cliui": {
+ "version": "7.0.4",
+ "license": "ISC",
"dependencies": {
- "callsites": "^3.0.0",
- "graceful-fs": "^4.2.4",
- "source-map": "^0.6.0"
- },
- "engines": {
- "node": ">= 10.14.2"
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.0",
+ "wrap-ansi": "^7.0.0"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/@jest/test-result": {
- "version": "26.6.2",
- "dev": true,
- "license": "MIT",
- "optional": true,
- "peer": true,
+ "node_modules/c8/node_modules/convert-source-map": {
+ "version": "2.0.0",
+ "license": "MIT"
+ },
+ "node_modules/c8/node_modules/v8-to-istanbul": {
+ "version": "9.3.0",
+ "license": "ISC",
"dependencies": {
- "@jest/console": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/istanbul-lib-coverage": "^2.0.0",
- "collect-v8-coverage": "^1.0.0"
+ "@jridgewell/trace-mapping": "^0.3.12",
+ "@types/istanbul-lib-coverage": "^2.0.1",
+ "convert-source-map": "^2.0.0"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=10.12.0"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/@jest/test-sequencer": {
- "version": "26.6.3",
- "dev": true,
- "license": "MIT",
- "optional": true,
- "peer": true,
- "dependencies": {
- "@jest/test-result": "^26.6.2",
- "graceful-fs": "^4.2.4",
- "jest-haste-map": "^26.6.2",
- "jest-runner": "^26.6.3",
- "jest-runtime": "^26.6.3"
- },
+ "node_modules/c8/node_modules/y18n": {
+ "version": "5.0.8",
+ "license": "ISC",
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=10"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/@jest/transform": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/c8/node_modules/yargs": {
+ "version": "16.2.0",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "@babel/core": "^7.1.0",
- "@jest/types": "^26.6.2",
- "babel-plugin-istanbul": "^6.0.0",
- "chalk": "^4.0.0",
- "convert-source-map": "^1.4.0",
- "fast-json-stable-stringify": "^2.0.0",
- "graceful-fs": "^4.2.4",
- "jest-haste-map": "^26.6.2",
- "jest-regex-util": "^26.0.0",
- "jest-util": "^26.6.2",
- "micromatch": "^4.0.2",
- "pirates": "^4.0.1",
- "slash": "^3.0.0",
- "source-map": "^0.6.1",
- "write-file-atomic": "^3.0.0"
+ "cliui": "^7.0.2",
+ "escalade": "^3.1.1",
+ "get-caller-file": "^2.0.5",
+ "require-directory": "^2.1.1",
+ "string-width": "^4.2.0",
+ "y18n": "^5.0.5",
+ "yargs-parser": "^20.2.2"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=10"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/@jest/types": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/cache-base": {
+ "version": "1.0.1",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "@types/istanbul-lib-coverage": "^2.0.0",
- "@types/istanbul-reports": "^3.0.0",
- "@types/node": "*",
- "@types/yargs": "^15.0.0",
- "chalk": "^4.0.0"
+ "collection-visit": "^1.0.0",
+ "component-emitter": "^1.2.1",
+ "get-value": "^2.0.6",
+ "has-value": "^1.0.0",
+ "isobject": "^3.0.1",
+ "set-value": "^2.0.0",
+ "to-object-path": "^0.3.0",
+ "union-value": "^1.0.0",
+ "unset-value": "^1.0.0"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/cache-manager": {
+ "version": "2.11.1",
+ "license": "MIT",
+ "dependencies": {
+ "async": "1.5.2",
+ "lodash.clonedeep": "4.5.0",
+ "lru-cache": "4.0.0"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/@sinonjs/fake-timers": {
- "version": "6.0.1",
- "dev": true,
- "license": "BSD-3-Clause",
- "optional": true,
- "peer": true,
+ "node_modules/cache-manager/node_modules/lru-cache": {
+ "version": "4.0.0",
+ "license": "ISC",
"dependencies": {
- "@sinonjs/commons": "^1.7.0"
+ "pseudomap": "^1.0.1",
+ "yallist": "^2.0.0"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/@tootallnate/once": {
- "version": "1.1.2",
- "dev": true,
+ "node_modules/cache-manager/node_modules/yallist": {
+ "version": "2.1.2",
+ "license": "ISC"
+ },
+ "node_modules/cache-parser": {
+ "version": "1.2.5",
+ "license": "MIT"
+ },
+ "node_modules/cacheable-lookup": {
+ "version": "5.0.4",
"license": "MIT",
- "optional": true,
- "peer": true,
"engines": {
- "node": ">= 6"
+ "node": ">=10.6.0"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/@types/yargs": {
- "version": "15.0.15",
- "dev": true,
+ "node_modules/cacheable-request": {
+ "version": "7.0.4",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "@types/yargs-parser": "*"
+ "clone-response": "^1.0.2",
+ "get-stream": "^5.1.0",
+ "http-cache-semantics": "^4.0.0",
+ "keyv": "^4.0.0",
+ "lowercase-keys": "^2.0.0",
+ "normalize-url": "^6.0.1",
+ "responselike": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/ansi-styles": {
- "version": "4.3.0",
- "dev": true,
+ "node_modules/cacheable-request/node_modules/get-stream": {
+ "version": "5.2.0",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "color-convert": "^2.0.1"
+ "pump": "^3.0.0"
},
"engines": {
"node": ">=8"
},
"funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/babel-jest": {
- "version": "26.6.3",
- "dev": true,
+ "node_modules/call-bind": {
+ "version": "1.0.8",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "@jest/transform": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/babel__core": "^7.1.7",
- "babel-plugin-istanbul": "^6.0.0",
- "babel-preset-jest": "^26.6.2",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.4",
- "slash": "^3.0.0"
+ "call-bind-apply-helpers": "^1.0.0",
+ "es-define-property": "^1.0.0",
+ "get-intrinsic": "^1.2.4",
+ "set-function-length": "^1.2.2"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">= 0.4"
},
- "peerDependencies": {
- "@babel/core": "^7.0.0"
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/babel-plugin-jest-hoist": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/call-bind-apply-helpers": {
+ "version": "1.0.1",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "@babel/template": "^7.3.3",
- "@babel/types": "^7.3.3",
- "@types/babel__core": "^7.0.0",
- "@types/babel__traverse": "^7.0.6"
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">= 0.4"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/babel-preset-jest": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/call-bound": {
+ "version": "1.0.3",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "babel-plugin-jest-hoist": "^26.6.2",
- "babel-preset-current-node-syntax": "^1.0.0"
+ "call-bind-apply-helpers": "^1.0.1",
+ "get-intrinsic": "^1.2.6"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">= 0.4"
},
- "peerDependencies": {
- "@babel/core": "^7.0.0"
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/callsites": {
+ "version": "3.1.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/camel-case": {
+ "version": "4.1.2",
+ "license": "MIT",
+ "dependencies": {
+ "pascal-case": "^3.1.2",
+ "tslib": "^2.0.3"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/camelcase": {
+ "node_modules/camelcase": {
"version": "6.3.0",
- "dev": true,
"license": "MIT",
- "optional": true,
- "peer": true,
"engines": {
"node": ">=10"
},
@@ -11112,4852 +14750,4954 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/cjs-module-lexer": {
- "version": "0.6.0",
+ "node_modules/camelcase-keys": {
+ "version": "6.2.2",
"dev": true,
"license": "MIT",
- "optional": true,
- "peer": true
- },
- "node_modules/babel-plugin-react-intl/node_modules/cliui": {
- "version": "6.0.0",
- "dev": true,
- "license": "ISC",
- "optional": true,
- "peer": true,
"dependencies": {
- "string-width": "^4.2.0",
- "strip-ansi": "^6.0.0",
- "wrap-ansi": "^6.2.0"
+ "camelcase": "^5.3.1",
+ "map-obj": "^4.0.0",
+ "quick-lru": "^4.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/color-convert": {
- "version": "2.0.1",
+ "node_modules/camelcase-keys/node_modules/camelcase": {
+ "version": "5.3.1",
"dev": true,
"license": "MIT",
- "optional": true,
- "peer": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
"engines": {
- "node": ">=7.0.0"
+ "node": ">=6"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/color-name": {
- "version": "1.1.4",
+ "node_modules/camelcase-keys/node_modules/quick-lru": {
+ "version": "4.0.1",
"dev": true,
"license": "MIT",
- "optional": true,
- "peer": true
+ "engines": {
+ "node": ">=8"
+ }
},
- "node_modules/babel-plugin-react-intl/node_modules/cssom": {
- "version": "0.4.4",
- "dev": true,
+ "node_modules/caniuse-api": {
+ "version": "3.0.0",
"license": "MIT",
- "optional": true,
- "peer": true
+ "dependencies": {
+ "browserslist": "^4.0.0",
+ "caniuse-lite": "^1.0.0",
+ "lodash.memoize": "^4.1.2",
+ "lodash.uniq": "^4.5.0"
+ }
},
- "node_modules/babel-plugin-react-intl/node_modules/data-urls": {
- "version": "2.0.0",
- "dev": true,
+ "node_modules/caniuse-lite": {
+ "version": "1.0.30001687",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "CC-BY-4.0"
+ },
+ "node_modules/capital-case": {
+ "version": "1.0.4",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "abab": "^2.0.3",
- "whatwg-mimetype": "^2.3.0",
- "whatwg-url": "^8.0.0"
- },
- "engines": {
- "node": ">=10"
+ "no-case": "^3.0.4",
+ "tslib": "^2.0.3",
+ "upper-case-first": "^2.0.2"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/diff-sequences": {
- "version": "26.6.2",
- "dev": true,
- "license": "MIT",
- "optional": true,
- "peer": true,
+ "node_modules/capture-exit": {
+ "version": "2.0.0",
+ "license": "ISC",
+ "dependencies": {
+ "rsvp": "^4.8.4"
+ },
"engines": {
- "node": ">= 10.14.2"
+ "node": "6.* || 8.* || >= 10.*"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/domexception": {
- "version": "2.0.1",
+ "node_modules/cardinal": {
+ "version": "2.1.1",
"dev": true,
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "webidl-conversions": "^5.0.0"
+ "ansicolors": "~0.3.2",
+ "redeyed": "~2.1.0"
},
- "engines": {
- "node": ">=8"
+ "bin": {
+ "cdl": "bin/cdl.js"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/domexception/node_modules/webidl-conversions": {
- "version": "5.0.0",
- "dev": true,
- "license": "BSD-2-Clause",
- "optional": true,
- "peer": true,
- "engines": {
- "node": ">=8"
+ "node_modules/cast-array": {
+ "version": "1.0.1",
+ "license": "MIT",
+ "dependencies": {
+ "isarray": "0.0.1"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/emittery": {
- "version": "0.7.2",
- "dev": true,
+ "node_modules/cast-array/node_modules/isarray": {
+ "version": "0.0.1",
+ "license": "MIT"
+ },
+ "node_modules/ccount": {
+ "version": "2.0.1",
"license": "MIT",
- "optional": true,
- "peer": true,
- "engines": {
- "node": ">=10"
- },
"funding": {
- "url": "https://github.com/sindresorhus/emittery?sponsor=1"
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/execa": {
- "version": "4.1.0",
- "dev": true,
+ "node_modules/chalk": {
+ "version": "4.1.2",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "cross-spawn": "^7.0.0",
- "get-stream": "^5.0.0",
- "human-signals": "^1.1.1",
- "is-stream": "^2.0.0",
- "merge-stream": "^2.0.0",
- "npm-run-path": "^4.0.0",
- "onetime": "^5.1.0",
- "signal-exit": "^3.0.2",
- "strip-final-newline": "^2.0.0"
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
},
"engines": {
"node": ">=10"
},
"funding": {
- "url": "https://github.com/sindresorhus/execa?sponsor=1"
+ "url": "https://github.com/chalk/chalk?sponsor=1"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/expect": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/change-case": {
+ "version": "4.1.2",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "@jest/types": "^26.6.2",
- "ansi-styles": "^4.0.0",
- "jest-get-type": "^26.3.0",
- "jest-matcher-utils": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-regex-util": "^26.0.0"
- },
- "engines": {
- "node": ">= 10.14.2"
+ "camel-case": "^4.1.2",
+ "capital-case": "^1.0.4",
+ "constant-case": "^3.0.4",
+ "dot-case": "^3.0.4",
+ "header-case": "^2.0.4",
+ "no-case": "^3.0.4",
+ "param-case": "^3.0.4",
+ "pascal-case": "^3.1.2",
+ "path-case": "^3.0.4",
+ "sentence-case": "^3.0.4",
+ "snake-case": "^3.0.4",
+ "tslib": "^2.0.3"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/form-data": {
- "version": "3.0.1",
- "dev": true,
+ "node_modules/change-case-all": {
+ "version": "1.0.14",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "asynckit": "^0.4.0",
- "combined-stream": "^1.0.8",
- "mime-types": "^2.1.12"
- },
- "engines": {
- "node": ">= 6"
+ "change-case": "^4.1.2",
+ "is-lower-case": "^2.0.2",
+ "is-upper-case": "^2.0.2",
+ "lower-case": "^2.0.2",
+ "lower-case-first": "^2.0.2",
+ "sponge-case": "^1.0.1",
+ "swap-case": "^2.0.2",
+ "title-case": "^3.0.3",
+ "upper-case": "^2.0.2",
+ "upper-case-first": "^2.0.2"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/fs-extra": {
- "version": "9.1.0",
- "dev": true,
+ "node_modules/char-regex": {
+ "version": "1.0.2",
"license": "MIT",
- "dependencies": {
- "at-least-node": "^1.0.0",
- "graceful-fs": "^4.2.0",
- "jsonfile": "^6.0.1",
- "universalify": "^2.0.0"
- },
"engines": {
"node": ">=10"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/get-stream": {
- "version": "5.2.0",
- "dev": true,
+ "node_modules/character-entities": {
+ "version": "2.0.2",
"license": "MIT",
- "optional": true,
- "peer": true,
- "dependencies": {
- "pump": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- },
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/glob": {
- "version": "7.2.3",
- "dev": true,
- "license": "ISC",
- "optional": true,
- "peer": true,
- "dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.1.1",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
- },
- "engines": {
- "node": "*"
- },
+ "node_modules/character-entities-html4": {
+ "version": "2.1.0",
+ "license": "MIT",
"funding": {
- "url": "https://github.com/sponsors/isaacs"
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/has-flag": {
- "version": "4.0.0",
- "dev": true,
+ "node_modules/character-entities-legacy": {
+ "version": "3.0.0",
"license": "MIT",
- "optional": true,
- "peer": true,
- "engines": {
- "node": ">=8"
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/html-encoding-sniffer": {
+ "node_modules/character-reference-invalid": {
"version": "2.0.1",
- "dev": true,
"license": "MIT",
- "optional": true,
- "peer": true,
- "dependencies": {
- "whatwg-encoding": "^1.0.5"
- },
- "engines": {
- "node": ">=10"
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/http-proxy-agent": {
- "version": "4.0.1",
- "dev": true,
- "license": "MIT",
- "optional": true,
- "peer": true,
- "dependencies": {
- "@tootallnate/once": "1",
- "agent-base": "6",
- "debug": "4"
- },
+ "node_modules/chardet": {
+ "version": "0.7.0",
+ "license": "MIT"
+ },
+ "node_modules/charenc": {
+ "version": "0.0.2",
+ "license": "BSD-3-Clause",
"engines": {
- "node": ">= 6"
+ "node": "*"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/human-signals": {
- "version": "1.1.1",
- "dev": true,
+ "node_modules/chevrotain": {
+ "version": "11.0.3",
+ "resolved": "https://registry.npmjs.org/chevrotain/-/chevrotain-11.0.3.tgz",
+ "integrity": "sha512-ci2iJH6LeIkvP9eJW6gpueU8cnZhv85ELY8w8WiFtNjMHA5ad6pQLaJo9mEly/9qUyCpvqX8/POVUTf18/HFdw==",
"license": "Apache-2.0",
- "optional": true,
- "peer": true,
- "engines": {
- "node": ">=8.12.0"
+ "dependencies": {
+ "@chevrotain/cst-dts-gen": "11.0.3",
+ "@chevrotain/gast": "11.0.3",
+ "@chevrotain/regexp-to-ast": "11.0.3",
+ "@chevrotain/types": "11.0.3",
+ "@chevrotain/utils": "11.0.3",
+ "lodash-es": "4.17.21"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/iconv-lite": {
- "version": "0.4.24",
- "dev": true,
+ "node_modules/child_process": {
+ "version": "1.0.2",
+ "license": "ISC"
+ },
+ "node_modules/chokidar": {
+ "version": "3.6.0",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "safer-buffer": ">= 2.1.2 < 3"
+ "anymatch": "~3.1.2",
+ "braces": "~3.0.2",
+ "glob-parent": "~5.1.2",
+ "is-binary-path": "~2.1.0",
+ "is-glob": "~4.0.1",
+ "normalize-path": "~3.0.0",
+ "readdirp": "~3.6.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 8.10.0"
+ },
+ "funding": {
+ "url": "https://paulmillr.com/funding/"
+ },
+ "optionalDependencies": {
+ "fsevents": "~2.3.2"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/istanbul-lib-instrument": {
- "version": "4.0.3",
- "dev": true,
- "license": "BSD-3-Clause",
- "optional": true,
- "peer": true,
+ "node_modules/chokidar/node_modules/glob-parent": {
+ "version": "5.1.2",
+ "license": "ISC",
"dependencies": {
- "@babel/core": "^7.7.5",
- "@istanbuljs/schema": "^0.1.2",
- "istanbul-lib-coverage": "^3.0.0",
- "semver": "^6.3.0"
+ "is-glob": "^4.0.1"
},
"engines": {
- "node": ">=8"
+ "node": ">= 6"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/jest": {
- "version": "26.6.3",
- "dev": true,
+ "node_modules/chownr": {
+ "version": "1.1.4",
+ "license": "ISC"
+ },
+ "node_modules/chroma-js": {
+ "version": "2.6.0",
+ "resolved": "https://registry.npmjs.org/chroma-js/-/chroma-js-2.6.0.tgz",
+ "integrity": "sha512-BLHvCB9s8Z1EV4ethr6xnkl/P2YRFOGqfgvuMG/MyCbZPrTA+NeiByY6XvgF0zP4/2deU2CXnWyMa3zu1LqQ3A==",
+ "license": "(BSD-3-Clause AND Apache-2.0)"
+ },
+ "node_modules/chrome-trace-event": {
+ "version": "1.0.4",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.0"
+ }
+ },
+ "node_modules/ci-info": {
+ "version": "2.0.0",
+ "license": "MIT"
+ },
+ "node_modules/cjs-module-lexer": {
+ "version": "0.6.0",
+ "license": "MIT"
+ },
+ "node_modules/class-utils": {
+ "version": "0.3.6",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "@jest/core": "^26.6.3",
- "import-local": "^3.0.2",
- "jest-cli": "^26.6.3"
- },
- "bin": {
- "jest": "bin/jest.js"
+ "arr-union": "^3.1.0",
+ "define-property": "^0.2.5",
+ "isobject": "^3.0.0",
+ "static-extend": "^0.1.1"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=0.10.0"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/jest-changed-files": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/class-utils/node_modules/define-property": {
+ "version": "0.2.5",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "@jest/types": "^26.6.2",
- "execa": "^4.0.0",
- "throat": "^5.0.0"
+ "is-descriptor": "^0.1.0"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=0.10.0"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/jest-cli": {
- "version": "26.6.3",
- "dev": true,
+ "node_modules/class-utils/node_modules/is-descriptor": {
+ "version": "0.1.7",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "@jest/core": "^26.6.3",
- "@jest/test-result": "^26.6.2",
- "@jest/types": "^26.6.2",
- "chalk": "^4.0.0",
- "exit": "^0.1.2",
- "graceful-fs": "^4.2.4",
- "import-local": "^3.0.2",
- "is-ci": "^2.0.0",
- "jest-config": "^26.6.3",
- "jest-util": "^26.6.2",
- "jest-validate": "^26.6.2",
- "prompts": "^2.0.1",
- "yargs": "^15.4.1"
- },
- "bin": {
- "jest": "bin/jest.js"
+ "is-accessor-descriptor": "^1.0.1",
+ "is-data-descriptor": "^1.0.1"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">= 0.4"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/jest-cli/node_modules/jest-config": {
- "version": "26.6.3",
- "dev": true,
+ "node_modules/classnames": {
+ "version": "2.5.1",
+ "license": "MIT"
+ },
+ "node_modules/clean-css": {
+ "version": "5.3.3",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "@babel/core": "^7.1.0",
- "@jest/test-sequencer": "^26.6.3",
- "@jest/types": "^26.6.2",
- "babel-jest": "^26.6.3",
- "chalk": "^4.0.0",
- "deepmerge": "^4.2.2",
- "glob": "^7.1.1",
- "graceful-fs": "^4.2.4",
- "jest-environment-jsdom": "^26.6.2",
- "jest-environment-node": "^26.6.2",
- "jest-get-type": "^26.3.0",
- "jest-jasmine2": "^26.6.3",
- "jest-regex-util": "^26.0.0",
- "jest-resolve": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-validate": "^26.6.2",
- "micromatch": "^4.0.2",
- "pretty-format": "^26.6.2"
+ "source-map": "~0.6.0"
},
"engines": {
- "node": ">= 10.14.2"
- },
- "peerDependencies": {
- "ts-node": ">=9.0.0"
- },
- "peerDependenciesMeta": {
- "ts-node": {
- "optional": true
- }
+ "node": ">= 10.0"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/jest-diff": {
- "version": "26.6.2",
+ "node_modules/clean-stack": {
+ "version": "2.2.0",
"dev": true,
"license": "MIT",
- "optional": true,
- "peer": true,
- "dependencies": {
- "chalk": "^4.0.0",
- "diff-sequences": "^26.6.2",
- "jest-get-type": "^26.3.0",
- "pretty-format": "^26.6.2"
- },
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/jest-docblock": {
- "version": "26.0.0",
- "dev": true,
+ "node_modules/clean-webpack-plugin": {
+ "version": "4.0.0",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "detect-newline": "^3.0.0"
+ "del": "^4.1.1"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=10.0.0"
+ },
+ "peerDependencies": {
+ "webpack": ">=4.0.0 <6.0.0"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/jest-environment-jsdom": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/cli-boxes": {
+ "version": "2.2.1",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/cli-cursor": {
+ "version": "3.1.0",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "@jest/environment": "^26.6.2",
- "@jest/fake-timers": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "jest-mock": "^26.6.2",
- "jest-util": "^26.6.2",
- "jsdom": "^16.4.0"
+ "restore-cursor": "^3.1.0"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=8"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/jest-environment-node": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/cli-progress": {
+ "version": "3.12.0",
+ "resolved": "https://registry.npmjs.org/cli-progress/-/cli-progress-3.12.0.tgz",
+ "integrity": "sha512-tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A==",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "@jest/environment": "^26.6.2",
- "@jest/fake-timers": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "jest-mock": "^26.6.2",
- "jest-util": "^26.6.2"
+ "string-width": "^4.2.3"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=4"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/jest-get-type": {
- "version": "26.3.0",
- "dev": true,
+ "node_modules/cli-spinners": {
+ "version": "2.9.2",
"license": "MIT",
- "optional": true,
- "peer": true,
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/jest-haste-map": {
- "version": "26.6.2",
+ "node_modules/cli-table3": {
+ "version": "0.6.5",
"dev": true,
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "@jest/types": "^26.6.2",
- "@types/graceful-fs": "^4.1.2",
- "@types/node": "*",
- "anymatch": "^3.0.3",
- "fb-watchman": "^2.0.0",
- "graceful-fs": "^4.2.4",
- "jest-regex-util": "^26.0.0",
- "jest-serializer": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-worker": "^26.6.2",
- "micromatch": "^4.0.2",
- "sane": "^4.0.3",
- "walker": "^1.0.7"
+ "string-width": "^4.2.0"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": "10.* || >= 12.*"
},
"optionalDependencies": {
- "fsevents": "^2.1.2"
+ "@colors/colors": "1.5.0"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/jest-leak-detector": {
- "version": "26.6.2",
+ "node_modules/cli-truncate": {
+ "version": "4.0.0",
"dev": true,
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "jest-get-type": "^26.3.0",
- "pretty-format": "^26.6.2"
+ "slice-ansi": "^5.0.0",
+ "string-width": "^7.0.0"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/jest-matcher-utils": {
- "version": "26.6.2",
+ "node_modules/cli-truncate/node_modules/ansi-regex": {
+ "version": "6.1.0",
"dev": true,
"license": "MIT",
- "optional": true,
- "peer": true,
- "dependencies": {
- "chalk": "^4.0.0",
- "jest-diff": "^26.6.2",
- "jest-get-type": "^26.3.0",
- "pretty-format": "^26.6.2"
- },
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/jest-message-util": {
- "version": "26.6.2",
+ "node_modules/cli-truncate/node_modules/emoji-regex": {
+ "version": "10.4.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/cli-truncate/node_modules/string-width": {
+ "version": "7.2.0",
"dev": true,
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "@babel/code-frame": "^7.0.0",
- "@jest/types": "^26.6.2",
- "@types/stack-utils": "^2.0.0",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.4",
- "micromatch": "^4.0.2",
- "pretty-format": "^26.6.2",
- "slash": "^3.0.0",
- "stack-utils": "^2.0.2"
+ "emoji-regex": "^10.3.0",
+ "get-east-asian-width": "^1.0.0",
+ "strip-ansi": "^7.1.0"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/jest-mock": {
- "version": "26.6.2",
+ "node_modules/cli-truncate/node_modules/strip-ansi": {
+ "version": "7.1.0",
"dev": true,
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "@jest/types": "^26.6.2",
- "@types/node": "*"
+ "ansi-regex": "^6.0.1"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/jest-regex-util": {
- "version": "26.0.0",
- "dev": true,
- "license": "MIT",
- "optional": true,
- "peer": true,
+ "node_modules/cli-width": {
+ "version": "3.0.0",
+ "license": "ISC",
"engines": {
- "node": ">= 10.14.2"
+ "node": ">= 10"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/jest-resolve": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/clipboardy": {
+ "version": "4.0.0",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "@jest/types": "^26.6.2",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.4",
- "jest-pnp-resolver": "^1.2.2",
- "jest-util": "^26.6.2",
- "read-pkg-up": "^7.0.1",
- "resolve": "^1.18.1",
- "slash": "^3.0.0"
+ "execa": "^8.0.1",
+ "is-wsl": "^3.1.0",
+ "is64bit": "^2.0.0"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/jest-resolve-dependencies": {
- "version": "26.6.3",
- "dev": true,
+ "node_modules/clipboardy/node_modules/execa": {
+ "version": "8.0.1",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "@jest/types": "^26.6.2",
- "jest-regex-util": "^26.0.0",
- "jest-snapshot": "^26.6.2"
+ "cross-spawn": "^7.0.3",
+ "get-stream": "^8.0.1",
+ "human-signals": "^5.0.0",
+ "is-stream": "^3.0.0",
+ "merge-stream": "^2.0.0",
+ "npm-run-path": "^5.1.0",
+ "onetime": "^6.0.0",
+ "signal-exit": "^4.1.0",
+ "strip-final-newline": "^3.0.0"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=16.17"
+ },
+ "funding": {
+ "url": "https://github.com/sindresorhus/execa?sponsor=1"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/jest-runner": {
- "version": "26.6.3",
- "dev": true,
+ "node_modules/clipboardy/node_modules/get-stream": {
+ "version": "8.0.1",
"license": "MIT",
- "optional": true,
- "peer": true,
- "dependencies": {
- "@jest/console": "^26.6.2",
- "@jest/environment": "^26.6.2",
- "@jest/test-result": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "emittery": "^0.7.1",
- "exit": "^0.1.2",
- "graceful-fs": "^4.2.4",
- "jest-config": "^26.6.3",
- "jest-docblock": "^26.0.0",
- "jest-haste-map": "^26.6.2",
- "jest-leak-detector": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-resolve": "^26.6.2",
- "jest-runtime": "^26.6.3",
- "jest-util": "^26.6.2",
- "jest-worker": "^26.6.2",
- "source-map-support": "^0.5.6",
- "throat": "^5.0.0"
+ "engines": {
+ "node": ">=16"
},
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/clipboardy/node_modules/human-signals": {
+ "version": "5.0.0",
+ "license": "Apache-2.0",
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=16.17.0"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/jest-runner/node_modules/jest-config": {
- "version": "26.6.3",
- "dev": true,
+ "node_modules/clipboardy/node_modules/is-stream": {
+ "version": "3.0.0",
"license": "MIT",
- "optional": true,
- "peer": true,
- "dependencies": {
- "@babel/core": "^7.1.0",
- "@jest/test-sequencer": "^26.6.3",
- "@jest/types": "^26.6.2",
- "babel-jest": "^26.6.3",
- "chalk": "^4.0.0",
- "deepmerge": "^4.2.2",
- "glob": "^7.1.1",
- "graceful-fs": "^4.2.4",
- "jest-environment-jsdom": "^26.6.2",
- "jest-environment-node": "^26.6.2",
- "jest-get-type": "^26.3.0",
- "jest-jasmine2": "^26.6.3",
- "jest-regex-util": "^26.0.0",
- "jest-resolve": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-validate": "^26.6.2",
- "micromatch": "^4.0.2",
- "pretty-format": "^26.6.2"
- },
"engines": {
- "node": ">= 10.14.2"
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
- "peerDependencies": {
- "ts-node": ">=9.0.0"
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/clipboardy/node_modules/mimic-fn": {
+ "version": "4.0.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
},
- "peerDependenciesMeta": {
- "ts-node": {
- "optional": true
- }
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/jest-runtime": {
- "version": "26.6.3",
- "dev": true,
+ "node_modules/clipboardy/node_modules/npm-run-path": {
+ "version": "5.3.0",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "@jest/console": "^26.6.2",
- "@jest/environment": "^26.6.2",
- "@jest/fake-timers": "^26.6.2",
- "@jest/globals": "^26.6.2",
- "@jest/source-map": "^26.6.2",
- "@jest/test-result": "^26.6.2",
- "@jest/transform": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/yargs": "^15.0.0",
- "chalk": "^4.0.0",
- "cjs-module-lexer": "^0.6.0",
- "collect-v8-coverage": "^1.0.0",
- "exit": "^0.1.2",
- "glob": "^7.1.3",
- "graceful-fs": "^4.2.4",
- "jest-config": "^26.6.3",
- "jest-haste-map": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-mock": "^26.6.2",
- "jest-regex-util": "^26.0.0",
- "jest-resolve": "^26.6.2",
- "jest-snapshot": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-validate": "^26.6.2",
- "slash": "^3.0.0",
- "strip-bom": "^4.0.0",
- "yargs": "^15.4.1"
- },
- "bin": {
- "jest-runtime": "bin/jest-runtime.js"
+ "path-key": "^4.0.0"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/jest-runtime/node_modules/jest-config": {
- "version": "26.6.3",
- "dev": true,
+ "node_modules/clipboardy/node_modules/onetime": {
+ "version": "6.0.0",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "@babel/core": "^7.1.0",
- "@jest/test-sequencer": "^26.6.3",
- "@jest/types": "^26.6.2",
- "babel-jest": "^26.6.3",
- "chalk": "^4.0.0",
- "deepmerge": "^4.2.2",
- "glob": "^7.1.1",
- "graceful-fs": "^4.2.4",
- "jest-environment-jsdom": "^26.6.2",
- "jest-environment-node": "^26.6.2",
- "jest-get-type": "^26.3.0",
- "jest-jasmine2": "^26.6.3",
- "jest-regex-util": "^26.0.0",
- "jest-resolve": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-validate": "^26.6.2",
- "micromatch": "^4.0.2",
- "pretty-format": "^26.6.2"
+ "mimic-fn": "^4.0.0"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=12"
},
- "peerDependencies": {
- "ts-node": ">=9.0.0"
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/clipboardy/node_modules/path-key": {
+ "version": "4.0.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
},
- "peerDependenciesMeta": {
- "ts-node": {
- "optional": true
- }
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/jest-snapshot": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/clipboardy/node_modules/signal-exit": {
+ "version": "4.1.0",
+ "license": "ISC",
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/clipboardy/node_modules/strip-final-newline": {
+ "version": "3.0.0",
"license": "MIT",
- "optional": true,
- "peer": true,
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/cliui": {
+ "version": "6.0.0",
+ "license": "ISC",
"dependencies": {
- "@babel/types": "^7.0.0",
- "@jest/types": "^26.6.2",
- "@types/babel__traverse": "^7.0.4",
- "@types/prettier": "^2.0.0",
- "chalk": "^4.0.0",
- "expect": "^26.6.2",
- "graceful-fs": "^4.2.4",
- "jest-diff": "^26.6.2",
- "jest-get-type": "^26.3.0",
- "jest-haste-map": "^26.6.2",
- "jest-matcher-utils": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-resolve": "^26.6.2",
- "natural-compare": "^1.4.0",
- "pretty-format": "^26.6.2",
- "semver": "^7.3.2"
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.0",
+ "wrap-ansi": "^6.2.0"
+ }
+ },
+ "node_modules/cliui/node_modules/wrap-ansi": {
+ "version": "6.2.0",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=8"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/jest-snapshot/node_modules/semver": {
- "version": "7.5.0",
- "dev": true,
- "license": "ISC",
- "optional": true,
- "peer": true,
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
+ "node_modules/clone": {
+ "version": "2.1.2",
+ "license": "MIT",
"engines": {
- "node": ">=10"
+ "node": ">=0.8"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/jest-util": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/clone-deep": {
+ "version": "4.0.1",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.4",
- "is-ci": "^2.0.0",
- "micromatch": "^4.0.2"
+ "is-plain-object": "^2.0.4",
+ "kind-of": "^6.0.2",
+ "shallow-clone": "^3.0.0"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=6"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/jest-validate": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/clone-deep/node_modules/is-plain-object": {
+ "version": "2.0.4",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "@jest/types": "^26.6.2",
- "camelcase": "^6.0.0",
- "chalk": "^4.0.0",
- "jest-get-type": "^26.3.0",
- "leven": "^3.1.0",
- "pretty-format": "^26.6.2"
+ "isobject": "^3.0.1"
},
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=0.10.0"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/jest-watcher": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/clone-response": {
+ "version": "1.0.3",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "@jest/test-result": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "ansi-escapes": "^4.2.1",
- "chalk": "^4.0.0",
- "jest-util": "^26.6.2",
- "string-length": "^4.0.1"
+ "mimic-response": "^1.0.0"
},
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/co": {
+ "version": "4.6.0",
+ "license": "MIT",
"engines": {
- "node": ">= 10.14.2"
+ "iojs": ">= 1.0.0",
+ "node": ">= 0.12.0"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/jest-worker": {
- "version": "26.6.2",
+ "node_modules/codemirror": {
+ "version": "5.65.18",
"dev": true,
+ "license": "MIT"
+ },
+ "node_modules/collect-v8-coverage": {
+ "version": "1.0.2",
+ "license": "MIT"
+ },
+ "node_modules/collection-visit": {
+ "version": "1.0.0",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "@types/node": "*",
- "merge-stream": "^2.0.0",
- "supports-color": "^7.0.0"
+ "map-visit": "^1.0.0",
+ "object-visit": "^1.0.0"
},
"engines": {
- "node": ">= 10.13.0"
+ "node": ">=0.10.0"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/jsdom": {
- "version": "16.7.0",
- "dev": true,
+ "node_modules/color": {
+ "version": "4.2.3",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "abab": "^2.0.5",
- "acorn": "^8.2.4",
- "acorn-globals": "^6.0.0",
- "cssom": "^0.4.4",
- "cssstyle": "^2.3.0",
- "data-urls": "^2.0.0",
- "decimal.js": "^10.2.1",
- "domexception": "^2.0.1",
- "escodegen": "^2.0.0",
- "form-data": "^3.0.0",
- "html-encoding-sniffer": "^2.0.1",
- "http-proxy-agent": "^4.0.1",
- "https-proxy-agent": "^5.0.0",
- "is-potential-custom-element-name": "^1.0.1",
- "nwsapi": "^2.2.0",
- "parse5": "6.0.1",
- "saxes": "^5.0.1",
- "symbol-tree": "^3.2.4",
- "tough-cookie": "^4.0.0",
- "w3c-hr-time": "^1.0.2",
- "w3c-xmlserializer": "^2.0.0",
- "webidl-conversions": "^6.1.0",
- "whatwg-encoding": "^1.0.5",
- "whatwg-mimetype": "^2.3.0",
- "whatwg-url": "^8.5.0",
- "ws": "^7.4.6",
- "xml-name-validator": "^3.0.0"
+ "color-convert": "^2.0.1",
+ "color-string": "^1.9.0"
},
"engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "canvas": "^2.5.0"
- },
- "peerDependenciesMeta": {
- "canvas": {
- "optional": true
- }
+ "node": ">=12.5.0"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/lru-cache": {
- "version": "6.0.0",
- "dev": true,
- "license": "ISC",
- "optional": true,
- "peer": true,
+ "node_modules/color-convert": {
+ "version": "2.0.1",
+ "license": "MIT",
"dependencies": {
- "yallist": "^4.0.0"
+ "color-name": "~1.1.4"
},
"engines": {
- "node": ">=10"
+ "node": ">=7.0.0"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/mkdirp": {
- "version": "1.0.4",
- "dev": true,
+ "node_modules/color-name": {
+ "version": "1.1.4",
+ "license": "MIT"
+ },
+ "node_modules/color-string": {
+ "version": "1.9.1",
"license": "MIT",
- "optional": true,
- "peer": true,
- "bin": {
- "mkdirp": "bin/cmd.js"
+ "dependencies": {
+ "color-name": "^1.0.0",
+ "simple-swizzle": "^0.2.2"
+ }
+ },
+ "node_modules/colord": {
+ "version": "2.9.3",
+ "license": "MIT"
+ },
+ "node_modules/colorette": {
+ "version": "2.0.20",
+ "license": "MIT"
+ },
+ "node_modules/colorjs.io": {
+ "version": "0.4.5",
+ "resolved": "https://registry.npmjs.org/colorjs.io/-/colorjs.io-0.4.5.tgz",
+ "integrity": "sha512-yCtUNCmge7llyfd/Wou19PMAcf5yC3XXhgFoAh6zsO2pGswhUPBaaUh8jzgHnXtXuZyFKzXZNAnyF5i+apICow==",
+ "license": "MIT"
+ },
+ "node_modules/combined-stream": {
+ "version": "1.0.8",
+ "license": "MIT",
+ "dependencies": {
+ "delayed-stream": "~1.0.0"
},
"engines": {
- "node": ">=10"
+ "node": ">= 0.8"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/parse5": {
- "version": "6.0.1",
- "dev": true,
+ "node_modules/comma-separated-tokens": {
+ "version": "2.0.3",
"license": "MIT",
- "optional": true,
- "peer": true
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
},
- "node_modules/babel-plugin-react-intl/node_modules/pretty-format": {
- "version": "26.6.2",
+ "node_modules/command-exists": {
+ "version": "1.2.9",
+ "license": "MIT"
+ },
+ "node_modules/command-line-args": {
+ "version": "5.2.1",
"dev": true,
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "@jest/types": "^26.6.2",
- "ansi-regex": "^5.0.0",
- "ansi-styles": "^4.0.0",
- "react-is": "^17.0.1"
+ "array-back": "^3.1.0",
+ "find-replace": "^3.0.0",
+ "lodash.camelcase": "^4.3.0",
+ "typical": "^4.0.0"
},
"engines": {
- "node": ">= 10"
+ "node": ">=4.0.0"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/slash": {
- "version": "3.0.0",
+ "node_modules/command-line-usage": {
+ "version": "6.1.3",
"dev": true,
"license": "MIT",
- "optional": true,
- "peer": true,
+ "dependencies": {
+ "array-back": "^4.0.2",
+ "chalk": "^2.4.2",
+ "table-layout": "^1.0.2",
+ "typical": "^5.2.0"
+ },
"engines": {
- "node": ">=8"
+ "node": ">=8.0.0"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/command-line-usage/node_modules/ansi-styles": {
+ "version": "3.2.1",
"dev": true,
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "has-flag": "^4.0.0"
+ "color-convert": "^1.9.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=4"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/tr46": {
- "version": "2.1.0",
+ "node_modules/command-line-usage/node_modules/array-back": {
+ "version": "4.0.2",
"dev": true,
"license": "MIT",
- "optional": true,
- "peer": true,
- "dependencies": {
- "punycode": "^2.1.1"
- },
"engines": {
"node": ">=8"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/ts-jest": {
- "version": "26.5.6",
+ "node_modules/command-line-usage/node_modules/chalk": {
+ "version": "2.4.2",
"dev": true,
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "bs-logger": "0.x",
- "buffer-from": "1.x",
- "fast-json-stable-stringify": "2.x",
- "jest-util": "^26.1.0",
- "json5": "2.x",
- "lodash": "4.x",
- "make-error": "1.x",
- "mkdirp": "1.x",
- "semver": "7.x",
- "yargs-parser": "20.x"
- },
- "bin": {
- "ts-jest": "cli.js"
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
},
"engines": {
- "node": ">= 10"
- },
- "peerDependencies": {
- "jest": ">=26 <27",
- "typescript": ">=3.8 <5.0"
+ "node": ">=4"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/ts-jest/node_modules/semver": {
- "version": "7.5.0",
+ "node_modules/command-line-usage/node_modules/color-convert": {
+ "version": "1.9.3",
"dev": true,
- "license": "ISC",
- "optional": true,
- "peer": true,
+ "license": "MIT",
"dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
+ "color-name": "1.1.3"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/v8-to-istanbul": {
- "version": "7.1.2",
+ "node_modules/command-line-usage/node_modules/color-name": {
+ "version": "1.1.3",
"dev": true,
- "license": "ISC",
- "optional": true,
- "peer": true,
- "dependencies": {
- "@types/istanbul-lib-coverage": "^2.0.1",
- "convert-source-map": "^1.6.0",
- "source-map": "^0.7.3"
- },
+ "license": "MIT"
+ },
+ "node_modules/command-line-usage/node_modules/escape-string-regexp": {
+ "version": "1.0.5",
+ "dev": true,
+ "license": "MIT",
"engines": {
- "node": ">=10.10.0"
+ "node": ">=0.8.0"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/v8-to-istanbul/node_modules/source-map": {
- "version": "0.7.4",
+ "node_modules/command-line-usage/node_modules/has-flag": {
+ "version": "3.0.0",
"dev": true,
- "license": "BSD-3-Clause",
- "optional": true,
- "peer": true,
+ "license": "MIT",
"engines": {
- "node": ">= 8"
+ "node": ">=4"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/w3c-xmlserializer": {
- "version": "2.0.0",
+ "node_modules/command-line-usage/node_modules/supports-color": {
+ "version": "5.5.0",
"dev": true,
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "xml-name-validator": "^3.0.0"
+ "has-flag": "^3.0.0"
},
"engines": {
- "node": ">=10"
+ "node": ">=4"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/webidl-conversions": {
- "version": "6.1.0",
+ "node_modules/command-line-usage/node_modules/typical": {
+ "version": "5.2.0",
"dev": true,
- "license": "BSD-2-Clause",
- "optional": true,
- "peer": true,
+ "license": "MIT",
"engines": {
- "node": ">=10.4"
+ "node": ">=8"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/whatwg-encoding": {
- "version": "1.0.5",
+ "node_modules/commander": {
+ "version": "9.5.0",
+ "license": "MIT",
+ "engines": {
+ "node": "^12.20.0 || >=14"
+ }
+ },
+ "node_modules/common-path-prefix": {
+ "version": "3.0.0",
+ "license": "ISC"
+ },
+ "node_modules/common-tags": {
+ "version": "1.8.2",
+ "license": "MIT",
+ "engines": {
+ "node": ">=4.0.0"
+ }
+ },
+ "node_modules/commondir": {
+ "version": "1.0.1",
+ "license": "MIT"
+ },
+ "node_modules/compare-func": {
+ "version": "2.0.0",
"dev": true,
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "iconv-lite": "0.4.24"
+ "array-ify": "^1.0.0",
+ "dot-prop": "^5.1.0"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/whatwg-mimetype": {
- "version": "2.3.0",
- "dev": true,
+ "node_modules/component-emitter": {
+ "version": "1.3.1",
"license": "MIT",
- "optional": true,
- "peer": true
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
},
- "node_modules/babel-plugin-react-intl/node_modules/whatwg-url": {
- "version": "8.7.0",
- "dev": true,
+ "node_modules/component-generator": {
+ "resolved": "component-generator",
+ "link": true
+ },
+ "node_modules/component-props": {
+ "version": "1.1.1"
+ },
+ "node_modules/component-type": {
+ "version": "1.2.2",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/component-xor": {
+ "version": "0.0.4",
+ "license": "MIT"
+ },
+ "node_modules/compose-function": {
+ "version": "3.0.3",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "lodash": "^4.7.0",
- "tr46": "^2.1.0",
- "webidl-conversions": "^6.1.0"
+ "arity-n": "^1.0.4"
+ }
+ },
+ "node_modules/compressible": {
+ "version": "2.0.18",
+ "license": "MIT",
+ "dependencies": {
+ "mime-db": ">= 1.43.0 < 2"
},
"engines": {
- "node": ">=10"
+ "node": ">= 0.6"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/wrap-ansi": {
- "version": "6.2.0",
- "dev": true,
+ "node_modules/compression": {
+ "version": "1.7.5",
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "ansi-styles": "^4.0.0",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0"
+ "bytes": "3.1.2",
+ "compressible": "~2.0.18",
+ "debug": "2.6.9",
+ "negotiator": "~0.6.4",
+ "on-headers": "~1.0.2",
+ "safe-buffer": "5.2.1",
+ "vary": "~1.1.2"
},
"engines": {
- "node": ">=8"
+ "node": ">= 0.8.0"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/write-file-atomic": {
- "version": "3.0.3",
- "dev": true,
- "license": "ISC",
- "optional": true,
- "peer": true,
+ "node_modules/compression/node_modules/debug": {
+ "version": "2.6.9",
+ "license": "MIT",
"dependencies": {
- "imurmurhash": "^0.1.4",
- "is-typedarray": "^1.0.0",
- "signal-exit": "^3.0.2",
- "typedarray-to-buffer": "^3.1.5"
+ "ms": "2.0.0"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/ws": {
- "version": "7.5.10",
- "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz",
- "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==",
- "dev": true,
- "optional": true,
- "peer": true,
+ "node_modules/compression/node_modules/ms": {
+ "version": "2.0.0",
+ "license": "MIT"
+ },
+ "node_modules/compression/node_modules/negotiator": {
+ "version": "0.6.4",
+ "license": "MIT",
"engines": {
- "node": ">=8.3.0"
- },
- "peerDependencies": {
- "bufferutil": "^4.0.1",
- "utf-8-validate": "^5.0.2"
- },
- "peerDependenciesMeta": {
- "bufferutil": {
- "optional": true
- },
- "utf-8-validate": {
- "optional": true
- }
+ "node": ">= 0.6"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/xml-name-validator": {
- "version": "3.0.0",
- "dev": true,
- "license": "Apache-2.0",
- "optional": true,
- "peer": true
- },
- "node_modules/babel-plugin-react-intl/node_modules/y18n": {
- "version": "4.0.3",
- "dev": true,
- "license": "ISC",
- "optional": true,
- "peer": true
- },
- "node_modules/babel-plugin-react-intl/node_modules/yallist": {
- "version": "4.0.0",
- "dev": true,
- "license": "ISC",
- "optional": true,
- "peer": true
+ "node_modules/concat-map": {
+ "version": "0.0.1",
+ "license": "MIT"
},
- "node_modules/babel-plugin-react-intl/node_modules/yargs": {
- "version": "15.4.1",
- "dev": true,
+ "node_modules/concat-stream": {
+ "version": "1.6.2",
+ "engines": [
+ "node >= 0.8"
+ ],
"license": "MIT",
- "optional": true,
- "peer": true,
"dependencies": {
- "cliui": "^6.0.0",
- "decamelize": "^1.2.0",
- "find-up": "^4.1.0",
- "get-caller-file": "^2.0.1",
- "require-directory": "^2.1.1",
- "require-main-filename": "^2.0.0",
- "set-blocking": "^2.0.0",
- "string-width": "^4.2.0",
- "which-module": "^2.0.0",
- "y18n": "^4.0.0",
- "yargs-parser": "^18.1.2"
- },
- "engines": {
- "node": ">=8"
+ "buffer-from": "^1.0.0",
+ "inherits": "^2.0.3",
+ "readable-stream": "^2.2.2",
+ "typedarray": "^0.0.6"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/yargs/node_modules/camelcase": {
- "version": "5.3.1",
- "dev": true,
+ "node_modules/config-chain": {
+ "version": "1.1.13",
"license": "MIT",
- "optional": true,
- "peer": true,
- "engines": {
- "node": ">=6"
+ "dependencies": {
+ "ini": "^1.3.4",
+ "proto-list": "~1.2.1"
}
},
- "node_modules/babel-plugin-react-intl/node_modules/yargs/node_modules/yargs-parser": {
- "version": "18.1.3",
- "dev": true,
- "license": "ISC",
- "optional": true,
- "peer": true,
+ "node_modules/configstore": {
+ "version": "5.0.1",
+ "license": "BSD-2-Clause",
"dependencies": {
- "camelcase": "^5.0.0",
- "decamelize": "^1.2.0"
+ "dot-prop": "^5.2.0",
+ "graceful-fs": "^4.1.2",
+ "make-dir": "^3.0.0",
+ "unique-string": "^2.0.0",
+ "write-file-atomic": "^3.0.0",
+ "xdg-basedir": "^4.0.0"
},
"engines": {
- "node": ">=6"
+ "node": ">=8"
}
},
- "node_modules/babel-plugin-remove-graphql-queries": {
- "version": "4.25.0",
+ "node_modules/configstore/node_modules/make-dir": {
+ "version": "3.1.0",
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.15.4",
- "@babel/types": "^7.15.4",
- "gatsby-core-utils": "^3.25.0"
+ "semver": "^6.0.0"
},
"engines": {
- "node": ">=14.15.0"
+ "node": ">=8"
},
- "peerDependencies": {
- "@babel/core": "^7.0.0",
- "gatsby": "^4.0.0-next"
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/babel-plugin-syntax-trailing-function-commas": {
- "version": "7.0.0-beta.0",
+ "node_modules/confusing-browser-globals": {
+ "version": "1.0.11",
"license": "MIT"
},
- "node_modules/babel-plugin-transform-imports": {
+ "node_modules/connect-history-api-fallback": {
"version": "2.0.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "@babel/types": "^7.4",
- "is-valid-path": "^0.1.1"
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.8"
}
},
- "node_modules/babel-plugin-transform-react-remove-prop-types": {
- "version": "0.4.24",
- "license": "MIT"
- },
- "node_modules/babel-polyfill": {
- "version": "6.26.0",
- "dev": true,
+ "node_modules/constant-case": {
+ "version": "3.0.4",
"license": "MIT",
"dependencies": {
- "babel-runtime": "^6.26.0",
- "core-js": "^2.5.0",
- "regenerator-runtime": "^0.10.5"
+ "no-case": "^3.0.4",
+ "tslib": "^2.0.3",
+ "upper-case": "^2.0.2"
}
},
- "node_modules/babel-polyfill/node_modules/core-js": {
- "version": "2.6.12",
- "dev": true,
- "hasInstallScript": true,
- "license": "MIT"
- },
- "node_modules/babel-polyfill/node_modules/regenerator-runtime": {
- "version": "0.10.5",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/babel-preset-current-node-syntax": {
- "version": "1.0.1",
- "dev": true,
+ "node_modules/content-disposition": {
+ "version": "0.5.4",
"license": "MIT",
"dependencies": {
- "@babel/plugin-syntax-async-generators": "^7.8.4",
- "@babel/plugin-syntax-bigint": "^7.8.3",
- "@babel/plugin-syntax-class-properties": "^7.8.3",
- "@babel/plugin-syntax-import-meta": "^7.8.3",
- "@babel/plugin-syntax-json-strings": "^7.8.3",
- "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3",
- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
- "@babel/plugin-syntax-numeric-separator": "^7.8.3",
- "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
- "@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
- "@babel/plugin-syntax-optional-chaining": "^7.8.3",
- "@babel/plugin-syntax-top-level-await": "^7.8.3"
+ "safe-buffer": "5.2.1"
},
- "peerDependencies": {
- "@babel/core": "^7.0.0"
+ "engines": {
+ "node": ">= 0.6"
}
},
- "node_modules/babel-preset-fbjs": {
- "version": "3.4.0",
+ "node_modules/content-type": {
+ "version": "1.0.5",
"license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/conventional-changelog-angular": {
+ "version": "5.0.13",
+ "dev": true,
+ "license": "ISC",
"dependencies": {
- "@babel/plugin-proposal-class-properties": "^7.0.0",
- "@babel/plugin-proposal-object-rest-spread": "^7.0.0",
- "@babel/plugin-syntax-class-properties": "^7.0.0",
- "@babel/plugin-syntax-flow": "^7.0.0",
- "@babel/plugin-syntax-jsx": "^7.0.0",
- "@babel/plugin-syntax-object-rest-spread": "^7.0.0",
- "@babel/plugin-transform-arrow-functions": "^7.0.0",
- "@babel/plugin-transform-block-scoped-functions": "^7.0.0",
- "@babel/plugin-transform-block-scoping": "^7.0.0",
- "@babel/plugin-transform-classes": "^7.0.0",
- "@babel/plugin-transform-computed-properties": "^7.0.0",
- "@babel/plugin-transform-destructuring": "^7.0.0",
- "@babel/plugin-transform-flow-strip-types": "^7.0.0",
- "@babel/plugin-transform-for-of": "^7.0.0",
- "@babel/plugin-transform-function-name": "^7.0.0",
- "@babel/plugin-transform-literals": "^7.0.0",
- "@babel/plugin-transform-member-expression-literals": "^7.0.0",
- "@babel/plugin-transform-modules-commonjs": "^7.0.0",
- "@babel/plugin-transform-object-super": "^7.0.0",
- "@babel/plugin-transform-parameters": "^7.0.0",
- "@babel/plugin-transform-property-literals": "^7.0.0",
- "@babel/plugin-transform-react-display-name": "^7.0.0",
- "@babel/plugin-transform-react-jsx": "^7.0.0",
- "@babel/plugin-transform-shorthand-properties": "^7.0.0",
- "@babel/plugin-transform-spread": "^7.0.0",
- "@babel/plugin-transform-template-literals": "^7.0.0",
- "babel-plugin-syntax-trailing-function-commas": "^7.0.0-beta.0"
+ "compare-func": "^2.0.0",
+ "q": "^1.5.1"
},
- "peerDependencies": {
- "@babel/core": "^7.0.0"
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/babel-preset-gatsby": {
- "version": "2.25.0",
+ "node_modules/conventional-changelog-writer": {
+ "version": "5.0.1",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/plugin-proposal-class-properties": "^7.14.0",
- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
- "@babel/plugin-proposal-optional-chaining": "^7.14.5",
- "@babel/plugin-syntax-dynamic-import": "^7.8.3",
- "@babel/plugin-transform-classes": "^7.15.4",
- "@babel/plugin-transform-runtime": "^7.15.0",
- "@babel/plugin-transform-spread": "^7.14.6",
- "@babel/preset-env": "^7.15.4",
- "@babel/preset-react": "^7.14.0",
- "@babel/runtime": "^7.15.4",
- "babel-plugin-dynamic-import-node": "^2.3.3",
- "babel-plugin-macros": "^3.1.0",
- "babel-plugin-transform-react-remove-prop-types": "^0.4.24",
- "gatsby-core-utils": "^3.25.0",
- "gatsby-legacy-polyfills": "^2.25.0"
+ "conventional-commits-filter": "^2.0.7",
+ "dateformat": "^3.0.0",
+ "handlebars": "^4.7.7",
+ "json-stringify-safe": "^5.0.1",
+ "lodash": "^4.17.15",
+ "meow": "^8.0.0",
+ "semver": "^6.0.0",
+ "split": "^1.0.0",
+ "through2": "^4.0.0"
},
- "engines": {
- "node": ">=14.15.0"
+ "bin": {
+ "conventional-changelog-writer": "cli.js"
},
- "peerDependencies": {
- "@babel/core": "^7.11.6",
- "core-js": "^3.0.0"
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/babel-preset-jest": {
- "version": "29.6.3",
- "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz",
- "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==",
+ "node_modules/conventional-commits-filter": {
+ "version": "2.0.7",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "babel-plugin-jest-hoist": "^29.6.3",
- "babel-preset-current-node-syntax": "^1.0.0"
+ "lodash.ismatch": "^4.4.0",
+ "modify-values": "^1.0.0"
},
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
+ "node": ">=10"
}
},
- "node_modules/babel-runtime": {
- "version": "6.26.0",
+ "node_modules/conventional-commits-parser": {
+ "version": "3.2.4",
"dev": true,
"license": "MIT",
"dependencies": {
- "core-js": "^2.4.0",
- "regenerator-runtime": "^0.11.0"
+ "is-text-path": "^1.0.1",
+ "JSONStream": "^1.0.4",
+ "lodash": "^4.17.15",
+ "meow": "^8.0.0",
+ "split2": "^3.0.0",
+ "through2": "^4.0.0"
+ },
+ "bin": {
+ "conventional-commits-parser": "cli.js"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/babel-runtime/node_modules/core-js": {
- "version": "2.6.12",
- "dev": true,
- "hasInstallScript": true,
- "license": "MIT"
- },
- "node_modules/babel-runtime/node_modules/regenerator-runtime": {
- "version": "0.11.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/babel-walk": {
+ "node_modules/convert-hrtime": {
"version": "3.0.0",
"license": "MIT",
- "dependencies": {
- "@babel/types": "^7.9.6"
- },
"engines": {
- "node": ">= 10.0.0"
+ "node": ">=8"
}
},
- "node_modules/bail": {
- "version": "1.0.5",
+ "node_modules/convert-source-map": {
+ "version": "1.9.0",
+ "license": "MIT"
+ },
+ "node_modules/cookie": {
+ "version": "0.5.0",
"license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "engines": {
+ "node": ">= 0.6"
}
},
- "node_modules/balanced-match": {
- "version": "1.0.2",
+ "node_modules/cookie-signature": {
+ "version": "1.0.6",
"license": "MIT"
},
- "node_modules/base": {
- "version": "0.11.2",
- "dev": true,
+ "node_modules/cookiejar": {
+ "version": "2.1.4",
+ "license": "MIT"
+ },
+ "node_modules/copy-descriptor": {
+ "version": "0.1.1",
"license": "MIT",
- "dependencies": {
- "cache-base": "^1.0.1",
- "class-utils": "^0.3.5",
- "component-emitter": "^1.2.1",
- "define-property": "^1.0.0",
- "isobject": "^3.0.1",
- "mixin-deep": "^1.2.0",
- "pascalcase": "^0.1.1"
- },
"engines": {
"node": ">=0.10.0"
}
},
- "node_modules/base-x": {
- "version": "3.0.9",
+ "node_modules/copy-to-clipboard": {
+ "version": "3.3.3",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "safe-buffer": "^5.0.1"
+ "toggle-selection": "^1.0.6"
}
},
- "node_modules/base/node_modules/define-property": {
- "version": "1.0.0",
- "dev": true,
+ "node_modules/core-js": {
+ "version": "3.39.0",
+ "hasInstallScript": true,
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/core-js"
+ }
+ },
+ "node_modules/core-js-compat": {
+ "version": "3.39.0",
"license": "MIT",
"dependencies": {
- "is-descriptor": "^1.0.0"
+ "browserslist": "^4.24.2"
},
- "engines": {
- "node": ">=0.10.0"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/core-js"
}
},
- "node_modules/base64-js": {
- "version": "1.5.1",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "MIT"
- },
- "node_modules/base64id": {
- "version": "2.0.0",
+ "node_modules/core-js-pure": {
+ "version": "3.39.0",
+ "hasInstallScript": true,
"license": "MIT",
- "engines": {
- "node": "^4.5.0 || >= 5.9"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/core-js"
}
},
- "node_modules/batch": {
- "version": "0.6.1",
- "devOptional": true,
+ "node_modules/core-util-is": {
+ "version": "1.0.3",
"license": "MIT"
},
- "node_modules/before-after-hook": {
- "version": "2.2.3",
- "dev": true,
- "license": "Apache-2.0"
- },
- "node_modules/better-opn": {
- "version": "2.1.1",
+ "node_modules/cors": {
+ "version": "2.8.5",
"license": "MIT",
"dependencies": {
- "open": "^7.0.3"
+ "object-assign": "^4",
+ "vary": "^1"
},
"engines": {
- "node": ">8.0.0"
+ "node": ">= 0.10"
}
},
- "node_modules/big.js": {
- "version": "5.2.2",
+ "node_modules/cosmiconfig": {
+ "version": "8.3.6",
"license": "MIT",
+ "dependencies": {
+ "import-fresh": "^3.3.0",
+ "js-yaml": "^4.1.0",
+ "parse-json": "^5.2.0",
+ "path-type": "^4.0.0"
+ },
"engines": {
- "node": "*"
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/d-fischer"
+ },
+ "peerDependencies": {
+ "typescript": ">=4.9.5"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
}
},
- "node_modules/binary-extensions": {
- "version": "2.2.0",
+ "node_modules/create-gatsby": {
+ "version": "3.14.0",
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "@babel/runtime": "^7.20.13"
+ },
+ "bin": {
+ "create-gatsby": "cli.js"
}
},
- "node_modules/bl": {
- "version": "4.1.0",
+ "node_modules/create-jest": {
+ "version": "29.7.0",
"license": "MIT",
"dependencies": {
- "buffer": "^5.5.0",
- "inherits": "^2.0.4",
- "readable-stream": "^3.4.0"
+ "@jest/types": "^29.6.3",
+ "chalk": "^4.0.0",
+ "exit": "^0.1.2",
+ "graceful-fs": "^4.2.9",
+ "jest-config": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "prompts": "^2.0.1"
+ },
+ "bin": {
+ "create-jest": "bin/create-jest.js"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/bl/node_modules/readable-stream": {
- "version": "3.6.2",
+ "node_modules/create-jest/node_modules/@jest/console": {
+ "version": "29.7.0",
"license": "MIT",
"dependencies": {
- "inherits": "^2.0.3",
- "string_decoder": "^1.1.1",
- "util-deprecate": "^1.0.1"
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "jest-message-util": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "slash": "^3.0.0"
},
"engines": {
- "node": ">= 6"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/bluebird": {
- "version": "3.7.2",
- "license": "MIT"
- },
- "node_modules/body-parser": {
- "version": "1.20.2",
- "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz",
- "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==",
+ "node_modules/create-jest/node_modules/@jest/globals": {
+ "version": "29.7.0",
+ "license": "MIT",
"dependencies": {
- "bytes": "3.1.2",
- "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.2",
- "type-is": "~1.6.18",
- "unpipe": "1.0.0"
+ "@jest/environment": "^29.7.0",
+ "@jest/expect": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "jest-mock": "^29.7.0"
},
"engines": {
- "node": ">= 0.8",
- "npm": "1.2.8000 || >= 1.4.16"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/body-parser/node_modules/bytes": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
- "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
+ "node_modules/create-jest/node_modules/@jest/source-map": {
+ "version": "29.6.3",
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/trace-mapping": "^0.3.18",
+ "callsites": "^3.0.0",
+ "graceful-fs": "^4.2.9"
+ },
"engines": {
- "node": ">= 0.8"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/body-parser/node_modules/debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "node_modules/create-jest/node_modules/@jest/test-result": {
+ "version": "29.7.0",
+ "license": "MIT",
"dependencies": {
- "ms": "2.0.0"
+ "@jest/console": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "collect-v8-coverage": "^1.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/body-parser/node_modules/iconv-lite": {
- "version": "0.4.24",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
- "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
+ "node_modules/create-jest/node_modules/@jest/test-sequencer": {
+ "version": "29.7.0",
+ "license": "MIT",
"dependencies": {
- "safer-buffer": ">= 2.1.2 < 3"
+ "@jest/test-result": "^29.7.0",
+ "graceful-fs": "^4.2.9",
+ "jest-haste-map": "^29.7.0",
+ "slash": "^3.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/body-parser/node_modules/ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
+ "node_modules/create-jest/node_modules/ansi-styles": {
+ "version": "5.2.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
},
- "node_modules/bonjour-service": {
- "version": "1.1.1",
- "devOptional": true,
+ "node_modules/create-jest/node_modules/ci-info": {
+ "version": "3.9.0",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/sibiraj-s"
+ }
+ ],
"license": "MIT",
- "dependencies": {
- "array-flatten": "^2.1.2",
- "dns-equal": "^1.0.0",
- "fast-deep-equal": "^3.1.3",
- "multicast-dns": "^7.2.5"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/bonjour-service/node_modules/array-flatten": {
- "version": "2.1.2",
- "devOptional": true,
+ "node_modules/create-jest/node_modules/cjs-module-lexer": {
+ "version": "1.4.1",
"license": "MIT"
},
- "node_modules/boolbase": {
- "version": "1.0.0",
- "license": "ISC"
+ "node_modules/create-jest/node_modules/emittery": {
+ "version": "0.13.1",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sindresorhus/emittery?sponsor=1"
+ }
},
- "node_modules/bootstrap": {
- "version": "4.6.2",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/twbs"
+ "node_modules/create-jest/node_modules/glob": {
+ "version": "7.2.3",
+ "license": "ISC",
+ "dependencies": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ },
+ "engines": {
+ "node": "*"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/create-jest/node_modules/jest-config": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/core": "^7.11.6",
+ "@jest/test-sequencer": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "babel-jest": "^29.7.0",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "deepmerge": "^4.2.2",
+ "glob": "^7.1.3",
+ "graceful-fs": "^4.2.9",
+ "jest-circus": "^29.7.0",
+ "jest-environment-node": "^29.7.0",
+ "jest-get-type": "^29.6.3",
+ "jest-regex-util": "^29.6.3",
+ "jest-resolve": "^29.7.0",
+ "jest-runner": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "jest-validate": "^29.7.0",
+ "micromatch": "^4.0.4",
+ "parse-json": "^5.2.0",
+ "pretty-format": "^29.7.0",
+ "slash": "^3.0.0",
+ "strip-json-comments": "^3.1.1"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ },
+ "peerDependencies": {
+ "@types/node": "*",
+ "ts-node": ">=9.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/node": {
+ "optional": true
},
- {
- "type": "opencollective",
- "url": "https://opencollective.com/bootstrap"
+ "ts-node": {
+ "optional": true
}
- ],
- "license": "MIT",
- "peerDependencies": {
- "jquery": "1.9.1 - 3",
- "popper.js": "^1.16.1"
}
},
- "node_modules/bottleneck": {
- "version": "2.19.5",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/boxen": {
- "version": "5.1.2",
+ "node_modules/create-jest/node_modules/jest-docblock": {
+ "version": "29.7.0",
"license": "MIT",
"dependencies": {
- "ansi-align": "^3.0.0",
- "camelcase": "^6.2.0",
- "chalk": "^4.1.0",
- "cli-boxes": "^2.2.1",
- "string-width": "^4.2.2",
- "type-fest": "^0.20.2",
- "widest-line": "^3.1.0",
- "wrap-ansi": "^7.0.0"
+ "detect-newline": "^3.0.0"
},
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/boxen/node_modules/camelcase": {
- "version": "6.3.0",
+ "node_modules/create-jest/node_modules/jest-environment-node": {
+ "version": "29.7.0",
"license": "MIT",
- "engines": {
- "node": ">=10"
+ "dependencies": {
+ "@jest/environment": "^29.7.0",
+ "@jest/fake-timers": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "jest-mock": "^29.7.0",
+ "jest-util": "^29.7.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/boxen/node_modules/type-fest": {
- "version": "0.20.2",
- "license": "(MIT OR CC0-1.0)",
+ "node_modules/create-jest/node_modules/jest-haste-map": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "dependencies": {
+ "@jest/types": "^29.6.3",
+ "@types/graceful-fs": "^4.1.3",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "graceful-fs": "^4.2.9",
+ "jest-regex-util": "^29.6.3",
+ "jest-util": "^29.7.0",
+ "jest-worker": "^29.7.0",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.8"
+ },
"engines": {
- "node": ">=10"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "optionalDependencies": {
+ "fsevents": "^2.3.2"
}
},
- "node_modules/brace-expansion": {
- "version": "1.1.11",
+ "node_modules/create-jest/node_modules/jest-leak-detector": {
+ "version": "29.7.0",
"license": "MIT",
"dependencies": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
+ "jest-get-type": "^29.6.3",
+ "pretty-format": "^29.7.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/braces": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
- "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
+ "node_modules/create-jest/node_modules/jest-message-util": {
+ "version": "29.7.0",
+ "license": "MIT",
"dependencies": {
- "fill-range": "^7.1.1"
+ "@babel/code-frame": "^7.12.13",
+ "@jest/types": "^29.6.3",
+ "@types/stack-utils": "^2.0.0",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.9",
+ "micromatch": "^4.0.4",
+ "pretty-format": "^29.7.0",
+ "slash": "^3.0.0",
+ "stack-utils": "^2.0.3"
},
"engines": {
- "node": ">=8"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/browser-process-hrtime": {
- "version": "1.0.0",
- "dev": true,
- "license": "BSD-2-Clause"
+ "node_modules/create-jest/node_modules/jest-regex-util": {
+ "version": "29.6.3",
+ "license": "MIT",
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
},
- "node_modules/browserslist": {
- "version": "4.23.0",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz",
- "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==",
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/browserslist"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
+ "node_modules/create-jest/node_modules/jest-resolve": {
+ "version": "29.7.0",
+ "license": "MIT",
"dependencies": {
- "caniuse-lite": "^1.0.30001587",
- "electron-to-chromium": "^1.4.668",
- "node-releases": "^2.0.14",
- "update-browserslist-db": "^1.0.13"
- },
- "bin": {
- "browserslist": "cli.js"
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.9",
+ "jest-haste-map": "^29.7.0",
+ "jest-pnp-resolver": "^1.2.2",
+ "jest-util": "^29.7.0",
+ "jest-validate": "^29.7.0",
+ "resolve": "^1.20.0",
+ "resolve.exports": "^2.0.0",
+ "slash": "^3.0.0"
},
"engines": {
- "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/bs-logger": {
- "version": "0.2.6",
- "dev": true,
+ "node_modules/create-jest/node_modules/jest-runner": {
+ "version": "29.7.0",
"license": "MIT",
"dependencies": {
- "fast-json-stable-stringify": "2.x"
+ "@jest/console": "^29.7.0",
+ "@jest/environment": "^29.7.0",
+ "@jest/test-result": "^29.7.0",
+ "@jest/transform": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "emittery": "^0.13.1",
+ "graceful-fs": "^4.2.9",
+ "jest-docblock": "^29.7.0",
+ "jest-environment-node": "^29.7.0",
+ "jest-haste-map": "^29.7.0",
+ "jest-leak-detector": "^29.7.0",
+ "jest-message-util": "^29.7.0",
+ "jest-resolve": "^29.7.0",
+ "jest-runtime": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "jest-watcher": "^29.7.0",
+ "jest-worker": "^29.7.0",
+ "p-limit": "^3.1.0",
+ "source-map-support": "0.5.13"
},
"engines": {
- "node": ">= 6"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/bser": {
- "version": "2.1.1",
- "license": "Apache-2.0",
+ "node_modules/create-jest/node_modules/jest-runtime": {
+ "version": "29.7.0",
+ "license": "MIT",
"dependencies": {
- "node-int64": "^0.4.0"
+ "@jest/environment": "^29.7.0",
+ "@jest/fake-timers": "^29.7.0",
+ "@jest/globals": "^29.7.0",
+ "@jest/source-map": "^29.6.3",
+ "@jest/test-result": "^29.7.0",
+ "@jest/transform": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "cjs-module-lexer": "^1.0.0",
+ "collect-v8-coverage": "^1.0.0",
+ "glob": "^7.1.3",
+ "graceful-fs": "^4.2.9",
+ "jest-haste-map": "^29.7.0",
+ "jest-message-util": "^29.7.0",
+ "jest-mock": "^29.7.0",
+ "jest-regex-util": "^29.6.3",
+ "jest-resolve": "^29.7.0",
+ "jest-snapshot": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "slash": "^3.0.0",
+ "strip-bom": "^4.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/buble": {
- "version": "0.19.6",
+ "node_modules/create-jest/node_modules/jest-snapshot": {
+ "version": "29.7.0",
"license": "MIT",
"dependencies": {
- "chalk": "^2.4.1",
- "magic-string": "^0.25.1",
- "minimist": "^1.2.0",
- "os-homedir": "^1.0.1",
- "regexpu-core": "^4.2.0",
- "vlq": "^1.0.0"
+ "@babel/core": "^7.11.6",
+ "@babel/generator": "^7.7.2",
+ "@babel/plugin-syntax-jsx": "^7.7.2",
+ "@babel/plugin-syntax-typescript": "^7.7.2",
+ "@babel/types": "^7.3.3",
+ "@jest/expect-utils": "^29.7.0",
+ "@jest/transform": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "babel-preset-current-node-syntax": "^1.0.0",
+ "chalk": "^4.0.0",
+ "expect": "^29.7.0",
+ "graceful-fs": "^4.2.9",
+ "jest-diff": "^29.7.0",
+ "jest-get-type": "^29.6.3",
+ "jest-matcher-utils": "^29.7.0",
+ "jest-message-util": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "natural-compare": "^1.4.0",
+ "pretty-format": "^29.7.0",
+ "semver": "^7.5.3"
},
- "bin": {
- "buble": "bin/buble"
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/buble/node_modules/chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "node_modules/create-jest/node_modules/jest-util": {
+ "version": "29.7.0",
+ "license": "MIT",
"dependencies": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.9",
+ "picomatch": "^2.2.3"
},
"engines": {
- "node": ">=4"
- }
- },
- "node_modules/buble/node_modules/jsesc": {
- "version": "0.5.0",
- "bin": {
- "jsesc": "bin/jsesc"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/buble/node_modules/regenerate-unicode-properties": {
- "version": "9.0.0",
+ "node_modules/create-jest/node_modules/jest-validate": {
+ "version": "29.7.0",
"license": "MIT",
"dependencies": {
- "regenerate": "^1.4.2"
+ "@jest/types": "^29.6.3",
+ "camelcase": "^6.2.0",
+ "chalk": "^4.0.0",
+ "jest-get-type": "^29.6.3",
+ "leven": "^3.1.0",
+ "pretty-format": "^29.7.0"
},
"engines": {
- "node": ">=4"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/buble/node_modules/regexpu-core": {
- "version": "4.8.0",
+ "node_modules/create-jest/node_modules/jest-watcher": {
+ "version": "29.7.0",
"license": "MIT",
"dependencies": {
- "regenerate": "^1.4.2",
- "regenerate-unicode-properties": "^9.0.0",
- "regjsgen": "^0.5.2",
- "regjsparser": "^0.7.0",
- "unicode-match-property-ecmascript": "^2.0.0",
- "unicode-match-property-value-ecmascript": "^2.0.0"
+ "@jest/test-result": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "ansi-escapes": "^4.2.1",
+ "chalk": "^4.0.0",
+ "emittery": "^0.13.1",
+ "jest-util": "^29.7.0",
+ "string-length": "^4.0.1"
},
"engines": {
- "node": ">=4"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/buble/node_modules/regjsparser": {
- "version": "0.7.0",
- "license": "BSD-2-Clause",
+ "node_modules/create-jest/node_modules/jest-worker": {
+ "version": "29.7.0",
+ "license": "MIT",
"dependencies": {
- "jsesc": "~0.5.0"
+ "@types/node": "*",
+ "jest-util": "^29.7.0",
+ "merge-stream": "^2.0.0",
+ "supports-color": "^8.0.0"
},
- "bin": {
- "regjsparser": "bin/parser"
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/buffer": {
- "version": "5.7.1",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
+ "node_modules/create-jest/node_modules/pretty-format": {
+ "version": "29.7.0",
"license": "MIT",
"dependencies": {
- "base64-js": "^1.3.1",
- "ieee754": "^1.1.13"
+ "@jest/schemas": "^29.6.3",
+ "ansi-styles": "^5.0.0",
+ "react-is": "^18.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/buffer-from": {
- "version": "1.1.2",
+ "node_modules/create-jest/node_modules/react-is": {
+ "version": "18.3.1",
"license": "MIT"
},
- "node_modules/busboy": {
- "version": "1.6.0",
- "dependencies": {
- "streamsearch": "^1.1.0"
+ "node_modules/create-jest/node_modules/semver": {
+ "version": "7.6.3",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
},
"engines": {
- "node": ">=10.16.0"
+ "node": ">=10"
}
},
- "node_modules/bytes": {
+ "node_modules/create-jest/node_modules/slash": {
"version": "3.0.0",
"license": "MIT",
"engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/c8": {
- "version": "7.13.0",
- "license": "ISC",
- "dependencies": {
- "@bcoe/v8-coverage": "^0.2.3",
- "@istanbuljs/schema": "^0.1.3",
- "find-up": "^5.0.0",
- "foreground-child": "^2.0.0",
- "istanbul-lib-coverage": "^3.2.0",
- "istanbul-lib-report": "^3.0.0",
- "istanbul-reports": "^3.1.4",
- "rimraf": "^3.0.2",
- "test-exclude": "^6.0.0",
- "v8-to-istanbul": "^9.0.0",
- "yargs": "^16.2.0",
- "yargs-parser": "^20.2.9"
- },
- "bin": {
- "c8": "bin/c8.js"
- },
- "engines": {
- "node": ">=10.12.0"
+ "node": ">=8"
}
},
- "node_modules/c8/node_modules/cliui": {
- "version": "7.0.4",
- "license": "ISC",
+ "node_modules/create-jest/node_modules/source-map-support": {
+ "version": "0.5.13",
+ "license": "MIT",
"dependencies": {
- "string-width": "^4.2.0",
- "strip-ansi": "^6.0.0",
- "wrap-ansi": "^7.0.0"
+ "buffer-from": "^1.0.0",
+ "source-map": "^0.6.0"
}
},
- "node_modules/c8/node_modules/find-up": {
- "version": "5.0.0",
+ "node_modules/create-jest/node_modules/supports-color": {
+ "version": "8.1.1",
"license": "MIT",
"dependencies": {
- "locate-path": "^6.0.0",
- "path-exists": "^4.0.0"
+ "has-flag": "^4.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
}
},
- "node_modules/c8/node_modules/locate-path": {
- "version": "6.0.0",
+ "node_modules/cross-fetch": {
+ "version": "3.1.8",
"license": "MIT",
"dependencies": {
- "p-locate": "^5.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node-fetch": "^2.6.12"
}
},
- "node_modules/c8/node_modules/p-locate": {
- "version": "5.0.0",
+ "node_modules/cross-spawn": {
+ "version": "7.0.6",
"license": "MIT",
"dependencies": {
- "p-limit": "^3.0.2"
+ "path-key": "^3.1.0",
+ "shebang-command": "^2.0.0",
+ "which": "^2.0.1"
},
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">= 8"
}
},
- "node_modules/c8/node_modules/yargs": {
- "version": "16.2.0",
- "license": "MIT",
- "dependencies": {
- "cliui": "^7.0.2",
- "escalade": "^3.1.1",
- "get-caller-file": "^2.0.5",
- "require-directory": "^2.1.1",
- "string-width": "^4.2.0",
- "y18n": "^5.0.5",
- "yargs-parser": "^20.2.2"
- },
+ "node_modules/crypt": {
+ "version": "0.0.2",
+ "license": "BSD-3-Clause",
"engines": {
- "node": ">=10"
+ "node": "*"
}
},
- "node_modules/cache-base": {
- "version": "1.0.1",
- "dev": true,
+ "node_modules/crypto-random-string": {
+ "version": "2.0.0",
"license": "MIT",
- "dependencies": {
- "collection-visit": "^1.0.0",
- "component-emitter": "^1.2.1",
- "get-value": "^2.0.6",
- "has-value": "^1.0.0",
- "isobject": "^3.0.1",
- "set-value": "^2.0.0",
- "to-object-path": "^0.3.0",
- "union-value": "^1.0.0",
- "unset-value": "^1.0.0"
- },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=8"
}
},
- "node_modules/cache-manager": {
- "version": "2.11.1",
+ "node_modules/css": {
+ "version": "3.0.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "async": "1.5.2",
- "lodash.clonedeep": "4.5.0",
- "lru-cache": "4.0.0"
+ "inherits": "^2.0.4",
+ "source-map": "^0.6.1",
+ "source-map-resolve": "^0.6.0"
}
},
- "node_modules/cache-manager/node_modules/lru-cache": {
- "version": "4.0.0",
+ "node_modules/css-declaration-sorter": {
+ "version": "7.2.0",
"license": "ISC",
- "dependencies": {
- "pseudomap": "^1.0.1",
- "yallist": "^2.0.0"
+ "engines": {
+ "node": "^14 || ^16 || >=18"
+ },
+ "peerDependencies": {
+ "postcss": "^8.0.9"
}
},
- "node_modules/cache-manager/node_modules/yallist": {
- "version": "2.1.2",
- "license": "ISC"
- },
- "node_modules/cache-parser": {
- "version": "1.2.4",
- "license": "MIT"
- },
- "node_modules/cacheable-lookup": {
- "version": "5.0.4",
+ "node_modules/css-functions-list": {
+ "version": "3.2.3",
+ "dev": true,
"license": "MIT",
"engines": {
- "node": ">=10.6.0"
+ "node": ">=12 || >=16"
}
},
- "node_modules/cacheable-request": {
- "version": "7.0.2",
+ "node_modules/css-in-js-utils": {
+ "version": "3.1.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "clone-response": "^1.0.2",
- "get-stream": "^5.1.0",
- "http-cache-semantics": "^4.0.0",
- "keyv": "^4.0.0",
- "lowercase-keys": "^2.0.0",
- "normalize-url": "^6.0.1",
- "responselike": "^2.0.0"
- },
- "engines": {
- "node": ">=8"
+ "hyphenate-style-name": "^1.0.3"
}
},
- "node_modules/cacheable-request/node_modules/get-stream": {
- "version": "5.2.0",
+ "node_modules/css-loader": {
+ "version": "5.2.7",
"license": "MIT",
"dependencies": {
- "pump": "^3.0.0"
+ "icss-utils": "^5.1.0",
+ "loader-utils": "^2.0.0",
+ "postcss": "^8.2.15",
+ "postcss-modules-extract-imports": "^3.0.0",
+ "postcss-modules-local-by-default": "^4.0.0",
+ "postcss-modules-scope": "^3.0.0",
+ "postcss-modules-values": "^4.0.0",
+ "postcss-value-parser": "^4.1.0",
+ "schema-utils": "^3.0.0",
+ "semver": "^7.3.5"
},
"engines": {
- "node": ">=8"
+ "node": ">= 10.13.0"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependencies": {
+ "webpack": "^4.27.0 || ^5.0.0"
}
},
- "node_modules/call-bind": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz",
- "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==",
+ "node_modules/css-loader/node_modules/schema-utils": {
+ "version": "3.3.0",
+ "license": "MIT",
"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"
+ "@types/json-schema": "^7.0.8",
+ "ajv": "^6.12.5",
+ "ajv-keywords": "^3.5.2"
},
"engines": {
- "node": ">= 0.4"
+ "node": ">= 10.13.0"
},
"funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
}
},
- "node_modules/callsites": {
- "version": "3.1.0",
- "license": "MIT",
+ "node_modules/css-loader/node_modules/semver": {
+ "version": "7.6.3",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
"engines": {
- "node": ">=6"
+ "node": ">=10"
}
},
- "node_modules/camel-case": {
- "version": "3.0.0",
+ "node_modules/css-mediaquery": {
+ "version": "0.1.2",
+ "license": "BSD"
+ },
+ "node_modules/css-minimizer-webpack-plugin": {
+ "version": "2.0.0",
"license": "MIT",
"dependencies": {
- "no-case": "^2.2.0",
- "upper-case": "^1.1.1"
+ "cssnano": "^5.0.0",
+ "jest-worker": "^26.3.0",
+ "p-limit": "^3.0.2",
+ "postcss": "^8.2.9",
+ "schema-utils": "^3.0.0",
+ "serialize-javascript": "^5.0.1",
+ "source-map": "^0.6.1"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependencies": {
+ "webpack": "^5.0.0"
+ },
+ "peerDependenciesMeta": {
+ "clean-css": {
+ "optional": true
+ },
+ "csso": {
+ "optional": true
+ }
}
},
- "node_modules/camelcase": {
- "version": "5.3.1",
+ "node_modules/css-minimizer-webpack-plugin/node_modules/commander": {
+ "version": "7.2.0",
"license": "MIT",
"engines": {
- "node": ">=6"
+ "node": ">= 10"
}
},
- "node_modules/camelcase-css": {
- "version": "2.0.1",
- "license": "MIT",
+ "node_modules/css-minimizer-webpack-plugin/node_modules/css-declaration-sorter": {
+ "version": "6.4.1",
+ "license": "ISC",
"engines": {
- "node": ">= 6"
+ "node": "^10 || ^12 || >=14"
+ },
+ "peerDependencies": {
+ "postcss": "^8.0.9"
}
},
- "node_modules/camelcase-keys": {
- "version": "6.2.2",
- "dev": true,
+ "node_modules/css-minimizer-webpack-plugin/node_modules/cssnano": {
+ "version": "5.1.15",
"license": "MIT",
"dependencies": {
- "camelcase": "^5.3.1",
- "map-obj": "^4.0.0",
- "quick-lru": "^4.0.1"
+ "cssnano-preset-default": "^5.2.14",
+ "lilconfig": "^2.0.3",
+ "yaml": "^1.10.2"
},
"engines": {
- "node": ">=8"
+ "node": "^10 || ^12 || >=14.0"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "type": "opencollective",
+ "url": "https://opencollective.com/cssnano"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
}
},
- "node_modules/caniuse-api": {
- "version": "3.0.0",
+ "node_modules/css-minimizer-webpack-plugin/node_modules/cssnano-preset-default": {
+ "version": "5.2.14",
"license": "MIT",
"dependencies": {
- "browserslist": "^4.0.0",
- "caniuse-lite": "^1.0.0",
- "lodash.memoize": "^4.1.2",
- "lodash.uniq": "^4.5.0"
+ "css-declaration-sorter": "^6.3.1",
+ "cssnano-utils": "^3.1.0",
+ "postcss-calc": "^8.2.3",
+ "postcss-colormin": "^5.3.1",
+ "postcss-convert-values": "^5.1.3",
+ "postcss-discard-comments": "^5.1.2",
+ "postcss-discard-duplicates": "^5.1.0",
+ "postcss-discard-empty": "^5.1.1",
+ "postcss-discard-overridden": "^5.1.0",
+ "postcss-merge-longhand": "^5.1.7",
+ "postcss-merge-rules": "^5.1.4",
+ "postcss-minify-font-values": "^5.1.0",
+ "postcss-minify-gradients": "^5.1.1",
+ "postcss-minify-params": "^5.1.4",
+ "postcss-minify-selectors": "^5.2.1",
+ "postcss-normalize-charset": "^5.1.0",
+ "postcss-normalize-display-values": "^5.1.0",
+ "postcss-normalize-positions": "^5.1.1",
+ "postcss-normalize-repeat-style": "^5.1.1",
+ "postcss-normalize-string": "^5.1.0",
+ "postcss-normalize-timing-functions": "^5.1.0",
+ "postcss-normalize-unicode": "^5.1.1",
+ "postcss-normalize-url": "^5.1.0",
+ "postcss-normalize-whitespace": "^5.1.1",
+ "postcss-ordered-values": "^5.1.3",
+ "postcss-reduce-initial": "^5.1.2",
+ "postcss-reduce-transforms": "^5.1.0",
+ "postcss-svgo": "^5.1.0",
+ "postcss-unique-selectors": "^5.1.1"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
}
},
- "node_modules/caniuse-lite": {
- "version": "1.0.30001692",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001692.tgz",
- "integrity": "sha512-A95VKan0kdtrsnMubMKxEKUKImOPSuCpYgxSQBo036P5YYgVIcOYJEgt/txJWqObiRQeISNCfef9nvlQ0vbV7A==",
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ]
- },
- "node_modules/capital-case": {
- "version": "1.0.4",
+ "node_modules/css-minimizer-webpack-plugin/node_modules/cssnano-utils": {
+ "version": "3.1.0",
"license": "MIT",
- "dependencies": {
- "no-case": "^3.0.4",
- "tslib": "^2.0.3",
- "upper-case-first": "^2.0.2"
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
}
},
- "node_modules/capital-case/node_modules/lower-case": {
- "version": "2.0.2",
+ "node_modules/css-minimizer-webpack-plugin/node_modules/csso": {
+ "version": "4.2.0",
"license": "MIT",
"dependencies": {
- "tslib": "^2.0.3"
+ "css-tree": "^1.1.2"
+ },
+ "engines": {
+ "node": ">=8.0.0"
}
},
- "node_modules/capital-case/node_modules/no-case": {
- "version": "3.0.4",
+ "node_modules/css-minimizer-webpack-plugin/node_modules/postcss-calc": {
+ "version": "8.2.4",
"license": "MIT",
"dependencies": {
- "lower-case": "^2.0.2",
- "tslib": "^2.0.3"
+ "postcss-selector-parser": "^6.0.9",
+ "postcss-value-parser": "^4.2.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.2"
}
},
- "node_modules/capture-exit": {
- "version": "2.0.0",
- "dev": true,
- "license": "ISC",
+ "node_modules/css-minimizer-webpack-plugin/node_modules/postcss-colormin": {
+ "version": "5.3.1",
+ "license": "MIT",
"dependencies": {
- "rsvp": "^4.8.4"
+ "browserslist": "^4.21.4",
+ "caniuse-api": "^3.0.0",
+ "colord": "^2.9.1",
+ "postcss-value-parser": "^4.2.0"
},
"engines": {
- "node": "6.* || 8.* || >= 10.*"
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
}
},
- "node_modules/cardinal": {
- "version": "2.1.1",
- "dev": true,
+ "node_modules/css-minimizer-webpack-plugin/node_modules/postcss-convert-values": {
+ "version": "5.1.3",
"license": "MIT",
"dependencies": {
- "ansicolors": "~0.3.2",
- "redeyed": "~2.1.0"
+ "browserslist": "^4.21.4",
+ "postcss-value-parser": "^4.2.0"
},
- "bin": {
- "cdl": "bin/cdl.js"
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
}
},
- "node_modules/cast-array": {
- "version": "1.0.1",
+ "node_modules/css-minimizer-webpack-plugin/node_modules/postcss-discard-comments": {
+ "version": "5.1.2",
"license": "MIT",
- "dependencies": {
- "isarray": "0.0.1"
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
}
},
- "node_modules/cast-array/node_modules/isarray": {
- "version": "0.0.1",
- "license": "MIT"
- },
- "node_modules/ccount": {
- "version": "1.1.0",
+ "node_modules/css-minimizer-webpack-plugin/node_modules/postcss-discard-duplicates": {
+ "version": "5.1.0",
"license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
}
},
- "node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
+ "node_modules/css-minimizer-webpack-plugin/node_modules/postcss-discard-empty": {
+ "version": "5.1.1",
+ "license": "MIT",
"engines": {
- "node": ">=10"
+ "node": "^10 || ^12 || >=14.0"
},
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "peerDependencies": {
+ "postcss": "^8.2.15"
}
},
- "node_modules/chalk/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
+ "node_modules/css-minimizer-webpack-plugin/node_modules/postcss-discard-overridden": {
+ "version": "5.1.0",
+ "license": "MIT",
"engines": {
- "node": ">=8"
+ "node": "^10 || ^12 || >=14.0"
},
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "peerDependencies": {
+ "postcss": "^8.2.15"
}
},
- "node_modules/chalk/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "node_modules/css-minimizer-webpack-plugin/node_modules/postcss-merge-longhand": {
+ "version": "5.1.7",
+ "license": "MIT",
"dependencies": {
- "color-name": "~1.1.4"
+ "postcss-value-parser": "^4.2.0",
+ "stylehacks": "^5.1.1"
},
"engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/chalk/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
- },
- "node_modules/chalk/node_modules/has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "engines": {
- "node": ">=8"
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
}
},
- "node_modules/chalk/node_modules/supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "node_modules/css-minimizer-webpack-plugin/node_modules/postcss-merge-rules": {
+ "version": "5.1.4",
+ "license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
+ "browserslist": "^4.21.4",
+ "caniuse-api": "^3.0.0",
+ "cssnano-utils": "^3.1.0",
+ "postcss-selector-parser": "^6.0.5"
},
"engines": {
- "node": ">=8"
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
}
},
- "node_modules/change-case": {
- "version": "4.1.2",
+ "node_modules/css-minimizer-webpack-plugin/node_modules/postcss-minify-font-values": {
+ "version": "5.1.0",
"license": "MIT",
"dependencies": {
- "camel-case": "^4.1.2",
- "capital-case": "^1.0.4",
- "constant-case": "^3.0.4",
- "dot-case": "^3.0.4",
- "header-case": "^2.0.4",
- "no-case": "^3.0.4",
- "param-case": "^3.0.4",
- "pascal-case": "^3.1.2",
- "path-case": "^3.0.4",
- "sentence-case": "^3.0.4",
- "snake-case": "^3.0.4",
- "tslib": "^2.0.3"
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
}
},
- "node_modules/change-case-all": {
- "version": "1.0.14",
+ "node_modules/css-minimizer-webpack-plugin/node_modules/postcss-minify-gradients": {
+ "version": "5.1.1",
"license": "MIT",
"dependencies": {
- "change-case": "^4.1.2",
- "is-lower-case": "^2.0.2",
- "is-upper-case": "^2.0.2",
- "lower-case": "^2.0.2",
- "lower-case-first": "^2.0.2",
- "sponge-case": "^1.0.1",
- "swap-case": "^2.0.2",
- "title-case": "^3.0.3",
- "upper-case": "^2.0.2",
- "upper-case-first": "^2.0.2"
+ "colord": "^2.9.1",
+ "cssnano-utils": "^3.1.0",
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
}
},
- "node_modules/change-case-all/node_modules/lower-case": {
- "version": "2.0.2",
+ "node_modules/css-minimizer-webpack-plugin/node_modules/postcss-minify-params": {
+ "version": "5.1.4",
"license": "MIT",
"dependencies": {
- "tslib": "^2.0.3"
+ "browserslist": "^4.21.4",
+ "cssnano-utils": "^3.1.0",
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
}
},
- "node_modules/change-case-all/node_modules/upper-case": {
- "version": "2.0.2",
+ "node_modules/css-minimizer-webpack-plugin/node_modules/postcss-minify-selectors": {
+ "version": "5.2.1",
"license": "MIT",
"dependencies": {
- "tslib": "^2.0.3"
+ "postcss-selector-parser": "^6.0.5"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
}
},
- "node_modules/change-case/node_modules/camel-case": {
- "version": "4.1.2",
+ "node_modules/css-minimizer-webpack-plugin/node_modules/postcss-normalize-charset": {
+ "version": "5.1.0",
"license": "MIT",
- "dependencies": {
- "pascal-case": "^3.1.2",
- "tslib": "^2.0.3"
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
}
},
- "node_modules/change-case/node_modules/lower-case": {
- "version": "2.0.2",
+ "node_modules/css-minimizer-webpack-plugin/node_modules/postcss-normalize-display-values": {
+ "version": "5.1.0",
"license": "MIT",
"dependencies": {
- "tslib": "^2.0.3"
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
}
},
- "node_modules/change-case/node_modules/no-case": {
- "version": "3.0.4",
+ "node_modules/css-minimizer-webpack-plugin/node_modules/postcss-normalize-positions": {
+ "version": "5.1.1",
"license": "MIT",
"dependencies": {
- "lower-case": "^2.0.2",
- "tslib": "^2.0.3"
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
}
},
- "node_modules/change-case/node_modules/param-case": {
- "version": "3.0.4",
+ "node_modules/css-minimizer-webpack-plugin/node_modules/postcss-normalize-repeat-style": {
+ "version": "5.1.1",
"license": "MIT",
"dependencies": {
- "dot-case": "^3.0.4",
- "tslib": "^2.0.3"
- }
- },
- "node_modules/char-regex": {
- "version": "1.0.2",
- "dev": true,
- "license": "MIT",
+ "postcss-value-parser": "^4.2.0"
+ },
"engines": {
- "node": ">=10"
- }
- },
- "node_modules/character-entities": {
- "version": "1.2.4",
- "license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
- "node_modules/character-entities-html4": {
- "version": "1.1.4",
- "license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
}
},
- "node_modules/character-entities-legacy": {
- "version": "1.1.4",
+ "node_modules/css-minimizer-webpack-plugin/node_modules/postcss-normalize-string": {
+ "version": "5.1.0",
"license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "dependencies": {
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
}
},
- "node_modules/character-reference-invalid": {
- "version": "1.1.4",
+ "node_modules/css-minimizer-webpack-plugin/node_modules/postcss-normalize-timing-functions": {
+ "version": "5.1.0",
"license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
- "node_modules/chardet": {
- "version": "0.7.0",
- "license": "MIT"
- },
- "node_modules/charenc": {
- "version": "0.0.2",
- "license": "BSD-3-Clause",
+ "dependencies": {
+ "postcss-value-parser": "^4.2.0"
+ },
"engines": {
- "node": "*"
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
}
},
- "node_modules/chevrotain": {
- "version": "11.0.3",
- "resolved": "https://registry.npmjs.org/chevrotain/-/chevrotain-11.0.3.tgz",
- "integrity": "sha512-ci2iJH6LeIkvP9eJW6gpueU8cnZhv85ELY8w8WiFtNjMHA5ad6pQLaJo9mEly/9qUyCpvqX8/POVUTf18/HFdw==",
+ "node_modules/css-minimizer-webpack-plugin/node_modules/postcss-normalize-unicode": {
+ "version": "5.1.1",
+ "license": "MIT",
"dependencies": {
- "@chevrotain/cst-dts-gen": "11.0.3",
- "@chevrotain/gast": "11.0.3",
- "@chevrotain/regexp-to-ast": "11.0.3",
- "@chevrotain/types": "11.0.3",
- "@chevrotain/utils": "11.0.3",
- "lodash-es": "4.17.21"
+ "browserslist": "^4.21.4",
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
}
},
- "node_modules/child_process": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/child_process/-/child_process-1.0.2.tgz",
- "integrity": "sha512-Wmza/JzL0SiWz7kl6MhIKT5ceIlnFPJX+lwUGj7Clhy5MMldsSoJR0+uvRzOS5Kv45Mq7t1PoE8TsOA9bzvb6g=="
- },
- "node_modules/chokidar": {
- "version": "3.5.3",
- "funding": [
- {
- "type": "individual",
- "url": "https://paulmillr.com/funding/"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "anymatch": "~3.1.2",
- "braces": "~3.0.2",
- "glob-parent": "~5.1.2",
- "is-binary-path": "~2.1.0",
- "is-glob": "~4.0.1",
- "normalize-path": "~3.0.0",
- "readdirp": "~3.6.0"
+ "node_modules/css-minimizer-webpack-plugin/node_modules/postcss-normalize-url": {
+ "version": "5.1.0",
+ "license": "MIT",
+ "dependencies": {
+ "normalize-url": "^6.0.1",
+ "postcss-value-parser": "^4.2.0"
},
"engines": {
- "node": ">= 8.10.0"
+ "node": "^10 || ^12 || >=14.0"
},
- "optionalDependencies": {
- "fsevents": "~2.3.2"
+ "peerDependencies": {
+ "postcss": "^8.2.15"
}
},
- "node_modules/chownr": {
- "version": "1.1.4",
- "license": "ISC"
- },
- "node_modules/chroma-js": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chroma-js/-/chroma-js-2.4.2.tgz",
- "integrity": "sha512-U9eDw6+wt7V8z5NncY2jJfZa+hUH8XEj8FQHgFJTrUFnJfXYf4Ml4adI2vXZOjqRDpFWtYVWypDfZwnJ+HIR4A=="
- },
- "node_modules/chrome-trace-event": {
- "version": "1.0.3",
+ "node_modules/css-minimizer-webpack-plugin/node_modules/postcss-normalize-whitespace": {
+ "version": "5.1.1",
"license": "MIT",
+ "dependencies": {
+ "postcss-value-parser": "^4.2.0"
+ },
"engines": {
- "node": ">=6.0"
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
}
},
- "node_modules/ci-info": {
- "version": "3.8.0",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/sibiraj-s"
- }
- ],
+ "node_modules/css-minimizer-webpack-plugin/node_modules/postcss-ordered-values": {
+ "version": "5.1.3",
"license": "MIT",
+ "dependencies": {
+ "cssnano-utils": "^3.1.0",
+ "postcss-value-parser": "^4.2.0"
+ },
"engines": {
- "node": ">=8"
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
}
},
- "node_modules/cjs-module-lexer": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz",
- "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==",
- "dev": true
- },
- "node_modules/class-utils": {
- "version": "0.3.6",
- "dev": true,
+ "node_modules/css-minimizer-webpack-plugin/node_modules/postcss-reduce-initial": {
+ "version": "5.1.2",
"license": "MIT",
"dependencies": {
- "arr-union": "^3.1.0",
- "define-property": "^0.2.5",
- "isobject": "^3.0.0",
- "static-extend": "^0.1.1"
+ "browserslist": "^4.21.4",
+ "caniuse-api": "^3.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
}
},
- "node_modules/class-utils/node_modules/define-property": {
- "version": "0.2.5",
- "dev": true,
+ "node_modules/css-minimizer-webpack-plugin/node_modules/postcss-reduce-transforms": {
+ "version": "5.1.0",
"license": "MIT",
"dependencies": {
- "is-descriptor": "^0.1.0"
+ "postcss-value-parser": "^4.2.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
}
},
- "node_modules/class-utils/node_modules/is-accessor-descriptor": {
- "version": "0.1.6",
- "dev": true,
+ "node_modules/css-minimizer-webpack-plugin/node_modules/postcss-svgo": {
+ "version": "5.1.0",
"license": "MIT",
"dependencies": {
- "kind-of": "^3.0.2"
+ "postcss-value-parser": "^4.2.0",
+ "svgo": "^2.7.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
}
},
- "node_modules/class-utils/node_modules/is-accessor-descriptor/node_modules/kind-of": {
- "version": "3.2.2",
- "dev": true,
+ "node_modules/css-minimizer-webpack-plugin/node_modules/postcss-unique-selectors": {
+ "version": "5.1.1",
"license": "MIT",
"dependencies": {
- "is-buffer": "^1.1.5"
+ "postcss-selector-parser": "^6.0.5"
},
"engines": {
- "node": ">=0.10.0"
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
}
},
- "node_modules/class-utils/node_modules/is-buffer": {
- "version": "1.1.6",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/class-utils/node_modules/is-data-descriptor": {
- "version": "0.1.4",
- "dev": true,
+ "node_modules/css-minimizer-webpack-plugin/node_modules/schema-utils": {
+ "version": "3.3.0",
"license": "MIT",
"dependencies": {
- "kind-of": "^3.0.2"
+ "@types/json-schema": "^7.0.8",
+ "ajv": "^6.12.5",
+ "ajv-keywords": "^3.5.2"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
}
},
- "node_modules/class-utils/node_modules/is-data-descriptor/node_modules/kind-of": {
- "version": "3.2.2",
- "dev": true,
+ "node_modules/css-minimizer-webpack-plugin/node_modules/stylehacks": {
+ "version": "5.1.1",
"license": "MIT",
"dependencies": {
- "is-buffer": "^1.1.5"
+ "browserslist": "^4.21.4",
+ "postcss-selector-parser": "^6.0.4"
},
"engines": {
- "node": ">=0.10.0"
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
}
},
- "node_modules/class-utils/node_modules/is-descriptor": {
- "version": "0.1.6",
- "dev": true,
+ "node_modules/css-minimizer-webpack-plugin/node_modules/svgo": {
+ "version": "2.8.0",
"license": "MIT",
"dependencies": {
- "is-accessor-descriptor": "^0.1.6",
- "is-data-descriptor": "^0.1.4",
- "kind-of": "^5.0.0"
+ "@trysound/sax": "0.2.0",
+ "commander": "^7.2.0",
+ "css-select": "^4.1.3",
+ "css-tree": "^1.1.3",
+ "csso": "^4.2.0",
+ "picocolors": "^1.0.0",
+ "stable": "^0.1.8"
+ },
+ "bin": {
+ "svgo": "bin/svgo"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10.13.0"
}
},
- "node_modules/class-utils/node_modules/kind-of": {
- "version": "5.1.0",
- "dev": true,
- "license": "MIT",
+ "node_modules/css-minimizer-webpack-plugin/node_modules/yaml": {
+ "version": "1.10.2",
+ "license": "ISC",
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 6"
}
},
- "node_modules/classnames": {
- "version": "2.3.2",
+ "node_modules/css-select": {
+ "version": "4.3.0",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "boolbase": "^1.0.0",
+ "css-what": "^6.0.1",
+ "domhandler": "^4.3.1",
+ "domutils": "^2.8.0",
+ "nth-check": "^2.0.1"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/fb55"
+ }
+ },
+ "node_modules/css-selector-parser": {
+ "version": "1.4.1",
"license": "MIT"
},
- "node_modules/clean-css": {
- "version": "4.2.4",
- "dev": true,
+ "node_modules/css-tree": {
+ "version": "1.1.3",
"license": "MIT",
"dependencies": {
- "source-map": "~0.6.0"
+ "mdn-data": "2.0.14",
+ "source-map": "^0.6.1"
},
"engines": {
- "node": ">= 4.0"
+ "node": ">=8.0.0"
}
},
- "node_modules/clean-stack": {
- "version": "2.2.0",
- "dev": true,
- "license": "MIT",
+ "node_modules/css-what": {
+ "version": "6.1.0",
+ "license": "BSD-2-Clause",
"engines": {
- "node": ">=6"
+ "node": ">= 6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/fb55"
}
},
- "node_modules/clean-webpack-plugin": {
+ "node_modules/css.escape": {
+ "version": "1.5.1",
+ "license": "MIT"
+ },
+ "node_modules/cssesc": {
"version": "3.0.0",
- "dev": true,
+ "license": "MIT",
+ "bin": {
+ "cssesc": "bin/cssesc"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/cssnano": {
+ "version": "6.0.1",
"license": "MIT",
"dependencies": {
- "@types/webpack": "^4.4.31",
- "del": "^4.1.1"
+ "cssnano-preset-default": "^6.0.1",
+ "lilconfig": "^2.1.0"
},
"engines": {
- "node": ">=8.9.0"
+ "node": "^14 || ^16 || >=18.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/cssnano"
},
"peerDependencies": {
- "webpack": "*"
+ "postcss": "^8.2.15"
}
},
- "node_modules/clean-webpack-plugin/node_modules/@types/glob": {
- "version": "7.2.0",
- "dev": true,
+ "node_modules/cssnano-preset-default": {
+ "version": "6.1.2",
"license": "MIT",
"dependencies": {
- "@types/minimatch": "*",
- "@types/node": "*"
+ "browserslist": "^4.23.0",
+ "css-declaration-sorter": "^7.2.0",
+ "cssnano-utils": "^4.0.2",
+ "postcss-calc": "^9.0.1",
+ "postcss-colormin": "^6.1.0",
+ "postcss-convert-values": "^6.1.0",
+ "postcss-discard-comments": "^6.0.2",
+ "postcss-discard-duplicates": "^6.0.3",
+ "postcss-discard-empty": "^6.0.3",
+ "postcss-discard-overridden": "^6.0.2",
+ "postcss-merge-longhand": "^6.0.5",
+ "postcss-merge-rules": "^6.1.1",
+ "postcss-minify-font-values": "^6.1.0",
+ "postcss-minify-gradients": "^6.0.3",
+ "postcss-minify-params": "^6.1.0",
+ "postcss-minify-selectors": "^6.0.4",
+ "postcss-normalize-charset": "^6.0.2",
+ "postcss-normalize-display-values": "^6.0.2",
+ "postcss-normalize-positions": "^6.0.2",
+ "postcss-normalize-repeat-style": "^6.0.2",
+ "postcss-normalize-string": "^6.0.2",
+ "postcss-normalize-timing-functions": "^6.0.2",
+ "postcss-normalize-unicode": "^6.1.0",
+ "postcss-normalize-url": "^6.0.2",
+ "postcss-normalize-whitespace": "^6.0.2",
+ "postcss-ordered-values": "^6.0.2",
+ "postcss-reduce-initial": "^6.1.0",
+ "postcss-reduce-transforms": "^6.0.2",
+ "postcss-svgo": "^6.0.3",
+ "postcss-unique-selectors": "^6.0.4"
+ },
+ "engines": {
+ "node": "^14 || ^16 || >=18.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
}
},
- "node_modules/clean-webpack-plugin/node_modules/array-union": {
- "version": "1.0.2",
- "dev": true,
+ "node_modules/cssnano-utils": {
+ "version": "4.0.2",
+ "license": "MIT",
+ "engines": {
+ "node": "^14 || ^16 || >=18.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/csso": {
+ "version": "5.0.5",
"license": "MIT",
"dependencies": {
- "array-uniq": "^1.0.1"
+ "css-tree": "~2.2.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0",
+ "npm": ">=7.0.0"
}
},
- "node_modules/clean-webpack-plugin/node_modules/del": {
- "version": "4.1.1",
- "dev": true,
+ "node_modules/csso/node_modules/css-tree": {
+ "version": "2.2.1",
"license": "MIT",
"dependencies": {
- "@types/glob": "^7.1.1",
- "globby": "^6.1.0",
- "is-path-cwd": "^2.0.0",
- "is-path-in-cwd": "^2.0.0",
- "p-map": "^2.0.0",
- "pify": "^4.0.1",
- "rimraf": "^2.6.3"
+ "mdn-data": "2.0.28",
+ "source-map-js": "^1.0.1"
},
"engines": {
- "node": ">=6"
+ "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0",
+ "npm": ">=7.0.0"
}
},
- "node_modules/clean-webpack-plugin/node_modules/glob": {
- "version": "7.2.3",
- "dev": true,
- "license": "ISC",
+ "node_modules/csso/node_modules/mdn-data": {
+ "version": "2.0.28",
+ "license": "CC0-1.0"
+ },
+ "node_modules/cssom": {
+ "version": "0.5.0",
+ "license": "MIT"
+ },
+ "node_modules/cssstyle": {
+ "version": "2.3.0",
+ "license": "MIT",
"dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.1.1",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
+ "cssom": "~0.3.6"
},
"engines": {
- "node": "*"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
+ "node": ">=8"
}
},
- "node_modules/clean-webpack-plugin/node_modules/globby": {
- "version": "6.1.0",
+ "node_modules/cssstyle/node_modules/cssom": {
+ "version": "0.3.8",
+ "license": "MIT"
+ },
+ "node_modules/csstype": {
+ "version": "3.1.3",
+ "license": "MIT"
+ },
+ "node_modules/current-git-branch": {
+ "version": "1.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "array-union": "^1.0.1",
- "glob": "^7.0.3",
- "object-assign": "^4.0.1",
- "pify": "^2.0.0",
- "pinkie-promise": "^2.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
+ "babel-plugin-add-module-exports": "^0.2.1",
+ "execa": "^0.6.1",
+ "is-git-repository": "^1.0.0"
}
},
- "node_modules/clean-webpack-plugin/node_modules/globby/node_modules/pify": {
- "version": "2.3.0",
+ "node_modules/current-git-branch/node_modules/babel-plugin-add-module-exports": {
+ "version": "0.2.1",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/current-git-branch/node_modules/cross-spawn": {
+ "version": "5.1.0",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "dependencies": {
+ "lru-cache": "^4.0.1",
+ "shebang-command": "^1.2.0",
+ "which": "^1.2.9"
}
},
- "node_modules/clean-webpack-plugin/node_modules/rimraf": {
- "version": "2.7.1",
+ "node_modules/current-git-branch/node_modules/execa": {
+ "version": "0.6.3",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "glob": "^7.1.3"
+ "cross-spawn": "^5.0.1",
+ "get-stream": "^3.0.0",
+ "is-stream": "^1.1.0",
+ "npm-run-path": "^2.0.0",
+ "p-finally": "^1.0.0",
+ "signal-exit": "^3.0.0",
+ "strip-eof": "^1.0.0"
},
- "bin": {
- "rimraf": "bin.js"
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/cli-boxes": {
- "version": "2.2.1",
+ "node_modules/current-git-branch/node_modules/get-stream": {
+ "version": "3.0.0",
+ "dev": true,
"license": "MIT",
"engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=4"
}
},
- "node_modules/cli-cursor": {
- "version": "3.1.0",
+ "node_modules/current-git-branch/node_modules/is-stream": {
+ "version": "1.1.0",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "restore-cursor": "^3.1.0"
- },
"engines": {
- "node": ">=8"
+ "node": ">=0.10.0"
}
},
- "node_modules/cli-progress": {
- "version": "3.12.0",
- "resolved": "https://registry.npmjs.org/cli-progress/-/cli-progress-3.12.0.tgz",
- "integrity": "sha512-tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A==",
+ "node_modules/current-git-branch/node_modules/lru-cache": {
+ "version": "4.1.5",
+ "dev": true,
+ "license": "ISC",
"dependencies": {
- "string-width": "^4.2.3"
+ "pseudomap": "^1.0.2",
+ "yallist": "^2.1.2"
+ }
+ },
+ "node_modules/current-git-branch/node_modules/npm-run-path": {
+ "version": "2.0.2",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "path-key": "^2.0.0"
},
"engines": {
"node": ">=4"
}
},
- "node_modules/cli-spinners": {
- "version": "2.9.0",
- "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.0.tgz",
- "integrity": "sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g==",
+ "node_modules/current-git-branch/node_modules/path-key": {
+ "version": "2.0.1",
+ "dev": true,
+ "license": "MIT",
"engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=4"
}
},
- "node_modules/cli-table3": {
- "version": "0.6.3",
+ "node_modules/current-git-branch/node_modules/shebang-command": {
+ "version": "1.2.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "string-width": "^4.2.0"
+ "shebang-regex": "^1.0.0"
},
"engines": {
- "node": "10.* || >= 12.*"
- },
- "optionalDependencies": {
- "@colors/colors": "1.5.0"
+ "node": ">=0.10.0"
}
},
- "node_modules/cli-truncate": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-4.0.0.tgz",
- "integrity": "sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==",
+ "node_modules/current-git-branch/node_modules/shebang-regex": {
+ "version": "1.0.0",
"dev": true,
- "dependencies": {
- "slice-ansi": "^5.0.0",
- "string-width": "^7.0.0"
- },
+ "license": "MIT",
"engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=0.10.0"
}
},
- "node_modules/cli-truncate/node_modules/ansi-regex": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz",
- "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
+ "node_modules/current-git-branch/node_modules/which": {
+ "version": "1.3.1",
"dev": true,
- "engines": {
- "node": ">=12"
+ "license": "ISC",
+ "dependencies": {
+ "isexe": "^2.0.0"
},
- "funding": {
- "url": "https://github.com/chalk/ansi-regex?sponsor=1"
+ "bin": {
+ "which": "bin/which"
}
},
- "node_modules/cli-truncate/node_modules/ansi-styles": {
- "version": "6.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
- "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
+ "node_modules/current-git-branch/node_modules/yallist": {
+ "version": "2.1.2",
"dev": true,
- "engines": {
- "node": ">=12"
+ "license": "ISC"
+ },
+ "node_modules/d": {
+ "version": "1.0.2",
+ "license": "ISC",
+ "dependencies": {
+ "es5-ext": "^0.10.64",
+ "type": "^2.7.2"
},
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "engines": {
+ "node": ">=0.12"
}
},
- "node_modules/cli-truncate/node_modules/emoji-regex": {
- "version": "10.3.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.3.0.tgz",
- "integrity": "sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==",
- "dev": true
+ "node_modules/damerau-levenshtein": {
+ "version": "1.0.8",
+ "license": "BSD-2-Clause"
},
- "node_modules/cli-truncate/node_modules/is-fullwidth-code-point": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz",
- "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==",
+ "node_modules/dashify": {
+ "version": "2.0.0",
"dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/data-urls": {
+ "version": "3.0.2",
+ "license": "MIT",
+ "dependencies": {
+ "abab": "^2.0.6",
+ "whatwg-mimetype": "^3.0.0",
+ "whatwg-url": "^11.0.0"
+ },
"engines": {
"node": ">=12"
+ }
+ },
+ "node_modules/data-view-buffer": {
+ "version": "1.0.1",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.6",
+ "es-errors": "^1.3.0",
+ "is-data-view": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/cli-truncate/node_modules/slice-ansi": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz",
- "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==",
- "dev": true,
+ "node_modules/data-view-byte-length": {
+ "version": "1.0.1",
+ "license": "MIT",
"dependencies": {
- "ansi-styles": "^6.0.0",
- "is-fullwidth-code-point": "^4.0.0"
+ "call-bind": "^1.0.7",
+ "es-errors": "^1.3.0",
+ "is-data-view": "^1.0.1"
},
"engines": {
- "node": ">=12"
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/chalk/slice-ansi?sponsor=1"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/cli-truncate/node_modules/string-width": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.0.0.tgz",
- "integrity": "sha512-GPQHj7row82Hjo9hKZieKcHIhaAIKOJvFSIZXuCU9OASVZrMNUaZuz++SPVrBjnLsnk4k+z9f2EIypgxf2vNFw==",
- "dev": true,
+ "node_modules/data-view-byte-offset": {
+ "version": "1.0.0",
+ "license": "MIT",
"dependencies": {
- "emoji-regex": "^10.3.0",
- "get-east-asian-width": "^1.0.0",
- "strip-ansi": "^7.1.0"
+ "call-bind": "^1.0.6",
+ "es-errors": "^1.3.0",
+ "is-data-view": "^1.0.1"
},
"engines": {
- "node": ">=18"
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/cli-truncate/node_modules/strip-ansi": {
- "version": "7.1.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
- "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
- "dev": true,
+ "node_modules/date-fns": {
+ "version": "2.30.0",
+ "license": "MIT",
"dependencies": {
- "ansi-regex": "^6.0.1"
+ "@babel/runtime": "^7.21.0"
},
"engines": {
- "node": ">=12"
+ "node": ">=0.11"
},
"funding": {
- "url": "https://github.com/chalk/strip-ansi?sponsor=1"
+ "type": "opencollective",
+ "url": "https://opencollective.com/date-fns"
}
},
- "node_modules/cli-width": {
- "version": "3.0.0",
- "license": "ISC",
+ "node_modules/dateformat": {
+ "version": "3.0.3",
+ "dev": true,
+ "license": "MIT",
"engines": {
- "node": ">= 10"
+ "node": "*"
+ }
+ },
+ "node_modules/debounce": {
+ "version": "1.2.1",
+ "license": "MIT"
+ },
+ "node_modules/debug": {
+ "version": "3.2.7",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.1"
}
},
- "node_modules/clipboardy": {
- "version": "2.3.0",
+ "node_modules/decamelize": {
+ "version": "1.2.0",
"license": "MIT",
- "dependencies": {
- "arch": "^2.1.1",
- "execa": "^1.0.0",
- "is-wsl": "^2.1.1"
- },
"engines": {
- "node": ">=8"
+ "node": ">=0.10.0"
}
},
- "node_modules/clipboardy/node_modules/cross-spawn": {
- "version": "6.0.5",
+ "node_modules/decamelize-keys": {
+ "version": "1.1.1",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "nice-try": "^1.0.4",
- "path-key": "^2.0.1",
- "semver": "^5.5.0",
- "shebang-command": "^1.2.0",
- "which": "^1.2.9"
+ "decamelize": "^1.1.0",
+ "map-obj": "^1.0.0"
},
"engines": {
- "node": ">=4.8"
+ "node": ">=0.10.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/clipboardy/node_modules/execa": {
- "version": "1.0.0",
+ "node_modules/decamelize-keys/node_modules/map-obj": {
+ "version": "1.0.1",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "cross-spawn": "^6.0.0",
- "get-stream": "^4.0.0",
- "is-stream": "^1.1.0",
- "npm-run-path": "^2.0.0",
- "p-finally": "^1.0.0",
- "signal-exit": "^3.0.0",
- "strip-eof": "^1.0.0"
- },
"engines": {
- "node": ">=6"
+ "node": ">=0.10.0"
}
},
- "node_modules/clipboardy/node_modules/get-stream": {
- "version": "4.1.0",
+ "node_modules/decimal.js": {
+ "version": "10.4.3",
+ "license": "MIT"
+ },
+ "node_modules/decode-named-character-reference": {
+ "version": "1.0.2",
"license": "MIT",
"dependencies": {
- "pump": "^3.0.0"
+ "character-entities": "^2.0.0"
},
- "engines": {
- "node": ">=6"
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/clipboardy/node_modules/is-stream": {
- "version": "1.1.0",
+ "node_modules/decode-uri-component": {
+ "version": "0.2.2",
"license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": ">=0.10"
}
},
- "node_modules/clipboardy/node_modules/npm-run-path": {
- "version": "2.0.2",
+ "node_modules/decompress-response": {
+ "version": "6.0.0",
"license": "MIT",
"dependencies": {
- "path-key": "^2.0.0"
+ "mimic-response": "^3.1.0"
},
"engines": {
- "node": ">=4"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/clipboardy/node_modules/path-key": {
- "version": "2.0.1",
+ "node_modules/decompress-response/node_modules/mimic-response": {
+ "version": "3.1.0",
"license": "MIT",
"engines": {
- "node": ">=4"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/clipboardy/node_modules/semver": {
- "version": "5.7.1",
- "license": "ISC",
- "bin": {
- "semver": "bin/semver"
- }
+ "node_modules/dedent": {
+ "version": "0.7.0",
+ "dev": true,
+ "license": "MIT"
},
- "node_modules/clipboardy/node_modules/shebang-command": {
- "version": "1.2.0",
+ "node_modules/deep-equal": {
+ "version": "2.2.3",
"license": "MIT",
"dependencies": {
- "shebang-regex": "^1.0.0"
+ "array-buffer-byte-length": "^1.0.0",
+ "call-bind": "^1.0.5",
+ "es-get-iterator": "^1.1.3",
+ "get-intrinsic": "^1.2.2",
+ "is-arguments": "^1.1.1",
+ "is-array-buffer": "^3.0.2",
+ "is-date-object": "^1.0.5",
+ "is-regex": "^1.1.4",
+ "is-shared-array-buffer": "^1.0.2",
+ "isarray": "^2.0.5",
+ "object-is": "^1.1.5",
+ "object-keys": "^1.1.1",
+ "object.assign": "^4.1.4",
+ "regexp.prototype.flags": "^1.5.1",
+ "side-channel": "^1.0.4",
+ "which-boxed-primitive": "^1.0.2",
+ "which-collection": "^1.0.1",
+ "which-typed-array": "^1.1.13"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/clipboardy/node_modules/shebang-regex": {
- "version": "1.0.0",
+ "node_modules/deep-extend": {
+ "version": "0.6.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=4.0.0"
+ }
+ },
+ "node_modules/deep-is": {
+ "version": "0.1.4",
+ "license": "MIT"
+ },
+ "node_modules/deep-object-diff": {
+ "version": "1.1.9",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/deepmerge": {
+ "version": "4.3.1",
"license": "MIT",
"engines": {
"node": ">=0.10.0"
}
},
- "node_modules/clipboardy/node_modules/which": {
- "version": "1.3.1",
- "license": "ISC",
+ "node_modules/default-gateway": {
+ "version": "6.0.3",
+ "license": "BSD-2-Clause",
"dependencies": {
- "isexe": "^2.0.0"
+ "execa": "^5.0.0"
},
- "bin": {
- "which": "bin/which"
+ "engines": {
+ "node": ">= 10"
}
},
- "node_modules/cliui": {
- "version": "8.0.1",
- "dev": true,
- "license": "ISC",
+ "node_modules/defaults": {
+ "version": "1.0.4",
+ "license": "MIT",
"dependencies": {
- "string-width": "^4.2.0",
- "strip-ansi": "^6.0.1",
- "wrap-ansi": "^7.0.0"
+ "clone": "^1.0.2"
},
- "engines": {
- "node": ">=12"
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/clone": {
- "version": "2.1.2",
+ "node_modules/defaults/node_modules/clone": {
+ "version": "1.0.4",
"license": "MIT",
"engines": {
"node": ">=0.8"
}
},
- "node_modules/clone-deep": {
- "version": "4.0.1",
+ "node_modules/defer-to-connect": {
+ "version": "2.0.1",
"license": "MIT",
- "dependencies": {
- "is-plain-object": "^2.0.4",
- "kind-of": "^6.0.2",
- "shallow-clone": "^3.0.0"
- },
"engines": {
- "node": ">=6"
+ "node": ">=10"
}
},
- "node_modules/clone-deep/node_modules/is-plain-object": {
- "version": "2.0.4",
+ "node_modules/define-data-property": {
+ "version": "1.1.4",
"license": "MIT",
"dependencies": {
- "isobject": "^3.0.1"
+ "es-define-property": "^1.0.0",
+ "es-errors": "^1.3.0",
+ "gopd": "^1.0.1"
},
"engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/clone-response": {
- "version": "1.0.3",
- "license": "MIT",
- "dependencies": {
- "mimic-response": "^1.0.0"
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/co": {
- "version": "4.6.0",
- "dev": true,
+ "node_modules/define-lazy-prop": {
+ "version": "2.0.0",
"license": "MIT",
"engines": {
- "iojs": ">= 1.0.0",
- "node": ">= 0.12.0"
+ "node": ">=8"
}
},
- "node_modules/codemirror": {
- "version": "5.65.13",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/collapse-white-space": {
- "version": "1.0.6",
+ "node_modules/define-properties": {
+ "version": "1.2.1",
"license": "MIT",
+ "dependencies": {
+ "define-data-property": "^1.0.1",
+ "has-property-descriptors": "^1.0.0",
+ "object-keys": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
"funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/collect-v8-coverage": {
- "version": "1.0.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/collection-visit": {
- "version": "1.0.0",
- "dev": true,
+ "node_modules/define-property": {
+ "version": "2.0.2",
"license": "MIT",
"dependencies": {
- "map-visit": "^1.0.0",
- "object-visit": "^1.0.0"
+ "is-descriptor": "^1.0.2",
+ "isobject": "^3.0.1"
},
"engines": {
"node": ">=0.10.0"
}
},
- "node_modules/color": {
- "version": "4.2.3",
+ "node_modules/del": {
+ "version": "4.1.1",
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1",
- "color-string": "^1.9.0"
+ "@types/glob": "^7.1.1",
+ "globby": "^6.1.0",
+ "is-path-cwd": "^2.0.0",
+ "is-path-in-cwd": "^2.0.0",
+ "p-map": "^2.0.0",
+ "pify": "^4.0.1",
+ "rimraf": "^2.6.3"
},
"engines": {
- "node": ">=12.5.0"
+ "node": ">=6"
}
},
- "node_modules/color-convert": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
- "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
+ "node_modules/del/node_modules/array-union": {
+ "version": "1.0.2",
+ "license": "MIT",
"dependencies": {
- "color-name": "1.1.3"
+ "array-uniq": "^1.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/color-name": {
- "version": "1.1.3",
- "license": "MIT"
- },
- "node_modules/color-string": {
- "version": "1.9.1",
- "license": "MIT",
+ "node_modules/del/node_modules/glob": {
+ "version": "7.2.3",
+ "license": "ISC",
"dependencies": {
- "color-name": "^1.0.0",
- "simple-swizzle": "^0.2.2"
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ },
+ "engines": {
+ "node": "*"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/color/node_modules/color-convert": {
- "version": "2.0.1",
+ "node_modules/del/node_modules/globby": {
+ "version": "6.1.0",
"license": "MIT",
"dependencies": {
- "color-name": "~1.1.4"
+ "array-union": "^1.0.1",
+ "glob": "^7.0.3",
+ "object-assign": "^4.0.1",
+ "pify": "^2.0.0",
+ "pinkie-promise": "^2.0.0"
},
"engines": {
- "node": ">=7.0.0"
+ "node": ">=0.10.0"
}
},
- "node_modules/color/node_modules/color-name": {
- "version": "1.1.4",
- "license": "MIT"
- },
- "node_modules/colord": {
- "version": "2.9.3",
- "license": "MIT"
- },
- "node_modules/colorette": {
- "version": "2.0.20",
- "devOptional": true,
- "license": "MIT"
- },
- "node_modules/colorjs.io": {
- "version": "0.4.5",
- "resolved": "https://registry.npmjs.org/colorjs.io/-/colorjs.io-0.4.5.tgz",
- "integrity": "sha512-yCtUNCmge7llyfd/Wou19PMAcf5yC3XXhgFoAh6zsO2pGswhUPBaaUh8jzgHnXtXuZyFKzXZNAnyF5i+apICow=="
- },
- "node_modules/combined-stream": {
- "version": "1.0.8",
+ "node_modules/del/node_modules/globby/node_modules/pify": {
+ "version": "2.3.0",
"license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/del/node_modules/rimraf": {
+ "version": "2.7.1",
+ "license": "ISC",
"dependencies": {
- "delayed-stream": "~1.0.0"
+ "glob": "^7.1.3"
},
+ "bin": {
+ "rimraf": "bin.js"
+ }
+ },
+ "node_modules/delayed-stream": {
+ "version": "1.0.0",
+ "license": "MIT",
"engines": {
- "node": ">= 0.8"
+ "node": ">=0.4.0"
}
},
- "node_modules/comma-separated-tokens": {
- "version": "1.0.8",
+ "node_modules/depd": {
+ "version": "2.0.0",
"license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "engines": {
+ "node": ">= 0.8"
}
},
- "node_modules/command-exists": {
- "version": "1.2.9",
- "license": "MIT"
+ "node_modules/dependency-analysis": {
+ "resolved": "dependent-usage-analyzer",
+ "link": true
},
- "node_modules/command-line-args": {
- "version": "5.2.1",
- "dev": true,
+ "node_modules/dependency-graph": {
+ "version": "0.11.0",
"license": "MIT",
- "dependencies": {
- "array-back": "^3.1.0",
- "find-replace": "^3.0.0",
- "lodash.camelcase": "^4.3.0",
- "typical": "^4.0.0"
- },
"engines": {
- "node": ">=4.0.0"
+ "node": ">= 0.6.0"
}
},
- "node_modules/command-line-usage": {
- "version": "6.1.3",
+ "node_modules/deprecation": {
+ "version": "2.3.1",
"dev": true,
+ "license": "ISC"
+ },
+ "node_modules/dequal": {
+ "version": "2.0.3",
"license": "MIT",
- "dependencies": {
- "array-back": "^4.0.2",
- "chalk": "^2.4.2",
- "table-layout": "^1.0.2",
- "typical": "^5.2.0"
- },
"engines": {
- "node": ">=8.0.0"
+ "node": ">=6"
}
},
- "node_modules/command-line-usage/node_modules/array-back": {
- "version": "4.0.2",
- "dev": true,
+ "node_modules/destroy": {
+ "version": "1.2.0",
"license": "MIT",
"engines": {
- "node": ">=8"
+ "node": ">= 0.8",
+ "npm": "1.2.8000 || >= 1.4.16"
}
},
- "node_modules/command-line-usage/node_modules/chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
+ "node_modules/detect-libc": {
+ "version": "1.0.3",
+ "license": "Apache-2.0",
+ "bin": {
+ "detect-libc": "bin/detect-libc.js"
},
"engines": {
- "node": ">=4"
+ "node": ">=0.10"
}
},
- "node_modules/command-line-usage/node_modules/typical": {
- "version": "5.2.0",
- "dev": true,
+ "node_modules/detect-newline": {
+ "version": "3.1.0",
"license": "MIT",
"engines": {
"node": ">=8"
}
},
- "node_modules/commander": {
- "version": "9.5.0",
+ "node_modules/detect-node": {
+ "version": "2.1.0",
+ "license": "MIT"
+ },
+ "node_modules/detect-node-es": {
+ "version": "1.1.0",
+ "license": "MIT"
+ },
+ "node_modules/detect-port": {
+ "version": "1.6.1",
"license": "MIT",
+ "dependencies": {
+ "address": "^1.0.1",
+ "debug": "4"
+ },
+ "bin": {
+ "detect": "bin/detect-port.js",
+ "detect-port": "bin/detect-port.js"
+ },
"engines": {
- "node": "^12.20.0 || >=14"
+ "node": ">= 4.0.0"
}
},
- "node_modules/common-path-prefix": {
- "version": "3.0.0",
- "license": "ISC"
- },
- "node_modules/common-tags": {
- "version": "1.8.2",
+ "node_modules/detect-port-alt": {
+ "version": "1.1.6",
"license": "MIT",
+ "dependencies": {
+ "address": "^1.0.1",
+ "debug": "^2.6.0"
+ },
+ "bin": {
+ "detect": "bin/detect-port",
+ "detect-port": "bin/detect-port"
+ },
"engines": {
- "node": ">=4.0.0"
+ "node": ">= 4.2.1"
}
},
- "node_modules/commondir": {
- "version": "1.0.1",
- "license": "MIT"
- },
- "node_modules/compare-func": {
- "version": "2.0.0",
- "dev": true,
+ "node_modules/detect-port-alt/node_modules/debug": {
+ "version": "2.6.9",
"license": "MIT",
"dependencies": {
- "array-ify": "^1.0.0",
- "dot-prop": "^5.1.0"
+ "ms": "2.0.0"
}
},
- "node_modules/component-emitter": {
- "version": "1.3.0",
- "dev": true,
+ "node_modules/detect-port-alt/node_modules/ms": {
+ "version": "2.0.0",
"license": "MIT"
},
- "node_modules/component-generator": {
- "resolved": "component-generator",
- "link": true
+ "node_modules/detect-port/node_modules/debug": {
+ "version": "4.4.0",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
},
- "node_modules/component-props": {
- "version": "1.1.1"
+ "node_modules/devcert": {
+ "version": "1.2.2",
+ "license": "MIT",
+ "dependencies": {
+ "@types/configstore": "^2.1.1",
+ "@types/debug": "^0.0.30",
+ "@types/get-port": "^3.2.0",
+ "@types/glob": "^5.0.34",
+ "@types/lodash": "^4.14.92",
+ "@types/mkdirp": "^0.5.2",
+ "@types/node": "^8.5.7",
+ "@types/rimraf": "^2.0.2",
+ "@types/tmp": "^0.0.33",
+ "application-config-path": "^0.1.0",
+ "command-exists": "^1.2.4",
+ "debug": "^3.1.0",
+ "eol": "^0.9.1",
+ "get-port": "^3.2.0",
+ "glob": "^7.1.2",
+ "is-valid-domain": "^0.1.6",
+ "lodash": "^4.17.4",
+ "mkdirp": "^0.5.1",
+ "password-prompt": "^1.0.4",
+ "rimraf": "^2.6.2",
+ "sudo-prompt": "^8.2.0",
+ "tmp": "^0.0.33",
+ "tslib": "^1.10.0"
+ }
},
- "node_modules/component-type": {
- "version": "1.2.1",
- "license": "MIT"
+ "node_modules/devcert/node_modules/@types/glob": {
+ "version": "5.0.38",
+ "license": "MIT",
+ "dependencies": {
+ "@types/minimatch": "*",
+ "@types/node": "*"
+ }
},
- "node_modules/component-xor": {
- "version": "0.0.4",
+ "node_modules/devcert/node_modules/@types/node": {
+ "version": "8.10.66",
"license": "MIT"
},
- "node_modules/compose-function": {
- "version": "3.0.3",
- "license": "MIT",
+ "node_modules/devcert/node_modules/glob": {
+ "version": "7.2.3",
+ "license": "ISC",
"dependencies": {
- "arity-n": "^1.0.4"
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ },
+ "engines": {
+ "node": "*"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/compressible": {
- "version": "2.0.18",
- "license": "MIT",
+ "node_modules/devcert/node_modules/rimraf": {
+ "version": "2.7.1",
+ "license": "ISC",
"dependencies": {
- "mime-db": ">= 1.43.0 < 2"
+ "glob": "^7.1.3"
},
- "engines": {
- "node": ">= 0.6"
+ "bin": {
+ "rimraf": "bin.js"
}
},
- "node_modules/compression": {
- "version": "1.7.4",
+ "node_modules/devcert/node_modules/tmp": {
+ "version": "0.0.33",
"license": "MIT",
"dependencies": {
- "accepts": "~1.3.5",
- "bytes": "3.0.0",
- "compressible": "~2.0.16",
- "debug": "2.6.9",
- "on-headers": "~1.0.2",
- "safe-buffer": "5.1.2",
- "vary": "~1.1.2"
+ "os-tmpdir": "~1.0.2"
},
"engines": {
- "node": ">= 0.8.0"
+ "node": ">=0.6.0"
}
},
- "node_modules/compression/node_modules/debug": {
- "version": "2.6.9",
+ "node_modules/devcert/node_modules/tslib": {
+ "version": "1.14.1",
+ "license": "0BSD"
+ },
+ "node_modules/devlop": {
+ "version": "1.1.0",
"license": "MIT",
"dependencies": {
- "ms": "2.0.0"
+ "dequal": "^2.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/compression/node_modules/ms": {
- "version": "2.0.0",
- "license": "MIT"
+ "node_modules/dezalgo": {
+ "version": "1.0.4",
+ "license": "ISC",
+ "dependencies": {
+ "asap": "^2.0.0",
+ "wrappy": "1"
+ }
},
- "node_modules/concat-map": {
- "version": "0.0.1",
+ "node_modules/diacritics": {
+ "version": "1.3.0",
"license": "MIT"
},
- "node_modules/concat-stream": {
- "version": "1.6.2",
- "engines": [
- "node >= 0.8"
- ],
- "license": "MIT",
- "dependencies": {
- "buffer-from": "^1.0.0",
- "inherits": "^2.0.3",
- "readable-stream": "^2.2.2",
- "typedarray": "^0.0.6"
+ "node_modules/diff": {
+ "version": "5.2.0",
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.3.1"
}
},
- "node_modules/config-chain": {
- "version": "1.1.13",
- "dev": true,
+ "node_modules/diff-sequences": {
+ "version": "29.6.3",
"license": "MIT",
- "dependencies": {
- "ini": "^1.3.4",
- "proto-list": "~1.2.1"
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/configstore": {
- "version": "5.0.1",
- "license": "BSD-2-Clause",
+ "node_modules/dir-glob": {
+ "version": "3.0.1",
+ "license": "MIT",
"dependencies": {
- "dot-prop": "^5.2.0",
- "graceful-fs": "^4.1.2",
- "make-dir": "^3.0.0",
- "unique-string": "^2.0.0",
- "write-file-atomic": "^3.0.0",
- "xdg-basedir": "^4.0.0"
+ "path-type": "^4.0.0"
},
"engines": {
"node": ">=8"
}
},
- "node_modules/configstore/node_modules/make-dir": {
- "version": "3.1.0",
+ "node_modules/direction": {
+ "version": "2.0.1",
"license": "MIT",
- "dependencies": {
- "semver": "^6.0.0"
- },
- "engines": {
- "node": ">=8"
+ "bin": {
+ "direction": "cli.js"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/configstore/node_modules/write-file-atomic": {
- "version": "3.0.3",
- "license": "ISC",
+ "node_modules/dns-packet": {
+ "version": "5.6.1",
+ "license": "MIT",
"dependencies": {
- "imurmurhash": "^0.1.4",
- "is-typedarray": "^1.0.0",
- "signal-exit": "^3.0.2",
- "typedarray-to-buffer": "^3.1.5"
+ "@leichtgewicht/ip-codec": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=6"
}
},
- "node_modules/confusing-browser-globals": {
- "version": "1.0.11",
- "license": "MIT"
- },
- "node_modules/connect-history-api-fallback": {
- "version": "2.0.0",
- "devOptional": true,
- "license": "MIT",
+ "node_modules/doctrine": {
+ "version": "2.1.0",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "esutils": "^2.0.2"
+ },
"engines": {
- "node": ">=0.8"
+ "node": ">=0.10.0"
}
},
- "node_modules/constant-case": {
- "version": "3.0.4",
+ "node_modules/dom-accessibility-api": {
+ "version": "0.5.16",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "no-case": "^3.0.4",
- "tslib": "^2.0.3",
- "upper-case": "^2.0.2"
- }
+ "peer": true
},
- "node_modules/constant-case/node_modules/lower-case": {
- "version": "2.0.2",
+ "node_modules/dom-converter": {
+ "version": "0.2.0",
"license": "MIT",
"dependencies": {
- "tslib": "^2.0.3"
+ "utila": "~0.4"
}
},
- "node_modules/constant-case/node_modules/no-case": {
- "version": "3.0.4",
+ "node_modules/dom-helpers": {
+ "version": "5.2.1",
"license": "MIT",
"dependencies": {
- "lower-case": "^2.0.2",
- "tslib": "^2.0.3"
+ "@babel/runtime": "^7.8.7",
+ "csstype": "^3.0.2"
}
},
- "node_modules/constant-case/node_modules/upper-case": {
- "version": "2.0.2",
+ "node_modules/dom-iterator": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "tslib": "^2.0.3"
+ "component-props": "1.1.1",
+ "component-xor": "0.0.4"
}
},
- "node_modules/content-disposition": {
- "version": "0.5.4",
+ "node_modules/dom-serializer": {
+ "version": "1.4.1",
"license": "MIT",
"dependencies": {
- "safe-buffer": "5.2.1"
+ "domelementtype": "^2.0.1",
+ "domhandler": "^4.2.0",
+ "entities": "^2.0.0"
},
- "engines": {
- "node": ">= 0.6"
+ "funding": {
+ "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
}
},
- "node_modules/content-disposition/node_modules/safe-buffer": {
- "version": "5.2.1",
+ "node_modules/dom-serializer/node_modules/entities": {
+ "version": "2.2.0",
+ "license": "BSD-2-Clause",
+ "funding": {
+ "url": "https://github.com/fb55/entities?sponsor=1"
+ }
+ },
+ "node_modules/domelementtype": {
+ "version": "2.3.0",
"funding": [
{
"type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
+ "url": "https://github.com/sponsors/fb55"
}
],
- "license": "MIT"
+ "license": "BSD-2-Clause"
},
- "node_modules/content-type": {
- "version": "1.0.5",
+ "node_modules/domexception": {
+ "version": "4.0.0",
"license": "MIT",
+ "dependencies": {
+ "webidl-conversions": "^7.0.0"
+ },
"engines": {
- "node": ">= 0.6"
+ "node": ">=12"
}
},
- "node_modules/conventional-changelog-angular": {
- "version": "5.0.13",
- "dev": true,
- "license": "ISC",
+ "node_modules/domhandler": {
+ "version": "4.3.1",
+ "license": "BSD-2-Clause",
"dependencies": {
- "compare-func": "^2.0.0",
- "q": "^1.5.1"
+ "domelementtype": "^2.2.0"
},
"engines": {
- "node": ">=10"
+ "node": ">= 4"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/domhandler?sponsor=1"
}
},
- "node_modules/conventional-changelog-writer": {
- "version": "5.0.1",
- "dev": true,
- "license": "MIT",
+ "node_modules/domutils": {
+ "version": "2.8.0",
+ "license": "BSD-2-Clause",
"dependencies": {
- "conventional-commits-filter": "^2.0.7",
- "dateformat": "^3.0.0",
- "handlebars": "^4.7.7",
- "json-stringify-safe": "^5.0.1",
- "lodash": "^4.17.15",
- "meow": "^8.0.0",
- "semver": "^6.0.0",
- "split": "^1.0.0",
- "through2": "^4.0.0"
+ "dom-serializer": "^1.0.1",
+ "domelementtype": "^2.2.0",
+ "domhandler": "^4.2.0"
},
- "bin": {
- "conventional-changelog-writer": "cli.js"
+ "funding": {
+ "url": "https://github.com/fb55/domutils?sponsor=1"
+ }
+ },
+ "node_modules/dot-case": {
+ "version": "3.0.4",
+ "license": "MIT",
+ "dependencies": {
+ "no-case": "^3.0.4",
+ "tslib": "^2.0.3"
+ }
+ },
+ "node_modules/dot-prop": {
+ "version": "5.3.0",
+ "license": "MIT",
+ "dependencies": {
+ "is-obj": "^2.0.0"
},
"engines": {
- "node": ">=10"
+ "node": ">=8"
}
},
- "node_modules/conventional-commits-filter": {
- "version": "2.0.7",
- "dev": true,
+ "node_modules/dotenv": {
+ "version": "16.4.7",
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://dotenvx.com"
+ }
+ },
+ "node_modules/dotenv-defaults": {
+ "version": "2.0.2",
"license": "MIT",
"dependencies": {
- "lodash.ismatch": "^4.4.0",
- "modify-values": "^1.0.0"
- },
+ "dotenv": "^8.2.0"
+ }
+ },
+ "node_modules/dotenv-defaults/node_modules/dotenv": {
+ "version": "8.6.0",
+ "license": "BSD-2-Clause",
"engines": {
"node": ">=10"
}
},
- "node_modules/conventional-commits-parser": {
- "version": "3.2.4",
- "dev": true,
+ "node_modules/dotenv-expand": {
+ "version": "5.1.0",
+ "license": "BSD-2-Clause"
+ },
+ "node_modules/dotenv-webpack": {
+ "version": "8.0.1",
"license": "MIT",
"dependencies": {
- "is-text-path": "^1.0.1",
- "JSONStream": "^1.0.4",
- "lodash": "^4.17.15",
- "meow": "^8.0.0",
- "split2": "^3.0.0",
- "through2": "^4.0.0"
- },
- "bin": {
- "conventional-commits-parser": "cli.js"
+ "dotenv-defaults": "^2.0.2"
},
"engines": {
"node": ">=10"
+ },
+ "peerDependencies": {
+ "webpack": "^4 || ^5"
}
},
- "node_modules/convert-hrtime": {
- "version": "3.0.0",
+ "node_modules/dunder-proto": {
+ "version": "1.0.0",
"license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.0",
+ "es-errors": "^1.3.0",
+ "gopd": "^1.2.0"
+ },
"engines": {
- "node": ">=8"
+ "node": ">= 0.4"
}
},
- "node_modules/convert-source-map": {
- "version": "1.9.0",
+ "node_modules/duplexer": {
+ "version": "0.1.2",
"license": "MIT"
},
- "node_modules/cookie": {
- "version": "0.4.2",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
+ "node_modules/duplexer2": {
+ "version": "0.1.4",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "readable-stream": "^2.0.2"
}
},
- "node_modules/cookie-signature": {
- "version": "1.0.6",
+ "node_modules/eastasianwidth": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
+ "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
"license": "MIT"
},
- "node_modules/cookiejar": {
- "version": "2.1.4",
- "dev": true,
+ "node_modules/ee-first": {
+ "version": "1.1.1",
"license": "MIT"
},
- "node_modules/copy-descriptor": {
- "version": "0.1.1",
- "dev": true,
- "license": "MIT",
+ "node_modules/ejs": {
+ "version": "3.1.10",
+ "devOptional": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "jake": "^10.8.5"
+ },
+ "bin": {
+ "ejs": "bin/cli.js"
+ },
"engines": {
"node": ">=0.10.0"
}
},
- "node_modules/copy-to-clipboard": {
- "version": "3.3.3",
- "dev": true,
+ "node_modules/electron-to-chromium": {
+ "version": "1.5.73",
+ "license": "ISC"
+ },
+ "node_modules/email-prop-type": {
+ "version": "3.0.1",
"license": "MIT",
"dependencies": {
- "toggle-selection": "^1.0.6"
+ "email-validator": "^2.0.4"
}
},
- "node_modules/core-js": {
- "version": "3.30.1",
- "hasInstallScript": true,
- "license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/core-js"
+ "node_modules/email-validator": {
+ "version": "2.0.4",
+ "engines": {
+ "node": ">4.0"
}
},
- "node_modules/core-js-compat": {
- "version": "3.29.1",
+ "node_modules/emittery": {
+ "version": "0.7.2",
"license": "MIT",
- "dependencies": {
- "browserslist": "^4.21.5"
+ "engines": {
+ "node": ">=10"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/core-js"
- }
- },
- "node_modules/core-js-pure": {
- "version": "3.32.2",
- "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.32.2.tgz",
- "integrity": "sha512-Y2rxThOuNywTjnX/PgA5vWM6CZ9QB9sz9oGeCixV8MqXZO70z/5SHzf9EeBrEBK0PN36DnEBBu9O/aGWzKuMZQ==",
- "hasInstallScript": true,
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/core-js"
+ "url": "https://github.com/sindresorhus/emittery?sponsor=1"
}
},
- "node_modules/core-util-is": {
- "version": "1.0.3",
+ "node_modules/emoji-regex": {
+ "version": "9.2.2",
"license": "MIT"
},
- "node_modules/cors": {
- "version": "2.8.5",
+ "node_modules/emojis-list": {
+ "version": "3.0.0",
"license": "MIT",
- "dependencies": {
- "object-assign": "^4",
- "vary": "^1"
- },
"engines": {
- "node": ">= 0.10"
+ "node": ">= 4"
}
},
- "node_modules/cosmiconfig": {
- "version": "7.1.0",
+ "node_modules/encodeurl": {
+ "version": "1.0.2",
"license": "MIT",
- "dependencies": {
- "@types/parse-json": "^4.0.0",
- "import-fresh": "^3.2.1",
- "parse-json": "^5.0.0",
- "path-type": "^4.0.0",
- "yaml": "^1.10.0"
- },
"engines": {
- "node": ">=10"
+ "node": ">= 0.8"
}
},
- "node_modules/create-gatsby": {
- "version": "2.25.0",
+ "node_modules/end-of-stream": {
+ "version": "1.4.4",
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.15.4"
- },
- "bin": {
- "create-gatsby": "cli.js"
+ "once": "^1.4.0"
}
},
- "node_modules/create-jest": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz",
- "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==",
- "dev": true,
+ "node_modules/engine.io": {
+ "version": "6.5.5",
+ "license": "MIT",
"dependencies": {
- "@jest/types": "^29.6.3",
- "chalk": "^4.0.0",
- "exit": "^0.1.2",
- "graceful-fs": "^4.2.9",
- "jest-config": "^29.7.0",
- "jest-util": "^29.7.0",
- "prompts": "^2.0.1"
- },
- "bin": {
- "create-jest": "bin/create-jest.js"
+ "@types/cookie": "^0.4.1",
+ "@types/cors": "^2.8.12",
+ "@types/node": ">=10.0.0",
+ "accepts": "~1.3.4",
+ "base64id": "2.0.0",
+ "cookie": "~0.4.1",
+ "cors": "~2.8.5",
+ "debug": "~4.3.1",
+ "engine.io-parser": "~5.2.1",
+ "ws": "~8.17.1"
},
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">=10.2.0"
}
},
- "node_modules/create-jest/node_modules/ansi-styles": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
- "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
- "dev": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "node_modules/engine.io-client": {
+ "version": "6.5.4",
+ "license": "MIT",
+ "dependencies": {
+ "@socket.io/component-emitter": "~3.1.0",
+ "debug": "~4.3.1",
+ "engine.io-parser": "~5.2.1",
+ "ws": "~8.17.1",
+ "xmlhttprequest-ssl": "~2.0.0"
}
},
- "node_modules/create-jest/node_modules/glob": {
- "version": "7.2.3",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
- "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
- "dev": true,
+ "node_modules/engine.io-client/node_modules/debug": {
+ "version": "4.3.7",
+ "license": "MIT",
"dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.1.1",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
+ "ms": "^2.1.3"
},
"engines": {
- "node": "*"
+ "node": ">=6.0"
},
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
}
},
- "node_modules/create-jest/node_modules/jest-config": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz",
- "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==",
- "dev": true,
- "dependencies": {
- "@babel/core": "^7.11.6",
- "@jest/test-sequencer": "^29.7.0",
- "@jest/types": "^29.6.3",
- "babel-jest": "^29.7.0",
- "chalk": "^4.0.0",
- "ci-info": "^3.2.0",
- "deepmerge": "^4.2.2",
- "glob": "^7.1.3",
- "graceful-fs": "^4.2.9",
- "jest-circus": "^29.7.0",
- "jest-environment-node": "^29.7.0",
- "jest-get-type": "^29.6.3",
- "jest-regex-util": "^29.6.3",
- "jest-resolve": "^29.7.0",
- "jest-runner": "^29.7.0",
- "jest-util": "^29.7.0",
- "jest-validate": "^29.7.0",
- "micromatch": "^4.0.4",
- "parse-json": "^5.2.0",
- "pretty-format": "^29.7.0",
- "slash": "^3.0.0",
- "strip-json-comments": "^3.1.1"
- },
+ "node_modules/engine.io-client/node_modules/ws": {
+ "version": "8.17.1",
+ "license": "MIT",
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">=10.0.0"
},
"peerDependencies": {
- "@types/node": "*",
- "ts-node": ">=9.0.0"
+ "bufferutil": "^4.0.1",
+ "utf-8-validate": ">=5.0.2"
},
"peerDependenciesMeta": {
- "@types/node": {
+ "bufferutil": {
"optional": true
},
- "ts-node": {
+ "utf-8-validate": {
"optional": true
}
}
},
- "node_modules/create-jest/node_modules/pretty-format": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz",
- "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==",
- "dev": true,
- "dependencies": {
- "@jest/schemas": "^29.6.3",
- "ansi-styles": "^5.0.0",
- "react-is": "^18.0.0"
- },
+ "node_modules/engine.io-parser": {
+ "version": "5.2.3",
+ "license": "MIT",
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">=10.0.0"
}
},
- "node_modules/create-jest/node_modules/react-is": {
- "version": "18.2.0",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz",
- "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==",
- "dev": true
- },
- "node_modules/create-jest/node_modules/slash": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
- "dev": true,
+ "node_modules/engine.io/node_modules/cookie": {
+ "version": "0.4.2",
+ "license": "MIT",
"engines": {
- "node": ">=8"
+ "node": ">= 0.6"
}
},
- "node_modules/cross-fetch": {
- "version": "3.1.5",
+ "node_modules/engine.io/node_modules/debug": {
+ "version": "4.3.7",
"license": "MIT",
"dependencies": {
- "node-fetch": "2.6.7"
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
}
},
- "node_modules/cross-fetch/node_modules/node-fetch": {
- "version": "2.6.7",
+ "node_modules/engine.io/node_modules/ws": {
+ "version": "8.17.1",
"license": "MIT",
- "dependencies": {
- "whatwg-url": "^5.0.0"
- },
"engines": {
- "node": "4.x || >=6.0.0"
+ "node": ">=10.0.0"
},
"peerDependencies": {
- "encoding": "^0.1.0"
+ "bufferutil": "^4.0.1",
+ "utf-8-validate": ">=5.0.2"
},
"peerDependenciesMeta": {
- "encoding": {
+ "bufferutil": {
+ "optional": true
+ },
+ "utf-8-validate": {
"optional": true
}
}
},
- "node_modules/cross-fetch/node_modules/tr46": {
- "version": "0.0.3",
- "license": "MIT"
- },
- "node_modules/cross-fetch/node_modules/webidl-conversions": {
- "version": "3.0.1",
- "license": "BSD-2-Clause"
- },
- "node_modules/cross-fetch/node_modules/whatwg-url": {
- "version": "5.0.0",
+ "node_modules/enhanced-resolve": {
+ "version": "5.17.1",
"license": "MIT",
"dependencies": {
- "tr46": "~0.0.3",
- "webidl-conversions": "^3.0.0"
+ "graceful-fs": "^4.2.4",
+ "tapable": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=10.13.0"
}
},
- "node_modules/cross-spawn": {
- "version": "7.0.3",
+ "node_modules/enquirer": {
+ "version": "2.4.1",
"license": "MIT",
"dependencies": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
+ "ansi-colors": "^4.1.1",
+ "strip-ansi": "^6.0.1"
},
"engines": {
- "node": ">= 8"
+ "node": ">=8.6"
}
},
- "node_modules/crypt": {
- "version": "0.0.2",
- "license": "BSD-3-Clause",
+ "node_modules/entities": {
+ "version": "4.5.0",
+ "license": "BSD-2-Clause",
"engines": {
- "node": "*"
+ "node": ">=0.12"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/entities?sponsor=1"
}
},
- "node_modules/crypto-random-string": {
- "version": "2.0.0",
+ "node_modules/env-ci": {
+ "version": "8.0.0",
+ "dev": true,
"license": "MIT",
+ "dependencies": {
+ "execa": "^6.1.0",
+ "java-properties": "^1.0.2"
+ },
"engines": {
- "node": ">=8"
+ "node": "^16.10 || >=18"
}
},
- "node_modules/css": {
- "version": "3.0.0",
+ "node_modules/env-ci/node_modules/execa": {
+ "version": "6.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "inherits": "^2.0.4",
- "source-map": "^0.6.1",
- "source-map-resolve": "^0.6.0"
+ "cross-spawn": "^7.0.3",
+ "get-stream": "^6.0.1",
+ "human-signals": "^3.0.1",
+ "is-stream": "^3.0.0",
+ "merge-stream": "^2.0.0",
+ "npm-run-path": "^5.1.0",
+ "onetime": "^6.0.0",
+ "signal-exit": "^3.0.7",
+ "strip-final-newline": "^3.0.0"
+ },
+ "engines": {
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sindresorhus/execa?sponsor=1"
}
},
- "node_modules/css-declaration-sorter": {
- "version": "6.4.0",
- "license": "ISC",
+ "node_modules/env-ci/node_modules/human-signals": {
+ "version": "3.0.1",
+ "dev": true,
+ "license": "Apache-2.0",
"engines": {
- "node": "^10 || ^12 || >=14"
- },
- "peerDependencies": {
- "postcss": "^8.0.9"
+ "node": ">=12.20.0"
}
},
- "node_modules/css-functions-list": {
- "version": "3.1.0",
+ "node_modules/env-ci/node_modules/is-stream": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=12.22"
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/css-in-js-utils": {
- "version": "3.1.0",
+ "node_modules/env-ci/node_modules/mimic-fn": {
+ "version": "4.0.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "hyphenate-style-name": "^1.0.3"
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/css-loader": {
- "version": "5.2.7",
+ "node_modules/env-ci/node_modules/npm-run-path": {
+ "version": "5.3.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "icss-utils": "^5.1.0",
- "loader-utils": "^2.0.0",
- "postcss": "^8.2.15",
- "postcss-modules-extract-imports": "^3.0.0",
- "postcss-modules-local-by-default": "^4.0.0",
- "postcss-modules-scope": "^3.0.0",
- "postcss-modules-values": "^4.0.0",
- "postcss-value-parser": "^4.1.0",
- "schema-utils": "^3.0.0",
- "semver": "^7.3.5"
+ "path-key": "^4.0.0"
},
"engines": {
- "node": ">= 10.13.0"
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^4.27.0 || ^5.0.0"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/css-loader/node_modules/lru-cache": {
+ "node_modules/env-ci/node_modules/onetime": {
"version": "6.0.0",
- "license": "ISC",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "yallist": "^4.0.0"
+ "mimic-fn": "^4.0.0"
},
"engines": {
- "node": ">=10"
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/css-loader/node_modules/schema-utils": {
- "version": "3.1.2",
+ "node_modules/env-ci/node_modules/path-key": {
+ "version": "4.0.0",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "@types/json-schema": "^7.0.8",
- "ajv": "^6.12.5",
- "ajv-keywords": "^3.5.2"
- },
"engines": {
- "node": ">= 10.13.0"
+ "node": ">=12"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/css-loader/node_modules/semver": {
- "version": "7.5.0",
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
+ "node_modules/env-ci/node_modules/strip-final-newline": {
+ "version": "3.0.0",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
},
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/envinfo": {
+ "version": "7.14.0",
+ "license": "MIT",
"bin": {
- "semver": "bin/semver.js"
+ "envinfo": "dist/cli.js"
},
"engines": {
- "node": ">=10"
+ "node": ">=4"
}
},
- "node_modules/css-loader/node_modules/yallist": {
- "version": "4.0.0",
- "license": "ISC"
- },
- "node_modules/css-mediaquery": {
- "version": "0.1.2",
- "license": "BSD"
- },
- "node_modules/css-minimizer-webpack-plugin": {
- "version": "2.0.0",
+ "node_modules/environment": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/environment/-/environment-1.1.0.tgz",
+ "integrity": "sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "cssnano": "^5.0.0",
- "jest-worker": "^26.3.0",
- "p-limit": "^3.0.2",
- "postcss": "^8.2.9",
- "schema-utils": "^3.0.0",
- "serialize-javascript": "^5.0.1",
- "source-map": "^0.6.1"
- },
"engines": {
- "node": ">= 10.13.0"
+ "node": ">=18"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^5.0.0"
- },
- "peerDependenciesMeta": {
- "clean-css": {
- "optional": true
- },
- "csso": {
- "optional": true
- }
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/css-minimizer-webpack-plugin/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/eol": {
+ "version": "0.9.1",
+ "license": "MIT"
+ },
+ "node_modules/error-ex": {
+ "version": "1.3.2",
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "is-arrayish": "^0.2.1"
}
},
- "node_modules/css-minimizer-webpack-plugin/node_modules/jest-worker": {
- "version": "26.6.2",
+ "node_modules/error-stack-parser": {
+ "version": "2.1.4",
"license": "MIT",
"dependencies": {
- "@types/node": "*",
- "merge-stream": "^2.0.0",
- "supports-color": "^7.0.0"
- },
- "engines": {
- "node": ">= 10.13.0"
+ "stackframe": "^1.3.4"
}
},
- "node_modules/css-minimizer-webpack-plugin/node_modules/schema-utils": {
- "version": "3.1.2",
+ "node_modules/es-abstract": {
+ "version": "1.23.5",
"license": "MIT",
"dependencies": {
- "@types/json-schema": "^7.0.8",
- "ajv": "^6.12.5",
- "ajv-keywords": "^3.5.2"
+ "array-buffer-byte-length": "^1.0.1",
+ "arraybuffer.prototype.slice": "^1.0.3",
+ "available-typed-arrays": "^1.0.7",
+ "call-bind": "^1.0.7",
+ "data-view-buffer": "^1.0.1",
+ "data-view-byte-length": "^1.0.1",
+ "data-view-byte-offset": "^1.0.0",
+ "es-define-property": "^1.0.0",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
+ "es-set-tostringtag": "^2.0.3",
+ "es-to-primitive": "^1.2.1",
+ "function.prototype.name": "^1.1.6",
+ "get-intrinsic": "^1.2.4",
+ "get-symbol-description": "^1.0.2",
+ "globalthis": "^1.0.4",
+ "gopd": "^1.0.1",
+ "has-property-descriptors": "^1.0.2",
+ "has-proto": "^1.0.3",
+ "has-symbols": "^1.0.3",
+ "hasown": "^2.0.2",
+ "internal-slot": "^1.0.7",
+ "is-array-buffer": "^3.0.4",
+ "is-callable": "^1.2.7",
+ "is-data-view": "^1.0.1",
+ "is-negative-zero": "^2.0.3",
+ "is-regex": "^1.1.4",
+ "is-shared-array-buffer": "^1.0.3",
+ "is-string": "^1.0.7",
+ "is-typed-array": "^1.1.13",
+ "is-weakref": "^1.0.2",
+ "object-inspect": "^1.13.3",
+ "object-keys": "^1.1.1",
+ "object.assign": "^4.1.5",
+ "regexp.prototype.flags": "^1.5.3",
+ "safe-array-concat": "^1.1.2",
+ "safe-regex-test": "^1.0.3",
+ "string.prototype.trim": "^1.2.9",
+ "string.prototype.trimend": "^1.0.8",
+ "string.prototype.trimstart": "^1.0.8",
+ "typed-array-buffer": "^1.0.2",
+ "typed-array-byte-length": "^1.0.1",
+ "typed-array-byte-offset": "^1.0.2",
+ "typed-array-length": "^1.0.6",
+ "unbox-primitive": "^1.0.2",
+ "which-typed-array": "^1.1.15"
},
"engines": {
- "node": ">= 10.13.0"
+ "node": ">= 0.4"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/css-minimizer-webpack-plugin/node_modules/serialize-javascript": {
- "version": "5.0.1",
- "license": "BSD-3-Clause",
- "dependencies": {
- "randombytes": "^2.1.0"
+ "node_modules/es-define-property": {
+ "version": "1.0.1",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
}
},
- "node_modules/css-minimizer-webpack-plugin/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/es-errors": {
+ "version": "1.3.0",
"license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
"engines": {
- "node": ">=8"
+ "node": ">= 0.4"
}
},
- "node_modules/css-tree": {
+ "node_modules/es-get-iterator": {
"version": "1.1.3",
- "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz",
- "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==",
+ "license": "MIT",
"dependencies": {
- "mdn-data": "2.0.14",
- "source-map": "^0.6.1"
- },
- "engines": {
- "node": ">=8.0.0"
- }
- },
- "node_modules/css-what": {
- "version": "6.1.0",
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">= 6"
+ "call-bind": "^1.0.2",
+ "get-intrinsic": "^1.1.3",
+ "has-symbols": "^1.0.3",
+ "is-arguments": "^1.1.1",
+ "is-map": "^2.0.2",
+ "is-set": "^2.0.2",
+ "is-string": "^1.0.7",
+ "isarray": "^2.0.5",
+ "stop-iteration-iterator": "^1.0.0"
},
"funding": {
- "url": "https://github.com/sponsors/fb55"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/css.escape": {
- "version": "1.5.1",
- "license": "MIT"
- },
- "node_modules/cssesc": {
- "version": "3.0.0",
+ "node_modules/es-iterator-helpers": {
+ "version": "1.2.0",
"license": "MIT",
- "bin": {
- "cssesc": "bin/cssesc"
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.3",
+ "es-errors": "^1.3.0",
+ "es-set-tostringtag": "^2.0.3",
+ "function-bind": "^1.1.2",
+ "get-intrinsic": "^1.2.4",
+ "globalthis": "^1.0.4",
+ "gopd": "^1.0.1",
+ "has-property-descriptors": "^1.0.2",
+ "has-proto": "^1.0.3",
+ "has-symbols": "^1.0.3",
+ "internal-slot": "^1.0.7",
+ "iterator.prototype": "^1.1.3",
+ "safe-array-concat": "^1.1.2"
},
"engines": {
- "node": ">=4"
+ "node": ">= 0.4"
}
},
- "node_modules/cssfilter": {
- "version": "0.0.10",
+ "node_modules/es-module-lexer": {
+ "version": "1.5.4",
"license": "MIT"
},
- "node_modules/cssnano": {
- "version": "5.1.15",
+ "node_modules/es-object-atoms": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "cssnano-preset-default": "^5.2.14",
- "lilconfig": "^2.0.3",
- "yaml": "^1.10.2"
+ "es-errors": "^1.3.0"
},
"engines": {
- "node": "^10 || ^12 || >=14.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/cssnano"
- },
- "peerDependencies": {
- "postcss": "^8.2.15"
+ "node": ">= 0.4"
}
},
- "node_modules/cssnano-preset-default": {
- "version": "5.2.14",
+ "node_modules/es-set-tostringtag": {
+ "version": "2.0.3",
"license": "MIT",
"dependencies": {
- "css-declaration-sorter": "^6.3.1",
- "cssnano-utils": "^3.1.0",
- "postcss-calc": "^8.2.3",
- "postcss-colormin": "^5.3.1",
- "postcss-convert-values": "^5.1.3",
- "postcss-discard-comments": "^5.1.2",
- "postcss-discard-duplicates": "^5.1.0",
- "postcss-discard-empty": "^5.1.1",
- "postcss-discard-overridden": "^5.1.0",
- "postcss-merge-longhand": "^5.1.7",
- "postcss-merge-rules": "^5.1.4",
- "postcss-minify-font-values": "^5.1.0",
- "postcss-minify-gradients": "^5.1.1",
- "postcss-minify-params": "^5.1.4",
- "postcss-minify-selectors": "^5.2.1",
- "postcss-normalize-charset": "^5.1.0",
- "postcss-normalize-display-values": "^5.1.0",
- "postcss-normalize-positions": "^5.1.1",
- "postcss-normalize-repeat-style": "^5.1.1",
- "postcss-normalize-string": "^5.1.0",
- "postcss-normalize-timing-functions": "^5.1.0",
- "postcss-normalize-unicode": "^5.1.1",
- "postcss-normalize-url": "^5.1.0",
- "postcss-normalize-whitespace": "^5.1.1",
- "postcss-ordered-values": "^5.1.3",
- "postcss-reduce-initial": "^5.1.2",
- "postcss-reduce-transforms": "^5.1.0",
- "postcss-svgo": "^5.1.0",
- "postcss-unique-selectors": "^5.1.1"
+ "get-intrinsic": "^1.2.4",
+ "has-tostringtag": "^1.0.2",
+ "hasown": "^2.0.1"
},
"engines": {
- "node": "^10 || ^12 || >=14.0"
- },
- "peerDependencies": {
- "postcss": "^8.2.15"
+ "node": ">= 0.4"
}
},
- "node_modules/cssnano-utils": {
- "version": "3.1.0",
+ "node_modules/es-shim-unscopables": {
+ "version": "1.0.2",
"license": "MIT",
- "engines": {
- "node": "^10 || ^12 || >=14.0"
- },
- "peerDependencies": {
- "postcss": "^8.2.15"
+ "dependencies": {
+ "hasown": "^2.0.0"
}
},
- "node_modules/csso": {
- "version": "4.2.0",
+ "node_modules/es-to-primitive": {
+ "version": "1.3.0",
"license": "MIT",
"dependencies": {
- "css-tree": "^1.1.2"
+ "is-callable": "^1.2.7",
+ "is-date-object": "^1.0.5",
+ "is-symbol": "^1.0.4"
},
"engines": {
- "node": ">=8.0.0"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/cssom": {
- "version": "0.5.0",
- "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz",
- "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==",
- "dev": true
- },
- "node_modules/cssstyle": {
- "version": "2.3.0",
- "dev": true,
- "license": "MIT",
+ "node_modules/es5-ext": {
+ "version": "0.10.64",
+ "hasInstallScript": true,
+ "license": "ISC",
"dependencies": {
- "cssom": "~0.3.6"
+ "es6-iterator": "^2.0.3",
+ "es6-symbol": "^3.1.3",
+ "esniff": "^2.0.1",
+ "next-tick": "^1.1.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=0.10"
}
},
- "node_modules/cssstyle/node_modules/cssom": {
- "version": "0.3.8",
- "dev": true,
- "license": "MIT"
+ "node_modules/es6-iterator": {
+ "version": "2.0.3",
+ "license": "MIT",
+ "dependencies": {
+ "d": "1",
+ "es5-ext": "^0.10.35",
+ "es6-symbol": "^3.1.1"
+ }
},
- "node_modules/csstype": {
- "version": "3.1.1",
+ "node_modules/es6-promise": {
+ "version": "4.2.8",
"license": "MIT"
},
- "node_modules/current-git-branch": {
- "version": "1.1.0",
- "dev": true,
- "license": "MIT",
+ "node_modules/es6-symbol": {
+ "version": "3.1.4",
+ "license": "ISC",
"dependencies": {
- "babel-plugin-add-module-exports": "^0.2.1",
- "execa": "^0.6.1",
- "is-git-repository": "^1.0.0"
+ "d": "^1.0.2",
+ "ext": "^1.7.0"
+ },
+ "engines": {
+ "node": ">=0.12"
}
},
- "node_modules/current-git-branch/node_modules/babel-plugin-add-module-exports": {
- "version": "0.2.1",
+ "node_modules/es6-templates": {
+ "version": "0.2.3",
"dev": true,
- "license": "MIT"
+ "license": "Apache 2",
+ "dependencies": {
+ "recast": "~0.11.12",
+ "through": "~2.3.6"
+ }
},
- "node_modules/current-git-branch/node_modules/cross-spawn": {
- "version": "5.1.0",
- "dev": true,
- "license": "MIT",
+ "node_modules/es6-weak-map": {
+ "version": "2.0.3",
+ "license": "ISC",
"dependencies": {
- "lru-cache": "^4.0.1",
- "shebang-command": "^1.2.0",
- "which": "^1.2.9"
+ "d": "1",
+ "es5-ext": "^0.10.46",
+ "es6-iterator": "^2.0.3",
+ "es6-symbol": "^3.1.1"
}
},
- "node_modules/current-git-branch/node_modules/execa": {
- "version": "0.6.3",
+ "node_modules/esbuild": {
+ "version": "0.11.23",
"dev": true,
+ "hasInstallScript": true,
"license": "MIT",
- "dependencies": {
- "cross-spawn": "^5.0.1",
- "get-stream": "^3.0.0",
- "is-stream": "^1.1.0",
- "npm-run-path": "^2.0.0",
- "p-finally": "^1.0.0",
- "signal-exit": "^3.0.0",
- "strip-eof": "^1.0.0"
- },
- "engines": {
- "node": ">=4"
+ "bin": {
+ "esbuild": "bin/esbuild"
}
},
- "node_modules/current-git-branch/node_modules/get-stream": {
- "version": "3.0.0",
- "dev": true,
+ "node_modules/escalade": {
+ "version": "3.2.0",
"license": "MIT",
"engines": {
- "node": ">=4"
+ "node": ">=6"
}
},
- "node_modules/current-git-branch/node_modules/is-stream": {
- "version": "1.1.0",
- "dev": true,
+ "node_modules/escape-html": {
+ "version": "1.0.3",
+ "license": "MIT"
+ },
+ "node_modules/escape-string-regexp": {
+ "version": "4.0.0",
"license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/current-git-branch/node_modules/lru-cache": {
- "version": "4.1.5",
- "dev": true,
- "license": "ISC",
+ "node_modules/escodegen": {
+ "version": "2.1.0",
+ "license": "BSD-2-Clause",
"dependencies": {
- "pseudomap": "^1.0.2",
- "yallist": "^2.1.2"
+ "esprima": "^4.0.1",
+ "estraverse": "^5.2.0",
+ "esutils": "^2.0.2"
+ },
+ "bin": {
+ "escodegen": "bin/escodegen.js",
+ "esgenerate": "bin/esgenerate.js"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "optionalDependencies": {
+ "source-map": "~0.6.1"
}
},
- "node_modules/current-git-branch/node_modules/npm-run-path": {
- "version": "2.0.2",
- "dev": true,
+ "node_modules/eslint": {
+ "version": "8.18.0",
"license": "MIT",
"dependencies": {
- "path-key": "^2.0.0"
+ "@eslint/eslintrc": "^1.3.0",
+ "@humanwhocodes/config-array": "^0.9.2",
+ "ajv": "^6.10.0",
+ "chalk": "^4.0.0",
+ "cross-spawn": "^7.0.2",
+ "debug": "^4.3.2",
+ "doctrine": "^3.0.0",
+ "escape-string-regexp": "^4.0.0",
+ "eslint-scope": "^7.1.1",
+ "eslint-utils": "^3.0.0",
+ "eslint-visitor-keys": "^3.3.0",
+ "espree": "^9.3.2",
+ "esquery": "^1.4.0",
+ "esutils": "^2.0.2",
+ "fast-deep-equal": "^3.1.3",
+ "file-entry-cache": "^6.0.1",
+ "functional-red-black-tree": "^1.0.1",
+ "glob-parent": "^6.0.1",
+ "globals": "^13.15.0",
+ "ignore": "^5.2.0",
+ "import-fresh": "^3.0.0",
+ "imurmurhash": "^0.1.4",
+ "is-glob": "^4.0.0",
+ "js-yaml": "^4.1.0",
+ "json-stable-stringify-without-jsonify": "^1.0.1",
+ "levn": "^0.4.1",
+ "lodash.merge": "^4.6.2",
+ "minimatch": "^3.1.2",
+ "natural-compare": "^1.4.0",
+ "optionator": "^0.9.1",
+ "regexpp": "^3.2.0",
+ "strip-ansi": "^6.0.1",
+ "strip-json-comments": "^3.1.0",
+ "text-table": "^0.2.0",
+ "v8-compile-cache": "^2.0.3"
+ },
+ "bin": {
+ "eslint": "bin/eslint.js"
},
"engines": {
- "node": ">=4"
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
}
},
- "node_modules/current-git-branch/node_modules/path-key": {
- "version": "2.0.1",
- "dev": true,
+ "node_modules/eslint-config-airbnb": {
+ "version": "19.0.4",
"license": "MIT",
+ "dependencies": {
+ "eslint-config-airbnb-base": "^15.0.0",
+ "object.assign": "^4.1.2",
+ "object.entries": "^1.1.5"
+ },
"engines": {
- "node": ">=4"
+ "node": "^10.12.0 || ^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "peerDependencies": {
+ "eslint": "^7.32.0 || ^8.2.0",
+ "eslint-plugin-import": "^2.25.3",
+ "eslint-plugin-jsx-a11y": "^6.5.1",
+ "eslint-plugin-react": "^7.28.0",
+ "eslint-plugin-react-hooks": "^4.3.0"
}
},
- "node_modules/current-git-branch/node_modules/shebang-command": {
- "version": "1.2.0",
- "dev": true,
+ "node_modules/eslint-config-airbnb-base": {
+ "version": "15.0.0",
"license": "MIT",
"dependencies": {
- "shebang-regex": "^1.0.0"
+ "confusing-browser-globals": "^1.0.10",
+ "object.assign": "^4.1.2",
+ "object.entries": "^1.1.5",
+ "semver": "^6.3.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": "^10.12.0 || >=12.0.0"
+ },
+ "peerDependencies": {
+ "eslint": "^7.32.0 || ^8.2.0",
+ "eslint-plugin-import": "^2.25.2"
}
},
- "node_modules/current-git-branch/node_modules/shebang-regex": {
- "version": "1.0.0",
- "dev": true,
+ "node_modules/eslint-config-airbnb-typescript": {
+ "version": "17.1.0",
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/current-git-branch/node_modules/which": {
- "version": "1.3.1",
- "dev": true,
- "license": "ISC",
+ "peer": true,
"dependencies": {
- "isexe": "^2.0.0"
+ "eslint-config-airbnb-base": "^15.0.0"
},
- "bin": {
- "which": "bin/which"
+ "peerDependencies": {
+ "@typescript-eslint/eslint-plugin": "^5.13.0 || ^6.0.0",
+ "@typescript-eslint/parser": "^5.0.0 || ^6.0.0",
+ "eslint": "^7.32.0 || ^8.2.0",
+ "eslint-plugin-import": "^2.25.3"
}
},
- "node_modules/current-git-branch/node_modules/yallist": {
- "version": "2.1.2",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/d": {
- "version": "1.0.1",
- "license": "ISC",
+ "node_modules/eslint-import-resolver-node": {
+ "version": "0.3.9",
+ "license": "MIT",
"dependencies": {
- "es5-ext": "^0.10.50",
- "type": "^1.0.1"
+ "debug": "^3.2.7",
+ "is-core-module": "^2.13.0",
+ "resolve": "^1.22.4"
}
},
- "node_modules/damerau-levenshtein": {
- "version": "1.0.8",
- "license": "BSD-2-Clause"
- },
- "node_modules/dashify": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/dashify/-/dashify-2.0.0.tgz",
- "integrity": "sha512-hpA5C/YrPjucXypHPPc0oJ1l9Hf6wWbiOL7Ik42cxnsUOhWiCB/fylKbKqqJalW9FgkNQCw16YO8uW9Hs0Iy1A==",
+ "node_modules/eslint-import-resolver-webpack": {
+ "version": "0.13.10",
"dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "debug": "^3.2.7",
+ "enhanced-resolve": "^0.9.1",
+ "find-root": "^1.1.0",
+ "hasown": "^2.0.2",
+ "interpret": "^1.4.0",
+ "is-core-module": "^2.15.1",
+ "is-regex": "^1.2.0",
+ "lodash": "^4.17.21",
+ "resolve": "^2.0.0-next.5",
+ "semver": "^5.7.2"
+ },
"engines": {
- "node": ">=4"
+ "node": ">= 6"
+ },
+ "peerDependencies": {
+ "eslint-plugin-import": ">=1.4.0",
+ "webpack": ">=1.11.0"
}
},
- "node_modules/data-urls": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz",
- "integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==",
+ "node_modules/eslint-import-resolver-webpack/node_modules/enhanced-resolve": {
+ "version": "0.9.1",
"dev": true,
"dependencies": {
- "abab": "^2.0.6",
- "whatwg-mimetype": "^3.0.0",
- "whatwg-url": "^11.0.0"
+ "graceful-fs": "^4.1.2",
+ "memory-fs": "^0.2.0",
+ "tapable": "^0.1.8"
},
"engines": {
- "node": ">=12"
+ "node": ">=0.6"
}
},
- "node_modules/dataloader": {
- "version": "1.4.0",
- "license": "BSD-3-Clause"
- },
- "node_modules/date-fns": {
- "version": "2.29.3",
+ "node_modules/eslint-import-resolver-webpack/node_modules/resolve": {
+ "version": "2.0.0-next.5",
+ "dev": true,
"license": "MIT",
- "engines": {
- "node": ">=0.11"
+ "dependencies": {
+ "is-core-module": "^2.13.0",
+ "path-parse": "^1.0.7",
+ "supports-preserve-symlinks-flag": "^1.0.0"
+ },
+ "bin": {
+ "resolve": "bin/resolve"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/date-fns"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/dateformat": {
- "version": "3.0.3",
+ "node_modules/eslint-import-resolver-webpack/node_modules/semver": {
+ "version": "5.7.2",
+ "dev": true,
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver"
+ }
+ },
+ "node_modules/eslint-import-resolver-webpack/node_modules/tapable": {
+ "version": "0.1.10",
"dev": true,
"license": "MIT",
"engines": {
- "node": "*"
+ "node": ">=0.6"
}
},
- "node_modules/debug": {
- "version": "4.3.4",
+ "node_modules/eslint-module-utils": {
+ "version": "2.12.0",
"license": "MIT",
"dependencies": {
- "ms": "2.1.2"
+ "debug": "^3.2.7"
},
"engines": {
- "node": ">=6.0"
+ "node": ">=4"
},
"peerDependenciesMeta": {
- "supports-color": {
+ "eslint": {
"optional": true
}
}
},
- "node_modules/decamelize": {
- "version": "1.2.0",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/decamelize-keys": {
- "version": "1.1.1",
- "dev": true,
+ "node_modules/eslint-plugin-formatjs": {
+ "version": "4.13.3",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "decamelize": "^1.1.0",
- "map-obj": "^1.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
+ "@formatjs/icu-messageformat-parser": "2.7.8",
+ "@formatjs/ts-transformer": "3.13.14",
+ "@types/eslint": "7 || 8",
+ "@types/picomatch": "^2.3.0",
+ "@typescript-eslint/utils": "^6.18.1",
+ "emoji-regex": "^10.2.1",
+ "magic-string": "^0.30.0",
+ "picomatch": "^2.3.1",
+ "tslib": "2.6.2",
+ "typescript": "5",
+ "unicode-emoji-utils": "^1.2.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "peerDependencies": {
+ "eslint": "7 || 8"
}
},
- "node_modules/decamelize-keys/node_modules/map-obj": {
- "version": "1.0.1",
- "dev": true,
+ "node_modules/eslint-plugin-formatjs/node_modules/@formatjs/ecma402-abstract": {
+ "version": "2.0.0",
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "peer": true,
+ "dependencies": {
+ "@formatjs/intl-localematcher": "0.5.4",
+ "tslib": "^2.4.0"
}
},
- "node_modules/decimal.js": {
- "version": "10.4.3",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/decode-uri-component": {
- "version": "0.2.2",
+ "node_modules/eslint-plugin-formatjs/node_modules/@formatjs/icu-messageformat-parser": {
+ "version": "2.7.8",
"license": "MIT",
- "engines": {
- "node": ">=0.10"
+ "peer": true,
+ "dependencies": {
+ "@formatjs/ecma402-abstract": "2.0.0",
+ "@formatjs/icu-skeleton-parser": "1.8.2",
+ "tslib": "^2.4.0"
}
},
- "node_modules/decompress-response": {
- "version": "6.0.0",
+ "node_modules/eslint-plugin-formatjs/node_modules/@formatjs/icu-skeleton-parser": {
+ "version": "1.8.2",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "mimic-response": "^3.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "@formatjs/ecma402-abstract": "2.0.0",
+ "tslib": "^2.4.0"
}
},
- "node_modules/decompress-response/node_modules/mimic-response": {
- "version": "3.1.0",
+ "node_modules/eslint-plugin-formatjs/node_modules/@formatjs/intl-localematcher": {
+ "version": "0.5.4",
"license": "MIT",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "peer": true,
+ "dependencies": {
+ "tslib": "^2.4.0"
}
},
- "node_modules/dedent": {
- "version": "0.7.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/deep-equal": {
- "version": "2.2.0",
+ "node_modules/eslint-plugin-formatjs/node_modules/@formatjs/ts-transformer": {
+ "version": "3.13.14",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "call-bind": "^1.0.2",
- "es-get-iterator": "^1.1.2",
- "get-intrinsic": "^1.1.3",
- "is-arguments": "^1.1.1",
- "is-array-buffer": "^3.0.1",
- "is-date-object": "^1.0.5",
- "is-regex": "^1.1.4",
- "is-shared-array-buffer": "^1.0.2",
- "isarray": "^2.0.5",
- "object-is": "^1.1.5",
- "object-keys": "^1.1.1",
- "object.assign": "^4.1.4",
- "regexp.prototype.flags": "^1.4.3",
- "side-channel": "^1.0.4",
- "which-boxed-primitive": "^1.0.2",
- "which-collection": "^1.0.1",
- "which-typed-array": "^1.1.9"
+ "@formatjs/icu-messageformat-parser": "2.7.8",
+ "@types/json-stable-stringify": "^1.0.32",
+ "@types/node": "14 || 16 || 17",
+ "chalk": "^4.0.0",
+ "json-stable-stringify": "^1.0.1",
+ "tslib": "^2.4.0",
+ "typescript": "5"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "peerDependencies": {
+ "ts-jest": ">=27"
+ },
+ "peerDependenciesMeta": {
+ "ts-jest": {
+ "optional": true
+ }
}
},
- "node_modules/deep-extend": {
- "version": "0.6.0",
+ "node_modules/eslint-plugin-formatjs/node_modules/@types/eslint": {
+ "version": "8.56.12",
"license": "MIT",
- "engines": {
- "node": ">=4.0.0"
+ "peer": true,
+ "dependencies": {
+ "@types/estree": "*",
+ "@types/json-schema": "*"
}
},
- "node_modules/deep-is": {
- "version": "0.1.4",
- "license": "MIT"
- },
- "node_modules/deep-object-diff": {
- "version": "1.1.9",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/deepmerge": {
- "version": "4.3.1",
+ "node_modules/eslint-plugin-formatjs/node_modules/@types/node": {
+ "version": "17.0.45",
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
+ "peer": true
},
- "node_modules/default-gateway": {
- "version": "6.0.3",
- "devOptional": true,
- "license": "BSD-2-Clause",
+ "node_modules/eslint-plugin-formatjs/node_modules/@typescript-eslint/scope-manager": {
+ "version": "6.21.0",
+ "license": "MIT",
+ "peer": true,
"dependencies": {
- "execa": "^5.0.0"
+ "@typescript-eslint/types": "6.21.0",
+ "@typescript-eslint/visitor-keys": "6.21.0"
},
"engines": {
- "node": ">= 10"
- }
- },
- "node_modules/defaults": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz",
- "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==",
- "dependencies": {
- "clone": "^1.0.2"
+ "node": "^16.0.0 || >=18.0.0"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/defaults/node_modules/clone": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz",
- "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==",
- "engines": {
- "node": ">=0.8"
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
}
},
- "node_modules/defer-to-connect": {
- "version": "2.0.1",
+ "node_modules/eslint-plugin-formatjs/node_modules/@typescript-eslint/types": {
+ "version": "6.21.0",
"license": "MIT",
+ "peer": true,
"engines": {
- "node": ">=10"
+ "node": "^16.0.0 || >=18.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
}
},
- "node_modules/define-data-property": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz",
- "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==",
+ "node_modules/eslint-plugin-formatjs/node_modules/@typescript-eslint/typescript-estree": {
+ "version": "6.21.0",
+ "license": "BSD-2-Clause",
+ "peer": true,
"dependencies": {
- "es-define-property": "^1.0.0",
- "es-errors": "^1.3.0",
- "gopd": "^1.0.1"
+ "@typescript-eslint/types": "6.21.0",
+ "@typescript-eslint/visitor-keys": "6.21.0",
+ "debug": "^4.3.4",
+ "globby": "^11.1.0",
+ "is-glob": "^4.0.3",
+ "minimatch": "9.0.3",
+ "semver": "^7.5.4",
+ "ts-api-utils": "^1.0.1"
},
"engines": {
- "node": ">= 0.4"
+ "node": "^16.0.0 || >=18.0.0"
},
"funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
}
},
- "node_modules/define-lazy-prop": {
- "version": "2.0.0",
+ "node_modules/eslint-plugin-formatjs/node_modules/@typescript-eslint/utils": {
+ "version": "6.21.0",
"license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@eslint-community/eslint-utils": "^4.4.0",
+ "@types/json-schema": "^7.0.12",
+ "@types/semver": "^7.5.0",
+ "@typescript-eslint/scope-manager": "6.21.0",
+ "@typescript-eslint/types": "6.21.0",
+ "@typescript-eslint/typescript-estree": "6.21.0",
+ "semver": "^7.5.4"
+ },
"engines": {
- "node": ">=8"
+ "node": "^16.0.0 || >=18.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "eslint": "^7.0.0 || ^8.0.0"
}
},
- "node_modules/define-properties": {
- "version": "1.2.0",
+ "node_modules/eslint-plugin-formatjs/node_modules/@typescript-eslint/visitor-keys": {
+ "version": "6.21.0",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "has-property-descriptors": "^1.0.0",
- "object-keys": "^1.1.1"
+ "@typescript-eslint/types": "6.21.0",
+ "eslint-visitor-keys": "^3.4.1"
},
"engines": {
- "node": ">= 0.4"
+ "node": "^16.0.0 || >=18.0.0"
},
"funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
}
},
- "node_modules/define-property": {
- "version": "2.0.2",
- "dev": true,
+ "node_modules/eslint-plugin-formatjs/node_modules/brace-expansion": {
+ "version": "2.0.1",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "is-descriptor": "^1.0.2",
- "isobject": "^3.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
+ "balanced-match": "^1.0.0"
}
},
- "node_modules/del": {
- "version": "6.1.1",
- "dev": true,
+ "node_modules/eslint-plugin-formatjs/node_modules/debug": {
+ "version": "4.4.0",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "globby": "^11.0.1",
- "graceful-fs": "^4.2.4",
- "is-glob": "^4.0.1",
- "is-path-cwd": "^2.2.0",
- "is-path-inside": "^3.0.2",
- "p-map": "^4.0.0",
- "rimraf": "^3.0.2",
- "slash": "^3.0.0"
+ "ms": "^2.1.3"
},
"engines": {
- "node": ">=10"
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/eslint-plugin-formatjs/node_modules/emoji-regex": {
+ "version": "10.4.0",
+ "license": "MIT",
+ "peer": true
+ },
+ "node_modules/eslint-plugin-formatjs/node_modules/eslint-visitor-keys": {
+ "version": "3.4.3",
+ "license": "Apache-2.0",
+ "peer": true,
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://opencollective.com/eslint"
}
},
- "node_modules/del/node_modules/p-map": {
- "version": "4.0.0",
- "dev": true,
+ "node_modules/eslint-plugin-formatjs/node_modules/magic-string": {
+ "version": "0.30.17",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "aggregate-error": "^3.0.0"
+ "@jridgewell/sourcemap-codec": "^1.5.0"
+ }
+ },
+ "node_modules/eslint-plugin-formatjs/node_modules/minimatch": {
+ "version": "9.0.3",
+ "license": "ISC",
+ "peer": true,
+ "dependencies": {
+ "brace-expansion": "^2.0.1"
},
"engines": {
- "node": ">=10"
+ "node": ">=16 || 14 >=14.17"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/del/node_modules/slash": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
+ "node_modules/eslint-plugin-formatjs/node_modules/semver": {
+ "version": "7.6.3",
+ "license": "ISC",
+ "peer": true,
+ "bin": {
+ "semver": "bin/semver.js"
+ },
"engines": {
- "node": ">=8"
+ "node": ">=10"
}
},
- "node_modules/delayed-stream": {
- "version": "1.0.0",
- "license": "MIT",
+ "node_modules/eslint-plugin-formatjs/node_modules/tslib": {
+ "version": "2.6.2",
+ "license": "0BSD",
+ "peer": true
+ },
+ "node_modules/eslint-plugin-formatjs/node_modules/typescript": {
+ "version": "5.7.3",
+ "license": "Apache-2.0",
+ "peer": true,
+ "bin": {
+ "tsc": "bin/tsc",
+ "tsserver": "bin/tsserver"
+ },
"engines": {
- "node": ">=0.4.0"
+ "node": ">=14.17"
}
},
- "node_modules/depd": {
- "version": "2.0.0",
+ "node_modules/eslint-plugin-import": {
+ "version": "2.31.0",
"license": "MIT",
+ "dependencies": {
+ "@rtsao/scc": "^1.1.0",
+ "array-includes": "^3.1.8",
+ "array.prototype.findlastindex": "^1.2.5",
+ "array.prototype.flat": "^1.3.2",
+ "array.prototype.flatmap": "^1.3.2",
+ "debug": "^3.2.7",
+ "doctrine": "^2.1.0",
+ "eslint-import-resolver-node": "^0.3.9",
+ "eslint-module-utils": "^2.12.0",
+ "hasown": "^2.0.2",
+ "is-core-module": "^2.15.1",
+ "is-glob": "^4.0.3",
+ "minimatch": "^3.1.2",
+ "object.fromentries": "^2.0.8",
+ "object.groupby": "^1.0.3",
+ "object.values": "^1.2.0",
+ "semver": "^6.3.1",
+ "string.prototype.trimend": "^1.0.8",
+ "tsconfig-paths": "^3.15.0"
+ },
"engines": {
- "node": ">= 0.8"
+ "node": ">=4"
+ },
+ "peerDependencies": {
+ "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9"
}
},
- "node_modules/dependency-analysis": {
- "resolved": "dependent-usage-analyzer",
- "link": true
- },
- "node_modules/dependency-graph": {
- "version": "0.11.0",
+ "node_modules/eslint-plugin-jsx-a11y": {
+ "version": "6.7.1",
"license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.20.7",
+ "aria-query": "^5.1.3",
+ "array-includes": "^3.1.6",
+ "array.prototype.flatmap": "^1.3.1",
+ "ast-types-flow": "^0.0.7",
+ "axe-core": "^4.6.2",
+ "axobject-query": "^3.1.1",
+ "damerau-levenshtein": "^1.0.8",
+ "emoji-regex": "^9.2.2",
+ "has": "^1.0.3",
+ "jsx-ast-utils": "^3.3.3",
+ "language-tags": "=1.0.5",
+ "minimatch": "^3.1.2",
+ "object.entries": "^1.1.6",
+ "object.fromentries": "^2.0.6",
+ "semver": "^6.3.0"
+ },
"engines": {
- "node": ">= 0.6.0"
+ "node": ">=4.0"
+ },
+ "peerDependencies": {
+ "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8"
}
},
- "node_modules/deprecation": {
- "version": "2.3.1",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/dequal": {
- "version": "2.0.3",
+ "node_modules/eslint-plugin-react": {
+ "version": "7.37.2",
"license": "MIT",
+ "dependencies": {
+ "array-includes": "^3.1.8",
+ "array.prototype.findlast": "^1.2.5",
+ "array.prototype.flatmap": "^1.3.2",
+ "array.prototype.tosorted": "^1.1.4",
+ "doctrine": "^2.1.0",
+ "es-iterator-helpers": "^1.1.0",
+ "estraverse": "^5.3.0",
+ "hasown": "^2.0.2",
+ "jsx-ast-utils": "^2.4.1 || ^3.0.0",
+ "minimatch": "^3.1.2",
+ "object.entries": "^1.1.8",
+ "object.fromentries": "^2.0.8",
+ "object.values": "^1.2.0",
+ "prop-types": "^15.8.1",
+ "resolve": "^2.0.0-next.5",
+ "semver": "^6.3.1",
+ "string.prototype.matchall": "^4.0.11",
+ "string.prototype.repeat": "^1.0.0"
+ },
"engines": {
- "node": ">=6"
+ "node": ">=4"
+ },
+ "peerDependencies": {
+ "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7"
}
},
- "node_modules/destroy": {
- "version": "1.2.0",
+ "node_modules/eslint-plugin-react-hooks": {
+ "version": "4.6.2",
"license": "MIT",
"engines": {
- "node": ">= 0.8",
- "npm": "1.2.8000 || >= 1.4.16"
+ "node": ">=10"
+ },
+ "peerDependencies": {
+ "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0"
}
},
- "node_modules/detab": {
- "version": "2.0.4",
+ "node_modules/eslint-plugin-react/node_modules/resolve": {
+ "version": "2.0.0-next.5",
"license": "MIT",
"dependencies": {
- "repeat-string": "^1.5.4"
+ "is-core-module": "^2.13.0",
+ "path-parse": "^1.0.7",
+ "supports-preserve-symlinks-flag": "^1.0.0"
+ },
+ "bin": {
+ "resolve": "bin/resolve"
},
"funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/detect-libc": {
- "version": "1.0.3",
- "license": "Apache-2.0",
- "bin": {
- "detect-libc": "bin/detect-libc.js"
+ "node_modules/eslint-scope": {
+ "version": "7.2.2",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "esrecurse": "^4.3.0",
+ "estraverse": "^5.2.0"
},
"engines": {
- "node": ">=0.10"
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
}
},
- "node_modules/detect-newline": {
- "version": "3.1.0",
- "dev": true,
+ "node_modules/eslint-utils": {
+ "version": "3.0.0",
"license": "MIT",
+ "dependencies": {
+ "eslint-visitor-keys": "^2.0.0"
+ },
"engines": {
- "node": ">=8"
+ "node": "^10.0.0 || ^12.0.0 || >= 14.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/mysticatea"
+ },
+ "peerDependencies": {
+ "eslint": ">=5"
}
},
- "node_modules/detect-node": {
+ "node_modules/eslint-visitor-keys": {
"version": "2.1.0",
- "devOptional": true,
- "license": "MIT"
- },
- "node_modules/detect-node-es": {
- "version": "1.1.0",
- "license": "MIT"
- },
- "node_modules/detect-port": {
- "version": "1.5.1",
- "license": "MIT",
- "dependencies": {
- "address": "^1.0.1",
- "debug": "4"
- },
- "bin": {
- "detect": "bin/detect-port.js",
- "detect-port": "bin/detect-port.js"
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/detect-port-alt": {
- "version": "1.1.6",
+ "node_modules/eslint-webpack-plugin": {
+ "version": "2.7.0",
"license": "MIT",
"dependencies": {
- "address": "^1.0.1",
- "debug": "^2.6.0"
- },
- "bin": {
- "detect": "bin/detect-port",
- "detect-port": "bin/detect-port"
+ "@types/eslint": "^7.29.0",
+ "arrify": "^2.0.1",
+ "jest-worker": "^27.5.1",
+ "micromatch": "^4.0.5",
+ "normalize-path": "^3.0.0",
+ "schema-utils": "^3.1.1"
},
"engines": {
- "node": ">= 4.2.1"
+ "node": ">= 10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependencies": {
+ "eslint": "^7.0.0 || ^8.0.0",
+ "webpack": "^4.0.0 || ^5.0.0"
}
},
- "node_modules/detect-port-alt/node_modules/debug": {
- "version": "2.6.9",
+ "node_modules/eslint-webpack-plugin/node_modules/@types/eslint": {
+ "version": "7.29.0",
"license": "MIT",
"dependencies": {
- "ms": "2.0.0"
+ "@types/estree": "*",
+ "@types/json-schema": "*"
}
},
- "node_modules/detect-port-alt/node_modules/ms": {
- "version": "2.0.0",
- "license": "MIT"
- },
- "node_modules/devcert": {
- "version": "1.2.2",
+ "node_modules/eslint-webpack-plugin/node_modules/jest-worker": {
+ "version": "27.5.1",
"license": "MIT",
"dependencies": {
- "@types/configstore": "^2.1.1",
- "@types/debug": "^0.0.30",
- "@types/get-port": "^3.2.0",
- "@types/glob": "^5.0.34",
- "@types/lodash": "^4.14.92",
- "@types/mkdirp": "^0.5.2",
- "@types/node": "^8.5.7",
- "@types/rimraf": "^2.0.2",
- "@types/tmp": "^0.0.33",
- "application-config-path": "^0.1.0",
- "command-exists": "^1.2.4",
- "debug": "^3.1.0",
- "eol": "^0.9.1",
- "get-port": "^3.2.0",
- "glob": "^7.1.2",
- "is-valid-domain": "^0.1.6",
- "lodash": "^4.17.4",
- "mkdirp": "^0.5.1",
- "password-prompt": "^1.0.4",
- "rimraf": "^2.6.2",
- "sudo-prompt": "^8.2.0",
- "tmp": "^0.0.33",
- "tslib": "^1.10.0"
+ "@types/node": "*",
+ "merge-stream": "^2.0.0",
+ "supports-color": "^8.0.0"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
}
},
- "node_modules/devcert/node_modules/@types/node": {
- "version": "8.10.66",
- "license": "MIT"
- },
- "node_modules/devcert/node_modules/debug": {
- "version": "3.2.7",
+ "node_modules/eslint-webpack-plugin/node_modules/schema-utils": {
+ "version": "3.3.0",
"license": "MIT",
"dependencies": {
- "ms": "^2.1.1"
- }
- },
- "node_modules/devcert/node_modules/glob": {
- "version": "7.2.3",
- "license": "ISC",
- "dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.1.1",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
+ "@types/json-schema": "^7.0.8",
+ "ajv": "^6.12.5",
+ "ajv-keywords": "^3.5.2"
},
"engines": {
- "node": "*"
+ "node": ">= 10.13.0"
},
"funding": {
- "url": "https://github.com/sponsors/isaacs"
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
}
},
- "node_modules/devcert/node_modules/rimraf": {
- "version": "2.7.1",
- "license": "ISC",
+ "node_modules/eslint-webpack-plugin/node_modules/supports-color": {
+ "version": "8.1.1",
+ "license": "MIT",
"dependencies": {
- "glob": "^7.1.3"
+ "has-flag": "^4.0.0"
},
- "bin": {
- "rimraf": "bin.js"
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
}
},
- "node_modules/devcert/node_modules/tmp": {
- "version": "0.0.33",
+ "node_modules/eslint/node_modules/@eslint/eslintrc": {
+ "version": "1.4.1",
"license": "MIT",
"dependencies": {
- "os-tmpdir": "~1.0.2"
+ "ajv": "^6.12.4",
+ "debug": "^4.3.2",
+ "espree": "^9.4.0",
+ "globals": "^13.19.0",
+ "ignore": "^5.2.0",
+ "import-fresh": "^3.2.1",
+ "js-yaml": "^4.1.0",
+ "minimatch": "^3.1.2",
+ "strip-json-comments": "^3.1.1"
},
"engines": {
- "node": ">=0.6.0"
- }
- },
- "node_modules/devcert/node_modules/tslib": {
- "version": "1.14.1",
- "license": "0BSD"
- },
- "node_modules/diacritics": {
- "version": "1.3.0",
- "license": "MIT"
- },
- "node_modules/diff-sequences": {
- "version": "29.6.3",
- "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz",
- "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==",
- "dev": true,
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
}
},
- "node_modules/dir-glob": {
- "version": "3.0.1",
- "license": "MIT",
+ "node_modules/eslint/node_modules/@humanwhocodes/config-array": {
+ "version": "0.9.5",
+ "license": "Apache-2.0",
"dependencies": {
- "path-type": "^4.0.0"
+ "@humanwhocodes/object-schema": "^1.2.1",
+ "debug": "^4.1.1",
+ "minimatch": "^3.0.4"
},
"engines": {
- "node": ">=8"
+ "node": ">=10.10.0"
}
},
- "node_modules/dns-equal": {
- "version": "1.0.0",
- "devOptional": true,
- "license": "MIT"
+ "node_modules/eslint/node_modules/@humanwhocodes/object-schema": {
+ "version": "1.2.1",
+ "license": "BSD-3-Clause"
},
- "node_modules/dns-packet": {
- "version": "5.6.0",
- "devOptional": true,
+ "node_modules/eslint/node_modules/debug": {
+ "version": "4.4.0",
"license": "MIT",
"dependencies": {
- "@leichtgewicht/ip-codec": "^2.0.1"
+ "ms": "^2.1.3"
},
"engines": {
- "node": ">=6"
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
}
},
- "node_modules/doctrine": {
+ "node_modules/eslint/node_modules/doctrine": {
"version": "3.0.0",
"license": "Apache-2.0",
"dependencies": {
@@ -15967,2278 +19707,2502 @@
"node": ">=6.0.0"
}
},
- "node_modules/dom-accessibility-api": {
- "version": "0.5.16",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/dom-converter": {
- "version": "0.2.0",
- "license": "MIT",
- "dependencies": {
- "utila": "~0.4"
- }
- },
- "node_modules/dom-helpers": {
- "version": "5.2.1",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.8.7",
- "csstype": "^3.0.2"
+ "node_modules/eslint/node_modules/eslint-visitor-keys": {
+ "version": "3.4.3",
+ "license": "Apache-2.0",
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
}
},
- "node_modules/dom-iterator": {
- "version": "1.0.0",
- "license": "MIT",
+ "node_modules/esniff": {
+ "version": "2.0.1",
+ "license": "ISC",
"dependencies": {
- "component-props": "1.1.1",
- "component-xor": "0.0.4"
+ "d": "^1.0.1",
+ "es5-ext": "^0.10.62",
+ "event-emitter": "^0.3.5",
+ "type": "^2.7.2"
+ },
+ "engines": {
+ "node": ">=0.10"
}
},
- "node_modules/domelementtype": {
- "version": "2.3.0",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/fb55"
- }
- ],
- "license": "BSD-2-Clause"
- },
- "node_modules/domexception": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz",
- "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==",
- "deprecated": "Use your platform's native DOMException instead",
- "dev": true,
+ "node_modules/espree": {
+ "version": "9.6.1",
+ "license": "BSD-2-Clause",
"dependencies": {
- "webidl-conversions": "^7.0.0"
+ "acorn": "^8.9.0",
+ "acorn-jsx": "^5.3.2",
+ "eslint-visitor-keys": "^3.4.1"
},
"engines": {
- "node": ">=12"
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
}
},
- "node_modules/dot-case": {
- "version": "3.0.4",
- "license": "MIT",
- "dependencies": {
- "no-case": "^3.0.4",
- "tslib": "^2.0.3"
+ "node_modules/espree/node_modules/eslint-visitor-keys": {
+ "version": "3.4.3",
+ "license": "Apache-2.0",
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
}
},
- "node_modules/dot-case/node_modules/lower-case": {
- "version": "2.0.2",
- "license": "MIT",
- "dependencies": {
- "tslib": "^2.0.3"
+ "node_modules/esprima": {
+ "version": "4.0.1",
+ "license": "BSD-2-Clause",
+ "bin": {
+ "esparse": "bin/esparse.js",
+ "esvalidate": "bin/esvalidate.js"
+ },
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/dot-case/node_modules/no-case": {
- "version": "3.0.4",
- "license": "MIT",
+ "node_modules/esquery": {
+ "version": "1.6.0",
+ "license": "BSD-3-Clause",
"dependencies": {
- "lower-case": "^2.0.2",
- "tslib": "^2.0.3"
+ "estraverse": "^5.1.0"
+ },
+ "engines": {
+ "node": ">=0.10"
}
},
- "node_modules/dot-prop": {
- "version": "5.3.0",
- "license": "MIT",
+ "node_modules/esrecurse": {
+ "version": "4.3.0",
+ "license": "BSD-2-Clause",
"dependencies": {
- "is-obj": "^2.0.0"
+ "estraverse": "^5.2.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=4.0"
}
},
- "node_modules/dotenv": {
- "version": "16.0.3",
+ "node_modules/estraverse": {
+ "version": "5.3.0",
"license": "BSD-2-Clause",
"engines": {
- "node": ">=12"
+ "node": ">=4.0"
}
},
- "node_modules/dotenv-defaults": {
- "version": "2.0.2",
- "dev": true,
+ "node_modules/estree-to-babel": {
+ "version": "3.2.1",
"license": "MIT",
"dependencies": {
- "dotenv": "^8.2.0"
- }
- },
- "node_modules/dotenv-defaults/node_modules/dotenv": {
- "version": "8.6.0",
- "dev": true,
- "license": "BSD-2-Clause",
+ "@babel/traverse": "^7.1.6",
+ "@babel/types": "^7.2.0",
+ "c8": "^7.6.0"
+ },
"engines": {
- "node": ">=10"
+ "node": ">=8.3.0"
}
},
- "node_modules/dotenv-expand": {
- "version": "5.1.0",
- "license": "BSD-2-Clause"
- },
- "node_modules/dotenv-webpack": {
- "version": "7.1.1",
- "dev": true,
+ "node_modules/estree-util-attach-comments": {
+ "version": "2.1.1",
"license": "MIT",
"dependencies": {
- "dotenv-defaults": "^2.0.2"
- },
- "engines": {
- "node": ">=10"
+ "@types/estree": "^1.0.0"
},
- "peerDependencies": {
- "webpack": "^4 || ^5"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/duplexer": {
- "version": "0.1.2",
- "license": "MIT"
- },
- "node_modules/duplexer2": {
- "version": "0.1.4",
- "dev": true,
- "license": "BSD-3-Clause",
+ "node_modules/estree-util-build-jsx": {
+ "version": "2.2.2",
+ "license": "MIT",
"dependencies": {
- "readable-stream": "^2.0.2"
+ "@types/estree-jsx": "^1.0.0",
+ "estree-util-is-identifier-name": "^2.0.0",
+ "estree-walker": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/duplexer3": {
- "version": "0.1.5",
- "license": "BSD-3-Clause"
- },
- "node_modules/eastasianwidth": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
- "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA=="
- },
- "node_modules/ee-first": {
- "version": "1.1.1",
- "license": "MIT"
- },
- "node_modules/electron-to-chromium": {
- "version": "1.4.736",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.736.tgz",
- "integrity": "sha512-Rer6wc3ynLelKNM4lOCg7/zPQj8tPOCB2hzD32PX9wd3hgRRi9MxEbmkFCokzcEhRVMiOVLjnL9ig9cefJ+6+Q=="
+ "node_modules/estree-util-is-identifier-name": {
+ "version": "2.1.0",
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
},
- "node_modules/email-prop-type": {
- "version": "3.0.1",
+ "node_modules/estree-util-to-js": {
+ "version": "1.2.0",
"license": "MIT",
"dependencies": {
- "email-validator": "^2.0.4"
+ "@types/estree-jsx": "^1.0.0",
+ "astring": "^1.8.0",
+ "source-map": "^0.7.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/email-validator": {
- "version": "2.0.4",
+ "node_modules/estree-util-to-js/node_modules/source-map": {
+ "version": "0.7.4",
+ "license": "BSD-3-Clause",
"engines": {
- "node": ">4.0"
+ "node": ">= 8"
}
},
- "node_modules/emittery": {
- "version": "0.13.1",
- "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz",
- "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==",
- "dev": true,
- "engines": {
- "node": ">=12"
+ "node_modules/estree-util-value-to-estree": {
+ "version": "3.2.1",
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "^1.0.0"
},
"funding": {
- "url": "https://github.com/sindresorhus/emittery?sponsor=1"
+ "url": "https://github.com/sponsors/remcohaszing"
}
},
- "node_modules/emoji-regex": {
- "version": "9.2.2",
- "license": "MIT"
- },
- "node_modules/emojis-list": {
- "version": "3.0.0",
+ "node_modules/estree-util-visit": {
+ "version": "1.2.1",
"license": "MIT",
- "engines": {
- "node": ">= 4"
+ "dependencies": {
+ "@types/estree-jsx": "^1.0.0",
+ "@types/unist": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/encodeurl": {
- "version": "1.0.2",
+ "node_modules/estree-walker": {
+ "version": "3.0.3",
"license": "MIT",
+ "dependencies": {
+ "@types/estree": "^1.0.0"
+ }
+ },
+ "node_modules/esutils": {
+ "version": "2.0.3",
+ "license": "BSD-2-Clause",
"engines": {
- "node": ">= 0.8"
+ "node": ">=0.10.0"
}
},
- "node_modules/end-of-stream": {
- "version": "1.4.4",
+ "node_modules/etag": {
+ "version": "1.8.1",
"license": "MIT",
- "dependencies": {
- "once": "^1.4.0"
+ "engines": {
+ "node": ">= 0.6"
}
},
- "node_modules/engine.io": {
- "version": "6.2.1",
- "license": "MIT",
+ "node_modules/eval": {
+ "version": "0.1.6",
+ "dev": true,
"dependencies": {
- "@types/cookie": "^0.4.1",
- "@types/cors": "^2.8.12",
- "@types/node": ">=10.0.0",
- "accepts": "~1.3.4",
- "base64id": "2.0.0",
- "cookie": "~0.4.1",
- "cors": "~2.8.5",
- "debug": "~4.3.1",
- "engine.io-parser": "~5.0.3",
- "ws": "~8.2.3"
+ "require-like": ">= 0.1.1"
},
"engines": {
- "node": ">=10.0.0"
+ "node": ">= 0.8"
}
},
- "node_modules/engine.io-client": {
- "version": "6.2.3",
+ "node_modules/event-emitter": {
+ "version": "0.3.5",
"license": "MIT",
"dependencies": {
- "@socket.io/component-emitter": "~3.1.0",
- "debug": "~4.3.1",
- "engine.io-parser": "~5.0.3",
- "ws": "~8.2.3",
- "xmlhttprequest-ssl": "~2.0.0"
+ "d": "1",
+ "es5-ext": "~0.10.14"
}
},
- "node_modules/engine.io-client/node_modules/ws": {
- "version": "8.2.3",
- "license": "MIT",
- "engines": {
- "node": ">=10.0.0"
- },
- "peerDependencies": {
- "bufferutil": "^4.0.1",
- "utf-8-validate": "^5.0.2"
- },
- "peerDependenciesMeta": {
- "bufferutil": {
- "optional": true
- },
- "utf-8-validate": {
- "optional": true
- }
- }
+ "node_modules/event-source-polyfill": {
+ "version": "1.0.31",
+ "license": "MIT"
},
- "node_modules/engine.io-parser": {
- "version": "5.0.6",
+ "node_modules/eventemitter3": {
+ "version": "5.0.1",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/events": {
+ "version": "3.3.0",
"license": "MIT",
"engines": {
- "node": ">=10.0.0"
+ "node": ">=0.8.x"
}
},
- "node_modules/engine.io/node_modules/ws": {
- "version": "8.2.3",
+ "node_modules/example": {
+ "resolved": "example",
+ "link": true
+ },
+ "node_modules/exec-sh": {
+ "version": "0.3.6",
+ "license": "MIT"
+ },
+ "node_modules/execa": {
+ "version": "5.1.1",
"license": "MIT",
- "engines": {
- "node": ">=10.0.0"
+ "dependencies": {
+ "cross-spawn": "^7.0.3",
+ "get-stream": "^6.0.0",
+ "human-signals": "^2.1.0",
+ "is-stream": "^2.0.0",
+ "merge-stream": "^2.0.0",
+ "npm-run-path": "^4.0.1",
+ "onetime": "^5.1.2",
+ "signal-exit": "^3.0.3",
+ "strip-final-newline": "^2.0.0"
},
- "peerDependencies": {
- "bufferutil": "^4.0.1",
- "utf-8-validate": "^5.0.2"
+ "engines": {
+ "node": ">=10"
},
- "peerDependenciesMeta": {
- "bufferutil": {
- "optional": true
- },
- "utf-8-validate": {
- "optional": true
- }
+ "funding": {
+ "url": "https://github.com/sindresorhus/execa?sponsor=1"
}
},
- "node_modules/enhanced-resolve": {
- "version": "5.12.0",
- "license": "MIT",
- "dependencies": {
- "graceful-fs": "^4.2.4",
- "tapable": "^2.2.0"
- },
+ "node_modules/exit": {
+ "version": "0.1.2",
"engines": {
- "node": ">=10.13.0"
+ "node": ">= 0.8.0"
}
},
- "node_modules/enquirer": {
- "version": "2.3.6",
+ "node_modules/expand-brackets": {
+ "version": "2.1.4",
"license": "MIT",
"dependencies": {
- "ansi-colors": "^4.1.1"
+ "debug": "^2.3.3",
+ "define-property": "^0.2.5",
+ "extend-shallow": "^2.0.1",
+ "posix-character-classes": "^0.1.0",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.1"
},
"engines": {
- "node": ">=8.6"
+ "node": ">=0.10.0"
}
},
- "node_modules/entities": {
- "version": "4.4.0",
- "dev": true,
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">=0.12"
- },
- "funding": {
- "url": "https://github.com/fb55/entities?sponsor=1"
+ "node_modules/expand-brackets/node_modules/debug": {
+ "version": "2.6.9",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "2.0.0"
}
},
- "node_modules/env-ci": {
- "version": "8.0.0",
- "dev": true,
+ "node_modules/expand-brackets/node_modules/define-property": {
+ "version": "0.2.5",
"license": "MIT",
"dependencies": {
- "execa": "^6.1.0",
- "java-properties": "^1.0.2"
+ "is-descriptor": "^0.1.0"
},
"engines": {
- "node": "^16.10 || >=18"
+ "node": ">=0.10.0"
}
},
- "node_modules/env-ci/node_modules/execa": {
- "version": "6.1.0",
- "dev": true,
+ "node_modules/expand-brackets/node_modules/is-descriptor": {
+ "version": "0.1.7",
"license": "MIT",
"dependencies": {
- "cross-spawn": "^7.0.3",
- "get-stream": "^6.0.1",
- "human-signals": "^3.0.1",
- "is-stream": "^3.0.0",
- "merge-stream": "^2.0.0",
- "npm-run-path": "^5.1.0",
- "onetime": "^6.0.0",
- "signal-exit": "^3.0.7",
- "strip-final-newline": "^3.0.0"
+ "is-accessor-descriptor": "^1.0.1",
+ "is-data-descriptor": "^1.0.1"
},
"engines": {
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
- },
- "funding": {
- "url": "https://github.com/sindresorhus/execa?sponsor=1"
+ "node": ">= 0.4"
}
},
- "node_modules/env-ci/node_modules/human-signals": {
- "version": "3.0.1",
- "dev": true,
- "license": "Apache-2.0",
+ "node_modules/expand-brackets/node_modules/ms": {
+ "version": "2.0.0",
+ "license": "MIT"
+ },
+ "node_modules/expand-template": {
+ "version": "2.0.3",
+ "license": "(MIT OR WTFPL)",
"engines": {
- "node": ">=12.20.0"
+ "node": ">=6"
}
},
- "node_modules/env-ci/node_modules/is-stream": {
- "version": "3.0.0",
- "dev": true,
+ "node_modules/expect": {
+ "version": "29.7.0",
"license": "MIT",
- "engines": {
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ "dependencies": {
+ "@jest/expect-utils": "^29.7.0",
+ "jest-get-type": "^29.6.3",
+ "jest-matcher-utils": "^29.7.0",
+ "jest-message-util": "^29.7.0",
+ "jest-util": "^29.7.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/env-ci/node_modules/mimic-fn": {
- "version": "4.0.0",
- "dev": true,
+ "node_modules/expect/node_modules/ansi-styles": {
+ "version": "5.2.0",
"license": "MIT",
"engines": {
- "node": ">=12"
+ "node": ">=10"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/env-ci/node_modules/npm-run-path": {
- "version": "5.1.0",
- "dev": true,
+ "node_modules/expect/node_modules/ci-info": {
+ "version": "3.9.0",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/sibiraj-s"
+ }
+ ],
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/expect/node_modules/jest-message-util": {
+ "version": "29.7.0",
"license": "MIT",
"dependencies": {
- "path-key": "^4.0.0"
+ "@babel/code-frame": "^7.12.13",
+ "@jest/types": "^29.6.3",
+ "@types/stack-utils": "^2.0.0",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.9",
+ "micromatch": "^4.0.4",
+ "pretty-format": "^29.7.0",
+ "slash": "^3.0.0",
+ "stack-utils": "^2.0.3"
},
"engines": {
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/env-ci/node_modules/onetime": {
- "version": "6.0.0",
- "dev": true,
+ "node_modules/expect/node_modules/jest-util": {
+ "version": "29.7.0",
"license": "MIT",
"dependencies": {
- "mimic-fn": "^4.0.0"
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.9",
+ "picomatch": "^2.2.3"
},
"engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/env-ci/node_modules/path-key": {
- "version": "4.0.0",
- "dev": true,
+ "node_modules/expect/node_modules/pretty-format": {
+ "version": "29.7.0",
"license": "MIT",
- "engines": {
- "node": ">=12"
+ "dependencies": {
+ "@jest/schemas": "^29.6.3",
+ "ansi-styles": "^5.0.0",
+ "react-is": "^18.0.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/env-ci/node_modules/strip-final-newline": {
+ "node_modules/expect/node_modules/react-is": {
+ "version": "18.3.1",
+ "license": "MIT"
+ },
+ "node_modules/expect/node_modules/slash": {
"version": "3.0.0",
- "dev": true,
"license": "MIT",
"engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=8"
}
},
- "node_modules/envinfo": {
- "version": "7.8.1",
+ "node_modules/expr-eval-fork": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/expr-eval-fork/-/expr-eval-fork-2.0.2.tgz",
+ "integrity": "sha512-NaAnObPVwHEYrODd7Jzp3zzT9pgTAlUUL4MZiZu9XAYPDpx89cPsfyEImFb2XY0vQNbrqg2CG7CLiI+Rs3seaQ==",
+ "license": "MIT"
+ },
+ "node_modules/express": {
+ "version": "4.18.2",
"license": "MIT",
- "bin": {
- "envinfo": "dist/cli.js"
+ "dependencies": {
+ "accepts": "~1.3.8",
+ "array-flatten": "1.1.1",
+ "body-parser": "1.20.1",
+ "content-disposition": "0.5.4",
+ "content-type": "~1.0.4",
+ "cookie": "0.5.0",
+ "cookie-signature": "1.0.6",
+ "debug": "2.6.9",
+ "depd": "2.0.0",
+ "encodeurl": "~1.0.2",
+ "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",
+ "methods": "~1.1.2",
+ "on-finished": "2.4.1",
+ "parseurl": "~1.3.3",
+ "path-to-regexp": "0.1.7",
+ "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",
+ "setprototypeof": "1.2.0",
+ "statuses": "2.0.1",
+ "type-is": "~1.6.18",
+ "utils-merge": "1.0.1",
+ "vary": "~1.1.2"
},
"engines": {
- "node": ">=4"
+ "node": ">= 0.10.0"
}
},
- "node_modules/eol": {
- "version": "0.9.1",
- "license": "MIT"
- },
- "node_modules/error-ex": {
- "version": "1.3.2",
+ "node_modules/express-http-proxy": {
+ "version": "1.6.3",
"license": "MIT",
"dependencies": {
- "is-arrayish": "^0.2.1"
+ "debug": "^3.0.1",
+ "es6-promise": "^4.1.1",
+ "raw-body": "^2.3.0"
+ },
+ "engines": {
+ "node": ">=6.0.0"
}
},
- "node_modules/error-stack-parser": {
- "version": "2.1.4",
+ "node_modules/express/node_modules/debug": {
+ "version": "2.6.9",
"license": "MIT",
"dependencies": {
- "stackframe": "^1.3.4"
+ "ms": "2.0.0"
}
},
- "node_modules/es-abstract": {
- "version": "1.21.2",
- "license": "MIT",
+ "node_modules/express/node_modules/ms": {
+ "version": "2.0.0",
+ "license": "MIT"
+ },
+ "node_modules/ext": {
+ "version": "1.7.0",
+ "license": "ISC",
"dependencies": {
- "array-buffer-byte-length": "^1.0.0",
- "available-typed-arrays": "^1.0.5",
- "call-bind": "^1.0.2",
- "es-set-tostringtag": "^2.0.1",
- "es-to-primitive": "^1.2.1",
- "function.prototype.name": "^1.1.5",
- "get-intrinsic": "^1.2.0",
- "get-symbol-description": "^1.0.0",
- "globalthis": "^1.0.3",
- "gopd": "^1.0.1",
- "has": "^1.0.3",
- "has-property-descriptors": "^1.0.0",
- "has-proto": "^1.0.1",
- "has-symbols": "^1.0.3",
- "internal-slot": "^1.0.5",
- "is-array-buffer": "^3.0.2",
- "is-callable": "^1.2.7",
- "is-negative-zero": "^2.0.2",
- "is-regex": "^1.1.4",
- "is-shared-array-buffer": "^1.0.2",
- "is-string": "^1.0.7",
- "is-typed-array": "^1.1.10",
- "is-weakref": "^1.0.2",
- "object-inspect": "^1.12.3",
- "object-keys": "^1.1.1",
- "object.assign": "^4.1.4",
- "regexp.prototype.flags": "^1.4.3",
- "safe-regex-test": "^1.0.0",
- "string.prototype.trim": "^1.2.7",
- "string.prototype.trimend": "^1.0.6",
- "string.prototype.trimstart": "^1.0.6",
- "typed-array-length": "^1.0.4",
- "unbox-primitive": "^1.0.2",
- "which-typed-array": "^1.1.9"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "type": "^2.7.2"
}
},
- "node_modules/es-define-property": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz",
- "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==",
+ "node_modules/extend": {
+ "version": "3.0.2",
+ "license": "MIT"
+ },
+ "node_modules/extend-shallow": {
+ "version": "2.0.1",
+ "license": "MIT",
"dependencies": {
- "get-intrinsic": "^1.2.4"
+ "is-extendable": "^0.1.0"
},
"engines": {
- "node": ">= 0.4"
+ "node": ">=0.10.0"
}
},
- "node_modules/es-errors": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
- "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
+ "node_modules/external-editor": {
+ "version": "3.1.0",
+ "license": "MIT",
+ "dependencies": {
+ "chardet": "^0.7.0",
+ "iconv-lite": "^0.4.24",
+ "tmp": "^0.0.33"
+ },
"engines": {
- "node": ">= 0.4"
+ "node": ">=4"
}
},
- "node_modules/es-get-iterator": {
- "version": "1.1.3",
+ "node_modules/external-editor/node_modules/tmp": {
+ "version": "0.0.33",
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "get-intrinsic": "^1.1.3",
- "has-symbols": "^1.0.3",
- "is-arguments": "^1.1.1",
- "is-map": "^2.0.2",
- "is-set": "^2.0.2",
- "is-string": "^1.0.7",
- "isarray": "^2.0.5",
- "stop-iteration-iterator": "^1.0.0"
+ "os-tmpdir": "~1.0.2"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "engines": {
+ "node": ">=0.6.0"
}
},
- "node_modules/es-module-lexer": {
- "version": "1.2.1",
- "license": "MIT"
- },
- "node_modules/es-set-tostringtag": {
- "version": "2.0.1",
+ "node_modules/extglob": {
+ "version": "2.0.4",
"license": "MIT",
"dependencies": {
- "get-intrinsic": "^1.1.3",
- "has": "^1.0.3",
- "has-tostringtag": "^1.0.0"
+ "array-unique": "^0.3.2",
+ "define-property": "^1.0.0",
+ "expand-brackets": "^2.1.4",
+ "extend-shallow": "^2.0.1",
+ "fragment-cache": "^0.2.1",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.1"
},
"engines": {
- "node": ">= 0.4"
+ "node": ">=0.10.0"
}
},
- "node_modules/es-shim-unscopables": {
+ "node_modules/extglob/node_modules/define-property": {
"version": "1.0.0",
"license": "MIT",
"dependencies": {
- "has": "^1.0.3"
+ "is-descriptor": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/es-to-primitive": {
- "version": "1.2.1",
+ "node_modules/fast-deep-equal": {
+ "version": "3.1.3",
+ "license": "MIT"
+ },
+ "node_modules/fast-defer": {
+ "version": "1.1.8",
+ "license": "MIT"
+ },
+ "node_modules/fast-fifo": {
+ "version": "1.3.2",
+ "license": "MIT"
+ },
+ "node_modules/fast-glob": {
+ "version": "3.3.2",
"license": "MIT",
"dependencies": {
- "is-callable": "^1.1.4",
- "is-date-object": "^1.0.1",
- "is-symbol": "^1.0.2"
+ "@nodelib/fs.stat": "^2.0.2",
+ "@nodelib/fs.walk": "^1.2.3",
+ "glob-parent": "^5.1.2",
+ "merge2": "^1.3.0",
+ "micromatch": "^4.0.4"
},
"engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "node": ">=8.6.0"
}
},
- "node_modules/es5-ext": {
- "version": "0.10.64",
- "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.64.tgz",
- "integrity": "sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==",
- "hasInstallScript": true,
+ "node_modules/fast-glob/node_modules/glob-parent": {
+ "version": "5.1.2",
+ "license": "ISC",
"dependencies": {
- "es6-iterator": "^2.0.3",
- "es6-symbol": "^3.1.3",
- "esniff": "^2.0.1",
- "next-tick": "^1.1.0"
+ "is-glob": "^4.0.1"
},
"engines": {
- "node": ">=0.10"
+ "node": ">= 6"
}
},
- "node_modules/es6-iterator": {
- "version": "2.0.3",
+ "node_modules/fast-json-stable-stringify": {
+ "version": "2.1.0",
+ "license": "MIT"
+ },
+ "node_modules/fast-levenshtein": {
+ "version": "2.0.6",
+ "license": "MIT"
+ },
+ "node_modules/fast-safe-stringify": {
+ "version": "2.1.1",
+ "license": "MIT"
+ },
+ "node_modules/fast-shallow-equal": {
+ "version": "1.0.0",
+ "dev": true
+ },
+ "node_modules/fast-uri": {
+ "version": "3.0.3",
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/fastest-levenshtein": {
+ "version": "1.0.16",
"license": "MIT",
- "dependencies": {
- "d": "1",
- "es5-ext": "^0.10.35",
- "es6-symbol": "^3.1.1"
+ "engines": {
+ "node": ">= 4.9.1"
}
},
- "node_modules/es6-promise": {
- "version": "4.2.8",
+ "node_modules/fastest-stable-stringify": {
+ "version": "2.0.2",
+ "dev": true,
"license": "MIT"
},
- "node_modules/es6-symbol": {
- "version": "3.1.3",
+ "node_modules/fastparse": {
+ "version": "1.1.2",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/fastq": {
+ "version": "1.17.1",
"license": "ISC",
"dependencies": {
- "d": "^1.0.1",
- "ext": "^1.1.2"
+ "reusify": "^1.0.4"
}
},
- "node_modules/es6-templates": {
- "version": "0.2.3",
- "dev": true,
- "license": "Apache 2",
+ "node_modules/faye-websocket": {
+ "version": "0.11.4",
+ "license": "Apache-2.0",
"dependencies": {
- "recast": "~0.11.12",
- "through": "~2.3.6"
+ "websocket-driver": ">=0.5.1"
+ },
+ "engines": {
+ "node": ">=0.8.0"
}
},
- "node_modules/es6-weak-map": {
- "version": "2.0.3",
- "license": "ISC",
+ "node_modules/fb-watchman": {
+ "version": "2.0.2",
+ "license": "Apache-2.0",
"dependencies": {
- "d": "1",
- "es5-ext": "^0.10.46",
- "es6-iterator": "^2.0.3",
- "es6-symbol": "^3.1.1"
+ "bser": "2.1.1"
}
},
- "node_modules/esbuild": {
- "version": "0.11.23",
- "dev": true,
- "hasInstallScript": true,
+ "node_modules/fbjs": {
+ "version": "3.0.5",
"license": "MIT",
- "bin": {
- "esbuild": "bin/esbuild"
+ "dependencies": {
+ "cross-fetch": "^3.1.5",
+ "fbjs-css-vars": "^1.0.0",
+ "loose-envify": "^1.0.0",
+ "object-assign": "^4.1.0",
+ "promise": "^7.1.1",
+ "setimmediate": "^1.0.5",
+ "ua-parser-js": "^1.0.35"
}
},
- "node_modules/escalade": {
- "version": "3.1.1",
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
+ "node_modules/fbjs-css-vars": {
+ "version": "1.0.2",
+ "license": "MIT"
},
- "node_modules/escape-goat": {
- "version": "2.1.1",
+ "node_modules/figures": {
+ "version": "3.2.0",
"license": "MIT",
+ "dependencies": {
+ "escape-string-regexp": "^1.0.5"
+ },
"engines": {
"node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/escape-html": {
- "version": "1.0.3",
- "license": "MIT"
- },
- "node_modules/escape-string-regexp": {
+ "node_modules/figures/node_modules/escape-string-regexp": {
"version": "1.0.5",
"license": "MIT",
"engines": {
"node": ">=0.8.0"
}
},
- "node_modules/escodegen": {
- "version": "2.0.0",
- "dev": true,
- "license": "BSD-2-Clause",
+ "node_modules/file-entry-cache": {
+ "version": "6.0.1",
+ "license": "MIT",
"dependencies": {
- "esprima": "^4.0.1",
- "estraverse": "^5.2.0",
- "esutils": "^2.0.2",
- "optionator": "^0.8.1"
- },
- "bin": {
- "escodegen": "bin/escodegen.js",
- "esgenerate": "bin/esgenerate.js"
+ "flat-cache": "^3.0.4"
},
"engines": {
- "node": ">=6.0"
- },
- "optionalDependencies": {
- "source-map": "~0.6.1"
+ "node": "^10.12.0 || >=12.0.0"
}
},
- "node_modules/escodegen/node_modules/levn": {
- "version": "0.3.0",
- "dev": true,
+ "node_modules/file-loader": {
+ "version": "6.2.0",
"license": "MIT",
"dependencies": {
- "prelude-ls": "~1.1.2",
- "type-check": "~0.3.2"
+ "loader-utils": "^2.0.0",
+ "schema-utils": "^3.0.0"
},
"engines": {
- "node": ">= 0.8.0"
+ "node": ">= 10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependencies": {
+ "webpack": "^4.0.0 || ^5.0.0"
}
},
- "node_modules/escodegen/node_modules/optionator": {
- "version": "0.8.3",
- "dev": true,
+ "node_modules/file-loader/node_modules/schema-utils": {
+ "version": "3.3.0",
"license": "MIT",
"dependencies": {
- "deep-is": "~0.1.3",
- "fast-levenshtein": "~2.0.6",
- "levn": "~0.3.0",
- "prelude-ls": "~1.1.2",
- "type-check": "~0.3.2",
- "word-wrap": "~1.2.3"
+ "@types/json-schema": "^7.0.8",
+ "ajv": "^6.12.5",
+ "ajv-keywords": "^3.5.2"
},
"engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/escodegen/node_modules/prelude-ls": {
- "version": "1.1.2",
- "dev": true,
- "engines": {
- "node": ">= 0.8.0"
+ "node": ">= 10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
}
},
- "node_modules/escodegen/node_modules/type-check": {
- "version": "0.3.2",
- "dev": true,
+ "node_modules/file-selector": {
+ "version": "0.6.0",
"license": "MIT",
"dependencies": {
- "prelude-ls": "~1.1.2"
+ "tslib": "^2.4.0"
},
"engines": {
- "node": ">= 0.8.0"
+ "node": ">= 12"
}
},
- "node_modules/eslint": {
- "version": "8.18.0",
+ "node_modules/file-type": {
+ "version": "16.5.4",
"license": "MIT",
"dependencies": {
- "@eslint/eslintrc": "^1.3.0",
- "@humanwhocodes/config-array": "^0.9.2",
- "ajv": "^6.10.0",
- "chalk": "^4.0.0",
- "cross-spawn": "^7.0.2",
- "debug": "^4.3.2",
- "doctrine": "^3.0.0",
- "escape-string-regexp": "^4.0.0",
- "eslint-scope": "^7.1.1",
- "eslint-utils": "^3.0.0",
- "eslint-visitor-keys": "^3.3.0",
- "espree": "^9.3.2",
- "esquery": "^1.4.0",
- "esutils": "^2.0.2",
- "fast-deep-equal": "^3.1.3",
- "file-entry-cache": "^6.0.1",
- "functional-red-black-tree": "^1.0.1",
- "glob-parent": "^6.0.1",
- "globals": "^13.15.0",
- "ignore": "^5.2.0",
- "import-fresh": "^3.0.0",
- "imurmurhash": "^0.1.4",
- "is-glob": "^4.0.0",
- "js-yaml": "^4.1.0",
- "json-stable-stringify-without-jsonify": "^1.0.1",
- "levn": "^0.4.1",
- "lodash.merge": "^4.6.2",
- "minimatch": "^3.1.2",
- "natural-compare": "^1.4.0",
- "optionator": "^0.9.1",
- "regexpp": "^3.2.0",
- "strip-ansi": "^6.0.1",
- "strip-json-comments": "^3.1.0",
- "text-table": "^0.2.0",
- "v8-compile-cache": "^2.0.3"
- },
- "bin": {
- "eslint": "bin/eslint.js"
+ "readable-web-to-node-stream": "^3.0.0",
+ "strtok3": "^6.2.4",
+ "token-types": "^4.1.1"
},
"engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ "node": ">=10"
},
"funding": {
- "url": "https://opencollective.com/eslint"
+ "url": "https://github.com/sindresorhus/file-type?sponsor=1"
}
},
- "node_modules/eslint-config-airbnb": {
- "version": "19.0.4",
- "dev": true,
+ "node_modules/filelist": {
+ "version": "1.0.4",
+ "devOptional": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "minimatch": "^5.0.1"
+ }
+ },
+ "node_modules/filelist/node_modules/brace-expansion": {
+ "version": "2.0.1",
+ "devOptional": true,
"license": "MIT",
"dependencies": {
- "eslint-config-airbnb-base": "^15.0.0",
- "object.assign": "^4.1.2",
- "object.entries": "^1.1.5"
+ "balanced-match": "^1.0.0"
+ }
+ },
+ "node_modules/filelist/node_modules/minimatch": {
+ "version": "5.1.6",
+ "devOptional": true,
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^2.0.1"
},
"engines": {
- "node": "^10.12.0 || ^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "peerDependencies": {
- "eslint": "^7.32.0 || ^8.2.0",
- "eslint-plugin-import": "^2.25.3",
- "eslint-plugin-jsx-a11y": "^6.5.1",
- "eslint-plugin-react": "^7.28.0",
- "eslint-plugin-react-hooks": "^4.3.0"
+ "node": ">=10"
}
},
- "node_modules/eslint-config-airbnb-base": {
- "version": "15.0.0",
- "dev": true,
+ "node_modules/filesize": {
+ "version": "8.0.7",
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">= 0.4.0"
+ }
+ },
+ "node_modules/fill-range": {
+ "version": "7.1.1",
"license": "MIT",
"dependencies": {
- "confusing-browser-globals": "^1.0.10",
- "object.assign": "^4.1.2",
- "object.entries": "^1.1.5",
- "semver": "^6.3.0"
+ "to-regex-range": "^5.0.1"
},
"engines": {
- "node": "^10.12.0 || >=12.0.0"
- },
- "peerDependencies": {
- "eslint": "^7.32.0 || ^8.2.0",
- "eslint-plugin-import": "^2.25.2"
+ "node": ">=8"
}
},
- "node_modules/eslint-config-airbnb-typescript": {
- "version": "17.0.0",
- "dev": true,
+ "node_modules/filter-obj": {
+ "version": "1.1.0",
"license": "MIT",
- "dependencies": {
- "eslint-config-airbnb-base": "^15.0.0"
- },
- "peerDependencies": {
- "@typescript-eslint/eslint-plugin": "^5.13.0",
- "@typescript-eslint/parser": "^5.0.0",
- "eslint": "^7.32.0 || ^8.2.0",
- "eslint-plugin-import": "^2.25.3"
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/eslint-import-resolver-node": {
- "version": "0.3.7",
+ "node_modules/finalhandler": {
+ "version": "1.2.0",
"license": "MIT",
"dependencies": {
- "debug": "^3.2.7",
- "is-core-module": "^2.11.0",
- "resolve": "^1.22.1"
+ "debug": "2.6.9",
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "on-finished": "2.4.1",
+ "parseurl": "~1.3.3",
+ "statuses": "2.0.1",
+ "unpipe": "~1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8"
}
},
- "node_modules/eslint-import-resolver-node/node_modules/debug": {
- "version": "3.2.7",
+ "node_modules/finalhandler/node_modules/debug": {
+ "version": "2.6.9",
"license": "MIT",
"dependencies": {
- "ms": "^2.1.1"
+ "ms": "2.0.0"
}
},
- "node_modules/eslint-import-resolver-webpack": {
- "version": "0.13.2",
- "dev": true,
+ "node_modules/finalhandler/node_modules/ms": {
+ "version": "2.0.0",
+ "license": "MIT"
+ },
+ "node_modules/find-cache-dir": {
+ "version": "4.0.0",
"license": "MIT",
"dependencies": {
- "array-find": "^1.0.0",
- "debug": "^3.2.7",
- "enhanced-resolve": "^0.9.1",
- "find-root": "^1.1.0",
- "has": "^1.0.3",
- "interpret": "^1.4.0",
- "is-core-module": "^2.7.0",
- "is-regex": "^1.1.4",
- "lodash": "^4.17.21",
- "resolve": "^1.20.0",
- "semver": "^5.7.1"
+ "common-path-prefix": "^3.0.0",
+ "pkg-dir": "^7.0.0"
},
"engines": {
- "node": ">= 6"
+ "node": ">=14.16"
},
- "peerDependencies": {
- "eslint-plugin-import": ">=1.4.0",
- "webpack": ">=1.11.0"
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/eslint-import-resolver-webpack/node_modules/debug": {
- "version": "3.2.7",
+ "node_modules/find-replace": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "ms": "^2.1.1"
- }
- },
- "node_modules/eslint-import-resolver-webpack/node_modules/enhanced-resolve": {
- "version": "0.9.1",
- "dev": true,
- "dependencies": {
- "graceful-fs": "^4.1.2",
- "memory-fs": "^0.2.0",
- "tapable": "^0.1.8"
+ "array-back": "^3.0.1"
},
"engines": {
- "node": ">=0.6"
+ "node": ">=4.0.0"
}
},
- "node_modules/eslint-import-resolver-webpack/node_modules/semver": {
- "version": "5.7.1",
+ "node_modules/find-root": {
+ "version": "1.1.0",
"dev": true,
- "license": "ISC",
- "bin": {
- "semver": "bin/semver"
- }
+ "license": "MIT"
},
- "node_modules/eslint-import-resolver-webpack/node_modules/tapable": {
- "version": "0.1.10",
- "dev": true,
+ "node_modules/find-up": {
+ "version": "5.0.0",
"license": "MIT",
+ "dependencies": {
+ "locate-path": "^6.0.0",
+ "path-exists": "^4.0.0"
+ },
"engines": {
- "node": ">=0.6"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/eslint-module-utils": {
- "version": "2.7.4",
+ "node_modules/find-versions": {
+ "version": "5.1.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "debug": "^3.2.7"
+ "semver-regex": "^4.0.5"
},
"engines": {
- "node": ">=4"
+ "node": ">=12"
},
- "peerDependenciesMeta": {
- "eslint": {
- "optional": true
- }
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/eslint-module-utils/node_modules/debug": {
- "version": "3.2.7",
- "license": "MIT",
+ "node_modules/find-yarn-workspace-root": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz",
+ "integrity": "sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==",
+ "license": "Apache-2.0",
"dependencies": {
- "ms": "^2.1.1"
+ "micromatch": "^4.0.2"
}
},
- "node_modules/eslint-plugin-import": {
- "version": "2.27.5",
+ "node_modules/flat": {
+ "version": "5.0.2",
+ "license": "BSD-3-Clause",
+ "peer": true,
+ "bin": {
+ "flat": "cli.js"
+ }
+ },
+ "node_modules/flat-cache": {
+ "version": "3.2.0",
"license": "MIT",
"dependencies": {
- "array-includes": "^3.1.6",
- "array.prototype.flat": "^1.3.1",
- "array.prototype.flatmap": "^1.3.1",
- "debug": "^3.2.7",
- "doctrine": "^2.1.0",
- "eslint-import-resolver-node": "^0.3.7",
- "eslint-module-utils": "^2.7.4",
- "has": "^1.0.3",
- "is-core-module": "^2.11.0",
- "is-glob": "^4.0.3",
- "minimatch": "^3.1.2",
- "object.values": "^1.1.6",
- "resolve": "^1.22.1",
- "semver": "^6.3.0",
- "tsconfig-paths": "^3.14.1"
+ "flatted": "^3.2.9",
+ "keyv": "^4.5.3",
+ "rimraf": "^3.0.2"
},
"engines": {
- "node": ">=4"
- },
- "peerDependencies": {
- "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8"
+ "node": "^10.12.0 || >=12.0.0"
}
},
- "node_modules/eslint-plugin-import/node_modules/debug": {
- "version": "3.2.7",
- "license": "MIT",
- "dependencies": {
- "ms": "^2.1.1"
- }
+ "node_modules/flatted": {
+ "version": "3.3.2",
+ "license": "ISC"
},
- "node_modules/eslint-plugin-import/node_modules/doctrine": {
- "version": "2.1.0",
- "license": "Apache-2.0",
+ "node_modules/focus-lock": {
+ "version": "1.3.5",
+ "license": "MIT",
"dependencies": {
- "esutils": "^2.0.2"
+ "tslib": "^2.0.3"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10"
}
},
- "node_modules/eslint-plugin-jsx-a11y": {
- "version": "6.7.1",
+ "node_modules/follow-redirects": {
+ "version": "1.15.9",
+ "funding": [
+ {
+ "type": "individual",
+ "url": "https://github.com/sponsors/RubenVerborgh"
+ }
+ ],
"license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.20.7",
- "aria-query": "^5.1.3",
- "array-includes": "^3.1.6",
- "array.prototype.flatmap": "^1.3.1",
- "ast-types-flow": "^0.0.7",
- "axe-core": "^4.6.2",
- "axobject-query": "^3.1.1",
- "damerau-levenshtein": "^1.0.8",
- "emoji-regex": "^9.2.2",
- "has": "^1.0.3",
- "jsx-ast-utils": "^3.3.3",
- "language-tags": "=1.0.5",
- "minimatch": "^3.1.2",
- "object.entries": "^1.1.6",
- "object.fromentries": "^2.0.6",
- "semver": "^6.3.0"
- },
"engines": {
"node": ">=4.0"
},
- "peerDependencies": {
- "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8"
+ "peerDependenciesMeta": {
+ "debug": {
+ "optional": true
+ }
}
},
- "node_modules/eslint-plugin-react": {
- "version": "7.32.2",
- "license": "MIT",
- "dependencies": {
- "array-includes": "^3.1.6",
- "array.prototype.flatmap": "^1.3.1",
- "array.prototype.tosorted": "^1.1.1",
- "doctrine": "^2.1.0",
- "estraverse": "^5.3.0",
- "jsx-ast-utils": "^2.4.1 || ^3.0.0",
- "minimatch": "^3.1.2",
- "object.entries": "^1.1.6",
- "object.fromentries": "^2.0.6",
- "object.hasown": "^1.1.2",
- "object.values": "^1.1.6",
- "prop-types": "^15.8.1",
- "resolve": "^2.0.0-next.4",
- "semver": "^6.3.0",
- "string.prototype.matchall": "^4.0.8"
- },
+ "node_modules/font-awesome": {
+ "version": "4.7.0",
+ "license": "(OFL-1.1 AND MIT)",
+ "peer": true,
"engines": {
- "node": ">=4"
- },
- "peerDependencies": {
- "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8"
+ "node": ">=0.10.3"
+ }
+ },
+ "node_modules/for-each": {
+ "version": "0.3.3",
+ "license": "MIT",
+ "dependencies": {
+ "is-callable": "^1.1.3"
}
},
- "node_modules/eslint-plugin-react-hooks": {
- "version": "4.6.0",
+ "node_modules/for-in": {
+ "version": "1.0.2",
"license": "MIT",
"engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0"
+ "node": ">=0.10.0"
}
},
- "node_modules/eslint-plugin-react/node_modules/doctrine": {
- "version": "2.1.0",
- "license": "Apache-2.0",
+ "node_modules/foreground-child": {
+ "version": "2.0.0",
+ "license": "ISC",
"dependencies": {
- "esutils": "^2.0.2"
+ "cross-spawn": "^7.0.0",
+ "signal-exit": "^3.0.2"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=8.0.0"
}
},
- "node_modules/eslint-plugin-react/node_modules/resolve": {
- "version": "2.0.0-next.4",
+ "node_modules/fork-ts-checker-webpack-plugin": {
+ "version": "6.5.3",
"license": "MIT",
"dependencies": {
- "is-core-module": "^2.9.0",
- "path-parse": "^1.0.7",
- "supports-preserve-symlinks-flag": "^1.0.0"
+ "@babel/code-frame": "^7.8.3",
+ "@types/json-schema": "^7.0.5",
+ "chalk": "^4.1.0",
+ "chokidar": "^3.4.2",
+ "cosmiconfig": "^6.0.0",
+ "deepmerge": "^4.2.2",
+ "fs-extra": "^9.0.0",
+ "glob": "^7.1.6",
+ "memfs": "^3.1.2",
+ "minimatch": "^3.0.4",
+ "schema-utils": "2.7.0",
+ "semver": "^7.3.2",
+ "tapable": "^1.0.0"
},
- "bin": {
- "resolve": "bin/resolve"
+ "engines": {
+ "node": ">=10",
+ "yarn": ">=1.0.0"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "peerDependencies": {
+ "eslint": ">= 6",
+ "typescript": ">= 2.7",
+ "vue-template-compiler": "*",
+ "webpack": ">= 4"
+ },
+ "peerDependenciesMeta": {
+ "eslint": {
+ "optional": true
+ },
+ "vue-template-compiler": {
+ "optional": true
+ }
}
},
- "node_modules/eslint-scope": {
- "version": "5.1.1",
- "license": "BSD-2-Clause",
+ "node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": {
+ "version": "6.0.0",
+ "license": "MIT",
"dependencies": {
- "esrecurse": "^4.3.0",
- "estraverse": "^4.1.1"
+ "@types/parse-json": "^4.0.0",
+ "import-fresh": "^3.1.0",
+ "parse-json": "^5.0.0",
+ "path-type": "^4.0.0",
+ "yaml": "^1.7.2"
},
"engines": {
- "node": ">=8.0.0"
+ "node": ">=8"
}
},
- "node_modules/eslint-scope/node_modules/estraverse": {
- "version": "4.3.0",
- "license": "BSD-2-Clause",
+ "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": {
+ "version": "9.1.0",
+ "license": "MIT",
+ "dependencies": {
+ "at-least-node": "^1.0.0",
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
"engines": {
- "node": ">=4.0"
+ "node": ">=10"
}
},
- "node_modules/eslint-utils": {
- "version": "3.0.0",
- "license": "MIT",
+ "node_modules/fork-ts-checker-webpack-plugin/node_modules/glob": {
+ "version": "7.2.3",
+ "license": "ISC",
"dependencies": {
- "eslint-visitor-keys": "^2.0.0"
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
},
"engines": {
- "node": "^10.0.0 || ^12.0.0 || >= 14.0.0"
+ "node": "*"
},
"funding": {
- "url": "https://github.com/sponsors/mysticatea"
- },
- "peerDependencies": {
- "eslint": ">=5"
- }
- },
- "node_modules/eslint-visitor-keys": {
- "version": "2.1.0",
- "license": "Apache-2.0",
- "engines": {
- "node": ">=10"
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/eslint-webpack-plugin": {
+ "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": {
"version": "2.7.0",
"license": "MIT",
"dependencies": {
- "@types/eslint": "^7.29.0",
- "arrify": "^2.0.1",
- "jest-worker": "^27.5.1",
- "micromatch": "^4.0.5",
- "normalize-path": "^3.0.0",
- "schema-utils": "^3.1.1"
+ "@types/json-schema": "^7.0.4",
+ "ajv": "^6.12.2",
+ "ajv-keywords": "^3.4.1"
},
"engines": {
- "node": ">= 10.13.0"
+ "node": ">= 8.9.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "eslint": "^7.0.0 || ^8.0.0",
- "webpack": "^4.0.0 || ^5.0.0"
- }
- },
- "node_modules/eslint-webpack-plugin/node_modules/@types/eslint": {
- "version": "7.29.0",
- "license": "MIT",
- "dependencies": {
- "@types/estree": "*",
- "@types/json-schema": "*"
}
},
- "node_modules/eslint-webpack-plugin/node_modules/arrify": {
- "version": "2.0.1",
- "license": "MIT",
+ "node_modules/fork-ts-checker-webpack-plugin/node_modules/semver": {
+ "version": "7.6.3",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
"engines": {
- "node": ">=8"
+ "node": ">=10"
}
},
- "node_modules/eslint-webpack-plugin/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/fork-ts-checker-webpack-plugin/node_modules/tapable": {
+ "version": "1.1.3",
"license": "MIT",
"engines": {
- "node": ">=8"
+ "node": ">=6"
}
},
- "node_modules/eslint-webpack-plugin/node_modules/jest-worker": {
- "version": "27.5.1",
- "license": "MIT",
- "dependencies": {
- "@types/node": "*",
- "merge-stream": "^2.0.0",
- "supports-color": "^8.0.0"
- },
+ "node_modules/fork-ts-checker-webpack-plugin/node_modules/yaml": {
+ "version": "1.10.2",
+ "license": "ISC",
"engines": {
- "node": ">= 10.13.0"
+ "node": ">= 6"
}
},
- "node_modules/eslint-webpack-plugin/node_modules/schema-utils": {
- "version": "3.1.2",
+ "node_modules/form-data": {
+ "version": "4.0.1",
"license": "MIT",
"dependencies": {
- "@types/json-schema": "^7.0.8",
- "ajv": "^6.12.5",
- "ajv-keywords": "^3.5.2"
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.8",
+ "mime-types": "^2.1.12"
},
"engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
+ "node": ">= 6"
}
},
- "node_modules/eslint-webpack-plugin/node_modules/supports-color": {
- "version": "8.1.1",
+ "node_modules/form-data-encoder": {
+ "version": "2.1.4",
"license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/supports-color?sponsor=1"
+ "node": ">= 14.17"
}
},
- "node_modules/eslint/node_modules/argparse": {
- "version": "2.0.1",
- "license": "Python-2.0"
+ "node_modules/form-urlencoded": {
+ "version": "4.1.4",
+ "license": "MIT"
},
- "node_modules/eslint/node_modules/escape-string-regexp": {
- "version": "4.0.0",
+ "node_modules/formidable": {
+ "version": "3.5.2",
"license": "MIT",
- "engines": {
- "node": ">=10"
+ "dependencies": {
+ "dezalgo": "^1.0.4",
+ "hexoid": "^2.0.0",
+ "once": "^1.4.0"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://ko-fi.com/tunnckoCore/commissions"
}
},
- "node_modules/eslint/node_modules/eslint-scope": {
- "version": "7.1.1",
- "license": "BSD-2-Clause",
- "dependencies": {
- "esrecurse": "^4.3.0",
- "estraverse": "^5.2.0"
- },
+ "node_modules/forwarded": {
+ "version": "0.2.0",
+ "license": "MIT",
"engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ "node": ">= 0.6"
}
},
- "node_modules/eslint/node_modules/eslint-visitor-keys": {
- "version": "3.3.0",
- "license": "Apache-2.0",
+ "node_modules/fraction.js": {
+ "version": "4.3.7",
+ "license": "MIT",
"engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ "node": "*"
+ },
+ "funding": {
+ "type": "patreon",
+ "url": "https://github.com/sponsors/rawify"
}
},
- "node_modules/eslint/node_modules/glob-parent": {
- "version": "6.0.2",
- "license": "ISC",
+ "node_modules/fragment-cache": {
+ "version": "0.2.1",
+ "license": "MIT",
"dependencies": {
- "is-glob": "^4.0.3"
+ "map-cache": "^0.2.2"
},
"engines": {
- "node": ">=10.13.0"
+ "node": ">=0.10.0"
}
},
- "node_modules/eslint/node_modules/globals": {
- "version": "13.20.0",
+ "node_modules/fresh": {
+ "version": "0.5.2",
"license": "MIT",
- "dependencies": {
- "type-fest": "^0.20.2"
- },
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">= 0.6"
}
},
- "node_modules/eslint/node_modules/js-yaml": {
- "version": "4.1.0",
+ "node_modules/from2": {
+ "version": "2.3.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "argparse": "^2.0.1"
- },
- "bin": {
- "js-yaml": "bin/js-yaml.js"
+ "inherits": "^2.0.1",
+ "readable-stream": "^2.0.0"
}
},
- "node_modules/eslint/node_modules/type-fest": {
- "version": "0.20.2",
- "license": "(MIT OR CC0-1.0)",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
+ "node_modules/fs-constants": {
+ "version": "1.0.0",
+ "license": "MIT"
},
- "node_modules/esniff": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/esniff/-/esniff-2.0.1.tgz",
- "integrity": "sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==",
+ "node_modules/fs-exists-cached": {
+ "version": "1.0.0",
+ "license": "ISC"
+ },
+ "node_modules/fs-extra": {
+ "version": "11.2.0",
+ "license": "MIT",
"dependencies": {
- "d": "^1.0.1",
- "es5-ext": "^0.10.62",
- "event-emitter": "^0.3.5",
- "type": "^2.7.2"
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
},
"engines": {
- "node": ">=0.10"
+ "node": ">=14.14"
}
},
- "node_modules/esniff/node_modules/type": {
- "version": "2.7.2",
- "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz",
- "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw=="
+ "node_modules/fs-monkey": {
+ "version": "1.0.6",
+ "license": "Unlicense"
},
- "node_modules/espree": {
- "version": "9.5.0",
- "license": "BSD-2-Clause",
- "dependencies": {
- "acorn": "^8.8.0",
- "acorn-jsx": "^5.3.2",
- "eslint-visitor-keys": "^3.3.0"
- },
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/eslint"
- }
+ "node_modules/fs-readdir-recursive": {
+ "version": "1.1.0",
+ "license": "MIT"
},
- "node_modules/espree/node_modules/eslint-visitor-keys": {
- "version": "3.3.0",
- "license": "Apache-2.0",
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- }
+ "node_modules/fs.realpath": {
+ "version": "1.0.0",
+ "license": "ISC"
},
- "node_modules/esprima": {
- "version": "4.0.1",
- "license": "BSD-2-Clause",
- "bin": {
- "esparse": "bin/esparse.js",
- "esvalidate": "bin/esvalidate.js"
- },
+ "node_modules/fsevents": {
+ "version": "2.3.3",
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
"engines": {
- "node": ">=4"
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
}
},
- "node_modules/esquery": {
- "version": "1.5.0",
- "license": "BSD-3-Clause",
- "dependencies": {
- "estraverse": "^5.1.0"
- },
- "engines": {
- "node": ">=0.10"
+ "node_modules/function-bind": {
+ "version": "1.1.2",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/esrecurse": {
- "version": "4.3.0",
- "license": "BSD-2-Clause",
+ "node_modules/function.prototype.name": {
+ "version": "1.1.6",
+ "license": "MIT",
"dependencies": {
- "estraverse": "^5.2.0"
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
+ "functions-have-names": "^1.2.3"
},
"engines": {
- "node": ">=4.0"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/estraverse": {
- "version": "5.3.0",
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">=4.0"
- }
+ "node_modules/functional-red-black-tree": {
+ "version": "1.0.1",
+ "license": "MIT"
},
- "node_modules/estree-to-babel": {
- "version": "3.2.1",
+ "node_modules/functions-have-names": {
+ "version": "1.2.3",
"license": "MIT",
- "dependencies": {
- "@babel/traverse": "^7.1.6",
- "@babel/types": "^7.2.0",
- "c8": "^7.6.0"
- },
- "engines": {
- "node": ">=8.3.0"
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/esutils": {
- "version": "2.0.3",
- "license": "BSD-2-Clause",
+ "node_modules/fuzzy": {
+ "version": "0.1.3",
+ "dev": true,
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 0.6.0"
}
},
- "node_modules/etag": {
- "version": "1.8.1",
+ "node_modules/gatsby": {
+ "version": "5.14.0",
+ "hasInstallScript": true,
"license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.18.6",
+ "@babel/core": "^7.20.12",
+ "@babel/eslint-parser": "^7.19.1",
+ "@babel/helper-plugin-utils": "^7.20.2",
+ "@babel/parser": "^7.20.13",
+ "@babel/runtime": "^7.20.13",
+ "@babel/traverse": "^7.20.13",
+ "@babel/types": "^7.20.7",
+ "@builder.io/partytown": "^0.7.5",
+ "@gatsbyjs/reach-router": "^2.0.1",
+ "@gatsbyjs/webpack-hot-middleware": "^2.25.3",
+ "@graphql-codegen/add": "^3.2.3",
+ "@graphql-codegen/core": "^2.6.8",
+ "@graphql-codegen/plugin-helpers": "^2.7.2",
+ "@graphql-codegen/typescript": "^2.8.8",
+ "@graphql-codegen/typescript-operations": "^2.5.13",
+ "@graphql-tools/code-file-loader": "^7.3.23",
+ "@graphql-tools/load": "^7.8.14",
+ "@jridgewell/trace-mapping": "^0.3.18",
+ "@nodelib/fs.walk": "^1.2.8",
+ "@parcel/cache": "2.8.3",
+ "@parcel/core": "2.8.3",
+ "@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
+ "@sigmacomputing/babel-plugin-lodash": "^3.3.5",
+ "@types/http-proxy": "^1.17.11",
+ "@typescript-eslint/eslint-plugin": "^5.60.1",
+ "@typescript-eslint/parser": "^5.60.1",
+ "@vercel/webpack-asset-relocator-loader": "1.7.3",
+ "acorn-loose": "^8.3.0",
+ "acorn-walk": "^8.2.0",
+ "address": "1.2.2",
+ "anser": "^2.1.1",
+ "autoprefixer": "^10.4.14",
+ "axios": "^1.6.4",
+ "babel-jsx-utils": "^1.1.0",
+ "babel-loader": "^8.3.0",
+ "babel-plugin-add-module-exports": "^1.0.4",
+ "babel-plugin-dynamic-import-node": "^2.3.3",
+ "babel-plugin-remove-graphql-queries": "^5.14.0",
+ "babel-preset-gatsby": "^3.14.0",
+ "better-opn": "^2.1.1",
+ "bluebird": "^3.7.2",
+ "body-parser": "1.20.3",
+ "browserslist": "^4.21.9",
+ "cache-manager": "^2.11.1",
+ "chalk": "^4.1.2",
+ "chokidar": "^3.5.3",
+ "common-tags": "^1.8.2",
+ "compression": "^1.7.4",
+ "cookie": "^0.5.0",
+ "core-js": "^3.31.0",
+ "cors": "^2.8.5",
+ "css-loader": "^5.2.7",
+ "css-minimizer-webpack-plugin": "^2.0.0",
+ "css.escape": "^1.5.1",
+ "date-fns": "^2.30.0",
+ "debug": "^4.3.4",
+ "deepmerge": "^4.3.1",
+ "detect-port": "^1.5.1",
+ "devcert": "^1.2.2",
+ "dotenv": "^8.6.0",
+ "enhanced-resolve": "^5.15.0",
+ "error-stack-parser": "^2.1.4",
+ "eslint": "^7.32.0",
+ "eslint-config-react-app": "^6.0.0",
+ "eslint-plugin-flowtype": "^5.10.0",
+ "eslint-plugin-import": "^2.27.5",
+ "eslint-plugin-jsx-a11y": "^6.8.0",
+ "eslint-plugin-react": "^7.32.2",
+ "eslint-plugin-react-hooks": "^4.6.0",
+ "eslint-webpack-plugin": "^2.7.0",
+ "event-source-polyfill": "1.0.31",
+ "execa": "^5.1.1",
+ "express": "^4.18.2",
+ "express-http-proxy": "^1.6.3",
+ "fastest-levenshtein": "^1.0.16",
+ "fastq": "^1.15.0",
+ "file-loader": "^6.2.0",
+ "find-cache-dir": "^3.3.2",
+ "fs-exists-cached": "1.0.0",
+ "fs-extra": "^11.2.0",
+ "gatsby-cli": "^5.14.0",
+ "gatsby-core-utils": "^4.14.0",
+ "gatsby-graphiql-explorer": "^3.14.0",
+ "gatsby-legacy-polyfills": "^3.14.0",
+ "gatsby-link": "^5.14.0",
+ "gatsby-page-utils": "^3.14.0",
+ "gatsby-parcel-config": "1.14.0",
+ "gatsby-plugin-page-creator": "^5.14.0",
+ "gatsby-plugin-typescript": "^5.14.0",
+ "gatsby-plugin-utils": "^4.14.0",
+ "gatsby-react-router-scroll": "^6.14.0",
+ "gatsby-script": "^2.14.0",
+ "gatsby-worker": "^2.14.0",
+ "glob": "^7.2.3",
+ "globby": "^11.1.0",
+ "got": "^11.8.6",
+ "graphql": "^16.7.1",
+ "graphql-compose": "^9.0.10",
+ "graphql-http": "^1.19.0",
+ "graphql-tag": "^2.12.6",
+ "hasha": "^5.2.2",
+ "invariant": "^2.2.4",
+ "is-relative": "^1.0.0",
+ "is-relative-url": "^3.0.0",
+ "joi": "^17.9.2",
+ "json-loader": "^0.5.7",
+ "latest-version": "^7.0.0",
+ "linkfs": "^2.1.0",
+ "lmdb": "2.5.3",
+ "lodash": "^4.17.21",
+ "meant": "^1.0.3",
+ "memoizee": "^0.4.15",
+ "micromatch": "^4.0.5",
+ "mime": "^3.0.0",
+ "mini-css-extract-plugin": "1.6.2",
+ "mitt": "^1.2.0",
+ "moment": "^2.29.4",
+ "multer": "^1.4.5-lts.1",
+ "node-fetch": "^2.6.11",
+ "node-html-parser": "^5.4.2",
+ "normalize-path": "^3.0.0",
+ "null-loader": "^4.0.1",
+ "opentracing": "^0.14.7",
+ "p-defer": "^3.0.0",
+ "parseurl": "^1.3.3",
+ "path-to-regexp": "0.1.10",
+ "physical-cpu-count": "^2.0.0",
+ "platform": "^1.3.6",
+ "postcss": "^8.4.24",
+ "postcss-flexbugs-fixes": "^5.0.2",
+ "postcss-loader": "^5.3.0",
+ "prompts": "^2.4.2",
+ "prop-types": "^15.8.1",
+ "query-string": "^6.14.1",
+ "raw-loader": "^4.0.2",
+ "react-dev-utils": "^12.0.1",
+ "react-refresh": "^0.14.0",
+ "react-server-dom-webpack": "0.0.0-experimental-c8b778b7f-20220825",
+ "redux": "4.2.1",
+ "redux-thunk": "^2.4.2",
+ "resolve-from": "^5.0.0",
+ "semver": "^7.5.3",
+ "shallow-compare": "^1.2.2",
+ "signal-exit": "^3.0.7",
+ "slugify": "^1.6.6",
+ "socket.io": "4.7.1",
+ "socket.io-client": "4.7.1",
+ "stack-trace": "^0.0.10",
+ "string-similarity": "^1.2.2",
+ "strip-ansi": "^6.0.1",
+ "style-loader": "^2.0.0",
+ "style-to-object": "^0.4.1",
+ "terser-webpack-plugin": "^5.3.9",
+ "tmp": "^0.2.1",
+ "true-case-path": "^2.2.1",
+ "type-of": "^2.0.1",
+ "url-loader": "^4.1.1",
+ "uuid": "^8.3.2",
+ "webpack": "^5.88.1",
+ "webpack-dev-middleware": "^5.3.4",
+ "webpack-merge": "^5.9.0",
+ "webpack-stats-plugin": "^1.1.3",
+ "webpack-virtual-modules": "^0.5.0",
+ "xstate": "^4.38.0",
+ "yaml-loader": "^0.8.0"
+ },
+ "bin": {
+ "gatsby": "cli.js"
+ },
"engines": {
- "node": ">= 0.6"
+ "node": ">=18.0.0"
+ },
+ "optionalDependencies": {
+ "gatsby-sharp": "^1.14.0"
+ },
+ "peerDependencies": {
+ "react": "^18.0.0 || ^0.0.0",
+ "react-dom": "^18.0.0 || ^0.0.0"
}
},
- "node_modules/eval": {
- "version": "0.1.8",
+ "node_modules/gatsby-cli": {
+ "version": "5.14.0",
+ "hasInstallScript": true,
+ "license": "MIT",
"dependencies": {
- "@types/node": "*",
- "require-like": ">= 0.1.1"
+ "@babel/code-frame": "^7.18.6",
+ "@babel/core": "^7.20.12",
+ "@babel/generator": "^7.20.14",
+ "@babel/helper-plugin-utils": "^7.20.2",
+ "@babel/preset-typescript": "^7.18.6",
+ "@babel/runtime": "^7.20.13",
+ "@babel/template": "^7.20.7",
+ "@babel/types": "^7.20.7",
+ "@jridgewell/trace-mapping": "^0.3.18",
+ "@types/common-tags": "^1.8.1",
+ "better-opn": "^2.1.1",
+ "boxen": "^5.1.2",
+ "chalk": "^4.1.2",
+ "clipboardy": "^4.0.0",
+ "common-tags": "^1.8.2",
+ "convert-hrtime": "^3.0.0",
+ "create-gatsby": "^3.14.0",
+ "envinfo": "^7.10.0",
+ "execa": "^5.1.1",
+ "fs-exists-cached": "^1.0.0",
+ "fs-extra": "^11.2.0",
+ "gatsby-core-utils": "^4.14.0",
+ "hosted-git-info": "^3.0.8",
+ "is-valid-path": "^0.1.1",
+ "joi": "^17.9.2",
+ "lodash": "^4.17.21",
+ "node-fetch": "^2.6.11",
+ "opentracing": "^0.14.7",
+ "pretty-error": "^2.1.2",
+ "progress": "^2.0.3",
+ "prompts": "^2.4.2",
+ "redux": "4.2.1",
+ "resolve-cwd": "^3.0.0",
+ "semver": "^7.5.3",
+ "signal-exit": "^3.0.7",
+ "stack-trace": "^0.0.10",
+ "strip-ansi": "^6.0.1",
+ "yargs": "^15.4.1",
+ "yoga-layout-prebuilt": "^1.10.0",
+ "yurnalist": "^2.1.0"
+ },
+ "bin": {
+ "gatsby": "cli.js"
},
"engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/event-emitter": {
- "version": "0.3.5",
- "license": "MIT",
- "dependencies": {
- "d": "1",
- "es5-ext": "~0.10.14"
+ "node": ">=18.0.0"
}
},
- "node_modules/event-source-polyfill": {
- "version": "1.0.25",
- "license": "MIT"
- },
- "node_modules/eventemitter3": {
- "version": "4.0.7",
- "license": "MIT"
- },
- "node_modules/events": {
- "version": "3.3.0",
- "license": "MIT",
+ "node_modules/gatsby-cli/node_modules/semver": {
+ "version": "7.6.3",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
"engines": {
- "node": ">=0.8.x"
+ "node": ">=10"
}
},
- "node_modules/example": {
- "resolved": "example",
- "link": true
- },
- "node_modules/exec-sh": {
- "version": "0.3.6",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/execa": {
- "version": "5.1.1",
+ "node_modules/gatsby-core-utils": {
+ "version": "4.14.0",
"license": "MIT",
"dependencies": {
- "cross-spawn": "^7.0.3",
- "get-stream": "^6.0.0",
- "human-signals": "^2.1.0",
- "is-stream": "^2.0.0",
- "merge-stream": "^2.0.0",
- "npm-run-path": "^4.0.1",
- "onetime": "^5.1.2",
- "signal-exit": "^3.0.3",
- "strip-final-newline": "^2.0.0"
- },
- "engines": {
- "node": ">=10"
+ "@babel/runtime": "^7.20.13",
+ "ci-info": "2.0.0",
+ "configstore": "^5.0.1",
+ "fastq": "^1.15.0",
+ "file-type": "^16.5.4",
+ "fs-extra": "^11.2.0",
+ "got": "^11.8.6",
+ "hash-wasm": "^4.11.0",
+ "import-from": "^4.0.0",
+ "lmdb": "2.5.3",
+ "lock": "^1.1.0",
+ "node-object-hash": "^2.3.10",
+ "proper-lockfile": "^4.1.2",
+ "resolve-from": "^5.0.0",
+ "tmp": "^0.2.1",
+ "xdg-basedir": "^4.0.0"
},
- "funding": {
- "url": "https://github.com/sindresorhus/execa?sponsor=1"
- }
- },
- "node_modules/exit": {
- "version": "0.1.2",
- "dev": true,
"engines": {
- "node": ">= 0.8.0"
+ "node": ">=18.0.0"
}
},
- "node_modules/expand-brackets": {
- "version": "2.1.4",
- "dev": true,
+ "node_modules/gatsby-graphiql-explorer": {
+ "version": "3.14.0",
"license": "MIT",
- "dependencies": {
- "debug": "^2.3.3",
- "define-property": "^0.2.5",
- "extend-shallow": "^2.0.1",
- "posix-character-classes": "^0.1.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.1"
- },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=14.15.0"
}
},
- "node_modules/expand-brackets/node_modules/debug": {
- "version": "2.6.9",
- "dev": true,
+ "node_modules/gatsby-legacy-polyfills": {
+ "version": "3.14.0",
"license": "MIT",
"dependencies": {
- "ms": "2.0.0"
+ "@babel/runtime": "^7.20.13",
+ "core-js-compat": "3.31.0"
}
},
- "node_modules/expand-brackets/node_modules/define-property": {
- "version": "0.2.5",
- "dev": true,
+ "node_modules/gatsby-legacy-polyfills/node_modules/core-js-compat": {
+ "version": "3.31.0",
"license": "MIT",
"dependencies": {
- "is-descriptor": "^0.1.0"
+ "browserslist": "^4.21.5"
},
- "engines": {
- "node": ">=0.10.0"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/core-js"
}
},
- "node_modules/expand-brackets/node_modules/is-accessor-descriptor": {
- "version": "0.1.6",
- "dev": true,
+ "node_modules/gatsby-link": {
+ "version": "5.14.1",
"license": "MIT",
"dependencies": {
- "kind-of": "^3.0.2"
+ "@types/reach__router": "^1.3.10",
+ "gatsby-page-utils": "^3.14.0",
+ "prop-types": "^15.8.1"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=18.0.0"
+ },
+ "peerDependencies": {
+ "@gatsbyjs/reach-router": "^2.0.0",
+ "react": "^18.0.0 || ^0.0.0",
+ "react-dom": "^18.0.0 || ^0.0.0"
}
},
- "node_modules/expand-brackets/node_modules/is-accessor-descriptor/node_modules/kind-of": {
- "version": "3.2.2",
- "dev": true,
+ "node_modules/gatsby-page-utils": {
+ "version": "3.14.0",
"license": "MIT",
"dependencies": {
- "is-buffer": "^1.1.5"
+ "@babel/runtime": "^7.20.13",
+ "bluebird": "^3.7.2",
+ "chokidar": "^3.5.3",
+ "fs-exists-cached": "^1.0.0",
+ "gatsby-core-utils": "^4.14.0",
+ "glob": "^7.2.3",
+ "lodash": "^4.17.21",
+ "micromatch": "^4.0.5"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=18.0.0"
}
},
- "node_modules/expand-brackets/node_modules/is-buffer": {
- "version": "1.1.6",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/expand-brackets/node_modules/is-data-descriptor": {
- "version": "0.1.4",
- "dev": true,
- "license": "MIT",
+ "node_modules/gatsby-page-utils/node_modules/glob": {
+ "version": "7.2.3",
+ "license": "ISC",
"dependencies": {
- "kind-of": "^3.0.2"
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": "*"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/expand-brackets/node_modules/is-data-descriptor/node_modules/kind-of": {
- "version": "3.2.2",
- "dev": true,
+ "node_modules/gatsby-parcel-config": {
+ "version": "1.14.0",
"license": "MIT",
"dependencies": {
- "is-buffer": "^1.1.5"
+ "@gatsbyjs/parcel-namer-relative-to-cwd": "2.14.0",
+ "@parcel/bundler-default": "2.8.3",
+ "@parcel/compressor-raw": "2.8.3",
+ "@parcel/namer-default": "2.8.3",
+ "@parcel/optimizer-terser": "2.8.3",
+ "@parcel/packager-js": "2.8.3",
+ "@parcel/packager-raw": "2.8.3",
+ "@parcel/reporter-dev-server": "2.8.3",
+ "@parcel/resolver-default": "2.8.3",
+ "@parcel/runtime-js": "2.8.3",
+ "@parcel/transformer-js": "2.8.3",
+ "@parcel/transformer-json": "2.8.3"
},
"engines": {
- "node": ">=0.10.0"
+ "parcel": "2.x"
+ },
+ "peerDependencies": {
+ "@parcel/core": "^2.0.0"
}
},
- "node_modules/expand-brackets/node_modules/is-descriptor": {
- "version": "0.1.6",
- "dev": true,
+ "node_modules/gatsby-plugin-manifest": {
+ "version": "5.14.0",
"license": "MIT",
"dependencies": {
- "is-accessor-descriptor": "^0.1.6",
- "is-data-descriptor": "^0.1.4",
- "kind-of": "^5.0.0"
+ "@babel/runtime": "^7.20.13",
+ "gatsby-core-utils": "^4.14.0",
+ "gatsby-plugin-utils": "^4.14.0",
+ "semver": "^7.5.3",
+ "sharp": "^0.32.6"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=18.0.0"
+ },
+ "peerDependencies": {
+ "gatsby": "^5.0.0-next"
}
},
- "node_modules/expand-brackets/node_modules/kind-of": {
- "version": "5.1.0",
- "dev": true,
- "license": "MIT",
+ "node_modules/gatsby-plugin-manifest/node_modules/semver": {
+ "version": "7.6.3",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10"
}
},
- "node_modules/expand-brackets/node_modules/ms": {
- "version": "2.0.0",
- "dev": true,
+ "node_modules/gatsby-plugin-mdx": {
+ "version": "5.14.0",
+ "license": "MIT",
+ "dependencies": {
+ "@mdx-js/mdx": "^2.3.0",
+ "acorn": "^8.8.2",
+ "acorn-jsx": "^5.3.2",
+ "astring": "^1.8.5",
+ "deepmerge": "^4.3.1",
+ "estree-util-build-jsx": "^2.2.2",
+ "fs-extra": "^11.2.0",
+ "gatsby-core-utils": "^4.14.0",
+ "gatsby-plugin-utils": "^4.14.0",
+ "gray-matter": "^4.0.3",
+ "mdast-util-mdx": "^2.0.1",
+ "mdast-util-to-hast": "^10.2.0",
+ "mdast-util-to-markdown": "^1.5.0",
+ "mdast-util-toc": "^6.1.1",
+ "rehype-infer-description-meta": "^1.1.0",
+ "remark-unwrap-images": "^3.0.1",
+ "unified": "^10.1.2",
+ "unist-util-visit": "^4.1.2",
+ "vfile": "^5.3.7"
+ },
+ "peerDependencies": {
+ "@mdx-js/react": "^2.0.0",
+ "gatsby": "^5.0.0-next",
+ "gatsby-source-filesystem": "^5.0.0-next",
+ "react": "^18.0.0 || ^0.0.0",
+ "react-dom": "^18.0.0 || ^0.0.0"
+ }
+ },
+ "node_modules/gatsby-plugin-mdx-source-name": {
+ "version": "1.0.1",
"license": "MIT"
},
- "node_modules/expand-template": {
- "version": "2.0.3",
- "license": "(MIT OR WTFPL)",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/expect": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz",
- "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==",
- "dev": true,
+ "node_modules/gatsby-plugin-page-creator": {
+ "version": "5.14.0",
+ "license": "MIT",
"dependencies": {
- "@jest/expect-utils": "^29.7.0",
- "jest-get-type": "^29.6.3",
- "jest-matcher-utils": "^29.7.0",
- "jest-message-util": "^29.7.0",
- "jest-util": "^29.7.0"
+ "@babel/runtime": "^7.20.13",
+ "@babel/traverse": "^7.20.13",
+ "@sindresorhus/slugify": "^1.1.2",
+ "chokidar": "^3.5.3",
+ "fs-exists-cached": "^1.0.0",
+ "fs-extra": "^11.2.0",
+ "gatsby-core-utils": "^4.14.0",
+ "gatsby-page-utils": "^3.14.0",
+ "gatsby-plugin-utils": "^4.14.0",
+ "globby": "^11.1.0",
+ "lodash": "^4.17.21"
},
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">=18.0.0"
+ },
+ "peerDependencies": {
+ "gatsby": "^5.0.0-next"
}
},
- "node_modules/expr-eval-fork": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/expr-eval-fork/-/expr-eval-fork-2.0.2.tgz",
- "integrity": "sha512-NaAnObPVwHEYrODd7Jzp3zzT9pgTAlUUL4MZiZu9XAYPDpx89cPsfyEImFb2XY0vQNbrqg2CG7CLiI+Rs3seaQ=="
- },
- "node_modules/express": {
- "version": "4.19.2",
- "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz",
- "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==",
+ "node_modules/gatsby-plugin-react-axe": {
+ "version": "0.5.0",
+ "license": "MIT",
"dependencies": {
- "accepts": "~1.3.8",
- "array-flatten": "1.1.1",
- "body-parser": "1.20.2",
- "content-disposition": "0.5.4",
- "content-type": "~1.0.4",
- "cookie": "0.6.0",
- "cookie-signature": "1.0.6",
- "debug": "2.6.9",
- "depd": "2.0.0",
- "encodeurl": "~1.0.2",
- "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",
- "methods": "~1.1.2",
- "on-finished": "2.4.1",
- "parseurl": "~1.3.3",
- "path-to-regexp": "0.1.7",
- "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",
- "setprototypeof": "1.2.0",
- "statuses": "2.0.1",
- "type-is": "~1.6.18",
- "utils-merge": "1.0.1",
- "vary": "~1.1.2"
+ "react-axe": "^3.4.1"
},
- "engines": {
- "node": ">= 0.10.0"
+ "peerDependencies": {
+ "gatsby": ">2.0.0-alpha"
}
},
- "node_modules/express-graphql": {
- "version": "0.12.0",
+ "node_modules/gatsby-plugin-react-helmet": {
+ "version": "6.14.0",
"license": "MIT",
"dependencies": {
- "accepts": "^1.3.7",
- "content-type": "^1.0.4",
- "http-errors": "1.8.0",
- "raw-body": "^2.4.1"
+ "@babel/runtime": "^7.20.13"
},
"engines": {
- "node": ">= 10.x"
+ "node": ">=18.0.0"
},
"peerDependencies": {
- "graphql": "^14.7.0 || ^15.3.0"
+ "gatsby": "^5.0.0-next",
+ "react-helmet": "^5.1.3 || ^6.0.0"
}
},
- "node_modules/express-graphql/node_modules/depd": {
- "version": "1.1.2",
+ "node_modules/gatsby-plugin-sass": {
+ "version": "6.14.0",
"license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.20.13",
+ "resolve-url-loader": "^3.1.5",
+ "sass-loader": "^10.4.1"
+ },
"engines": {
- "node": ">= 0.6"
+ "node": ">=18.0.0"
+ },
+ "peerDependencies": {
+ "gatsby": "^5.0.0-next",
+ "sass": "^1.30.0"
}
},
- "node_modules/express-graphql/node_modules/http-errors": {
- "version": "1.8.0",
+ "node_modules/gatsby-plugin-sass/node_modules/adjust-sourcemap-loader": {
+ "version": "3.0.0",
"license": "MIT",
"dependencies": {
- "depd": "~1.1.2",
- "inherits": "2.0.4",
- "setprototypeof": "1.2.0",
- "statuses": ">= 1.5.0 < 2",
- "toidentifier": "1.0.0"
+ "loader-utils": "^2.0.0",
+ "regex-parser": "^2.2.11"
},
"engines": {
- "node": ">= 0.6"
+ "node": ">=8.9"
}
},
- "node_modules/express-graphql/node_modules/statuses": {
- "version": "1.5.0",
+ "node_modules/gatsby-plugin-sass/node_modules/ansi-styles": {
+ "version": "3.2.1",
"license": "MIT",
+ "dependencies": {
+ "color-convert": "^1.9.0"
+ },
"engines": {
- "node": ">= 0.6"
+ "node": ">=4"
}
},
- "node_modules/express-graphql/node_modules/toidentifier": {
- "version": "1.0.0",
+ "node_modules/gatsby-plugin-sass/node_modules/camelcase": {
+ "version": "5.3.1",
"license": "MIT",
"engines": {
- "node": ">=0.6"
+ "node": ">=6"
}
},
- "node_modules/express-http-proxy": {
- "version": "1.6.3",
+ "node_modules/gatsby-plugin-sass/node_modules/chalk": {
+ "version": "2.4.2",
"license": "MIT",
"dependencies": {
- "debug": "^3.0.1",
- "es6-promise": "^4.1.1",
- "raw-body": "^2.3.0"
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
},
"engines": {
- "node": ">=6.0.0"
+ "node": ">=4"
}
},
- "node_modules/express-http-proxy/node_modules/debug": {
- "version": "3.2.7",
+ "node_modules/gatsby-plugin-sass/node_modules/chalk/node_modules/supports-color": {
+ "version": "5.5.0",
"license": "MIT",
"dependencies": {
- "ms": "^2.1.1"
- }
- },
- "node_modules/express/node_modules/cookie": {
- "version": "0.6.0",
- "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz",
- "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==",
+ "has-flag": "^3.0.0"
+ },
"engines": {
- "node": ">= 0.6"
+ "node": ">=4"
}
},
- "node_modules/express/node_modules/debug": {
- "version": "2.6.9",
+ "node_modules/gatsby-plugin-sass/node_modules/color-convert": {
+ "version": "1.9.3",
"license": "MIT",
"dependencies": {
- "ms": "2.0.0"
+ "color-name": "1.1.3"
}
},
- "node_modules/express/node_modules/ms": {
- "version": "2.0.0",
- "license": "MIT"
- },
- "node_modules/express/node_modules/safe-buffer": {
- "version": "5.2.1",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
+ "node_modules/gatsby-plugin-sass/node_modules/color-name": {
+ "version": "1.1.3",
"license": "MIT"
},
- "node_modules/ext": {
+ "node_modules/gatsby-plugin-sass/node_modules/convert-source-map": {
"version": "1.7.0",
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "type": "^2.7.2"
+ "safe-buffer": "~5.1.1"
}
},
- "node_modules/ext/node_modules/type": {
- "version": "2.7.2",
- "license": "ISC"
- },
- "node_modules/extend": {
- "version": "3.0.2",
- "license": "MIT"
- },
- "node_modules/extend-shallow": {
- "version": "2.0.1",
+ "node_modules/gatsby-plugin-sass/node_modules/escape-string-regexp": {
+ "version": "1.0.5",
"license": "MIT",
- "dependencies": {
- "is-extendable": "^0.1.0"
- },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=0.8.0"
}
},
- "node_modules/external-editor": {
- "version": "3.1.0",
+ "node_modules/gatsby-plugin-sass/node_modules/has-flag": {
+ "version": "3.0.0",
"license": "MIT",
- "dependencies": {
- "chardet": "^0.7.0",
- "iconv-lite": "^0.4.24",
- "tmp": "^0.0.33"
- },
"engines": {
"node": ">=4"
}
},
- "node_modules/external-editor/node_modules/iconv-lite": {
- "version": "0.4.24",
+ "node_modules/gatsby-plugin-sass/node_modules/json5": {
+ "version": "1.0.2",
"license": "MIT",
"dependencies": {
- "safer-buffer": ">= 2.1.2 < 3"
+ "minimist": "^1.2.0"
},
- "engines": {
- "node": ">=0.10.0"
+ "bin": {
+ "json5": "lib/cli.js"
}
},
- "node_modules/external-editor/node_modules/tmp": {
- "version": "0.0.33",
+ "node_modules/gatsby-plugin-sass/node_modules/postcss": {
+ "version": "7.0.36",
"license": "MIT",
"dependencies": {
- "os-tmpdir": "~1.0.2"
+ "chalk": "^2.4.2",
+ "source-map": "^0.6.1",
+ "supports-color": "^6.1.0"
},
"engines": {
- "node": ">=0.6.0"
+ "node": ">=6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
}
},
- "node_modules/extglob": {
- "version": "2.0.4",
- "dev": true,
+ "node_modules/gatsby-plugin-sass/node_modules/resolve-url-loader": {
+ "version": "3.1.5",
"license": "MIT",
"dependencies": {
- "array-unique": "^0.3.2",
- "define-property": "^1.0.0",
- "expand-brackets": "^2.1.4",
- "extend-shallow": "^2.0.1",
- "fragment-cache": "^0.2.1",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.1"
+ "adjust-sourcemap-loader": "3.0.0",
+ "camelcase": "5.3.1",
+ "compose-function": "3.0.3",
+ "convert-source-map": "1.7.0",
+ "es6-iterator": "2.0.3",
+ "loader-utils": "^1.2.3",
+ "postcss": "7.0.36",
+ "rework": "1.0.1",
+ "rework-visit": "1.0.0",
+ "source-map": "0.6.1"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=6.0.0"
}
},
- "node_modules/extglob/node_modules/define-property": {
- "version": "1.0.0",
- "dev": true,
+ "node_modules/gatsby-plugin-sass/node_modules/resolve-url-loader/node_modules/loader-utils": {
+ "version": "1.4.2",
"license": "MIT",
"dependencies": {
- "is-descriptor": "^1.0.0"
+ "big.js": "^5.2.2",
+ "emojis-list": "^3.0.0",
+ "json5": "^1.0.1"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=4.0.0"
}
},
- "node_modules/fast-deep-equal": {
- "version": "3.1.3",
- "license": "MIT"
- },
- "node_modules/fast-defer": {
- "version": "1.1.7",
+ "node_modules/gatsby-plugin-sass/node_modules/safe-buffer": {
+ "version": "5.1.2",
"license": "MIT"
},
- "node_modules/fast-glob": {
- "version": "3.2.12",
+ "node_modules/gatsby-plugin-sass/node_modules/sass-loader": {
+ "version": "10.5.2",
"license": "MIT",
"dependencies": {
- "@nodelib/fs.stat": "^2.0.2",
- "@nodelib/fs.walk": "^1.2.3",
- "glob-parent": "^5.1.2",
- "merge2": "^1.3.0",
- "micromatch": "^4.0.4"
+ "klona": "^2.0.4",
+ "loader-utils": "^2.0.0",
+ "neo-async": "^2.6.2",
+ "schema-utils": "^3.0.0",
+ "semver": "^7.3.2"
},
"engines": {
- "node": ">=8.6.0"
+ "node": ">= 10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependencies": {
+ "fibers": ">= 3.1.0",
+ "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
+ "sass": "^1.3.0",
+ "webpack": "^4.36.0 || ^5.0.0"
+ },
+ "peerDependenciesMeta": {
+ "fibers": {
+ "optional": true
+ },
+ "node-sass": {
+ "optional": true
+ },
+ "sass": {
+ "optional": true
+ }
}
},
- "node_modules/fast-json-stable-stringify": {
- "version": "2.1.0",
- "license": "MIT"
- },
- "node_modules/fast-levenshtein": {
- "version": "2.0.6",
- "license": "MIT"
- },
- "node_modules/fast-loops": {
- "version": "1.1.3",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/fast-shallow-equal": {
- "version": "1.0.0",
- "dev": true
- },
- "node_modules/fastest-levenshtein": {
- "version": "1.0.16",
+ "node_modules/gatsby-plugin-sass/node_modules/schema-utils": {
+ "version": "3.3.0",
"license": "MIT",
+ "dependencies": {
+ "@types/json-schema": "^7.0.8",
+ "ajv": "^6.12.5",
+ "ajv-keywords": "^3.5.2"
+ },
"engines": {
- "node": ">= 4.9.1"
+ "node": ">= 10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
}
},
- "node_modules/fastest-stable-stringify": {
- "version": "2.0.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/fastparse": {
- "version": "1.1.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/fastq": {
- "version": "1.15.0",
+ "node_modules/gatsby-plugin-sass/node_modules/semver": {
+ "version": "7.6.3",
"license": "ISC",
- "dependencies": {
- "reusify": "^1.0.4"
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/faye-websocket": {
- "version": "0.11.4",
- "devOptional": true,
- "license": "Apache-2.0",
+ "node_modules/gatsby-plugin-sass/node_modules/supports-color": {
+ "version": "6.1.0",
+ "license": "MIT",
"dependencies": {
- "websocket-driver": ">=0.5.1"
+ "has-flag": "^3.0.0"
},
"engines": {
- "node": ">=0.8.0"
+ "node": ">=6"
}
},
- "node_modules/fb-watchman": {
- "version": "2.0.2",
- "license": "Apache-2.0",
- "dependencies": {
- "bser": "2.1.1"
+ "node_modules/gatsby-plugin-segment-js": {
+ "version": "3.7.2",
+ "license": "MIT",
+ "peerDependencies": {
+ "gatsby": "^2 || ^3 || ^4 || ^5"
}
},
- "node_modules/fbjs": {
- "version": "3.0.4",
+ "node_modules/gatsby-plugin-typescript": {
+ "version": "5.14.0",
"license": "MIT",
"dependencies": {
- "cross-fetch": "^3.1.5",
- "fbjs-css-vars": "^1.0.0",
- "loose-envify": "^1.0.0",
- "object-assign": "^4.1.0",
- "promise": "^7.1.1",
- "setimmediate": "^1.0.5",
- "ua-parser-js": "^0.7.30"
+ "@babel/core": "^7.20.12",
+ "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
+ "@babel/plugin-proposal-numeric-separator": "^7.18.6",
+ "@babel/plugin-proposal-optional-chaining": "^7.20.7",
+ "@babel/preset-typescript": "^7.18.6",
+ "@babel/runtime": "^7.20.13",
+ "babel-plugin-remove-graphql-queries": "^5.14.0"
+ },
+ "engines": {
+ "node": ">=18.0.0"
+ },
+ "peerDependencies": {
+ "gatsby": "^5.0.0-next"
}
},
- "node_modules/fbjs-css-vars": {
- "version": "1.0.2",
- "license": "MIT"
- },
- "node_modules/fd": {
- "version": "0.0.3",
- "license": "MIT"
- },
- "node_modules/figures": {
- "version": "3.2.0",
+ "node_modules/gatsby-plugin-utils": {
+ "version": "4.14.0",
"license": "MIT",
"dependencies": {
- "escape-string-regexp": "^1.0.5"
+ "@babel/runtime": "^7.20.13",
+ "fastq": "^1.16.0",
+ "fs-extra": "^11.2.0",
+ "gatsby-core-utils": "^4.14.0",
+ "gatsby-sharp": "^1.14.0",
+ "graphql-compose": "^9.0.10",
+ "import-from": "^4.0.0",
+ "joi": "^17.11.0",
+ "mime": "^3.0.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=18.0.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "peerDependencies": {
+ "gatsby": "^5.0.0-next",
+ "graphql": "^16.0.0"
}
},
- "node_modules/file-entry-cache": {
- "version": "6.0.1",
+ "node_modules/gatsby-react-router-scroll": {
+ "version": "6.14.0",
"license": "MIT",
"dependencies": {
- "flat-cache": "^3.0.4"
+ "@babel/runtime": "^7.20.13",
+ "prop-types": "^15.8.1"
},
"engines": {
- "node": "^10.12.0 || >=12.0.0"
+ "node": ">=18.0.0"
+ },
+ "peerDependencies": {
+ "@gatsbyjs/reach-router": "^2.0.0",
+ "react": "^18.0.0 || ^0.0.0",
+ "react-dom": "^18.0.0 || ^0.0.0"
}
},
- "node_modules/file-loader": {
- "version": "6.2.0",
+ "node_modules/gatsby-script": {
+ "version": "2.14.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18.0.0"
+ },
+ "peerDependencies": {
+ "@gatsbyjs/reach-router": "^2.0.0",
+ "react": "^18.0.0 || ^0.0.0",
+ "react-dom": "^18.0.0 || ^0.0.0"
+ }
+ },
+ "node_modules/gatsby-sharp": {
+ "version": "1.14.0",
"license": "MIT",
"dependencies": {
- "loader-utils": "^2.0.0",
- "schema-utils": "^3.0.0"
+ "sharp": "^0.32.6"
},
"engines": {
- "node": ">= 10.13.0"
+ "node": ">=18.0.0"
+ }
+ },
+ "node_modules/gatsby-source-filesystem": {
+ "version": "5.14.0",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.20.13",
+ "chokidar": "^3.5.3",
+ "file-type": "^16.5.4",
+ "fs-extra": "^11.2.0",
+ "gatsby-core-utils": "^4.14.0",
+ "mime": "^3.0.0",
+ "pretty-bytes": "^5.6.0",
+ "valid-url": "^1.0.9",
+ "xstate": "^4.38.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
+ "engines": {
+ "node": ">=18.0.0"
},
"peerDependencies": {
- "webpack": "^4.0.0 || ^5.0.0"
+ "gatsby": "^5.0.0-next"
}
},
- "node_modules/file-loader/node_modules/schema-utils": {
- "version": "3.1.2",
+ "node_modules/gatsby-transformer-react-docgen": {
+ "version": "8.14.0",
"license": "MIT",
"dependencies": {
- "@types/json-schema": "^7.0.8",
- "ajv": "^6.12.5",
- "ajv-keywords": "^3.5.2"
+ "@babel/code-frame": "^7.18.6",
+ "@babel/runtime": "^7.20.13",
+ "@babel/types": "^7.20.7",
+ "ast-types": "^0.14.2",
+ "common-tags": "^1.8.2",
+ "react-docgen": "^5.4.3"
},
"engines": {
- "node": ">= 10.13.0"
+ "node": ">=18.0.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
+ "peerDependencies": {
+ "gatsby": "^5.0.0-next"
}
},
- "node_modules/file-selector": {
- "version": "0.6.0",
+ "node_modules/gatsby-worker": {
+ "version": "2.14.0",
"license": "MIT",
"dependencies": {
- "tslib": "^2.4.0"
+ "@babel/core": "^7.20.12",
+ "@babel/runtime": "^7.20.13",
+ "fs-extra": "^11.2.0",
+ "signal-exit": "^3.0.7"
},
"engines": {
- "node": ">= 12"
+ "node": ">=18.0.0"
}
},
- "node_modules/file-type": {
- "version": "16.5.4",
+ "node_modules/gatsby/node_modules/@eslint/eslintrc": {
+ "version": "0.4.3",
"license": "MIT",
"dependencies": {
- "readable-web-to-node-stream": "^3.0.0",
- "strtok3": "^6.2.4",
- "token-types": "^4.1.1"
+ "ajv": "^6.12.4",
+ "debug": "^4.1.1",
+ "espree": "^7.3.0",
+ "globals": "^13.9.0",
+ "ignore": "^4.0.6",
+ "import-fresh": "^3.2.1",
+ "js-yaml": "^3.13.1",
+ "minimatch": "^3.0.4",
+ "strip-json-comments": "^3.1.1"
},
"engines": {
- "node": ">=10"
+ "node": "^10.12.0 || >=12.0.0"
+ }
+ },
+ "node_modules/gatsby/node_modules/@humanwhocodes/config-array": {
+ "version": "0.5.0",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@humanwhocodes/object-schema": "^1.2.0",
+ "debug": "^4.1.1",
+ "minimatch": "^3.0.4"
},
- "funding": {
- "url": "https://github.com/sindresorhus/file-type?sponsor=1"
+ "engines": {
+ "node": ">=10.10.0"
}
},
- "node_modules/filesize": {
- "version": "8.0.7",
- "license": "BSD-3-Clause",
+ "node_modules/gatsby/node_modules/@humanwhocodes/object-schema": {
+ "version": "1.2.1",
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/gatsby/node_modules/acorn": {
+ "version": "7.4.1",
+ "license": "MIT",
+ "bin": {
+ "acorn": "bin/acorn"
+ },
"engines": {
- "node": ">= 0.4.0"
+ "node": ">=0.4.0"
}
},
- "node_modules/fill-range": {
- "version": "7.1.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
- "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
+ "node_modules/gatsby/node_modules/argparse": {
+ "version": "1.0.10",
+ "license": "MIT",
"dependencies": {
- "to-regex-range": "^5.0.1"
- },
+ "sprintf-js": "~1.0.2"
+ }
+ },
+ "node_modules/gatsby/node_modules/aria-query": {
+ "version": "5.3.2",
+ "license": "Apache-2.0",
"engines": {
- "node": ">=8"
+ "node": ">= 0.4"
}
},
- "node_modules/filter-obj": {
- "version": "1.1.0",
+ "node_modules/gatsby/node_modules/ast-types-flow": {
+ "version": "0.0.8",
+ "license": "MIT"
+ },
+ "node_modules/gatsby/node_modules/axios": {
+ "version": "1.7.9",
"license": "MIT",
+ "dependencies": {
+ "follow-redirects": "^1.15.6",
+ "form-data": "^4.0.0",
+ "proxy-from-env": "^1.1.0"
+ }
+ },
+ "node_modules/gatsby/node_modules/axobject-query": {
+ "version": "4.1.0",
+ "license": "Apache-2.0",
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 0.4"
}
},
- "node_modules/finalhandler": {
- "version": "1.2.0",
+ "node_modules/gatsby/node_modules/body-parser": {
+ "version": "1.20.3",
"license": "MIT",
"dependencies": {
+ "bytes": "3.1.2",
+ "content-type": "~1.0.5",
"debug": "2.6.9",
- "encodeurl": "~1.0.2",
- "escape-html": "~1.0.3",
+ "depd": "2.0.0",
+ "destroy": "1.2.0",
+ "http-errors": "2.0.0",
+ "iconv-lite": "0.4.24",
"on-finished": "2.4.1",
- "parseurl": "~1.3.3",
- "statuses": "2.0.1",
- "unpipe": "~1.0.0"
+ "qs": "6.13.0",
+ "raw-body": "2.5.2",
+ "type-is": "~1.6.18",
+ "unpipe": "1.0.0"
},
"engines": {
- "node": ">= 0.8"
+ "node": ">= 0.8",
+ "npm": "1.2.8000 || >= 1.4.16"
}
},
- "node_modules/finalhandler/node_modules/debug": {
+ "node_modules/gatsby/node_modules/body-parser/node_modules/debug": {
"version": "2.6.9",
"license": "MIT",
"dependencies": {
"ms": "2.0.0"
}
},
- "node_modules/finalhandler/node_modules/ms": {
+ "node_modules/gatsby/node_modules/body-parser/node_modules/ms": {
"version": "2.0.0",
"license": "MIT"
},
- "node_modules/find-cache-dir": {
- "version": "3.3.2",
+ "node_modules/gatsby/node_modules/cosmiconfig": {
+ "version": "7.1.0",
"license": "MIT",
"dependencies": {
- "commondir": "^1.0.1",
- "make-dir": "^3.0.2",
- "pkg-dir": "^4.1.0"
+ "@types/parse-json": "^4.0.0",
+ "import-fresh": "^3.2.1",
+ "parse-json": "^5.0.0",
+ "path-type": "^4.0.0",
+ "yaml": "^1.10.0"
},
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/avajs/find-cache-dir?sponsor=1"
+ "node": ">=10"
}
},
- "node_modules/find-cache-dir/node_modules/make-dir": {
- "version": "3.1.0",
+ "node_modules/gatsby/node_modules/debug": {
+ "version": "4.4.0",
"license": "MIT",
"dependencies": {
- "semver": "^6.0.0"
+ "ms": "^2.1.3"
},
"engines": {
- "node": ">=8"
+ "node": ">=6.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
}
},
- "node_modules/find-replace": {
+ "node_modules/gatsby/node_modules/doctrine": {
"version": "3.0.0",
- "dev": true,
- "license": "MIT",
+ "license": "Apache-2.0",
"dependencies": {
- "array-back": "^3.0.1"
+ "esutils": "^2.0.2"
},
"engines": {
- "node": ">=4.0.0"
+ "node": ">=6.0.0"
}
},
- "node_modules/find-root": {
- "version": "1.1.0",
- "dev": true,
- "license": "MIT"
+ "node_modules/gatsby/node_modules/dotenv": {
+ "version": "8.6.0",
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=10"
+ }
},
- "node_modules/find-up": {
- "version": "4.1.0",
+ "node_modules/gatsby/node_modules/eslint": {
+ "version": "7.32.0",
"license": "MIT",
"dependencies": {
- "locate-path": "^5.0.0",
- "path-exists": "^4.0.0"
+ "@babel/code-frame": "7.12.11",
+ "@eslint/eslintrc": "^0.4.3",
+ "@humanwhocodes/config-array": "^0.5.0",
+ "ajv": "^6.10.0",
+ "chalk": "^4.0.0",
+ "cross-spawn": "^7.0.2",
+ "debug": "^4.0.1",
+ "doctrine": "^3.0.0",
+ "enquirer": "^2.3.5",
+ "escape-string-regexp": "^4.0.0",
+ "eslint-scope": "^5.1.1",
+ "eslint-utils": "^2.1.0",
+ "eslint-visitor-keys": "^2.0.0",
+ "espree": "^7.3.1",
+ "esquery": "^1.4.0",
+ "esutils": "^2.0.2",
+ "fast-deep-equal": "^3.1.3",
+ "file-entry-cache": "^6.0.1",
+ "functional-red-black-tree": "^1.0.1",
+ "glob-parent": "^5.1.2",
+ "globals": "^13.6.0",
+ "ignore": "^4.0.6",
+ "import-fresh": "^3.0.0",
+ "imurmurhash": "^0.1.4",
+ "is-glob": "^4.0.0",
+ "js-yaml": "^3.13.1",
+ "json-stable-stringify-without-jsonify": "^1.0.1",
+ "levn": "^0.4.1",
+ "lodash.merge": "^4.6.2",
+ "minimatch": "^3.0.4",
+ "natural-compare": "^1.4.0",
+ "optionator": "^0.9.1",
+ "progress": "^2.0.0",
+ "regexpp": "^3.1.0",
+ "semver": "^7.2.1",
+ "strip-ansi": "^6.0.0",
+ "strip-json-comments": "^3.1.0",
+ "table": "^6.0.9",
+ "text-table": "^0.2.0",
+ "v8-compile-cache": "^2.0.3"
+ },
+ "bin": {
+ "eslint": "bin/eslint.js"
},
"engines": {
- "node": ">=8"
+ "node": "^10.12.0 || >=12.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
}
},
- "node_modules/find-versions": {
- "version": "5.1.0",
- "dev": true,
+ "node_modules/gatsby/node_modules/eslint-config-react-app": {
+ "version": "6.0.0",
"license": "MIT",
"dependencies": {
- "semver-regex": "^4.0.5"
+ "confusing-browser-globals": "^1.0.10"
},
"engines": {
- "node": ">=12"
+ "node": "^10.12.0 || >=12.0.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "peerDependencies": {
+ "@typescript-eslint/eslint-plugin": "^4.0.0",
+ "@typescript-eslint/parser": "^4.0.0",
+ "babel-eslint": "^10.0.0",
+ "eslint": "^7.5.0",
+ "eslint-plugin-flowtype": "^5.2.0",
+ "eslint-plugin-import": "^2.22.0",
+ "eslint-plugin-jest": "^24.0.0",
+ "eslint-plugin-jsx-a11y": "^6.3.1",
+ "eslint-plugin-react": "^7.20.3",
+ "eslint-plugin-react-hooks": "^4.0.8",
+ "eslint-plugin-testing-library": "^3.9.0"
+ },
+ "peerDependenciesMeta": {
+ "eslint-plugin-jest": {
+ "optional": true
+ },
+ "eslint-plugin-testing-library": {
+ "optional": true
+ }
}
},
- "node_modules/find-yarn-workspace-root": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz",
- "integrity": "sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==",
+ "node_modules/gatsby/node_modules/eslint-plugin-flowtype": {
+ "version": "5.10.0",
+ "license": "BSD-3-Clause",
"dependencies": {
- "micromatch": "^4.0.2"
+ "lodash": "^4.17.15",
+ "string-natural-compare": "^3.0.1"
+ },
+ "engines": {
+ "node": "^10.12.0 || >=12.0.0"
+ },
+ "peerDependencies": {
+ "eslint": "^7.1.0"
}
},
- "node_modules/flat-cache": {
- "version": "3.0.4",
+ "node_modules/gatsby/node_modules/eslint-plugin-jsx-a11y": {
+ "version": "6.10.2",
"license": "MIT",
"dependencies": {
- "flatted": "^3.1.0",
- "rimraf": "^3.0.2"
+ "aria-query": "^5.3.2",
+ "array-includes": "^3.1.8",
+ "array.prototype.flatmap": "^1.3.2",
+ "ast-types-flow": "^0.0.8",
+ "axe-core": "^4.10.0",
+ "axobject-query": "^4.1.0",
+ "damerau-levenshtein": "^1.0.8",
+ "emoji-regex": "^9.2.2",
+ "hasown": "^2.0.2",
+ "jsx-ast-utils": "^3.3.5",
+ "language-tags": "^1.0.9",
+ "minimatch": "^3.1.2",
+ "object.fromentries": "^2.0.8",
+ "safe-regex-test": "^1.0.3",
+ "string.prototype.includes": "^2.0.1"
},
"engines": {
- "node": "^10.12.0 || >=12.0.0"
+ "node": ">=4.0"
+ },
+ "peerDependencies": {
+ "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9"
}
},
- "node_modules/flatted": {
- "version": "3.2.7",
- "license": "ISC"
- },
- "node_modules/focus-lock": {
- "version": "0.11.6",
- "license": "MIT",
+ "node_modules/gatsby/node_modules/eslint-scope": {
+ "version": "5.1.1",
+ "license": "BSD-2-Clause",
"dependencies": {
- "tslib": "^2.0.3"
+ "esrecurse": "^4.3.0",
+ "estraverse": "^4.1.1"
},
"engines": {
- "node": ">=10"
+ "node": ">=8.0.0"
}
},
- "node_modules/follow-redirects": {
- "version": "1.15.6",
- "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz",
- "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==",
- "funding": [
- {
- "type": "individual",
- "url": "https://github.com/sponsors/RubenVerborgh"
- }
- ],
+ "node_modules/gatsby/node_modules/eslint-utils": {
+ "version": "2.1.0",
+ "license": "MIT",
+ "dependencies": {
+ "eslint-visitor-keys": "^1.1.0"
+ },
"engines": {
- "node": ">=4.0"
+ "node": ">=6"
},
- "peerDependenciesMeta": {
- "debug": {
- "optional": true
- }
+ "funding": {
+ "url": "https://github.com/sponsors/mysticatea"
}
},
- "node_modules/font-awesome": {
- "version": "4.7.0",
- "license": "(OFL-1.1 AND MIT)",
- "peer": true,
+ "node_modules/gatsby/node_modules/eslint-utils/node_modules/eslint-visitor-keys": {
+ "version": "1.3.0",
+ "license": "Apache-2.0",
"engines": {
- "node": ">=0.10.3"
+ "node": ">=4"
}
},
- "node_modules/for-each": {
- "version": "0.3.3",
+ "node_modules/gatsby/node_modules/eslint/node_modules/@babel/code-frame": {
+ "version": "7.12.11",
"license": "MIT",
"dependencies": {
- "is-callable": "^1.1.3"
+ "@babel/highlight": "^7.10.4"
}
},
- "node_modules/for-in": {
- "version": "1.0.2",
- "dev": true,
- "license": "MIT",
+ "node_modules/gatsby/node_modules/espree": {
+ "version": "7.3.1",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "acorn": "^7.4.0",
+ "acorn-jsx": "^5.3.1",
+ "eslint-visitor-keys": "^1.3.0"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": "^10.12.0 || >=12.0.0"
}
},
- "node_modules/foreground-child": {
- "version": "2.0.0",
- "license": "ISC",
- "dependencies": {
- "cross-spawn": "^7.0.0",
- "signal-exit": "^3.0.2"
- },
+ "node_modules/gatsby/node_modules/espree/node_modules/eslint-visitor-keys": {
+ "version": "1.3.0",
+ "license": "Apache-2.0",
"engines": {
- "node": ">=8.0.0"
+ "node": ">=4"
}
},
- "node_modules/fork-ts-checker-webpack-plugin": {
- "version": "6.5.3",
- "license": "MIT",
- "dependencies": {
- "@babel/code-frame": "^7.8.3",
- "@types/json-schema": "^7.0.5",
- "chalk": "^4.1.0",
- "chokidar": "^3.4.2",
- "cosmiconfig": "^6.0.0",
- "deepmerge": "^4.2.2",
- "fs-extra": "^9.0.0",
- "glob": "^7.1.6",
- "memfs": "^3.1.2",
- "minimatch": "^3.0.4",
- "schema-utils": "2.7.0",
- "semver": "^7.3.2",
- "tapable": "^1.0.0"
- },
+ "node_modules/gatsby/node_modules/estraverse": {
+ "version": "4.3.0",
+ "license": "BSD-2-Clause",
"engines": {
- "node": ">=10",
- "yarn": ">=1.0.0"
- },
- "peerDependencies": {
- "eslint": ">= 6",
- "typescript": ">= 2.7",
- "vue-template-compiler": "*",
- "webpack": ">= 4"
- },
- "peerDependenciesMeta": {
- "eslint": {
- "optional": true
- },
- "vue-template-compiler": {
- "optional": true
- }
+ "node": ">=4.0"
}
},
- "node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": {
- "version": "6.0.0",
+ "node_modules/gatsby/node_modules/find-cache-dir": {
+ "version": "3.3.2",
"license": "MIT",
"dependencies": {
- "@types/parse-json": "^4.0.0",
- "import-fresh": "^3.1.0",
- "parse-json": "^5.0.0",
- "path-type": "^4.0.0",
- "yaml": "^1.7.2"
+ "commondir": "^1.0.1",
+ "make-dir": "^3.0.2",
+ "pkg-dir": "^4.1.0"
},
"engines": {
"node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/avajs/find-cache-dir?sponsor=1"
}
},
- "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": {
- "version": "9.1.0",
+ "node_modules/gatsby/node_modules/find-up": {
+ "version": "4.1.0",
"license": "MIT",
"dependencies": {
- "at-least-node": "^1.0.0",
- "graceful-fs": "^4.2.0",
- "jsonfile": "^6.0.1",
- "universalify": "^2.0.0"
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
},
"engines": {
- "node": ">=10"
+ "node": ">=8"
}
},
- "node_modules/fork-ts-checker-webpack-plugin/node_modules/glob": {
+ "node_modules/gatsby/node_modules/glob": {
"version": "7.2.3",
"license": "ISC",
"dependencies": {
@@ -18256,1730 +22220,1587 @@
"url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/fork-ts-checker-webpack-plugin/node_modules/lru-cache": {
- "version": "6.0.0",
+ "node_modules/gatsby/node_modules/glob-parent": {
+ "version": "5.1.2",
"license": "ISC",
"dependencies": {
- "yallist": "^4.0.0"
+ "is-glob": "^4.0.1"
},
"engines": {
- "node": ">=10"
+ "node": ">= 6"
}
},
- "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": {
- "version": "2.7.0",
+ "node_modules/gatsby/node_modules/ignore": {
+ "version": "4.0.6",
"license": "MIT",
- "dependencies": {
- "@types/json-schema": "^7.0.4",
- "ajv": "^6.12.2",
- "ajv-keywords": "^3.4.1"
- },
"engines": {
- "node": ">= 8.9.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
+ "node": ">= 4"
}
},
- "node_modules/fork-ts-checker-webpack-plugin/node_modules/semver": {
- "version": "7.5.0",
- "license": "ISC",
+ "node_modules/gatsby/node_modules/js-yaml": {
+ "version": "3.14.1",
+ "license": "MIT",
"dependencies": {
- "lru-cache": "^6.0.0"
+ "argparse": "^1.0.7",
+ "esprima": "^4.0.0"
},
"bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
+ "js-yaml": "bin/js-yaml.js"
}
},
- "node_modules/fork-ts-checker-webpack-plugin/node_modules/tapable": {
- "version": "1.1.3",
+ "node_modules/gatsby/node_modules/language-tags": {
+ "version": "1.0.9",
"license": "MIT",
+ "dependencies": {
+ "language-subtag-registry": "^0.3.20"
+ },
"engines": {
- "node": ">=6"
+ "node": ">=0.10"
}
},
- "node_modules/fork-ts-checker-webpack-plugin/node_modules/yallist": {
- "version": "4.0.0",
- "license": "ISC"
- },
- "node_modules/form-data": {
- "version": "4.0.0",
+ "node_modules/gatsby/node_modules/locate-path": {
+ "version": "5.0.0",
"license": "MIT",
"dependencies": {
- "asynckit": "^0.4.0",
- "combined-stream": "^1.0.8",
- "mime-types": "^2.1.12"
+ "p-locate": "^4.1.0"
},
"engines": {
- "node": ">= 6"
+ "node": ">=8"
}
},
- "node_modules/form-urlencoded": {
- "version": "4.1.4",
- "license": "MIT"
- },
- "node_modules/formidable": {
- "version": "1.2.6",
- "dev": true,
+ "node_modules/gatsby/node_modules/make-dir": {
+ "version": "3.1.0",
"license": "MIT",
+ "dependencies": {
+ "semver": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ },
"funding": {
- "url": "https://ko-fi.com/tunnckoCore/commissions"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/forwarded": {
- "version": "0.2.0",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
+ "node_modules/gatsby/node_modules/make-dir/node_modules/semver": {
+ "version": "6.3.1",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
}
},
- "node_modules/fraction.js": {
- "version": "4.2.0",
+ "node_modules/gatsby/node_modules/p-limit": {
+ "version": "2.3.0",
"license": "MIT",
+ "dependencies": {
+ "p-try": "^2.0.0"
+ },
"engines": {
- "node": "*"
+ "node": ">=6"
},
"funding": {
- "type": "patreon",
- "url": "https://www.patreon.com/infusion"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/fragment-cache": {
- "version": "0.2.1",
- "dev": true,
+ "node_modules/gatsby/node_modules/p-locate": {
+ "version": "4.1.0",
"license": "MIT",
"dependencies": {
- "map-cache": "^0.2.2"
+ "p-limit": "^2.2.0"
},
"engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/fresh": {
- "version": "0.5.2",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/from2": {
- "version": "2.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "inherits": "^2.0.1",
- "readable-stream": "^2.0.0"
+ "node": ">=8"
}
},
- "node_modules/fs-constants": {
- "version": "1.0.0",
+ "node_modules/gatsby/node_modules/path-to-regexp": {
+ "version": "0.1.10",
"license": "MIT"
},
- "node_modules/fs-exists-cached": {
- "version": "1.0.0",
- "license": "ISC"
- },
- "node_modules/fs-extra": {
- "version": "11.1.0",
- "dev": true,
+ "node_modules/gatsby/node_modules/pkg-dir": {
+ "version": "4.2.0",
"license": "MIT",
"dependencies": {
- "graceful-fs": "^4.2.0",
- "jsonfile": "^6.0.1",
- "universalify": "^2.0.0"
+ "find-up": "^4.0.0"
},
"engines": {
- "node": ">=14.14"
+ "node": ">=8"
}
},
- "node_modules/fs-monkey": {
- "version": "1.0.3",
- "license": "Unlicense"
- },
- "node_modules/fs-readdir-recursive": {
- "version": "1.1.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/fs.realpath": {
- "version": "1.0.0",
- "license": "ISC"
- },
- "node_modules/fsevents": {
- "version": "2.3.2",
+ "node_modules/gatsby/node_modules/postcss-loader": {
+ "version": "5.3.0",
"license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
+ "dependencies": {
+ "cosmiconfig": "^7.0.0",
+ "klona": "^2.0.4",
+ "semver": "^7.3.4"
+ },
"engines": {
- "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
- }
- },
- "node_modules/function-bind": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
- "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
+ "node": ">= 10.13.0"
+ },
"funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependencies": {
+ "postcss": "^7.0.0 || ^8.0.1",
+ "webpack": "^5.0.0"
}
},
- "node_modules/function.prototype.name": {
- "version": "1.1.5",
- "license": "MIT",
+ "node_modules/gatsby/node_modules/qs": {
+ "version": "6.13.0",
+ "license": "BSD-3-Clause",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.19.0",
- "functions-have-names": "^1.2.2"
+ "side-channel": "^1.0.6"
},
"engines": {
- "node": ">= 0.4"
+ "node": ">=0.6"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/functional-red-black-tree": {
- "version": "1.0.1",
- "license": "MIT"
+ "node_modules/gatsby/node_modules/raw-body": {
+ "version": "2.5.2",
+ "license": "MIT",
+ "dependencies": {
+ "bytes": "3.1.2",
+ "http-errors": "2.0.0",
+ "iconv-lite": "0.4.24",
+ "unpipe": "1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
},
- "node_modules/functions-have-names": {
- "version": "1.2.3",
+ "node_modules/gatsby/node_modules/schema-utils": {
+ "version": "3.3.0",
"license": "MIT",
+ "dependencies": {
+ "@types/json-schema": "^7.0.8",
+ "ajv": "^6.12.5",
+ "ajv-keywords": "^3.5.2"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
+ },
"funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
}
},
- "node_modules/fuzzy": {
- "version": "0.1.3",
- "dev": true,
+ "node_modules/gatsby/node_modules/semver": {
+ "version": "7.6.3",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
"engines": {
- "node": ">= 0.6.0"
+ "node": ">=10"
}
},
- "node_modules/gatsby": {
- "version": "4.25.7",
- "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.25.7.tgz",
- "integrity": "sha512-kspM1XokxDw2YqC2hkPKQTfWSNSq/AnY8PNYSrUM+MCsyIKFuGqSVchNonZN1g8/nCoh4jQpBYXH5Uw2Hrs6Sw==",
- "hasInstallScript": true,
+ "node_modules/gatsby/node_modules/style-loader": {
+ "version": "2.0.0",
+ "license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.14.0",
- "@babel/core": "^7.15.5",
- "@babel/eslint-parser": "^7.15.4",
- "@babel/helper-plugin-utils": "^7.14.5",
- "@babel/parser": "^7.15.5",
- "@babel/runtime": "^7.15.4",
- "@babel/traverse": "^7.15.4",
- "@babel/types": "^7.15.4",
- "@builder.io/partytown": "^0.5.2",
- "@gatsbyjs/reach-router": "^1.3.9",
- "@gatsbyjs/webpack-hot-middleware": "^2.25.2",
- "@graphql-codegen/add": "^3.1.1",
- "@graphql-codegen/core": "^2.5.1",
- "@graphql-codegen/plugin-helpers": "^2.4.2",
- "@graphql-codegen/typescript": "^2.4.8",
- "@graphql-codegen/typescript-operations": "^2.3.5",
- "@graphql-tools/code-file-loader": "^7.2.14",
- "@graphql-tools/load": "^7.5.10",
- "@jridgewell/trace-mapping": "^0.3.13",
- "@nodelib/fs.walk": "^1.2.8",
- "@parcel/cache": "2.6.2",
- "@parcel/core": "2.6.2",
- "@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
- "@types/http-proxy": "^1.17.7",
- "@typescript-eslint/eslint-plugin": "^4.33.0",
- "@typescript-eslint/parser": "^4.33.0",
- "@vercel/webpack-asset-relocator-loader": "^1.7.0",
- "acorn-loose": "^8.3.0",
- "acorn-walk": "^8.2.0",
- "address": "1.1.2",
- "anser": "^2.1.0",
- "autoprefixer": "^10.4.0",
- "axios": "^0.21.1",
- "babel-loader": "^8.2.3",
- "babel-plugin-add-module-exports": "^1.0.4",
- "babel-plugin-dynamic-import-node": "^2.3.3",
- "babel-plugin-lodash": "^3.3.4",
- "babel-plugin-remove-graphql-queries": "^4.25.0",
- "babel-preset-gatsby": "^2.25.0",
- "better-opn": "^2.1.1",
- "bluebird": "^3.7.2",
- "browserslist": "^4.17.5",
- "cache-manager": "^2.11.1",
- "chalk": "^4.1.2",
- "chokidar": "^3.5.3",
- "common-tags": "^1.8.0",
- "compression": "^1.7.4",
- "cookie": "^0.4.1",
- "core-js": "^3.22.3",
- "cors": "^2.8.5",
- "css-loader": "^5.2.7",
- "css-minimizer-webpack-plugin": "^2.0.0",
- "css.escape": "^1.5.1",
- "date-fns": "^2.25.0",
- "debug": "^3.2.7",
- "deepmerge": "^4.2.2",
- "detect-port": "^1.3.0",
- "devcert": "^1.2.0",
- "dotenv": "^8.6.0",
- "enhanced-resolve": "^5.8.3",
- "error-stack-parser": "^2.1.4",
- "eslint": "^7.32.0",
- "eslint-config-react-app": "^6.0.0",
- "eslint-plugin-flowtype": "^5.10.0",
- "eslint-plugin-import": "^2.26.0",
- "eslint-plugin-jsx-a11y": "^6.6.1",
- "eslint-plugin-react": "^7.30.1",
- "eslint-plugin-react-hooks": "^4.6.0",
- "eslint-webpack-plugin": "^2.7.0",
- "event-source-polyfill": "1.0.25",
- "execa": "^5.1.1",
- "express": "^4.17.1",
- "express-graphql": "^0.12.0",
- "express-http-proxy": "^1.6.3",
- "fastest-levenshtein": "^1.0.12",
- "fastq": "^1.13.0",
- "file-loader": "^6.2.0",
- "find-cache-dir": "^3.3.2",
- "fs-exists-cached": "1.0.0",
- "fs-extra": "^10.1.0",
- "gatsby-cli": "^4.25.0",
- "gatsby-core-utils": "^3.25.0",
- "gatsby-graphiql-explorer": "^2.25.0",
- "gatsby-legacy-polyfills": "^2.25.0",
- "gatsby-link": "^4.25.0",
- "gatsby-page-utils": "^2.25.0",
- "gatsby-parcel-config": "0.16.0",
- "gatsby-plugin-page-creator": "^4.25.0",
- "gatsby-plugin-typescript": "^4.25.0",
- "gatsby-plugin-utils": "^3.19.0",
- "gatsby-react-router-scroll": "^5.25.0",
- "gatsby-script": "^1.10.0",
- "gatsby-telemetry": "^3.25.0",
- "gatsby-worker": "^1.25.0",
- "glob": "^7.2.3",
- "globby": "^11.1.0",
- "got": "^11.8.5",
- "graphql": "^15.7.2",
- "graphql-compose": "^9.0.7",
- "graphql-playground-middleware-express": "^1.7.22",
- "graphql-tag": "^2.12.6",
- "hasha": "^5.2.2",
- "invariant": "^2.2.4",
- "is-relative": "^1.0.0",
- "is-relative-url": "^3.0.0",
- "joi": "^17.4.2",
- "json-loader": "^0.5.7",
- "latest-version": "5.1.0",
- "lmdb": "2.5.3",
- "lodash": "^4.17.21",
- "md5-file": "^5.0.0",
- "meant": "^1.0.3",
- "memoizee": "^0.4.15",
- "micromatch": "^4.0.4",
- "mime": "^2.5.2",
- "mini-css-extract-plugin": "1.6.2",
- "mitt": "^1.2.0",
- "moment": "^2.29.1",
- "multer": "^1.4.5-lts.1",
- "node-fetch": "^2.6.6",
- "node-html-parser": "^5.3.3",
- "normalize-path": "^3.0.0",
- "null-loader": "^4.0.1",
- "opentracing": "^0.14.5",
- "p-defer": "^3.0.0",
- "parseurl": "^1.3.3",
- "physical-cpu-count": "^2.0.0",
- "platform": "^1.3.6",
- "postcss": "^8.3.11",
- "postcss-flexbugs-fixes": "^5.0.2",
- "postcss-loader": "^5.3.0",
- "prompts": "^2.4.2",
- "prop-types": "^15.7.2",
- "query-string": "^6.14.1",
- "raw-loader": "^4.0.2",
- "react-dev-utils": "^12.0.1",
- "react-refresh": "^0.14.0",
- "react-server-dom-webpack": "0.0.0-experimental-c8b778b7f-20220825",
- "redux": "4.1.2",
- "redux-thunk": "^2.4.0",
- "resolve-from": "^5.0.0",
- "semver": "^7.3.7",
- "shallow-compare": "^1.2.2",
- "signal-exit": "^3.0.5",
- "slugify": "^1.6.1",
- "socket.io": "4.5.4",
- "socket.io-client": "4.5.4",
- "st": "^2.0.0",
- "stack-trace": "^0.0.10",
- "string-similarity": "^1.2.2",
- "strip-ansi": "^6.0.1",
- "style-loader": "^2.0.0",
- "terser-webpack-plugin": "^5.2.4",
- "tmp": "^0.2.1",
- "true-case-path": "^2.2.1",
- "type-of": "^2.0.1",
- "url-loader": "^4.1.1",
- "uuid": "^8.3.2",
- "webpack": "^5.61.0",
- "webpack-dev-middleware": "^4.3.0",
- "webpack-merge": "^5.8.0",
- "webpack-stats-plugin": "^1.0.3",
- "webpack-virtual-modules": "^0.3.2",
- "xstate": "4.32.1",
- "yaml-loader": "^0.8.0"
- },
- "bin": {
- "gatsby": "cli.js"
+ "loader-utils": "^2.0.0",
+ "schema-utils": "^3.0.0"
},
"engines": {
- "node": ">=14.15.0"
+ "node": ">= 10.13.0"
},
- "optionalDependencies": {
- "gatsby-sharp": "^0.19.0"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
},
"peerDependencies": {
- "react": "^16.9.0 || ^17.0.0 || ^18.0.0 || ^0.0.0",
- "react-dom": "^16.9.0 || ^17.0.0 || ^18.0.0 || ^0.0.0"
+ "webpack": "^4.0.0 || ^5.0.0"
}
},
- "node_modules/gatsby-cli": {
- "version": "4.25.0",
- "hasInstallScript": true,
+ "node_modules/gatsby/node_modules/uuid": {
+ "version": "8.3.2",
"license": "MIT",
- "dependencies": {
- "@babel/code-frame": "^7.14.0",
- "@babel/core": "^7.15.5",
- "@babel/generator": "^7.16.8",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/preset-typescript": "^7.16.7",
- "@babel/runtime": "^7.15.4",
- "@babel/template": "^7.16.7",
- "@babel/types": "^7.16.8",
- "@jridgewell/trace-mapping": "^0.3.13",
- "@types/common-tags": "^1.8.1",
- "better-opn": "^2.1.1",
- "boxen": "^5.1.2",
- "chalk": "^4.1.2",
- "clipboardy": "^2.3.0",
- "common-tags": "^1.8.2",
- "convert-hrtime": "^3.0.0",
- "create-gatsby": "^2.25.0",
- "envinfo": "^7.8.1",
- "execa": "^5.1.1",
- "fs-exists-cached": "^1.0.0",
- "fs-extra": "^10.1.0",
- "gatsby-core-utils": "^3.25.0",
- "gatsby-telemetry": "^3.25.0",
- "hosted-git-info": "^3.0.8",
- "is-valid-path": "^0.1.1",
- "joi": "^17.4.2",
- "lodash": "^4.17.21",
- "node-fetch": "^2.6.6",
- "opentracing": "^0.14.5",
- "pretty-error": "^2.1.2",
- "progress": "^2.0.3",
- "prompts": "^2.4.2",
- "redux": "4.1.2",
- "resolve-cwd": "^3.0.0",
- "semver": "^7.3.7",
- "signal-exit": "^3.0.6",
- "stack-trace": "^0.0.10",
- "strip-ansi": "^6.0.1",
- "update-notifier": "^5.1.0",
- "yargs": "^15.4.1",
- "yoga-layout-prebuilt": "^1.10.0",
- "yurnalist": "^2.1.0"
- },
"bin": {
- "gatsby": "cli.js"
- },
+ "uuid": "dist/bin/uuid"
+ }
+ },
+ "node_modules/gatsby/node_modules/yaml": {
+ "version": "1.10.2",
+ "license": "ISC",
"engines": {
- "node": ">=14.15.0"
+ "node": ">= 6"
}
},
- "node_modules/gatsby-cli/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/gensync": {
+ "version": "1.0.0-beta.2",
"license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "node": ">=6.9.0"
}
},
- "node_modules/gatsby-cli/node_modules/cliui": {
- "version": "6.0.0",
+ "node_modules/get-caller-file": {
+ "version": "2.0.5",
"license": "ISC",
- "dependencies": {
- "string-width": "^4.2.0",
- "strip-ansi": "^6.0.0",
- "wrap-ansi": "^6.2.0"
+ "engines": {
+ "node": "6.* || 8.* || >= 10.*"
}
},
- "node_modules/gatsby-cli/node_modules/color-convert": {
- "version": "2.0.1",
+ "node_modules/get-east-asian-width": {
+ "version": "1.3.0",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "color-name": "~1.1.4"
- },
"engines": {
- "node": ">=7.0.0"
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/gatsby-cli/node_modules/color-name": {
- "version": "1.1.4",
- "license": "MIT"
- },
- "node_modules/gatsby-cli/node_modules/fs-extra": {
- "version": "10.1.0",
+ "node_modules/get-intrinsic": {
+ "version": "1.2.6",
"license": "MIT",
"dependencies": {
- "graceful-fs": "^4.2.0",
- "jsonfile": "^6.0.1",
- "universalify": "^2.0.0"
+ "call-bind-apply-helpers": "^1.0.1",
+ "dunder-proto": "^1.0.0",
+ "es-define-property": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
+ "function-bind": "^1.1.2",
+ "gopd": "^1.2.0",
+ "has-symbols": "^1.1.0",
+ "hasown": "^2.0.2",
+ "math-intrinsics": "^1.0.0"
},
"engines": {
- "node": ">=12"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/gatsby-cli/node_modules/hosted-git-info": {
- "version": "3.0.8",
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
+ "node_modules/get-nonce": {
+ "version": "1.0.1",
+ "license": "MIT",
"engines": {
- "node": ">=10"
+ "node": ">=6"
}
},
- "node_modules/gatsby-cli/node_modules/lru-cache": {
- "version": "6.0.0",
- "license": "ISC",
- "dependencies": {
- "yallist": "^4.0.0"
- },
+ "node_modules/get-package-type": {
+ "version": "0.1.0",
+ "license": "MIT",
"engines": {
- "node": ">=10"
+ "node": ">=8.0.0"
}
},
- "node_modules/gatsby-cli/node_modules/redux": {
- "version": "4.1.2",
+ "node_modules/get-port": {
+ "version": "3.2.0",
"license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.9.2"
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/gatsby-cli/node_modules/semver": {
- "version": "7.5.0",
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
+ "node_modules/get-stream": {
+ "version": "6.0.1",
+ "license": "MIT",
"engines": {
"node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/gatsby-cli/node_modules/wrap-ansi": {
- "version": "6.2.0",
+ "node_modules/get-symbol-description": {
+ "version": "1.0.2",
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.0.0",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0"
+ "call-bind": "^1.0.5",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.4"
},
"engines": {
- "node": ">=8"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/gatsby-cli/node_modules/y18n": {
- "version": "4.0.3",
- "license": "ISC"
+ "node_modules/get-value": {
+ "version": "2.0.6",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "node_modules/gatsby-cli/node_modules/yallist": {
- "version": "4.0.0",
- "license": "ISC"
+ "node_modules/git-log-parser": {
+ "version": "1.2.1",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "argv-formatter": "~1.0.0",
+ "spawn-error-forwarder": "~1.0.0",
+ "split2": "~1.0.0",
+ "stream-combiner2": "~1.1.1",
+ "through2": "~2.0.0",
+ "traverse": "0.6.8"
+ }
},
- "node_modules/gatsby-cli/node_modules/yargs": {
- "version": "15.4.1",
+ "node_modules/git-log-parser/node_modules/split2": {
+ "version": "1.0.0",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "through2": "~2.0.0"
+ }
+ },
+ "node_modules/git-log-parser/node_modules/through2": {
+ "version": "2.0.5",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "cliui": "^6.0.0",
- "decamelize": "^1.2.0",
- "find-up": "^4.1.0",
- "get-caller-file": "^2.0.1",
- "require-directory": "^2.1.1",
- "require-main-filename": "^2.0.0",
- "set-blocking": "^2.0.0",
- "string-width": "^4.2.0",
- "which-module": "^2.0.0",
- "y18n": "^4.0.0",
- "yargs-parser": "^18.1.2"
- },
- "engines": {
- "node": ">=8"
+ "readable-stream": "~2.3.6",
+ "xtend": "~4.0.1"
}
},
- "node_modules/gatsby-cli/node_modules/yargs-parser": {
- "version": "18.1.3",
+ "node_modules/github-from-package": {
+ "version": "0.0.0",
+ "license": "MIT"
+ },
+ "node_modules/github-slugger": {
+ "version": "2.0.0",
+ "license": "ISC"
+ },
+ "node_modules/glob": {
+ "version": "8.1.0",
"license": "ISC",
"dependencies": {
- "camelcase": "^5.0.0",
- "decamelize": "^1.2.0"
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^5.0.1",
+ "once": "^1.3.0"
},
"engines": {
- "node": ">=6"
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/gatsby-core-utils": {
- "version": "3.25.0",
- "license": "MIT",
+ "node_modules/glob-parent": {
+ "version": "6.0.2",
+ "license": "ISC",
"dependencies": {
- "@babel/runtime": "^7.15.4",
- "ci-info": "2.0.0",
- "configstore": "^5.0.1",
- "fastq": "^1.13.0",
- "file-type": "^16.5.3",
- "fs-extra": "^10.1.0",
- "got": "^11.8.5",
- "import-from": "^4.0.0",
- "lmdb": "2.5.3",
- "lock": "^1.1.0",
- "node-object-hash": "^2.3.10",
- "proper-lockfile": "^4.1.2",
- "resolve-from": "^5.0.0",
- "tmp": "^0.2.1",
- "xdg-basedir": "^4.0.0"
+ "is-glob": "^4.0.3"
},
"engines": {
- "node": ">=14.15.0"
+ "node": ">=10.13.0"
}
},
- "node_modules/gatsby-core-utils/node_modules/ci-info": {
- "version": "2.0.0",
- "license": "MIT"
+ "node_modules/glob-to-regexp": {
+ "version": "0.4.1",
+ "license": "BSD-2-Clause"
},
- "node_modules/gatsby-core-utils/node_modules/fs-extra": {
- "version": "10.1.0",
+ "node_modules/glob/node_modules/brace-expansion": {
+ "version": "2.0.1",
"license": "MIT",
"dependencies": {
- "graceful-fs": "^4.2.0",
- "jsonfile": "^6.0.1",
- "universalify": "^2.0.0"
- },
- "engines": {
- "node": ">=12"
+ "balanced-match": "^1.0.0"
}
},
- "node_modules/gatsby-graphiql-explorer": {
- "version": "2.25.0",
- "license": "MIT",
+ "node_modules/glob/node_modules/minimatch": {
+ "version": "5.1.6",
+ "license": "ISC",
"dependencies": {
- "@babel/runtime": "^7.15.4"
+ "brace-expansion": "^2.0.1"
},
"engines": {
- "node": ">=14.15.0"
+ "node": ">=10"
}
},
- "node_modules/gatsby-legacy-polyfills": {
- "version": "2.25.0",
+ "node_modules/global-modules": {
+ "version": "2.0.0",
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.15.4",
- "core-js-compat": "3.9.0"
+ "global-prefix": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
}
},
- "node_modules/gatsby-legacy-polyfills/node_modules/core-js-compat": {
- "version": "3.9.0",
+ "node_modules/global-prefix": {
+ "version": "3.0.0",
"license": "MIT",
"dependencies": {
- "browserslist": "^4.16.3",
- "semver": "7.0.0"
+ "ini": "^1.3.5",
+ "kind-of": "^6.0.2",
+ "which": "^1.3.1"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/core-js"
+ "engines": {
+ "node": ">=6"
}
},
- "node_modules/gatsby-legacy-polyfills/node_modules/semver": {
- "version": "7.0.0",
+ "node_modules/global-prefix/node_modules/which": {
+ "version": "1.3.1",
"license": "ISC",
- "bin": {
- "semver": "bin/semver.js"
- }
- },
- "node_modules/gatsby-link": {
- "version": "4.25.0",
- "license": "MIT",
"dependencies": {
- "@types/reach__router": "^1.3.10",
- "gatsby-page-utils": "^2.25.0",
- "prop-types": "^15.8.1"
- },
- "engines": {
- "node": ">=14.15.0"
+ "isexe": "^2.0.0"
},
- "peerDependencies": {
- "@gatsbyjs/reach-router": "^1.3.5",
- "react": "^16.9.0 || ^17.0.0 || ^18.0.0 || ^0.0.0",
- "react-dom": "^16.9.0 || ^17.0.0 || ^18.0.0 || ^0.0.0"
+ "bin": {
+ "which": "bin/which"
}
},
- "node_modules/gatsby-page-utils": {
- "version": "2.25.0",
+ "node_modules/globals": {
+ "version": "13.24.0",
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.15.4",
- "bluebird": "^3.7.2",
- "chokidar": "^3.5.3",
- "fs-exists-cached": "^1.0.0",
- "gatsby-core-utils": "^3.25.0",
- "glob": "^7.2.3",
- "lodash": "^4.17.21",
- "micromatch": "^4.0.5"
+ "type-fest": "^0.20.2"
},
"engines": {
- "node": ">=14.15.0"
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/gatsby-page-utils/node_modules/glob": {
- "version": "7.2.3",
- "license": "ISC",
- "dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.1.1",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
- },
+ "node_modules/globals/node_modules/type-fest": {
+ "version": "0.20.2",
+ "license": "(MIT OR CC0-1.0)",
"engines": {
- "node": "*"
+ "node": ">=10"
},
"funding": {
- "url": "https://github.com/sponsors/isaacs"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/gatsby-parcel-config": {
- "version": "0.16.0",
+ "node_modules/globalthis": {
+ "version": "1.0.4",
"license": "MIT",
"dependencies": {
- "@gatsbyjs/parcel-namer-relative-to-cwd": "^1.10.0",
- "@parcel/bundler-default": "2.6.2",
- "@parcel/compressor-raw": "2.6.2",
- "@parcel/namer-default": "2.6.2",
- "@parcel/optimizer-terser": "2.6.2",
- "@parcel/packager-js": "2.6.2",
- "@parcel/packager-raw": "2.6.2",
- "@parcel/reporter-dev-server": "2.6.2",
- "@parcel/resolver-default": "2.6.2",
- "@parcel/runtime-js": "2.6.2",
- "@parcel/transformer-js": "2.6.2",
- "@parcel/transformer-json": "2.6.2"
+ "define-properties": "^1.2.1",
+ "gopd": "^1.0.1"
},
"engines": {
- "parcel": "2.x"
+ "node": ">= 0.4"
},
- "peerDependencies": {
- "@parcel/core": "^2.0.0"
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/gatsby-plugin-manifest": {
- "version": "4.25.0",
+ "node_modules/globby": {
+ "version": "11.1.0",
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.15.4",
- "gatsby-core-utils": "^3.25.0",
- "gatsby-plugin-utils": "^3.19.0",
- "semver": "^7.3.7",
- "sharp": "^0.30.7"
+ "array-union": "^2.1.0",
+ "dir-glob": "^3.0.1",
+ "fast-glob": "^3.2.9",
+ "ignore": "^5.2.0",
+ "merge2": "^1.4.1",
+ "slash": "^3.0.0"
},
"engines": {
- "node": ">=14.15.0"
+ "node": ">=10"
},
- "peerDependencies": {
- "gatsby": "^4.0.0-next"
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/gatsby-plugin-manifest/node_modules/detect-libc": {
- "version": "2.0.1",
- "license": "Apache-2.0",
+ "node_modules/globby/node_modules/slash": {
+ "version": "3.0.0",
+ "license": "MIT",
"engines": {
"node": ">=8"
}
},
- "node_modules/gatsby-plugin-manifest/node_modules/lru-cache": {
- "version": "6.0.0",
- "license": "ISC",
- "dependencies": {
- "yallist": "^4.0.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/gatsby-plugin-manifest/node_modules/node-addon-api": {
- "version": "5.1.0",
+ "node_modules/globjoin": {
+ "version": "0.1.4",
+ "dev": true,
"license": "MIT"
},
- "node_modules/gatsby-plugin-manifest/node_modules/semver": {
- "version": "7.5.0",
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
+ "node_modules/gopd": {
+ "version": "1.2.0",
+ "license": "MIT",
"engines": {
- "node": ">=10"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/gatsby-plugin-manifest/node_modules/sharp": {
- "version": "0.30.7",
- "hasInstallScript": true,
- "license": "Apache-2.0",
+ "node_modules/got": {
+ "version": "11.8.6",
+ "license": "MIT",
"dependencies": {
- "color": "^4.2.3",
- "detect-libc": "^2.0.1",
- "node-addon-api": "^5.0.0",
- "prebuild-install": "^7.1.1",
- "semver": "^7.3.7",
- "simple-get": "^4.0.1",
- "tar-fs": "^2.1.1",
- "tunnel-agent": "^0.6.0"
+ "@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"
},
"engines": {
- "node": ">=12.13.0"
+ "node": ">=10.19.0"
},
"funding": {
- "url": "https://opencollective.com/libvips"
+ "url": "https://github.com/sindresorhus/got?sponsor=1"
}
},
- "node_modules/gatsby-plugin-manifest/node_modules/yallist": {
- "version": "4.0.0",
+ "node_modules/graceful-fs": {
+ "version": "4.2.11",
"license": "ISC"
},
- "node_modules/gatsby-plugin-mdx": {
- "version": "3.20.0",
- "license": "MIT",
- "dependencies": {
- "@babel/core": "^7.15.5",
- "@babel/generator": "^7.15.4",
- "@babel/helper-plugin-utils": "^7.14.0",
- "@babel/plugin-proposal-object-rest-spread": "^7.14.7",
- "@babel/preset-env": "^7.15.4",
- "@babel/preset-react": "^7.14.0",
- "@babel/runtime": "^7.15.4",
- "@babel/types": "^7.15.4",
- "camelcase-css": "^2.0.1",
- "change-case": "^3.1.0",
- "core-js": "^3.22.3",
- "dataloader": "^1.4.0",
- "debug": "^4.3.1",
- "escape-string-regexp": "^1.0.5",
- "eval": "^0.1.4",
- "fs-extra": "^10.1.0",
- "gatsby-core-utils": "^3.20.0",
- "gray-matter": "^4.0.2",
- "json5": "^2.1.3",
- "loader-utils": "^1.4.0",
- "lodash": "^4.17.21",
- "mdast-util-to-string": "^1.1.0",
- "mdast-util-toc": "^3.1.0",
- "mime": "^2.4.6",
- "mkdirp": "^1.0.4",
- "p-queue": "^6.6.2",
- "pretty-bytes": "^5.3.0",
- "remark": "^10.0.1",
- "remark-retext": "^3.1.3",
- "retext-english": "^3.0.4",
- "slugify": "^1.4.4",
- "static-site-generator-webpack-plugin": "^3.4.2",
- "style-to-object": "^0.3.0",
- "underscore.string": "^3.3.5",
- "unified": "^8.4.2",
- "unist-util-map": "^1.0.5",
- "unist-util-remove": "^1.0.3",
- "unist-util-visit": "^1.4.1"
- },
- "peerDependencies": {
- "@mdx-js/mdx": "^1.0.0",
- "@mdx-js/react": "^1.0.0",
- "gatsby": "^4.0.0-next",
- "react": "^16.9.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.9.0 || ^17.0.0 || ^18.0.0"
- }
- },
- "node_modules/gatsby-plugin-mdx/node_modules/change-case": {
- "version": "3.1.0",
- "license": "MIT",
- "dependencies": {
- "camel-case": "^3.0.0",
- "constant-case": "^2.0.0",
- "dot-case": "^2.1.0",
- "header-case": "^1.0.0",
- "is-lower-case": "^1.1.0",
- "is-upper-case": "^1.1.0",
- "lower-case": "^1.1.1",
- "lower-case-first": "^1.0.0",
- "no-case": "^2.3.2",
- "param-case": "^2.1.0",
- "pascal-case": "^2.0.0",
- "path-case": "^2.1.0",
- "sentence-case": "^2.1.0",
- "snake-case": "^2.1.0",
- "swap-case": "^1.1.0",
- "title-case": "^2.1.0",
- "upper-case": "^1.1.1",
- "upper-case-first": "^1.1.0"
- }
- },
- "node_modules/gatsby-plugin-mdx/node_modules/constant-case": {
- "version": "2.0.0",
+ "node_modules/graphemer": {
+ "version": "1.4.0",
+ "license": "MIT"
+ },
+ "node_modules/graphql": {
+ "version": "16.9.0",
"license": "MIT",
- "dependencies": {
- "snake-case": "^2.1.0",
- "upper-case": "^1.1.1"
+ "engines": {
+ "node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0"
}
},
- "node_modules/gatsby-plugin-mdx/node_modules/dot-case": {
- "version": "2.1.1",
+ "node_modules/graphql-compose": {
+ "version": "9.0.11",
"license": "MIT",
"dependencies": {
- "no-case": "^2.2.0"
+ "graphql-type-json": "0.3.2"
}
},
- "node_modules/gatsby-plugin-mdx/node_modules/fs-extra": {
- "version": "10.1.0",
+ "node_modules/graphql-http": {
+ "version": "1.22.3",
"license": "MIT",
- "dependencies": {
- "graceful-fs": "^4.2.0",
- "jsonfile": "^6.0.1",
- "universalify": "^2.0.0"
- },
+ "workspaces": [
+ "implementations/**/*"
+ ],
"engines": {
"node": ">=12"
+ },
+ "peerDependencies": {
+ "graphql": ">=0.11 <=16"
}
},
- "node_modules/gatsby-plugin-mdx/node_modules/header-case": {
- "version": "1.0.1",
- "license": "MIT",
- "dependencies": {
- "no-case": "^2.2.0",
- "upper-case": "^1.1.3"
- }
- },
- "node_modules/gatsby-plugin-mdx/node_modules/is-lower-case": {
- "version": "1.1.3",
+ "node_modules/graphql-tag": {
+ "version": "2.12.6",
"license": "MIT",
"dependencies": {
- "lower-case": "^1.1.0"
+ "tslib": "^2.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "peerDependencies": {
+ "graphql": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
}
},
- "node_modules/gatsby-plugin-mdx/node_modules/is-plain-obj": {
- "version": "2.1.0",
+ "node_modules/graphql-type-json": {
+ "version": "0.3.2",
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "peerDependencies": {
+ "graphql": ">=0.8.0"
}
},
- "node_modules/gatsby-plugin-mdx/node_modules/is-upper-case": {
- "version": "1.1.2",
+ "node_modules/gray-matter": {
+ "version": "4.0.3",
"license": "MIT",
"dependencies": {
- "upper-case": "^1.1.0"
+ "js-yaml": "^3.13.1",
+ "kind-of": "^6.0.2",
+ "section-matter": "^1.0.0",
+ "strip-bom-string": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=6.0"
}
},
- "node_modules/gatsby-plugin-mdx/node_modules/loader-utils": {
- "version": "1.4.2",
+ "node_modules/gray-matter/node_modules/argparse": {
+ "version": "1.0.10",
"license": "MIT",
"dependencies": {
- "big.js": "^5.2.2",
- "emojis-list": "^3.0.0",
- "json5": "^1.0.1"
- },
- "engines": {
- "node": ">=4.0.0"
+ "sprintf-js": "~1.0.2"
}
},
- "node_modules/gatsby-plugin-mdx/node_modules/loader-utils/node_modules/json5": {
- "version": "1.0.2",
+ "node_modules/gray-matter/node_modules/js-yaml": {
+ "version": "3.14.1",
"license": "MIT",
"dependencies": {
- "minimist": "^1.2.0"
+ "argparse": "^1.0.7",
+ "esprima": "^4.0.0"
},
"bin": {
- "json5": "lib/cli.js"
+ "js-yaml": "bin/js-yaml.js"
}
},
- "node_modules/gatsby-plugin-mdx/node_modules/lower-case-first": {
- "version": "1.0.2",
+ "node_modules/growly": {
+ "version": "1.3.0",
"license": "MIT",
- "dependencies": {
- "lower-case": "^1.1.2"
- }
+ "optional": true
},
- "node_modules/gatsby-plugin-mdx/node_modules/mime": {
- "version": "2.6.0",
+ "node_modules/gzip-size": {
+ "version": "6.0.0",
"license": "MIT",
- "bin": {
- "mime": "cli.js"
+ "dependencies": {
+ "duplexer": "^0.1.2"
},
"engines": {
- "node": ">=4.0.0"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/gatsby-plugin-mdx/node_modules/mkdirp": {
- "version": "1.0.4",
+ "node_modules/handle-thing": {
+ "version": "2.0.1",
+ "license": "MIT"
+ },
+ "node_modules/handlebars": {
+ "version": "4.7.8",
+ "dev": true,
"license": "MIT",
+ "dependencies": {
+ "minimist": "^1.2.5",
+ "neo-async": "^2.6.2",
+ "source-map": "^0.6.1",
+ "wordwrap": "^1.0.0"
+ },
"bin": {
- "mkdirp": "bin/cmd.js"
+ "handlebars": "bin/handlebars"
},
"engines": {
- "node": ">=10"
+ "node": ">=0.4.7"
+ },
+ "optionalDependencies": {
+ "uglify-js": "^3.1.4"
}
},
- "node_modules/gatsby-plugin-mdx/node_modules/pascal-case": {
- "version": "2.0.1",
+ "node_modules/hard-rejection": {
+ "version": "2.1.0",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "camel-case": "^3.0.0",
- "upper-case-first": "^1.1.0"
+ "engines": {
+ "node": ">=6"
}
},
- "node_modules/gatsby-plugin-mdx/node_modules/path-case": {
- "version": "2.1.1",
+ "node_modules/harmony-reflect": {
+ "version": "1.6.2",
+ "license": "(Apache-2.0 OR MPL-1.1)"
+ },
+ "node_modules/has": {
+ "version": "1.0.4",
"license": "MIT",
- "dependencies": {
- "no-case": "^2.2.0"
+ "engines": {
+ "node": ">= 0.4.0"
}
},
- "node_modules/gatsby-plugin-mdx/node_modules/sentence-case": {
- "version": "2.1.1",
+ "node_modules/has-bigints": {
+ "version": "1.0.2",
"license": "MIT",
- "dependencies": {
- "no-case": "^2.2.0",
- "upper-case-first": "^1.1.2"
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/gatsby-plugin-mdx/node_modules/snake-case": {
- "version": "2.1.0",
+ "node_modules/has-flag": {
+ "version": "4.0.0",
"license": "MIT",
- "dependencies": {
- "no-case": "^2.2.0"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/gatsby-plugin-mdx/node_modules/swap-case": {
- "version": "1.1.2",
+ "node_modules/has-property-descriptors": {
+ "version": "1.0.2",
"license": "MIT",
"dependencies": {
- "lower-case": "^1.1.1",
- "upper-case": "^1.1.1"
+ "es-define-property": "^1.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/gatsby-plugin-mdx/node_modules/title-case": {
- "version": "2.1.1",
+ "node_modules/has-proto": {
+ "version": "1.2.0",
"license": "MIT",
"dependencies": {
- "no-case": "^2.2.0",
- "upper-case": "^1.0.3"
+ "dunder-proto": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/gatsby-plugin-mdx/node_modules/unified": {
- "version": "8.4.2",
+ "node_modules/has-symbols": {
+ "version": "1.1.0",
"license": "MIT",
- "dependencies": {
- "bail": "^1.0.0",
- "extend": "^3.0.0",
- "is-plain-obj": "^2.0.0",
- "trough": "^1.0.0",
- "vfile": "^4.0.0"
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/gatsby-plugin-mdx/node_modules/unist-util-is": {
- "version": "3.0.0",
- "license": "MIT"
- },
- "node_modules/gatsby-plugin-mdx/node_modules/unist-util-visit": {
- "version": "1.4.1",
+ "node_modules/has-tostringtag": {
+ "version": "1.0.2",
"license": "MIT",
"dependencies": {
- "unist-util-visit-parents": "^2.0.0"
+ "has-symbols": "^1.0.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/gatsby-plugin-mdx/node_modules/unist-util-visit-parents": {
- "version": "2.1.2",
+ "node_modules/has-value": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "unist-util-is": "^3.0.0"
+ "get-value": "^2.0.6",
+ "has-values": "^1.0.0",
+ "isobject": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/gatsby-plugin-mdx/node_modules/upper-case-first": {
- "version": "1.1.2",
+ "node_modules/has-values": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "upper-case": "^1.1.1"
+ "is-number": "^3.0.0",
+ "kind-of": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/gatsby-plugin-page-creator": {
- "version": "4.25.0",
+ "node_modules/has-values/node_modules/is-buffer": {
+ "version": "1.1.6",
+ "license": "MIT"
+ },
+ "node_modules/has-values/node_modules/is-number": {
+ "version": "3.0.0",
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.15.4",
- "@babel/traverse": "^7.15.4",
- "@sindresorhus/slugify": "^1.1.2",
- "chokidar": "^3.5.3",
- "fs-exists-cached": "^1.0.0",
- "fs-extra": "^10.1.0",
- "gatsby-core-utils": "^3.25.0",
- "gatsby-page-utils": "^2.25.0",
- "gatsby-plugin-utils": "^3.19.0",
- "gatsby-telemetry": "^3.25.0",
- "globby": "^11.1.0",
- "lodash": "^4.17.21"
+ "kind-of": "^3.0.2"
},
"engines": {
- "node": ">=14.15.0"
- },
- "peerDependencies": {
- "gatsby": "^4.0.0-next"
+ "node": ">=0.10.0"
}
},
- "node_modules/gatsby-plugin-page-creator/node_modules/fs-extra": {
- "version": "10.1.0",
+ "node_modules/has-values/node_modules/is-number/node_modules/kind-of": {
+ "version": "3.2.2",
"license": "MIT",
"dependencies": {
- "graceful-fs": "^4.2.0",
- "jsonfile": "^6.0.1",
- "universalify": "^2.0.0"
+ "is-buffer": "^1.1.5"
},
"engines": {
- "node": ">=12"
+ "node": ">=0.10.0"
}
},
- "node_modules/gatsby-plugin-react-axe": {
- "version": "0.5.0",
+ "node_modules/has-values/node_modules/kind-of": {
+ "version": "4.0.0",
"license": "MIT",
"dependencies": {
- "react-axe": "^3.4.1"
+ "is-buffer": "^1.1.5"
},
- "peerDependencies": {
- "gatsby": ">2.0.0-alpha"
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/gatsby-plugin-react-helmet": {
- "version": "5.25.0",
+ "node_modules/hash-wasm": {
+ "version": "4.12.0",
+ "license": "MIT"
+ },
+ "node_modules/hasha": {
+ "version": "5.2.2",
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.15.4"
+ "is-stream": "^2.0.0",
+ "type-fest": "^0.8.0"
},
"engines": {
- "node": ">=14.15.0"
+ "node": ">=8"
},
- "peerDependencies": {
- "gatsby": "^4.0.0-next",
- "react-helmet": "^5.1.3 || ^6.0.0"
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/gatsby-plugin-sass": {
- "version": "5.25.0",
+ "node_modules/hasha/node_modules/type-fest": {
+ "version": "0.8.1",
+ "license": "(MIT OR CC0-1.0)",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/hasown": {
+ "version": "2.0.2",
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.15.4",
- "resolve-url-loader": "^3.1.4",
- "sass-loader": "^10.1.1"
+ "function-bind": "^1.1.2"
},
"engines": {
- "node": ">=14.15.0"
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/hast-util-excerpt": {
+ "version": "1.0.2",
+ "license": "MIT",
+ "dependencies": {
+ "@types/hast": "^2.0.0",
+ "hast-util-truncate": "^1.0.0"
},
- "peerDependencies": {
- "gatsby": "^4.0.0-next",
- "sass": "^1.30.0"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/hast-util-has-property": {
+ "version": "1.0.4",
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/hast-util-heading-rank": {
+ "version": "1.0.1",
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby-plugin-sass/node_modules/adjust-sourcemap-loader": {
- "version": "3.0.0",
+ "node_modules/hast-util-is-element": {
+ "version": "2.1.3",
"license": "MIT",
"dependencies": {
- "loader-utils": "^2.0.0",
- "regex-parser": "^2.2.11"
+ "@types/hast": "^2.0.0",
+ "@types/unist": "^2.0.0"
},
- "engines": {
- "node": ">=8.9"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby-plugin-sass/node_modules/chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes": {
+ "version": "1.0.0",
+ "license": "MIT",
"dependencies": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
+ "@types/estree": "^1.0.0",
+ "@types/hast": "^3.0.0",
+ "comma-separated-tokens": "^2.0.0",
+ "estree-util-value-to-estree": "^3.0.0",
+ "mdast-util-mdx-jsx": "^3.0.0",
+ "property-information": "^6.0.0",
+ "space-separated-tokens": "^2.0.0",
+ "style-to-js": "^1.0.0"
},
- "engines": {
- "node": ">=4"
+ "funding": {
+ "url": "https://github.com/sponsors/remcohaszing"
}
},
- "node_modules/gatsby-plugin-sass/node_modules/chalk/node_modules/supports-color": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/@types/debug": {
+ "version": "4.1.12",
+ "license": "MIT",
"dependencies": {
- "has-flag": "^3.0.0"
- },
- "engines": {
- "node": ">=4"
+ "@types/ms": "*"
}
},
- "node_modules/gatsby-plugin-sass/node_modules/convert-source-map": {
- "version": "1.7.0",
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/@types/hast": {
+ "version": "3.0.4",
"license": "MIT",
"dependencies": {
- "safe-buffer": "~5.1.1"
+ "@types/unist": "*"
}
},
- "node_modules/gatsby-plugin-sass/node_modules/json5": {
- "version": "1.0.2",
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/@types/mdast": {
+ "version": "4.0.4",
"license": "MIT",
"dependencies": {
- "minimist": "^1.2.0"
- },
- "bin": {
- "json5": "lib/cli.js"
+ "@types/unist": "*"
}
},
- "node_modules/gatsby-plugin-sass/node_modules/lru-cache": {
- "version": "6.0.0",
- "license": "ISC",
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/@types/unist": {
+ "version": "3.0.3",
+ "license": "MIT"
+ },
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/debug": {
+ "version": "4.4.0",
+ "license": "MIT",
"dependencies": {
- "yallist": "^4.0.0"
+ "ms": "^2.1.3"
},
"engines": {
- "node": ">=10"
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
}
},
- "node_modules/gatsby-plugin-sass/node_modules/postcss": {
- "version": "7.0.36",
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/mdast-util-from-markdown": {
+ "version": "2.0.2",
"license": "MIT",
"dependencies": {
- "chalk": "^2.4.2",
- "source-map": "^0.6.1",
- "supports-color": "^6.1.0"
- },
- "engines": {
- "node": ">=6.0.0"
+ "@types/mdast": "^4.0.0",
+ "@types/unist": "^3.0.0",
+ "decode-named-character-reference": "^1.0.0",
+ "devlop": "^1.0.0",
+ "mdast-util-to-string": "^4.0.0",
+ "micromark": "^4.0.0",
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
+ "micromark-util-decode-string": "^2.0.0",
+ "micromark-util-normalize-identifier": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0",
+ "unist-util-stringify-position": "^4.0.0"
},
"funding": {
"type": "opencollective",
- "url": "https://opencollective.com/postcss/"
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby-plugin-sass/node_modules/resolve-url-loader": {
- "version": "3.1.5",
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/mdast-util-mdx-jsx": {
+ "version": "3.1.3",
"license": "MIT",
"dependencies": {
- "adjust-sourcemap-loader": "3.0.0",
- "camelcase": "5.3.1",
- "compose-function": "3.0.3",
- "convert-source-map": "1.7.0",
- "es6-iterator": "2.0.3",
- "loader-utils": "^1.2.3",
- "postcss": "7.0.36",
- "rework": "1.0.1",
- "rework-visit": "1.0.0",
- "source-map": "0.6.1"
+ "@types/estree-jsx": "^1.0.0",
+ "@types/hast": "^3.0.0",
+ "@types/mdast": "^4.0.0",
+ "@types/unist": "^3.0.0",
+ "ccount": "^2.0.0",
+ "devlop": "^1.1.0",
+ "mdast-util-from-markdown": "^2.0.0",
+ "mdast-util-to-markdown": "^2.0.0",
+ "parse-entities": "^4.0.0",
+ "stringify-entities": "^4.0.0",
+ "unist-util-stringify-position": "^4.0.0",
+ "vfile-message": "^4.0.0"
},
- "engines": {
- "node": ">=6.0.0"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby-plugin-sass/node_modules/resolve-url-loader/node_modules/loader-utils": {
- "version": "1.4.2",
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/mdast-util-phrasing": {
+ "version": "4.1.0",
"license": "MIT",
"dependencies": {
- "big.js": "^5.2.2",
- "emojis-list": "^3.0.0",
- "json5": "^1.0.1"
+ "@types/mdast": "^4.0.0",
+ "unist-util-is": "^6.0.0"
},
- "engines": {
- "node": ">=4.0.0"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby-plugin-sass/node_modules/sass-loader": {
- "version": "10.4.1",
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/mdast-util-to-markdown": {
+ "version": "2.1.2",
"license": "MIT",
"dependencies": {
- "klona": "^2.0.4",
- "loader-utils": "^2.0.0",
- "neo-async": "^2.6.2",
- "schema-utils": "^3.0.0",
- "semver": "^7.3.2"
- },
- "engines": {
- "node": ">= 10.13.0"
+ "@types/mdast": "^4.0.0",
+ "@types/unist": "^3.0.0",
+ "longest-streak": "^3.0.0",
+ "mdast-util-phrasing": "^4.0.0",
+ "mdast-util-to-string": "^4.0.0",
+ "micromark-util-classify-character": "^2.0.0",
+ "micromark-util-decode-string": "^2.0.0",
+ "unist-util-visit": "^5.0.0",
+ "zwitch": "^2.0.0"
},
"funding": {
"type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "fibers": ">= 3.1.0",
- "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
- "sass": "^1.3.0",
- "webpack": "^4.36.0 || ^5.0.0"
- },
- "peerDependenciesMeta": {
- "fibers": {
- "optional": true
- },
- "node-sass": {
- "optional": true
- },
- "sass": {
- "optional": true
- }
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby-plugin-sass/node_modules/schema-utils": {
- "version": "3.1.2",
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/mdast-util-to-string": {
+ "version": "4.0.0",
"license": "MIT",
"dependencies": {
- "@types/json-schema": "^7.0.8",
- "ajv": "^6.12.5",
- "ajv-keywords": "^3.5.2"
- },
- "engines": {
- "node": ">= 10.13.0"
+ "@types/mdast": "^4.0.0"
},
"funding": {
"type": "opencollective",
- "url": "https://opencollective.com/webpack"
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby-plugin-sass/node_modules/semver": {
- "version": "7.5.0",
- "license": "ISC",
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/micromark": {
+ "version": "4.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
"dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
+ "@types/debug": "^4.0.0",
+ "debug": "^4.0.0",
+ "decode-named-character-reference": "^1.0.0",
+ "devlop": "^1.0.0",
+ "micromark-core-commonmark": "^2.0.0",
+ "micromark-factory-space": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-chunked": "^2.0.0",
+ "micromark-util-combine-extensions": "^2.0.0",
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
+ "micromark-util-encode": "^2.0.0",
+ "micromark-util-normalize-identifier": "^2.0.0",
+ "micromark-util-resolve-all": "^2.0.0",
+ "micromark-util-sanitize-uri": "^2.0.0",
+ "micromark-util-subtokenize": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/micromark-core-commonmark": {
+ "version": "2.0.2",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "decode-named-character-reference": "^1.0.0",
+ "devlop": "^1.0.0",
+ "micromark-factory-destination": "^2.0.0",
+ "micromark-factory-label": "^2.0.0",
+ "micromark-factory-space": "^2.0.0",
+ "micromark-factory-title": "^2.0.0",
+ "micromark-factory-whitespace": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-chunked": "^2.0.0",
+ "micromark-util-classify-character": "^2.0.0",
+ "micromark-util-html-tag-name": "^2.0.0",
+ "micromark-util-normalize-identifier": "^2.0.0",
+ "micromark-util-resolve-all": "^2.0.0",
+ "micromark-util-subtokenize": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/micromark-factory-destination": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/gatsby-plugin-sass/node_modules/supports-color": {
- "version": "6.1.0",
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/micromark-factory-label": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "has-flag": "^3.0.0"
- },
- "engines": {
- "node": ">=6"
+ "devlop": "^1.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/gatsby-plugin-sass/node_modules/yallist": {
- "version": "4.0.0",
- "license": "ISC"
- },
- "node_modules/gatsby-plugin-segment-js": {
- "version": "3.7.2",
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/micromark-factory-space": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
- "peerDependencies": {
- "gatsby": "^2 || ^3 || ^4 || ^5"
+ "dependencies": {
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/gatsby-plugin-typescript": {
- "version": "4.25.0",
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/micromark-factory-title": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "@babel/core": "^7.15.5",
- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
- "@babel/plugin-proposal-numeric-separator": "^7.14.5",
- "@babel/plugin-proposal-optional-chaining": "^7.14.5",
- "@babel/preset-typescript": "^7.15.0",
- "@babel/runtime": "^7.15.4",
- "babel-plugin-remove-graphql-queries": "^4.25.0"
- },
- "engines": {
- "node": ">=14.15.0"
- },
- "peerDependencies": {
- "gatsby": "^4.0.0-next"
+ "micromark-factory-space": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/gatsby-plugin-utils": {
- "version": "3.19.0",
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/micromark-factory-whitespace": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.15.4",
- "fastq": "^1.13.0",
- "fs-extra": "^10.1.0",
- "gatsby-core-utils": "^3.25.0",
- "gatsby-sharp": "^0.19.0",
- "graphql-compose": "^9.0.7",
- "import-from": "^4.0.0",
- "joi": "^17.4.2",
- "mime": "^3.0.0"
- },
- "engines": {
- "node": ">=14.15.0"
- },
- "peerDependencies": {
- "gatsby": "^4.0.0-next",
- "graphql": "^15.0.0"
+ "micromark-factory-space": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/gatsby-plugin-utils/node_modules/fs-extra": {
- "version": "10.1.0",
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/micromark-util-character": {
+ "version": "2.1.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "graceful-fs": "^4.2.0",
- "jsonfile": "^6.0.1",
- "universalify": "^2.0.0"
- },
- "engines": {
- "node": ">=12"
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/gatsby-react-router-scroll": {
- "version": "5.25.0",
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/micromark-util-chunked": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.15.4",
- "prop-types": "^15.8.1"
- },
- "engines": {
- "node": ">=14.15.0"
- },
- "peerDependencies": {
- "@gatsbyjs/reach-router": "^1.3.5",
- "react": "^16.9.0 || ^17.0.0 || ^18.0.0 || ^0.0.0",
- "react-dom": "^16.9.0 || ^17.0.0 || ^18.0.0 || ^0.0.0"
+ "micromark-util-symbol": "^2.0.0"
}
},
- "node_modules/gatsby-script": {
- "version": "1.10.0",
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/micromark-util-classify-character": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
- "engines": {
- "node": ">=14.15.0"
- },
- "peerDependencies": {
- "@gatsbyjs/reach-router": "^1.3.5",
- "react": "^16.9.0 || ^17.0.0 || ^18.0.0 || ^0.0.0",
- "react-dom": "^16.9.0 || ^17.0.0 || ^18.0.0 || ^0.0.0"
+ "dependencies": {
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/gatsby-sharp": {
- "version": "0.19.0",
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/micromark-util-combine-extensions": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "@types/sharp": "^0.30.5",
- "sharp": "^0.30.7"
- },
- "engines": {
- "node": ">=14.15.0"
+ "micromark-util-chunked": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/gatsby-sharp/node_modules/detect-libc": {
- "version": "2.0.1",
- "license": "Apache-2.0",
- "engines": {
- "node": ">=8"
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/micromark-util-decode-numeric-character-reference": {
+ "version": "2.0.2",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "micromark-util-symbol": "^2.0.0"
}
},
- "node_modules/gatsby-sharp/node_modules/lru-cache": {
- "version": "6.0.0",
- "license": "ISC",
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/micromark-util-decode-string": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
"dependencies": {
- "yallist": "^4.0.0"
- },
- "engines": {
- "node": ">=10"
+ "decode-named-character-reference": "^1.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0"
}
},
- "node_modules/gatsby-sharp/node_modules/node-addon-api": {
- "version": "5.1.0",
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/micromark-util-encode": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT"
},
- "node_modules/gatsby-sharp/node_modules/semver": {
- "version": "7.5.0",
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/micromark-util-html-tag-name": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT"
},
- "node_modules/gatsby-sharp/node_modules/sharp": {
- "version": "0.30.7",
- "hasInstallScript": true,
- "license": "Apache-2.0",
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/micromark-util-normalize-identifier": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
"dependencies": {
- "color": "^4.2.3",
- "detect-libc": "^2.0.1",
- "node-addon-api": "^5.0.0",
- "prebuild-install": "^7.1.1",
- "semver": "^7.3.7",
- "simple-get": "^4.0.1",
- "tar-fs": "^2.1.1",
- "tunnel-agent": "^0.6.0"
- },
- "engines": {
- "node": ">=12.13.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
+ "micromark-util-symbol": "^2.0.0"
}
},
- "node_modules/gatsby-sharp/node_modules/yallist": {
- "version": "4.0.0",
- "license": "ISC"
- },
- "node_modules/gatsby-source-filesystem": {
- "version": "4.25.0",
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/micromark-util-resolve-all": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.15.4",
- "chokidar": "^3.5.3",
- "file-type": "^16.5.4",
- "fs-extra": "^10.1.0",
- "gatsby-core-utils": "^3.25.0",
- "md5-file": "^5.0.0",
- "mime": "^2.5.2",
- "pretty-bytes": "^5.4.1",
- "valid-url": "^1.0.9",
- "xstate": "4.32.1"
- },
- "engines": {
- "node": ">=14.15.0"
- },
- "peerDependencies": {
- "gatsby": "^4.0.0-next"
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/gatsby-source-filesystem/node_modules/fs-extra": {
- "version": "10.1.0",
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/micromark-util-sanitize-uri": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "graceful-fs": "^4.2.0",
- "jsonfile": "^6.0.1",
- "universalify": "^2.0.0"
- },
- "engines": {
- "node": ">=12"
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-encode": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0"
}
},
- "node_modules/gatsby-source-filesystem/node_modules/mime": {
- "version": "2.6.0",
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/micromark-util-subtokenize": {
+ "version": "2.0.3",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
- "bin": {
- "mime": "cli.js"
- },
- "engines": {
- "node": ">=4.0.0"
+ "dependencies": {
+ "devlop": "^1.0.0",
+ "micromark-util-chunked": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/gatsby-telemetry": {
- "version": "3.25.0",
- "hasInstallScript": true,
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/micromark-util-symbol": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/micromark-util-types": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/unist-util-is": {
+ "version": "6.0.0",
"license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.14.0",
- "@babel/runtime": "^7.15.4",
- "@turist/fetch": "^7.2.0",
- "@turist/time": "^0.0.2",
- "boxen": "^4.2.0",
- "configstore": "^5.0.1",
- "fs-extra": "^10.1.0",
- "gatsby-core-utils": "^3.25.0",
- "git-up": "^7.0.0",
- "is-docker": "^2.2.1",
- "lodash": "^4.17.21",
- "node-fetch": "^2.6.7"
+ "@types/unist": "^3.0.0"
},
- "engines": {
- "node": ">=14.15.0"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby-telemetry/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/unist-util-stringify-position": {
+ "version": "4.0.0",
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
+ "@types/unist": "^3.0.0"
},
"funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby-telemetry/node_modules/boxen": {
- "version": "4.2.0",
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/unist-util-visit": {
+ "version": "5.0.0",
"license": "MIT",
"dependencies": {
- "ansi-align": "^3.0.0",
- "camelcase": "^5.3.1",
- "chalk": "^3.0.0",
- "cli-boxes": "^2.2.0",
- "string-width": "^4.1.0",
- "term-size": "^2.1.0",
- "type-fest": "^0.8.1",
- "widest-line": "^3.1.0"
- },
- "engines": {
- "node": ">=8"
+ "@types/unist": "^3.0.0",
+ "unist-util-is": "^6.0.0",
+ "unist-util-visit-parents": "^6.0.0"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby-telemetry/node_modules/chalk": {
- "version": "3.0.0",
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/unist-util-visit-parents": {
+ "version": "6.0.1",
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "@types/unist": "^3.0.0",
+ "unist-util-is": "^6.0.0"
},
- "engines": {
- "node": ">=8"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby-telemetry/node_modules/color-convert": {
- "version": "2.0.1",
+ "node_modules/hast-util-properties-to-mdx-jsx-attributes/node_modules/vfile-message": {
+ "version": "4.0.2",
"license": "MIT",
"dependencies": {
- "color-name": "~1.1.4"
+ "@types/unist": "^3.0.0",
+ "unist-util-stringify-position": "^4.0.0"
},
- "engines": {
- "node": ">=7.0.0"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby-telemetry/node_modules/color-name": {
- "version": "1.1.4",
- "license": "MIT"
- },
- "node_modules/gatsby-telemetry/node_modules/fs-extra": {
- "version": "10.1.0",
+ "node_modules/hast-util-select": {
+ "version": "5.0.5",
"license": "MIT",
"dependencies": {
- "graceful-fs": "^4.2.0",
- "jsonfile": "^6.0.1",
- "universalify": "^2.0.0"
+ "@types/hast": "^2.0.0",
+ "@types/unist": "^2.0.0",
+ "bcp-47-match": "^2.0.0",
+ "comma-separated-tokens": "^2.0.0",
+ "css-selector-parser": "^1.0.0",
+ "direction": "^2.0.0",
+ "hast-util-has-property": "^2.0.0",
+ "hast-util-to-string": "^2.0.0",
+ "hast-util-whitespace": "^2.0.0",
+ "not": "^0.1.0",
+ "nth-check": "^2.0.0",
+ "property-information": "^6.0.0",
+ "space-separated-tokens": "^2.0.0",
+ "unist-util-visit": "^4.0.0",
+ "zwitch": "^2.0.0"
},
- "engines": {
- "node": ">=12"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby-telemetry/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/hast-util-select/node_modules/hast-util-has-property": {
+ "version": "2.0.1",
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby-telemetry/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/hast-util-to-estree": {
+ "version": "2.3.3",
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
+ "@types/estree": "^1.0.0",
+ "@types/estree-jsx": "^1.0.0",
+ "@types/hast": "^2.0.0",
+ "@types/unist": "^2.0.0",
+ "comma-separated-tokens": "^2.0.0",
+ "estree-util-attach-comments": "^2.0.0",
+ "estree-util-is-identifier-name": "^2.0.0",
+ "hast-util-whitespace": "^2.0.0",
+ "mdast-util-mdx-expression": "^1.0.0",
+ "mdast-util-mdxjs-esm": "^1.0.0",
+ "property-information": "^6.0.0",
+ "space-separated-tokens": "^2.0.0",
+ "style-to-object": "^0.4.1",
+ "unist-util-position": "^4.0.0",
+ "zwitch": "^2.0.0"
},
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/gatsby-telemetry/node_modules/type-fest": {
- "version": "0.8.1",
- "license": "(MIT OR CC0-1.0)",
- "engines": {
- "node": ">=8"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby-transformer-react-docgen": {
- "version": "7.25.0",
+ "node_modules/hast-util-to-jsx-runtime": {
+ "version": "2.3.2",
"license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.14.0",
- "@babel/runtime": "^7.15.4",
- "@babel/types": "^7.15.4",
- "ast-types": "^0.14.2",
- "common-tags": "^1.8.2",
- "react-docgen": "^5.4.3"
- },
- "engines": {
- "node": ">=14.15.0"
+ "@types/estree": "^1.0.0",
+ "@types/hast": "^3.0.0",
+ "@types/unist": "^3.0.0",
+ "comma-separated-tokens": "^2.0.0",
+ "devlop": "^1.0.0",
+ "estree-util-is-identifier-name": "^3.0.0",
+ "hast-util-whitespace": "^3.0.0",
+ "mdast-util-mdx-expression": "^2.0.0",
+ "mdast-util-mdx-jsx": "^3.0.0",
+ "mdast-util-mdxjs-esm": "^2.0.0",
+ "property-information": "^6.0.0",
+ "space-separated-tokens": "^2.0.0",
+ "style-to-object": "^1.0.0",
+ "unist-util-position": "^5.0.0",
+ "vfile-message": "^4.0.0"
},
- "peerDependencies": {
- "gatsby": "^4.0.0-next"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby-transformer-react-docgen/node_modules/ast-types": {
- "version": "0.14.2",
+ "node_modules/hast-util-to-jsx-runtime/node_modules/@types/debug": {
+ "version": "4.1.12",
"license": "MIT",
"dependencies": {
- "tslib": "^2.0.1"
- },
- "engines": {
- "node": ">=4"
+ "@types/ms": "*"
}
},
- "node_modules/gatsby-worker": {
- "version": "1.25.0",
+ "node_modules/hast-util-to-jsx-runtime/node_modules/@types/hast": {
+ "version": "3.0.4",
"license": "MIT",
"dependencies": {
- "@babel/core": "^7.15.5",
- "@babel/runtime": "^7.15.4"
- },
- "engines": {
- "node": ">=14.15.0"
+ "@types/unist": "*"
}
},
- "node_modules/gatsby/node_modules/@eslint/eslintrc": {
- "version": "0.4.3",
+ "node_modules/hast-util-to-jsx-runtime/node_modules/@types/mdast": {
+ "version": "4.0.4",
"license": "MIT",
"dependencies": {
- "ajv": "^6.12.4",
- "debug": "^4.1.1",
- "espree": "^7.3.0",
- "globals": "^13.9.0",
- "ignore": "^4.0.6",
- "import-fresh": "^3.2.1",
- "js-yaml": "^3.13.1",
- "minimatch": "^3.0.4",
- "strip-json-comments": "^3.1.1"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
+ "@types/unist": "*"
}
},
- "node_modules/gatsby/node_modules/@eslint/eslintrc/node_modules/debug": {
- "version": "4.3.4",
+ "node_modules/hast-util-to-jsx-runtime/node_modules/@types/unist": {
+ "version": "3.0.3",
+ "license": "MIT"
+ },
+ "node_modules/hast-util-to-jsx-runtime/node_modules/debug": {
+ "version": "4.4.0",
"license": "MIT",
"dependencies": {
- "ms": "2.1.2"
+ "ms": "^2.1.3"
},
"engines": {
"node": ">=6.0"
@@ -19990,466 +23811,732 @@
}
}
},
- "node_modules/gatsby/node_modules/@eslint/eslintrc/node_modules/ignore": {
- "version": "4.0.6",
+ "node_modules/hast-util-to-jsx-runtime/node_modules/estree-util-is-identifier-name": {
+ "version": "3.0.0",
"license": "MIT",
- "engines": {
- "node": ">= 4"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby/node_modules/@humanwhocodes/config-array": {
- "version": "0.5.0",
- "license": "Apache-2.0",
+ "node_modules/hast-util-to-jsx-runtime/node_modules/hast-util-whitespace": {
+ "version": "3.0.0",
+ "license": "MIT",
"dependencies": {
- "@humanwhocodes/object-schema": "^1.2.0",
- "debug": "^4.1.1",
- "minimatch": "^3.0.4"
+ "@types/hast": "^3.0.0"
},
- "engines": {
- "node": ">=10.10.0"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby/node_modules/@humanwhocodes/config-array/node_modules/debug": {
- "version": "4.3.4",
+ "node_modules/hast-util-to-jsx-runtime/node_modules/inline-style-parser": {
+ "version": "0.2.4",
+ "license": "MIT"
+ },
+ "node_modules/hast-util-to-jsx-runtime/node_modules/mdast-util-from-markdown": {
+ "version": "2.0.2",
"license": "MIT",
"dependencies": {
- "ms": "2.1.2"
- },
- "engines": {
- "node": ">=6.0"
+ "@types/mdast": "^4.0.0",
+ "@types/unist": "^3.0.0",
+ "decode-named-character-reference": "^1.0.0",
+ "devlop": "^1.0.0",
+ "mdast-util-to-string": "^4.0.0",
+ "micromark": "^4.0.0",
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
+ "micromark-util-decode-string": "^2.0.0",
+ "micromark-util-normalize-identifier": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0",
+ "unist-util-stringify-position": "^4.0.0"
},
- "peerDependenciesMeta": {
- "supports-color": {
- "optional": true
- }
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin": {
- "version": "4.33.0",
+ "node_modules/hast-util-to-jsx-runtime/node_modules/mdast-util-mdx-expression": {
+ "version": "2.0.1",
"license": "MIT",
"dependencies": {
- "@typescript-eslint/experimental-utils": "4.33.0",
- "@typescript-eslint/scope-manager": "4.33.0",
- "debug": "^4.3.1",
- "functional-red-black-tree": "^1.0.1",
- "ignore": "^5.1.8",
- "regexpp": "^3.1.0",
- "semver": "^7.3.5",
- "tsutils": "^3.21.0"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
+ "@types/estree-jsx": "^1.0.0",
+ "@types/hast": "^3.0.0",
+ "@types/mdast": "^4.0.0",
+ "devlop": "^1.0.0",
+ "mdast-util-from-markdown": "^2.0.0",
+ "mdast-util-to-markdown": "^2.0.0"
},
"funding": {
"type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "@typescript-eslint/parser": "^4.0.0",
- "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin/node_modules/debug": {
- "version": "4.3.4",
+ "node_modules/hast-util-to-jsx-runtime/node_modules/mdast-util-mdx-jsx": {
+ "version": "3.1.3",
"license": "MIT",
"dependencies": {
- "ms": "2.1.2"
- },
- "engines": {
- "node": ">=6.0"
+ "@types/estree-jsx": "^1.0.0",
+ "@types/hast": "^3.0.0",
+ "@types/mdast": "^4.0.0",
+ "@types/unist": "^3.0.0",
+ "ccount": "^2.0.0",
+ "devlop": "^1.1.0",
+ "mdast-util-from-markdown": "^2.0.0",
+ "mdast-util-to-markdown": "^2.0.0",
+ "parse-entities": "^4.0.0",
+ "stringify-entities": "^4.0.0",
+ "unist-util-stringify-position": "^4.0.0",
+ "vfile-message": "^4.0.0"
},
- "peerDependenciesMeta": {
- "supports-color": {
- "optional": true
- }
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby/node_modules/@typescript-eslint/parser": {
- "version": "4.33.0",
- "license": "BSD-2-Clause",
+ "node_modules/hast-util-to-jsx-runtime/node_modules/mdast-util-mdxjs-esm": {
+ "version": "2.0.1",
+ "license": "MIT",
"dependencies": {
- "@typescript-eslint/scope-manager": "4.33.0",
- "@typescript-eslint/types": "4.33.0",
- "@typescript-eslint/typescript-estree": "4.33.0",
- "debug": "^4.3.1"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
+ "@types/estree-jsx": "^1.0.0",
+ "@types/hast": "^3.0.0",
+ "@types/mdast": "^4.0.0",
+ "devlop": "^1.0.0",
+ "mdast-util-from-markdown": "^2.0.0",
+ "mdast-util-to-markdown": "^2.0.0"
},
"funding": {
"type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby/node_modules/@typescript-eslint/parser/node_modules/debug": {
- "version": "4.3.4",
+ "node_modules/hast-util-to-jsx-runtime/node_modules/mdast-util-phrasing": {
+ "version": "4.1.0",
"license": "MIT",
"dependencies": {
- "ms": "2.1.2"
- },
- "engines": {
- "node": ">=6.0"
+ "@types/mdast": "^4.0.0",
+ "unist-util-is": "^6.0.0"
},
- "peerDependenciesMeta": {
- "supports-color": {
- "optional": true
- }
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby/node_modules/@typescript-eslint/scope-manager": {
- "version": "4.33.0",
+ "node_modules/hast-util-to-jsx-runtime/node_modules/mdast-util-to-markdown": {
+ "version": "2.1.2",
"license": "MIT",
"dependencies": {
- "@typescript-eslint/types": "4.33.0",
- "@typescript-eslint/visitor-keys": "4.33.0"
- },
- "engines": {
- "node": "^8.10.0 || ^10.13.0 || >=11.10.1"
+ "@types/mdast": "^4.0.0",
+ "@types/unist": "^3.0.0",
+ "longest-streak": "^3.0.0",
+ "mdast-util-phrasing": "^4.0.0",
+ "mdast-util-to-string": "^4.0.0",
+ "micromark-util-classify-character": "^2.0.0",
+ "micromark-util-decode-string": "^2.0.0",
+ "unist-util-visit": "^5.0.0",
+ "zwitch": "^2.0.0"
},
"funding": {
"type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby/node_modules/@typescript-eslint/types": {
- "version": "4.33.0",
+ "node_modules/hast-util-to-jsx-runtime/node_modules/mdast-util-to-string": {
+ "version": "4.0.0",
"license": "MIT",
- "engines": {
- "node": "^8.10.0 || ^10.13.0 || >=11.10.1"
+ "dependencies": {
+ "@types/mdast": "^4.0.0"
},
"funding": {
"type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby/node_modules/@typescript-eslint/typescript-estree": {
- "version": "4.33.0",
- "license": "BSD-2-Clause",
+ "node_modules/hast-util-to-jsx-runtime/node_modules/micromark": {
+ "version": "4.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
"dependencies": {
- "@typescript-eslint/types": "4.33.0",
- "@typescript-eslint/visitor-keys": "4.33.0",
- "debug": "^4.3.1",
- "globby": "^11.0.3",
- "is-glob": "^4.0.1",
- "semver": "^7.3.5",
- "tsutils": "^3.21.0"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
+ "@types/debug": "^4.0.0",
+ "debug": "^4.0.0",
+ "decode-named-character-reference": "^1.0.0",
+ "devlop": "^1.0.0",
+ "micromark-core-commonmark": "^2.0.0",
+ "micromark-factory-space": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-chunked": "^2.0.0",
+ "micromark-util-combine-extensions": "^2.0.0",
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
+ "micromark-util-encode": "^2.0.0",
+ "micromark-util-normalize-identifier": "^2.0.0",
+ "micromark-util-resolve-all": "^2.0.0",
+ "micromark-util-sanitize-uri": "^2.0.0",
+ "micromark-util-subtokenize": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/hast-util-to-jsx-runtime/node_modules/micromark-core-commonmark": {
+ "version": "2.0.2",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "decode-named-character-reference": "^1.0.0",
+ "devlop": "^1.0.0",
+ "micromark-factory-destination": "^2.0.0",
+ "micromark-factory-label": "^2.0.0",
+ "micromark-factory-space": "^2.0.0",
+ "micromark-factory-title": "^2.0.0",
+ "micromark-factory-whitespace": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-chunked": "^2.0.0",
+ "micromark-util-classify-character": "^2.0.0",
+ "micromark-util-html-tag-name": "^2.0.0",
+ "micromark-util-normalize-identifier": "^2.0.0",
+ "micromark-util-resolve-all": "^2.0.0",
+ "micromark-util-subtokenize": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/hast-util-to-jsx-runtime/node_modules/micromark-factory-destination": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
}
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/gatsby/node_modules/@typescript-eslint/typescript-estree/node_modules/debug": {
- "version": "4.3.4",
+ "node_modules/hast-util-to-jsx-runtime/node_modules/micromark-factory-label": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "ms": "2.1.2"
- },
- "engines": {
- "node": ">=6.0"
- },
- "peerDependenciesMeta": {
- "supports-color": {
- "optional": true
+ "devlop": "^1.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/hast-util-to-jsx-runtime/node_modules/micromark-factory-space": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
}
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/gatsby/node_modules/@typescript-eslint/visitor-keys": {
- "version": "4.33.0",
+ "node_modules/hast-util-to-jsx-runtime/node_modules/micromark-factory-title": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "@typescript-eslint/types": "4.33.0",
- "eslint-visitor-keys": "^2.0.0"
- },
- "engines": {
- "node": "^8.10.0 || ^10.13.0 || >=11.10.1"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
+ "micromark-factory-space": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/gatsby/node_modules/acorn": {
- "version": "7.4.1",
+ "node_modules/hast-util-to-jsx-runtime/node_modules/micromark-factory-whitespace": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
- "bin": {
- "acorn": "bin/acorn"
- },
- "engines": {
- "node": ">=0.4.0"
+ "dependencies": {
+ "micromark-factory-space": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/gatsby/node_modules/acorn-walk": {
- "version": "8.2.0",
+ "node_modules/hast-util-to-jsx-runtime/node_modules/micromark-util-character": {
+ "version": "2.1.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
- "engines": {
- "node": ">=0.4.0"
+ "dependencies": {
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/gatsby/node_modules/axios": {
- "version": "0.21.4",
+ "node_modules/hast-util-to-jsx-runtime/node_modules/micromark-util-chunked": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "follow-redirects": "^1.14.0"
+ "micromark-util-symbol": "^2.0.0"
}
},
- "node_modules/gatsby/node_modules/debug": {
- "version": "3.2.7",
+ "node_modules/hast-util-to-jsx-runtime/node_modules/micromark-util-classify-character": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "ms": "^2.1.1"
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/gatsby/node_modules/dotenv": {
- "version": "8.6.0",
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">=10"
+ "node_modules/hast-util-to-jsx-runtime/node_modules/micromark-util-combine-extensions": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "micromark-util-chunked": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/gatsby/node_modules/escape-string-regexp": {
- "version": "4.0.0",
+ "node_modules/hast-util-to-jsx-runtime/node_modules/micromark-util-decode-numeric-character-reference": {
+ "version": "2.0.2",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
- "engines": {
- "node": ">=10"
+ "dependencies": {
+ "micromark-util-symbol": "^2.0.0"
+ }
+ },
+ "node_modules/hast-util-to-jsx-runtime/node_modules/micromark-util-decode-string": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "decode-named-character-reference": "^1.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0"
+ }
+ },
+ "node_modules/hast-util-to-jsx-runtime/node_modules/micromark-util-encode": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/hast-util-to-jsx-runtime/node_modules/micromark-util-html-tag-name": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/hast-util-to-jsx-runtime/node_modules/micromark-util-normalize-identifier": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "micromark-util-symbol": "^2.0.0"
+ }
+ },
+ "node_modules/hast-util-to-jsx-runtime/node_modules/micromark-util-resolve-all": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/hast-util-to-jsx-runtime/node_modules/micromark-util-sanitize-uri": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-encode": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0"
+ }
+ },
+ "node_modules/hast-util-to-jsx-runtime/node_modules/micromark-util-subtokenize": {
+ "version": "2.0.3",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "devlop": "^1.0.0",
+ "micromark-util-chunked": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/hast-util-to-jsx-runtime/node_modules/micromark-util-symbol": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/hast-util-to-jsx-runtime/node_modules/micromark-util-types": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/hast-util-to-jsx-runtime/node_modules/style-to-object": {
+ "version": "1.0.8",
+ "license": "MIT",
+ "dependencies": {
+ "inline-style-parser": "0.2.4"
+ }
+ },
+ "node_modules/hast-util-to-jsx-runtime/node_modules/unist-util-is": {
+ "version": "6.0.0",
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^3.0.0"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby/node_modules/eslint": {
- "version": "7.32.0",
+ "node_modules/hast-util-to-jsx-runtime/node_modules/unist-util-position": {
+ "version": "5.0.0",
"license": "MIT",
"dependencies": {
- "@babel/code-frame": "7.12.11",
- "@eslint/eslintrc": "^0.4.3",
- "@humanwhocodes/config-array": "^0.5.0",
- "ajv": "^6.10.0",
- "chalk": "^4.0.0",
- "cross-spawn": "^7.0.2",
- "debug": "^4.0.1",
- "doctrine": "^3.0.0",
- "enquirer": "^2.3.5",
- "escape-string-regexp": "^4.0.0",
- "eslint-scope": "^5.1.1",
- "eslint-utils": "^2.1.0",
- "eslint-visitor-keys": "^2.0.0",
- "espree": "^7.3.1",
- "esquery": "^1.4.0",
- "esutils": "^2.0.2",
- "fast-deep-equal": "^3.1.3",
- "file-entry-cache": "^6.0.1",
- "functional-red-black-tree": "^1.0.1",
- "glob-parent": "^5.1.2",
- "globals": "^13.6.0",
- "ignore": "^4.0.6",
- "import-fresh": "^3.0.0",
- "imurmurhash": "^0.1.4",
- "is-glob": "^4.0.0",
- "js-yaml": "^3.13.1",
- "json-stable-stringify-without-jsonify": "^1.0.1",
- "levn": "^0.4.1",
- "lodash.merge": "^4.6.2",
- "minimatch": "^3.0.4",
- "natural-compare": "^1.4.0",
- "optionator": "^0.9.1",
- "progress": "^2.0.0",
- "regexpp": "^3.1.0",
- "semver": "^7.2.1",
- "strip-ansi": "^6.0.0",
- "strip-json-comments": "^3.1.0",
- "table": "^6.0.9",
- "text-table": "^0.2.0",
- "v8-compile-cache": "^2.0.3"
- },
- "bin": {
- "eslint": "bin/eslint.js"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
+ "@types/unist": "^3.0.0"
},
"funding": {
- "url": "https://opencollective.com/eslint"
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby/node_modules/eslint-config-react-app": {
- "version": "6.0.0",
+ "node_modules/hast-util-to-jsx-runtime/node_modules/unist-util-stringify-position": {
+ "version": "4.0.0",
"license": "MIT",
"dependencies": {
- "confusing-browser-globals": "^1.0.10"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
- },
- "peerDependencies": {
- "@typescript-eslint/eslint-plugin": "^4.0.0",
- "@typescript-eslint/parser": "^4.0.0",
- "babel-eslint": "^10.0.0",
- "eslint": "^7.5.0",
- "eslint-plugin-flowtype": "^5.2.0",
- "eslint-plugin-import": "^2.22.0",
- "eslint-plugin-jest": "^24.0.0",
- "eslint-plugin-jsx-a11y": "^6.3.1",
- "eslint-plugin-react": "^7.20.3",
- "eslint-plugin-react-hooks": "^4.0.8",
- "eslint-plugin-testing-library": "^3.9.0"
+ "@types/unist": "^3.0.0"
},
- "peerDependenciesMeta": {
- "eslint-plugin-jest": {
- "optional": true
- },
- "eslint-plugin-testing-library": {
- "optional": true
- }
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby/node_modules/eslint-plugin-flowtype": {
- "version": "5.10.0",
- "license": "BSD-3-Clause",
+ "node_modules/hast-util-to-jsx-runtime/node_modules/unist-util-visit": {
+ "version": "5.0.0",
+ "license": "MIT",
"dependencies": {
- "lodash": "^4.17.15",
- "string-natural-compare": "^3.0.1"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
+ "@types/unist": "^3.0.0",
+ "unist-util-is": "^6.0.0",
+ "unist-util-visit-parents": "^6.0.0"
},
- "peerDependencies": {
- "eslint": "^7.1.0"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/hast-util-to-jsx-runtime/node_modules/unist-util-visit-parents": {
+ "version": "6.0.1",
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^3.0.0",
+ "unist-util-is": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby/node_modules/eslint-utils": {
- "version": "2.1.0",
+ "node_modules/hast-util-to-jsx-runtime/node_modules/vfile-message": {
+ "version": "4.0.2",
"license": "MIT",
"dependencies": {
- "eslint-visitor-keys": "^1.1.0"
- },
- "engines": {
- "node": ">=6"
+ "@types/unist": "^3.0.0",
+ "unist-util-stringify-position": "^4.0.0"
},
"funding": {
- "url": "https://github.com/sponsors/mysticatea"
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby/node_modules/eslint-utils/node_modules/eslint-visitor-keys": {
- "version": "1.3.0",
- "license": "Apache-2.0",
- "engines": {
- "node": ">=4"
+ "node_modules/hast-util-to-string": {
+ "version": "2.0.0",
+ "license": "MIT",
+ "dependencies": {
+ "@types/hast": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby/node_modules/eslint/node_modules/@babel/code-frame": {
- "version": "7.12.11",
+ "node_modules/hast-util-to-text": {
+ "version": "3.1.2",
"license": "MIT",
"dependencies": {
- "@babel/highlight": "^7.10.4"
+ "@types/hast": "^2.0.0",
+ "@types/unist": "^2.0.0",
+ "hast-util-is-element": "^2.0.0",
+ "unist-util-find-after": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby/node_modules/eslint/node_modules/debug": {
- "version": "4.3.4",
+ "node_modules/hast-util-truncate": {
+ "version": "1.0.2",
"license": "MIT",
"dependencies": {
- "ms": "2.1.2"
- },
- "engines": {
- "node": ">=6.0"
+ "@types/hast": "^2.0.0",
+ "micromark-util-character": "^1.0.0"
},
- "peerDependenciesMeta": {
- "supports-color": {
- "optional": true
- }
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby/node_modules/eslint/node_modules/ignore": {
- "version": "4.0.6",
+ "node_modules/hast-util-whitespace": {
+ "version": "2.0.1",
"license": "MIT",
- "engines": {
- "node": ">= 4"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/gatsby/node_modules/espree": {
- "version": "7.3.1",
- "license": "BSD-2-Clause",
+ "node_modules/he": {
+ "version": "1.2.0",
+ "license": "MIT",
+ "bin": {
+ "he": "bin/he"
+ }
+ },
+ "node_modules/header-case": {
+ "version": "2.0.4",
+ "license": "MIT",
"dependencies": {
- "acorn": "^7.4.0",
- "acorn-jsx": "^5.3.1",
- "eslint-visitor-keys": "^1.3.0"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
+ "capital-case": "^1.0.4",
+ "tslib": "^2.0.3"
}
},
- "node_modules/gatsby/node_modules/espree/node_modules/eslint-visitor-keys": {
- "version": "1.3.0",
- "license": "Apache-2.0",
+ "node_modules/hexoid": {
+ "version": "2.0.0",
+ "license": "MIT",
"engines": {
- "node": ">=4"
+ "node": ">=8"
}
},
- "node_modules/gatsby/node_modules/fs-extra": {
- "version": "10.1.0",
+ "node_modules/history": {
+ "version": "4.10.1",
"license": "MIT",
"dependencies": {
- "graceful-fs": "^4.2.0",
- "jsonfile": "^6.0.1",
- "universalify": "^2.0.0"
- },
- "engines": {
- "node": ">=12"
+ "@babel/runtime": "^7.1.2",
+ "loose-envify": "^1.2.0",
+ "resolve-pathname": "^3.0.0",
+ "tiny-invariant": "^1.0.2",
+ "tiny-warning": "^1.0.0",
+ "value-equal": "^1.0.1"
}
},
- "node_modules/gatsby/node_modules/glob": {
- "version": "7.2.3",
- "license": "ISC",
+ "node_modules/hoist-non-react-statics": {
+ "version": "3.3.2",
+ "license": "BSD-3-Clause",
"dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.1.1",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
- },
+ "react-is": "^16.7.0"
+ }
+ },
+ "node_modules/hook-std": {
+ "version": "3.0.0",
+ "dev": true,
+ "license": "MIT",
"engines": {
- "node": "*"
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"funding": {
- "url": "https://github.com/sponsors/isaacs"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/gatsby/node_modules/globals": {
- "version": "13.20.0",
- "license": "MIT",
+ "node_modules/hosted-git-info": {
+ "version": "3.0.8",
+ "license": "ISC",
"dependencies": {
- "type-fest": "^0.20.2"
+ "lru-cache": "^6.0.0"
},
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=10"
}
},
- "node_modules/gatsby/node_modules/lru-cache": {
+ "node_modules/hosted-git-info/node_modules/lru-cache": {
"version": "6.0.0",
"license": "ISC",
"dependencies": {
@@ -20459,570 +24546,794 @@
"node": ">=10"
}
},
- "node_modules/gatsby/node_modules/mime": {
- "version": "2.6.0",
+ "node_modules/hosted-git-info/node_modules/yallist": {
+ "version": "4.0.0",
+ "license": "ISC"
+ },
+ "node_modules/hpack.js": {
+ "version": "2.1.6",
"license": "MIT",
- "bin": {
- "mime": "cli.js"
- },
- "engines": {
- "node": ">=4.0.0"
+ "dependencies": {
+ "inherits": "^2.0.1",
+ "obuf": "^1.0.0",
+ "readable-stream": "^2.0.1",
+ "wbuf": "^1.1.0"
}
},
- "node_modules/gatsby/node_modules/postcss-loader": {
- "version": "5.3.0",
+ "node_modules/html-encoding-sniffer": {
+ "version": "3.0.0",
"license": "MIT",
"dependencies": {
- "cosmiconfig": "^7.0.0",
- "klona": "^2.0.4",
- "semver": "^7.3.4"
+ "whatwg-encoding": "^2.0.0"
},
"engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
+ "node": ">=12"
+ }
+ },
+ "node_modules/html-entities": {
+ "version": "2.5.2",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/mdevils"
+ },
+ {
+ "type": "patreon",
+ "url": "https://patreon.com/mdevils"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/html-escaper": {
+ "version": "2.0.2",
+ "license": "MIT"
+ },
+ "node_modules/html-loader": {
+ "version": "0.5.5",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "es6-templates": "^0.2.3",
+ "fastparse": "^1.1.1",
+ "html-minifier": "^3.5.8",
+ "loader-utils": "^1.1.0",
+ "object-assign": "^4.1.1"
+ }
+ },
+ "node_modules/html-loader/node_modules/json5": {
+ "version": "1.0.2",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "minimist": "^1.2.0"
},
- "peerDependencies": {
- "postcss": "^7.0.0 || ^8.0.1",
- "webpack": "^5.0.0"
+ "bin": {
+ "json5": "lib/cli.js"
}
},
- "node_modules/gatsby/node_modules/query-string": {
- "version": "6.14.1",
+ "node_modules/html-loader/node_modules/loader-utils": {
+ "version": "1.4.2",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "decode-uri-component": "^0.2.0",
- "filter-obj": "^1.1.0",
- "split-on-first": "^1.0.0",
- "strict-uri-encode": "^2.0.0"
+ "big.js": "^5.2.2",
+ "emojis-list": "^3.0.0",
+ "json5": "^1.0.1"
},
"engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=4.0.0"
}
},
- "node_modules/gatsby/node_modules/react-server-dom-webpack": {
- "version": "0.0.0-experimental-c8b778b7f-20220825",
+ "node_modules/html-minifier": {
+ "version": "3.5.21",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "acorn": "^6.2.1",
- "loose-envify": "^1.1.0",
- "neo-async": "^2.6.1"
+ "camel-case": "3.0.x",
+ "clean-css": "4.2.x",
+ "commander": "2.17.x",
+ "he": "1.2.x",
+ "param-case": "2.1.x",
+ "relateurl": "0.2.x",
+ "uglify-js": "3.4.x"
},
- "engines": {
- "node": ">=0.10.0"
+ "bin": {
+ "html-minifier": "cli.js"
},
- "peerDependencies": {
- "react": "0.0.0-experimental-c8b778b7f-20220825",
- "webpack": "^5.59.0"
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/gatsby/node_modules/react-server-dom-webpack/node_modules/acorn": {
- "version": "6.4.2",
+ "node_modules/html-minifier-terser": {
+ "version": "6.1.0",
"license": "MIT",
+ "dependencies": {
+ "camel-case": "^4.1.2",
+ "clean-css": "^5.2.2",
+ "commander": "^8.3.0",
+ "he": "^1.2.0",
+ "param-case": "^3.0.4",
+ "relateurl": "^0.2.7",
+ "terser": "^5.10.0"
+ },
"bin": {
- "acorn": "bin/acorn"
+ "html-minifier-terser": "cli.js"
},
"engines": {
- "node": ">=0.4.0"
+ "node": ">=12"
}
},
- "node_modules/gatsby/node_modules/redux": {
- "version": "4.1.2",
+ "node_modules/html-minifier-terser/node_modules/commander": {
+ "version": "8.3.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 12"
+ }
+ },
+ "node_modules/html-minifier/node_modules/camel-case": {
+ "version": "3.0.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.9.2"
+ "no-case": "^2.2.0",
+ "upper-case": "^1.1.1"
}
},
- "node_modules/gatsby/node_modules/schema-utils": {
- "version": "3.1.2",
+ "node_modules/html-minifier/node_modules/clean-css": {
+ "version": "4.2.4",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/json-schema": "^7.0.8",
- "ajv": "^6.12.5",
- "ajv-keywords": "^3.5.2"
+ "source-map": "~0.6.0"
},
"engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
+ "node": ">= 4.0"
}
},
- "node_modules/gatsby/node_modules/semver": {
- "version": "7.5.0",
- "license": "ISC",
+ "node_modules/html-minifier/node_modules/commander": {
+ "version": "2.17.1",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/html-minifier/node_modules/lower-case": {
+ "version": "1.1.4",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/html-minifier/node_modules/no-case": {
+ "version": "2.3.2",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
+ "lower-case": "^1.1.1"
+ }
+ },
+ "node_modules/html-minifier/node_modules/param-case": {
+ "version": "2.1.1",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "no-case": "^2.2.0"
+ }
+ },
+ "node_modules/html-minifier/node_modules/upper-case": {
+ "version": "1.1.3",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/html-tags": {
+ "version": "3.3.1",
+ "dev": true,
+ "license": "MIT",
"engines": {
- "node": ">=10"
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/gatsby/node_modules/style-loader": {
- "version": "2.0.0",
+ "node_modules/html-url-attributes": {
+ "version": "3.0.1",
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/html-webpack-plugin": {
+ "version": "5.5.3",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "loader-utils": "^2.0.0",
- "schema-utils": "^3.0.0"
+ "@types/html-minifier-terser": "^6.0.0",
+ "html-minifier-terser": "^6.0.2",
+ "lodash": "^4.17.21",
+ "pretty-error": "^4.0.0",
+ "tapable": "^2.0.0"
},
"engines": {
- "node": ">= 10.13.0"
+ "node": ">=10.13.0"
},
"funding": {
"type": "opencollective",
- "url": "https://opencollective.com/webpack"
+ "url": "https://opencollective.com/html-webpack-plugin"
},
"peerDependencies": {
- "webpack": "^4.0.0 || ^5.0.0"
+ "webpack": "^5.20.0"
}
},
- "node_modules/gatsby/node_modules/type-fest": {
- "version": "0.20.2",
- "license": "(MIT OR CC0-1.0)",
- "engines": {
- "node": ">=10"
- },
+ "node_modules/html-webpack-plugin/node_modules/pretty-error": {
+ "version": "4.0.0",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "lodash": "^4.17.20",
+ "renderkid": "^3.0.0"
+ }
+ },
+ "node_modules/html-webpack-plugin/node_modules/renderkid": {
+ "version": "3.0.0",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "css-select": "^4.1.3",
+ "dom-converter": "^0.2.0",
+ "htmlparser2": "^6.1.0",
+ "lodash": "^4.17.21",
+ "strip-ansi": "^6.0.1"
+ }
+ },
+ "node_modules/htmlparser2": {
+ "version": "6.1.0",
+ "funding": [
+ "https://github.com/fb55/htmlparser2?sponsor=1",
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/fb55"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "domelementtype": "^2.0.1",
+ "domhandler": "^4.0.0",
+ "domutils": "^2.5.2",
+ "entities": "^2.0.0"
+ }
+ },
+ "node_modules/htmlparser2/node_modules/entities": {
+ "version": "2.2.0",
+ "license": "BSD-2-Clause",
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/fb55/entities?sponsor=1"
}
},
- "node_modules/gatsby/node_modules/uuid": {
- "version": "8.3.2",
+ "node_modules/http-cache-semantics": {
+ "version": "4.1.1",
+ "license": "BSD-2-Clause"
+ },
+ "node_modules/http-deceiver": {
+ "version": "1.2.7",
+ "license": "MIT"
+ },
+ "node_modules/http-errors": {
+ "version": "2.0.0",
"license": "MIT",
- "bin": {
- "uuid": "dist/bin/uuid"
+ "dependencies": {
+ "depd": "2.0.0",
+ "inherits": "2.0.4",
+ "setprototypeof": "1.2.0",
+ "statuses": "2.0.1",
+ "toidentifier": "1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.8"
}
},
- "node_modules/gatsby/node_modules/yallist": {
- "version": "4.0.0",
- "license": "ISC"
+ "node_modules/http-parser-js": {
+ "version": "0.5.8",
+ "license": "MIT"
},
- "node_modules/gensync": {
- "version": "1.0.0-beta.2",
+ "node_modules/http-proxy": {
+ "version": "1.18.1",
"license": "MIT",
+ "dependencies": {
+ "eventemitter3": "^4.0.0",
+ "follow-redirects": "^1.0.0",
+ "requires-port": "^1.0.0"
+ },
"engines": {
- "node": ">=6.9.0"
+ "node": ">=8.0.0"
}
},
- "node_modules/get-caller-file": {
- "version": "2.0.5",
- "license": "ISC",
+ "node_modules/http-proxy-agent": {
+ "version": "5.0.0",
+ "license": "MIT",
+ "dependencies": {
+ "@tootallnate/once": "2",
+ "agent-base": "6",
+ "debug": "4"
+ },
"engines": {
- "node": "6.* || 8.* || >= 10.*"
+ "node": ">= 6"
}
},
- "node_modules/get-east-asian-width": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.2.0.tgz",
- "integrity": "sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==",
- "dev": true,
+ "node_modules/http-proxy-agent/node_modules/debug": {
+ "version": "4.4.0",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
"engines": {
- "node": ">=18"
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/http-proxy-middleware": {
+ "version": "2.0.7",
+ "license": "MIT",
+ "dependencies": {
+ "@types/http-proxy": "^1.17.8",
+ "http-proxy": "^1.18.1",
+ "is-glob": "^4.0.1",
+ "is-plain-obj": "^3.0.0",
+ "micromatch": "^4.0.2"
+ },
+ "engines": {
+ "node": ">=12.0.0"
+ },
+ "peerDependencies": {
+ "@types/express": "^4.17.13"
+ },
+ "peerDependenciesMeta": {
+ "@types/express": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/http-proxy-middleware/node_modules/is-plain-obj": {
+ "version": "3.0.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/get-intrinsic": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz",
- "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==",
+ "node_modules/http-proxy/node_modules/eventemitter3": {
+ "version": "4.0.7",
+ "license": "MIT"
+ },
+ "node_modules/http2-wrapper": {
+ "version": "1.0.3",
+ "license": "MIT",
"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"
+ "quick-lru": "^5.1.1",
+ "resolve-alpn": "^1.0.0"
},
"engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "node": ">=10.19.0"
}
},
- "node_modules/get-nonce": {
- "version": "1.0.1",
+ "node_modules/https-proxy-agent": {
+ "version": "5.0.1",
"license": "MIT",
+ "dependencies": {
+ "agent-base": "6",
+ "debug": "4"
+ },
"engines": {
- "node": ">=6"
+ "node": ">= 6"
}
},
- "node_modules/get-package-type": {
- "version": "0.1.0",
- "dev": true,
+ "node_modules/https-proxy-agent/node_modules/debug": {
+ "version": "4.4.0",
"license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
"engines": {
- "node": ">=8.0.0"
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
}
},
- "node_modules/get-port": {
- "version": "3.2.0",
- "license": "MIT",
+ "node_modules/human-signals": {
+ "version": "2.1.0",
+ "license": "Apache-2.0",
"engines": {
- "node": ">=4"
+ "node": ">=10.17.0"
}
},
- "node_modules/get-stream": {
- "version": "6.0.1",
+ "node_modules/husky": {
+ "version": "9.1.7",
+ "dev": true,
"license": "MIT",
+ "bin": {
+ "husky": "bin.js"
+ },
"engines": {
- "node": ">=10"
+ "node": ">=18"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/sponsors/typicode"
}
},
- "node_modules/get-symbol-description": {
- "version": "1.0.0",
+ "node_modules/hyperdyperid": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/hyperdyperid/-/hyperdyperid-1.2.0.tgz",
+ "integrity": "sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==",
"license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.2",
- "get-intrinsic": "^1.1.1"
- },
"engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "node": ">=10.18"
}
},
- "node_modules/get-value": {
- "version": "2.0.6",
- "dev": true,
+ "node_modules/hyphenate-style-name": {
+ "version": "1.1.0",
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/i18n-iso-countries": {
+ "version": "4.3.1",
"license": "MIT",
+ "dependencies": {
+ "diacritics": "^1.3.0"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 6"
}
},
- "node_modules/git-log-parser": {
- "version": "1.2.0",
- "dev": true,
+ "node_modules/icons": {
+ "resolved": "icons",
+ "link": true
+ },
+ "node_modules/iconv-lite": {
+ "version": "0.4.24",
"license": "MIT",
"dependencies": {
- "argv-formatter": "~1.0.0",
- "spawn-error-forwarder": "~1.0.0",
- "split2": "~1.0.0",
- "stream-combiner2": "~1.1.1",
- "through2": "~2.0.0",
- "traverse": "~0.6.6"
+ "safer-buffer": ">= 2.1.2 < 3"
+ },
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/git-log-parser/node_modules/split2": {
- "version": "1.0.0",
- "dev": true,
+ "node_modules/icss-utils": {
+ "version": "5.1.0",
"license": "ISC",
- "dependencies": {
- "through2": "~2.0.0"
+ "engines": {
+ "node": "^10 || ^12 || >= 14"
+ },
+ "peerDependencies": {
+ "postcss": "^8.1.0"
}
},
- "node_modules/git-log-parser/node_modules/through2": {
- "version": "2.0.5",
- "dev": true,
+ "node_modules/identity-obj-proxy": {
+ "version": "3.0.0",
"license": "MIT",
"dependencies": {
- "readable-stream": "~2.3.6",
- "xtend": "~4.0.1"
+ "harmony-reflect": "^1.4.6"
+ },
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/git-up": {
- "version": "7.0.0",
+ "node_modules/ieee754": {
+ "version": "1.2.1",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/ignore": {
+ "version": "5.3.2",
"license": "MIT",
- "dependencies": {
- "is-ssh": "^1.4.0",
- "parse-url": "^8.1.0"
+ "engines": {
+ "node": ">= 4"
}
},
- "node_modules/github-from-package": {
- "version": "0.0.0",
- "license": "MIT"
- },
- "node_modules/github-slugger": {
- "version": "1.5.0",
- "license": "ISC"
- },
- "node_modules/glob": {
- "version": "8.1.0",
- "license": "ISC",
+ "node_modules/image-minimizer-webpack-plugin": {
+ "version": "3.8.3",
+ "license": "MIT",
"dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^5.0.1",
- "once": "^1.3.0"
+ "schema-utils": "^4.2.0",
+ "serialize-javascript": "^6.0.1"
},
"engines": {
- "node": ">=12"
+ "node": ">= 12.13.0"
},
"funding": {
- "url": "https://github.com/sponsors/isaacs"
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependencies": {
+ "webpack": "^5.1.0"
+ },
+ "peerDependenciesMeta": {
+ "@squoosh/lib": {
+ "optional": true
+ },
+ "imagemin": {
+ "optional": true
+ },
+ "sharp": {
+ "optional": true
+ },
+ "svgo": {
+ "optional": true
+ }
}
},
- "node_modules/glob-parent": {
- "version": "5.1.2",
- "license": "ISC",
+ "node_modules/image-minimizer-webpack-plugin/node_modules/serialize-javascript": {
+ "version": "6.0.2",
+ "license": "BSD-3-Clause",
"dependencies": {
- "is-glob": "^4.0.1"
+ "randombytes": "^2.1.0"
+ }
+ },
+ "node_modules/imask": {
+ "version": "7.6.1",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime-corejs3": "^7.24.4"
},
"engines": {
- "node": ">= 6"
+ "npm": ">=4.0.0"
}
},
- "node_modules/glob-to-regexp": {
- "version": "0.4.1",
- "license": "BSD-2-Clause"
+ "node_modules/immediate": {
+ "version": "3.0.6",
+ "license": "MIT"
},
- "node_modules/glob/node_modules/brace-expansion": {
- "version": "2.0.1",
+ "node_modules/immer": {
+ "version": "9.0.21",
"license": "MIT",
- "dependencies": {
- "balanced-match": "^1.0.0"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/immer"
}
},
- "node_modules/glob/node_modules/minimatch": {
- "version": "5.1.6",
- "license": "ISC",
- "dependencies": {
- "brace-expansion": "^2.0.1"
- },
- "engines": {
- "node": ">=10"
- }
+ "node_modules/immutable": {
+ "version": "4.3.7",
+ "license": "MIT"
},
- "node_modules/global-dirs": {
- "version": "3.0.1",
+ "node_modules/import-fresh": {
+ "version": "3.3.0",
"license": "MIT",
"dependencies": {
- "ini": "2.0.0"
+ "parent-module": "^1.0.0",
+ "resolve-from": "^4.0.0"
},
"engines": {
- "node": ">=10"
+ "node": ">=6"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/global-dirs/node_modules/ini": {
- "version": "2.0.0",
- "license": "ISC",
+ "node_modules/import-fresh/node_modules/resolve-from": {
+ "version": "4.0.0",
+ "license": "MIT",
"engines": {
- "node": ">=10"
+ "node": ">=4"
}
},
- "node_modules/global-modules": {
- "version": "2.0.0",
+ "node_modules/import-from": {
+ "version": "4.0.0",
"license": "MIT",
- "dependencies": {
- "global-prefix": "^3.0.0"
- },
"engines": {
- "node": ">=6"
+ "node": ">=12.2"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/global-prefix": {
- "version": "3.0.0",
+ "node_modules/import-lazy": {
+ "version": "4.0.0",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "ini": "^1.3.5",
- "kind-of": "^6.0.2",
- "which": "^1.3.1"
- },
"engines": {
- "node": ">=6"
+ "node": ">=8"
}
},
- "node_modules/global-prefix/node_modules/which": {
- "version": "1.3.1",
- "license": "ISC",
+ "node_modules/import-local": {
+ "version": "3.2.0",
+ "license": "MIT",
"dependencies": {
- "isexe": "^2.0.0"
+ "pkg-dir": "^4.2.0",
+ "resolve-cwd": "^3.0.0"
},
"bin": {
- "which": "bin/which"
+ "import-local-fixture": "fixtures/cli.js"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/globals": {
- "version": "11.12.0",
+ "node_modules/import-local/node_modules/find-up": {
+ "version": "4.1.0",
"license": "MIT",
+ "dependencies": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ },
"engines": {
- "node": ">=4"
+ "node": ">=8"
}
},
- "node_modules/globalthis": {
- "version": "1.0.3",
+ "node_modules/import-local/node_modules/locate-path": {
+ "version": "5.0.0",
"license": "MIT",
"dependencies": {
- "define-properties": "^1.1.3"
+ "p-locate": "^4.1.0"
},
"engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "node": ">=8"
}
},
- "node_modules/globby": {
- "version": "11.1.0",
+ "node_modules/import-local/node_modules/p-limit": {
+ "version": "2.3.0",
"license": "MIT",
"dependencies": {
- "array-union": "^2.1.0",
- "dir-glob": "^3.0.1",
- "fast-glob": "^3.2.9",
- "ignore": "^5.2.0",
- "merge2": "^1.4.1",
- "slash": "^3.0.0"
+ "p-try": "^2.0.0"
},
"engines": {
- "node": ">=10"
+ "node": ">=6"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/globby/node_modules/slash": {
- "version": "3.0.0",
+ "node_modules/import-local/node_modules/p-locate": {
+ "version": "4.1.0",
"license": "MIT",
+ "dependencies": {
+ "p-limit": "^2.2.0"
+ },
"engines": {
"node": ">=8"
}
},
- "node_modules/globjoin": {
- "version": "0.1.4",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/gopd": {
- "version": "1.0.1",
+ "node_modules/import-local/node_modules/pkg-dir": {
+ "version": "4.2.0",
"license": "MIT",
"dependencies": {
- "get-intrinsic": "^1.1.3"
+ "find-up": "^4.0.0"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/got": {
- "version": "11.8.6",
+ "node_modules/imurmurhash": {
+ "version": "0.1.4",
"license": "MIT",
- "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"
- },
"engines": {
- "node": ">=10.19.0"
- },
- "funding": {
- "url": "https://github.com/sindresorhus/got?sponsor=1"
+ "node": ">=0.8.19"
}
},
- "node_modules/graceful-fs": {
- "version": "4.2.11",
- "license": "ISC"
- },
- "node_modules/grapheme-splitter": {
- "version": "1.0.4",
+ "node_modules/indent-string": {
+ "version": "4.0.0",
"dev": true,
- "license": "MIT"
- },
- "node_modules/graphemer": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz",
- "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==",
- "dev": true
- },
- "node_modules/graphql": {
- "version": "15.8.0",
"license": "MIT",
"engines": {
- "node": ">= 10.x"
+ "node": ">=8"
}
},
- "node_modules/graphql-compose": {
- "version": "9.0.10",
- "license": "MIT",
+ "node_modules/inflight": {
+ "version": "1.0.6",
+ "license": "ISC",
"dependencies": {
- "graphql-type-json": "0.3.2"
+ "once": "^1.3.0",
+ "wrappy": "1"
}
},
- "node_modules/graphql-playground-html": {
- "version": "1.6.30",
+ "node_modules/inherits": {
+ "version": "2.0.4",
+ "license": "ISC"
+ },
+ "node_modules/ini": {
+ "version": "1.3.8",
+ "license": "ISC"
+ },
+ "node_modules/inline-style-parser": {
+ "version": "0.1.1",
+ "license": "MIT"
+ },
+ "node_modules/inline-style-prefixer": {
+ "version": "7.0.1",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "xss": "^1.0.6"
+ "css-in-js-utils": "^3.1.0"
}
},
- "node_modules/graphql-playground-middleware-express": {
- "version": "1.7.23",
+ "node_modules/inquirer": {
+ "version": "8.2.6",
"license": "MIT",
"dependencies": {
- "graphql-playground-html": "^1.6.30"
+ "ansi-escapes": "^4.2.1",
+ "chalk": "^4.1.1",
+ "cli-cursor": "^3.1.0",
+ "cli-width": "^3.0.0",
+ "external-editor": "^3.0.3",
+ "figures": "^3.0.0",
+ "lodash": "^4.17.21",
+ "mute-stream": "0.0.8",
+ "ora": "^5.4.1",
+ "run-async": "^2.4.0",
+ "rxjs": "^7.5.5",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0",
+ "through": "^2.3.6",
+ "wrap-ansi": "^6.0.1"
},
- "peerDependencies": {
- "express": "^4.16.2"
+ "engines": {
+ "node": ">=12.0.0"
}
},
- "node_modules/graphql-tag": {
- "version": "2.12.6",
+ "node_modules/inquirer/node_modules/wrap-ansi": {
+ "version": "6.2.0",
"license": "MIT",
"dependencies": {
- "tslib": "^2.1.0"
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
},
"engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "graphql": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
- }
- },
- "node_modules/graphql-type-json": {
- "version": "0.3.2",
- "license": "MIT",
- "peerDependencies": {
- "graphql": ">=0.8.0"
+ "node": ">=8"
}
},
- "node_modules/gray-matter": {
- "version": "4.0.3",
+ "node_modules/internal-slot": {
+ "version": "1.0.7",
"license": "MIT",
"dependencies": {
- "js-yaml": "^3.13.1",
- "kind-of": "^6.0.2",
- "section-matter": "^1.0.0",
- "strip-bom-string": "^1.0.0"
+ "es-errors": "^1.3.0",
+ "hasown": "^2.0.0",
+ "side-channel": "^1.0.4"
},
"engines": {
- "node": ">=6.0"
+ "node": ">= 0.4"
}
},
- "node_modules/growly": {
- "version": "1.3.0",
+ "node_modules/interpret": {
+ "version": "1.4.0",
"dev": true,
"license": "MIT",
- "optional": true
+ "engines": {
+ "node": ">= 0.10"
+ }
},
- "node_modules/gzip-size": {
+ "node_modules/intersection-observer": {
+ "version": "0.12.2",
+ "dev": true,
+ "license": "Apache-2.0"
+ },
+ "node_modules/into-stream": {
"version": "6.0.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "duplexer": "^0.1.2"
+ "from2": "^2.3.0",
+ "p-is-promise": "^3.0.0"
},
"engines": {
"node": ">=10"
@@ -21031,82 +25342,89 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/handle-thing": {
- "version": "2.0.1",
- "devOptional": true,
- "license": "MIT"
+ "node_modules/invariant": {
+ "version": "2.2.4",
+ "license": "MIT",
+ "dependencies": {
+ "loose-envify": "^1.0.0"
+ }
},
- "node_modules/handlebars": {
- "version": "4.7.7",
- "dev": true,
+ "node_modules/ipaddr.js": {
+ "version": "1.9.1",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.10"
+ }
+ },
+ "node_modules/is-absolute": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "minimist": "^1.2.5",
- "neo-async": "^2.6.0",
- "source-map": "^0.6.1",
- "wordwrap": "^1.0.0"
- },
- "bin": {
- "handlebars": "bin/handlebars"
+ "is-relative": "^1.0.0",
+ "is-windows": "^1.0.1"
},
"engines": {
- "node": ">=0.4.7"
- },
- "optionalDependencies": {
- "uglify-js": "^3.1.4"
+ "node": ">=0.10.0"
}
},
- "node_modules/hard-rejection": {
- "version": "2.1.0",
- "dev": true,
+ "node_modules/is-absolute-url": {
+ "version": "3.0.3",
"license": "MIT",
"engines": {
- "node": ">=6"
+ "node": ">=8"
}
},
- "node_modules/harmony-reflect": {
- "version": "1.6.2",
- "dev": true,
- "license": "(Apache-2.0 OR MPL-1.1)"
- },
- "node_modules/has": {
- "version": "1.0.3",
+ "node_modules/is-accessor-descriptor": {
+ "version": "1.0.1",
"license": "MIT",
"dependencies": {
- "function-bind": "^1.1.1"
+ "hasown": "^2.0.0"
},
"engines": {
- "node": ">= 0.4.0"
+ "node": ">= 0.10"
}
},
- "node_modules/has-bigints": {
- "version": "1.0.2",
+ "node_modules/is-alphabetical": {
+ "version": "2.0.1",
"license": "MIT",
"funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/has-flag": {
- "version": "3.0.0",
+ "node_modules/is-alphanumerical": {
+ "version": "2.0.1",
"license": "MIT",
- "engines": {
- "node": ">=4"
+ "dependencies": {
+ "is-alphabetical": "^2.0.0",
+ "is-decimal": "^2.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/has-property-descriptors": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz",
- "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==",
+ "node_modules/is-arguments": {
+ "version": "1.1.1",
+ "license": "MIT",
"dependencies": {
- "es-define-property": "^1.0.0"
+ "call-bind": "^1.0.2",
+ "has-tostringtag": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/has-proto": {
- "version": "1.0.1",
+ "node_modules/is-array-buffer": {
+ "version": "3.0.4",
"license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "get-intrinsic": "^1.2.1"
+ },
"engines": {
"node": ">= 0.4"
},
@@ -21114,9 +25432,16 @@
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/has-symbols": {
- "version": "1.0.3",
+ "node_modules/is-arrayish": {
+ "version": "0.2.1",
+ "license": "MIT"
+ },
+ "node_modules/is-async-function": {
+ "version": "2.0.0",
"license": "MIT",
+ "dependencies": {
+ "has-tostringtag": "^1.0.0"
+ },
"engines": {
"node": ">= 0.4"
},
@@ -21124,11 +25449,11 @@
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/has-tostringtag": {
- "version": "1.0.0",
+ "node_modules/is-bigint": {
+ "version": "1.1.0",
"license": "MIT",
"dependencies": {
- "has-symbols": "^1.0.2"
+ "has-bigints": "^1.0.2"
},
"engines": {
"node": ">= 0.4"
@@ -21137,2440 +25462,2615 @@
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/has-value": {
- "version": "1.0.0",
- "dev": true,
+ "node_modules/is-binary-path": {
+ "version": "2.1.0",
"license": "MIT",
"dependencies": {
- "get-value": "^2.0.6",
- "has-values": "^1.0.0",
- "isobject": "^3.0.0"
+ "binary-extensions": "^2.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=8"
}
},
- "node_modules/has-values": {
- "version": "1.0.0",
- "dev": true,
+ "node_modules/is-boolean-object": {
+ "version": "1.2.0",
"license": "MIT",
"dependencies": {
- "is-number": "^3.0.0",
- "kind-of": "^4.0.0"
+ "call-bind": "^1.0.7",
+ "has-tostringtag": "^1.0.2"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/has-values/node_modules/is-buffer": {
- "version": "1.1.6",
- "dev": true,
- "license": "MIT"
+ "node_modules/is-buffer": {
+ "version": "2.0.5",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
},
- "node_modules/has-values/node_modules/is-number": {
- "version": "3.0.0",
- "dev": true,
+ "node_modules/is-callable": {
+ "version": "1.2.7",
"license": "MIT",
- "dependencies": {
- "kind-of": "^3.0.2"
- },
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/has-values/node_modules/is-number/node_modules/kind-of": {
- "version": "3.2.2",
- "dev": true,
+ "node_modules/is-ci": {
+ "version": "2.0.0",
"license": "MIT",
"dependencies": {
- "is-buffer": "^1.1.5"
+ "ci-info": "^2.0.0"
},
- "engines": {
- "node": ">=0.10.0"
+ "bin": {
+ "is-ci": "bin.js"
}
},
- "node_modules/has-values/node_modules/kind-of": {
- "version": "4.0.0",
- "dev": true,
+ "node_modules/is-core-module": {
+ "version": "2.15.1",
"license": "MIT",
"dependencies": {
- "is-buffer": "^1.1.5"
+ "hasown": "^2.0.2"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/has-yarn": {
- "version": "2.1.0",
+ "node_modules/is-data-descriptor": {
+ "version": "1.0.1",
"license": "MIT",
+ "dependencies": {
+ "hasown": "^2.0.0"
+ },
"engines": {
- "node": ">=8"
+ "node": ">= 0.4"
}
},
- "node_modules/hasha": {
- "version": "5.2.2",
+ "node_modules/is-data-view": {
+ "version": "1.0.1",
"license": "MIT",
"dependencies": {
- "is-stream": "^2.0.0",
- "type-fest": "^0.8.0"
+ "is-typed-array": "^1.1.13"
},
"engines": {
- "node": ">=8"
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/hasha/node_modules/type-fest": {
- "version": "0.8.1",
- "license": "(MIT OR CC0-1.0)",
- "engines": {
- "node": ">=8"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/hasown": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
- "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
+ "node_modules/is-date-object": {
+ "version": "1.0.5",
+ "license": "MIT",
"dependencies": {
- "function-bind": "^1.1.2"
+ "has-tostringtag": "^1.0.0"
},
"engines": {
"node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/hast-to-hyperscript": {
- "version": "9.0.1",
+ "node_modules/is-decimal": {
+ "version": "2.0.1",
"license": "MIT",
- "dependencies": {
- "@types/unist": "^2.0.3",
- "comma-separated-tokens": "^1.0.0",
- "property-information": "^5.3.0",
- "space-separated-tokens": "^1.0.0",
- "style-to-object": "^0.3.0",
- "unist-util-is": "^4.0.0",
- "web-namespaces": "^1.0.0"
- },
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/hast-util-from-parse5": {
- "version": "6.0.1",
+ "node_modules/is-descriptor": {
+ "version": "1.0.3",
"license": "MIT",
"dependencies": {
- "@types/parse5": "^5.0.0",
- "hastscript": "^6.0.0",
- "property-information": "^5.0.0",
- "vfile": "^4.0.0",
- "vfile-location": "^3.2.0",
- "web-namespaces": "^1.0.0"
+ "is-accessor-descriptor": "^1.0.1",
+ "is-data-descriptor": "^1.0.1"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">= 0.4"
}
},
- "node_modules/hast-util-from-parse5/node_modules/@types/parse5": {
- "version": "5.0.3",
- "license": "MIT"
- },
- "node_modules/hast-util-has-property": {
- "version": "1.0.4",
+ "node_modules/is-docker": {
+ "version": "3.0.0",
"license": "MIT",
+ "bin": {
+ "is-docker": "cli.js"
+ },
+ "engines": {
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ },
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/hast-util-heading-rank": {
- "version": "1.0.1",
+ "node_modules/is-extendable": {
+ "version": "0.1.1",
"license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/hast-util-parse-selector": {
- "version": "2.2.5",
+ "node_modules/is-extglob": {
+ "version": "2.1.1",
"license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/hast-util-raw": {
- "version": "6.0.1",
+ "node_modules/is-finalizationregistry": {
+ "version": "1.1.0",
"license": "MIT",
"dependencies": {
- "@types/hast": "^2.0.0",
- "hast-util-from-parse5": "^6.0.0",
- "hast-util-to-parse5": "^6.0.0",
- "html-void-elements": "^1.0.0",
- "parse5": "^6.0.0",
- "unist-util-position": "^3.0.0",
- "vfile": "^4.0.0",
- "web-namespaces": "^1.0.0",
- "xtend": "^4.0.0",
- "zwitch": "^1.0.0"
+ "call-bind": "^1.0.7"
+ },
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/hast-util-raw/node_modules/parse5": {
- "version": "6.0.1",
- "license": "MIT"
- },
- "node_modules/hast-util-to-parse5": {
- "version": "6.0.0",
+ "node_modules/is-fullwidth-code-point": {
+ "version": "4.0.0",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "hast-to-hyperscript": "^9.0.0",
- "property-information": "^5.0.0",
- "web-namespaces": "^1.0.0",
- "xtend": "^4.0.0",
- "zwitch": "^1.0.0"
+ "engines": {
+ "node": ">=12"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/hast-util-to-string": {
- "version": "1.0.4",
+ "node_modules/is-generator-fn": {
+ "version": "2.1.0",
"license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "engines": {
+ "node": ">=6"
}
},
- "node_modules/hastscript": {
- "version": "6.0.0",
+ "node_modules/is-generator-function": {
+ "version": "1.0.10",
"license": "MIT",
"dependencies": {
- "@types/hast": "^2.0.0",
- "comma-separated-tokens": "^1.0.0",
- "hast-util-parse-selector": "^2.0.0",
- "property-information": "^5.0.0",
- "space-separated-tokens": "^1.0.0"
+ "has-tostringtag": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/he": {
- "version": "1.2.0",
+ "node_modules/is-git-repository": {
+ "version": "1.1.1",
+ "dev": true,
"license": "MIT",
- "bin": {
- "he": "bin/he"
+ "dependencies": {
+ "execa": "^0.6.1",
+ "path-is-absolute": "^1.0.1"
}
},
- "node_modules/header-case": {
- "version": "2.0.4",
+ "node_modules/is-git-repository/node_modules/cross-spawn": {
+ "version": "5.1.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "capital-case": "^1.0.4",
- "tslib": "^2.0.3"
+ "lru-cache": "^4.0.1",
+ "shebang-command": "^1.2.0",
+ "which": "^1.2.9"
}
},
- "node_modules/history": {
- "version": "4.10.1",
+ "node_modules/is-git-repository/node_modules/execa": {
+ "version": "0.6.3",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.1.2",
- "loose-envify": "^1.2.0",
- "resolve-pathname": "^3.0.0",
- "tiny-invariant": "^1.0.2",
- "tiny-warning": "^1.0.0",
- "value-equal": "^1.0.1"
+ "cross-spawn": "^5.0.1",
+ "get-stream": "^3.0.0",
+ "is-stream": "^1.1.0",
+ "npm-run-path": "^2.0.0",
+ "p-finally": "^1.0.0",
+ "signal-exit": "^3.0.0",
+ "strip-eof": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/hoist-non-react-statics": {
- "version": "3.3.2",
- "license": "BSD-3-Clause",
- "dependencies": {
- "react-is": "^16.7.0"
+ "node_modules/is-git-repository/node_modules/get-stream": {
+ "version": "3.0.0",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/hoist-non-react-statics/node_modules/react-is": {
- "version": "16.13.1",
- "license": "MIT"
- },
- "node_modules/hook-std": {
- "version": "3.0.0",
+ "node_modules/is-git-repository/node_modules/is-stream": {
+ "version": "1.1.0",
"dev": true,
"license": "MIT",
"engines": {
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=0.10.0"
}
},
- "node_modules/hosted-git-info": {
- "version": "4.1.0",
+ "node_modules/is-git-repository/node_modules/lru-cache": {
+ "version": "4.1.5",
"dev": true,
"license": "ISC",
"dependencies": {
- "lru-cache": "^6.0.0"
- },
- "engines": {
- "node": ">=10"
+ "pseudomap": "^1.0.2",
+ "yallist": "^2.1.2"
}
},
- "node_modules/hosted-git-info/node_modules/lru-cache": {
- "version": "6.0.0",
+ "node_modules/is-git-repository/node_modules/npm-run-path": {
+ "version": "2.0.2",
"dev": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "yallist": "^4.0.0"
+ "path-key": "^2.0.0"
},
"engines": {
- "node": ">=10"
+ "node": ">=4"
}
},
- "node_modules/hosted-git-info/node_modules/yallist": {
- "version": "4.0.0",
+ "node_modules/is-git-repository/node_modules/path-key": {
+ "version": "2.0.1",
"dev": true,
- "license": "ISC"
- },
- "node_modules/hpack.js": {
- "version": "2.1.6",
- "devOptional": true,
"license": "MIT",
- "dependencies": {
- "inherits": "^2.0.1",
- "obuf": "^1.0.0",
- "readable-stream": "^2.0.1",
- "wbuf": "^1.1.0"
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/html-encoding-sniffer": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz",
- "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==",
+ "node_modules/is-git-repository/node_modules/shebang-command": {
+ "version": "1.2.0",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "whatwg-encoding": "^2.0.0"
+ "shebang-regex": "^1.0.0"
},
"engines": {
- "node": ">=12"
+ "node": ">=0.10.0"
}
},
- "node_modules/html-entities": {
- "version": "2.3.3",
- "license": "MIT"
- },
- "node_modules/html-escaper": {
- "version": "2.0.2",
- "license": "MIT"
- },
- "node_modules/html-loader": {
- "version": "0.5.5",
+ "node_modules/is-git-repository/node_modules/shebang-regex": {
+ "version": "1.0.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "es6-templates": "^0.2.3",
- "fastparse": "^1.1.1",
- "html-minifier": "^3.5.8",
- "loader-utils": "^1.1.0",
- "object-assign": "^4.1.1"
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/html-loader/node_modules/json5": {
- "version": "1.0.2",
+ "node_modules/is-git-repository/node_modules/which": {
+ "version": "1.3.1",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"dependencies": {
- "minimist": "^1.2.0"
+ "isexe": "^2.0.0"
},
"bin": {
- "json5": "lib/cli.js"
+ "which": "bin/which"
}
},
- "node_modules/html-loader/node_modules/loader-utils": {
- "version": "1.4.2",
+ "node_modules/is-git-repository/node_modules/yallist": {
+ "version": "2.1.2",
"dev": true,
+ "license": "ISC"
+ },
+ "node_modules/is-glob": {
+ "version": "4.0.3",
"license": "MIT",
"dependencies": {
- "big.js": "^5.2.2",
- "emojis-list": "^3.0.0",
- "json5": "^1.0.1"
+ "is-extglob": "^2.1.1"
},
"engines": {
- "node": ">=4.0.0"
+ "node": ">=0.10.0"
}
},
- "node_modules/html-minifier": {
- "version": "3.5.21",
- "dev": true,
+ "node_modules/is-hexadecimal": {
+ "version": "2.0.1",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/is-inside-container": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "camel-case": "3.0.x",
- "clean-css": "4.2.x",
- "commander": "2.17.x",
- "he": "1.2.x",
- "param-case": "2.1.x",
- "relateurl": "0.2.x",
- "uglify-js": "3.4.x"
+ "is-docker": "^3.0.0"
},
"bin": {
- "html-minifier": "cli.js"
+ "is-inside-container": "cli.js"
},
"engines": {
- "node": ">=4"
+ "node": ">=14.16"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/html-minifier-terser": {
- "version": "6.1.0",
- "dev": true,
+ "node_modules/is-interactive": {
+ "version": "1.0.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/is-invalid-path": {
+ "version": "0.1.0",
"license": "MIT",
"dependencies": {
- "camel-case": "^4.1.2",
- "clean-css": "^5.2.2",
- "commander": "^8.3.0",
- "he": "^1.2.0",
- "param-case": "^3.0.4",
- "relateurl": "^0.2.7",
- "terser": "^5.10.0"
- },
- "bin": {
- "html-minifier-terser": "cli.js"
+ "is-glob": "^2.0.0"
},
"engines": {
- "node": ">=12"
+ "node": ">=0.10.0"
}
},
- "node_modules/html-minifier-terser/node_modules/camel-case": {
- "version": "4.1.2",
- "dev": true,
+ "node_modules/is-invalid-path/node_modules/is-extglob": {
+ "version": "1.0.0",
"license": "MIT",
- "dependencies": {
- "pascal-case": "^3.1.2",
- "tslib": "^2.0.3"
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/html-minifier-terser/node_modules/clean-css": {
- "version": "5.3.2",
- "dev": true,
+ "node_modules/is-invalid-path/node_modules/is-glob": {
+ "version": "2.0.1",
"license": "MIT",
"dependencies": {
- "source-map": "~0.6.0"
+ "is-extglob": "^1.0.0"
},
"engines": {
- "node": ">= 10.0"
+ "node": ">=0.10.0"
}
},
- "node_modules/html-minifier-terser/node_modules/commander": {
- "version": "8.3.0",
- "dev": true,
+ "node_modules/is-lower-case": {
+ "version": "2.0.2",
+ "license": "MIT",
+ "dependencies": {
+ "tslib": "^2.0.3"
+ }
+ },
+ "node_modules/is-map": {
+ "version": "2.0.3",
"license": "MIT",
"engines": {
- "node": ">= 12"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/html-minifier-terser/node_modules/param-case": {
- "version": "3.0.4",
- "dev": true,
+ "node_modules/is-mergeable-object": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/is-mergeable-object/-/is-mergeable-object-1.1.1.tgz",
+ "integrity": "sha512-CPduJfuGg8h8vW74WOxHtHmtQutyQBzR+3MjQ6iDHIYdbOnm1YC7jv43SqCoU8OPGTJD4nibmiryA4kmogbGrA==",
+ "license": "MIT"
+ },
+ "node_modules/is-nan": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz",
+ "integrity": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==",
"license": "MIT",
"dependencies": {
- "dot-case": "^3.0.4",
- "tslib": "^2.0.3"
+ "call-bind": "^1.0.0",
+ "define-properties": "^1.1.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/html-minifier/node_modules/commander": {
- "version": "2.17.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/html-tags": {
- "version": "3.2.0",
- "dev": true,
+ "node_modules/is-negative-zero": {
+ "version": "2.0.3",
"license": "MIT",
"engines": {
- "node": ">=8"
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/html-void-elements": {
- "version": "1.0.5",
+ "node_modules/is-number": {
+ "version": "7.0.0",
"license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "engines": {
+ "node": ">=0.12.0"
}
},
- "node_modules/html-webpack-plugin": {
- "version": "5.5.0",
- "dev": true,
+ "node_modules/is-number-object": {
+ "version": "1.1.0",
"license": "MIT",
"dependencies": {
- "@types/html-minifier-terser": "^6.0.0",
- "html-minifier-terser": "^6.0.2",
- "lodash": "^4.17.21",
- "pretty-error": "^4.0.0",
- "tapable": "^2.0.0"
+ "call-bind": "^1.0.7",
+ "has-tostringtag": "^1.0.2"
},
"engines": {
- "node": ">=10.13.0"
+ "node": ">= 0.4"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/html-webpack-plugin"
- },
- "peerDependencies": {
- "webpack": "^5.20.0"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/html-webpack-plugin/node_modules/css-select": {
- "version": "4.3.0",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "boolbase": "^1.0.0",
- "css-what": "^6.0.1",
- "domhandler": "^4.3.1",
- "domutils": "^2.8.0",
- "nth-check": "^2.0.1"
- },
- "funding": {
- "url": "https://github.com/sponsors/fb55"
+ "node_modules/is-obj": {
+ "version": "2.0.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/html-webpack-plugin/node_modules/dom-serializer": {
- "version": "1.4.1",
- "dev": true,
+ "node_modules/is-path-cwd": {
+ "version": "2.2.0",
"license": "MIT",
- "dependencies": {
- "domelementtype": "^2.0.1",
- "domhandler": "^4.2.0",
- "entities": "^2.0.0"
- },
- "funding": {
- "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
+ "engines": {
+ "node": ">=6"
}
},
- "node_modules/html-webpack-plugin/node_modules/domhandler": {
- "version": "4.3.1",
- "dev": true,
- "license": "BSD-2-Clause",
+ "node_modules/is-path-in-cwd": {
+ "version": "2.1.0",
+ "license": "MIT",
"dependencies": {
- "domelementtype": "^2.2.0"
+ "is-path-inside": "^2.1.0"
},
"engines": {
- "node": ">= 4"
- },
- "funding": {
- "url": "https://github.com/fb55/domhandler?sponsor=1"
+ "node": ">=6"
}
},
- "node_modules/html-webpack-plugin/node_modules/domutils": {
- "version": "2.8.0",
- "dev": true,
- "license": "BSD-2-Clause",
+ "node_modules/is-path-in-cwd/node_modules/is-path-inside": {
+ "version": "2.1.0",
+ "license": "MIT",
"dependencies": {
- "dom-serializer": "^1.0.1",
- "domelementtype": "^2.2.0",
- "domhandler": "^4.2.0"
+ "path-is-inside": "^1.0.2"
},
- "funding": {
- "url": "https://github.com/fb55/domutils?sponsor=1"
- }
- },
- "node_modules/html-webpack-plugin/node_modules/entities": {
- "version": "2.2.0",
- "dev": true,
- "license": "BSD-2-Clause",
- "funding": {
- "url": "https://github.com/fb55/entities?sponsor=1"
+ "engines": {
+ "node": ">=6"
}
},
- "node_modules/html-webpack-plugin/node_modules/htmlparser2": {
- "version": "6.1.0",
- "dev": true,
- "funding": [
- "https://github.com/fb55/htmlparser2?sponsor=1",
- {
- "type": "github",
- "url": "https://github.com/sponsors/fb55"
- }
- ],
+ "node_modules/is-path-inside": {
+ "version": "3.0.3",
"license": "MIT",
- "dependencies": {
- "domelementtype": "^2.0.1",
- "domhandler": "^4.0.0",
- "domutils": "^2.5.2",
- "entities": "^2.0.0"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/html-webpack-plugin/node_modules/pretty-error": {
- "version": "4.0.0",
+ "node_modules/is-plain-obj": {
+ "version": "1.1.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "lodash": "^4.17.20",
- "renderkid": "^3.0.0"
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/html-webpack-plugin/node_modules/renderkid": {
- "version": "3.0.0",
- "dev": true,
+ "node_modules/is-plain-object": {
+ "version": "5.0.0",
"license": "MIT",
- "dependencies": {
- "css-select": "^4.1.3",
- "dom-converter": "^0.2.0",
- "htmlparser2": "^6.1.0",
- "lodash": "^4.17.21",
- "strip-ansi": "^6.0.1"
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/http-cache-semantics": {
- "version": "4.1.1",
- "license": "BSD-2-Clause"
+ "node_modules/is-potential-custom-element-name": {
+ "version": "1.0.1",
+ "license": "MIT"
},
- "node_modules/http-deceiver": {
- "version": "1.2.7",
- "devOptional": true,
+ "node_modules/is-promise": {
+ "version": "2.2.2",
"license": "MIT"
},
- "node_modules/http-errors": {
- "version": "2.0.0",
+ "node_modules/is-reference": {
+ "version": "3.0.3",
"license": "MIT",
"dependencies": {
- "depd": "2.0.0",
- "inherits": "2.0.4",
- "setprototypeof": "1.2.0",
- "statuses": "2.0.1",
- "toidentifier": "1.0.1"
- },
- "engines": {
- "node": ">= 0.8"
+ "@types/estree": "^1.0.6"
}
},
- "node_modules/http-parser-js": {
- "version": "0.5.8",
- "devOptional": true,
- "license": "MIT"
- },
- "node_modules/http-proxy": {
- "version": "1.18.1",
- "devOptional": true,
+ "node_modules/is-regex": {
+ "version": "1.2.0",
"license": "MIT",
"dependencies": {
- "eventemitter3": "^4.0.0",
- "follow-redirects": "^1.0.0",
- "requires-port": "^1.0.0"
+ "call-bind": "^1.0.7",
+ "gopd": "^1.1.0",
+ "has-tostringtag": "^1.0.2",
+ "hasown": "^2.0.2"
},
"engines": {
- "node": ">=8.0.0"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/http-proxy-agent": {
- "version": "5.0.0",
- "dev": true,
+ "node_modules/is-relative": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "@tootallnate/once": "2",
- "agent-base": "6",
- "debug": "4"
+ "is-unc-path": "^1.0.0"
},
"engines": {
- "node": ">= 6"
+ "node": ">=0.10.0"
}
},
- "node_modules/http-proxy-middleware": {
- "version": "2.0.6",
- "devOptional": true,
+ "node_modules/is-relative-url": {
+ "version": "3.0.0",
"license": "MIT",
"dependencies": {
- "@types/http-proxy": "^1.17.8",
- "http-proxy": "^1.18.1",
- "is-glob": "^4.0.1",
- "is-plain-obj": "^3.0.0",
- "micromatch": "^4.0.2"
+ "is-absolute-url": "^3.0.0"
},
"engines": {
- "node": ">=12.0.0"
- },
- "peerDependencies": {
- "@types/express": "^4.17.13"
- },
- "peerDependenciesMeta": {
- "@types/express": {
- "optional": true
- }
+ "node": ">=8"
}
},
- "node_modules/http-proxy-middleware/node_modules/is-plain-obj": {
- "version": "3.0.0",
- "devOptional": true,
+ "node_modules/is-retry-allowed": {
+ "version": "1.2.0",
"license": "MIT",
"engines": {
- "node": ">=10"
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-root": {
+ "version": "2.1.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/is-set": {
+ "version": "2.0.3",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/http2-wrapper": {
+ "node_modules/is-shared-array-buffer": {
"version": "1.0.3",
"license": "MIT",
"dependencies": {
- "quick-lru": "^5.1.1",
- "resolve-alpn": "^1.0.0"
+ "call-bind": "^1.0.7"
},
"engines": {
- "node": ">=10.19.0"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/http2-wrapper/node_modules/quick-lru": {
- "version": "5.1.1",
+ "node_modules/is-stream": {
+ "version": "2.0.1",
"license": "MIT",
"engines": {
- "node": ">=10"
+ "node": ">=8"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/https-proxy-agent": {
- "version": "5.0.1",
- "dev": true,
+ "node_modules/is-string": {
+ "version": "1.1.0",
"license": "MIT",
"dependencies": {
- "agent-base": "6",
- "debug": "4"
+ "call-bind": "^1.0.7",
+ "has-tostringtag": "^1.0.2"
},
"engines": {
- "node": ">= 6"
- }
- },
- "node_modules/human-signals": {
- "version": "2.1.0",
- "license": "Apache-2.0",
- "engines": {
- "node": ">=10.17.0"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/husky": {
- "version": "9.0.11",
- "resolved": "https://registry.npmjs.org/husky/-/husky-9.0.11.tgz",
- "integrity": "sha512-AB6lFlbwwyIqMdHYhwPe+kjOC3Oc5P3nThEoW/AaO2BX3vJDjWPFxYLxokUZOo6RNX20He3AaT8sESs9NJcmEw==",
- "dev": true,
- "bin": {
- "husky": "bin.mjs"
+ "node_modules/is-symbol": {
+ "version": "1.1.0",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "has-symbols": "^1.0.3",
+ "safe-regex-test": "^1.0.3"
},
"engines": {
- "node": ">=18"
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/sponsors/typicode"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/hyperdyperid": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/hyperdyperid/-/hyperdyperid-1.2.0.tgz",
- "integrity": "sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==",
+ "node_modules/is-text-path": {
+ "version": "1.0.1",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "text-extensions": "^1.0.0"
+ },
"engines": {
- "node": ">=10.18"
+ "node": ">=0.10.0"
}
},
- "node_modules/hyphenate-style-name": {
- "version": "1.0.4",
- "license": "BSD-3-Clause"
- },
- "node_modules/i18n-iso-countries": {
- "version": "4.3.1",
+ "node_modules/is-typed-array": {
+ "version": "1.1.13",
"license": "MIT",
"dependencies": {
- "diacritics": "^1.3.0"
+ "which-typed-array": "^1.1.14"
},
"engines": {
- "node": ">= 6"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/icons": {
- "resolved": "icons",
- "link": true
+ "node_modules/is-typedarray": {
+ "version": "1.0.0",
+ "license": "MIT"
},
- "node_modules/iconv-lite": {
- "version": "0.6.3",
- "dev": true,
+ "node_modules/is-unc-path": {
+ "version": "1.0.0",
"license": "MIT",
"dependencies": {
- "safer-buffer": ">= 2.1.2 < 3.0.0"
+ "unc-path-regex": "^0.1.2"
},
"engines": {
"node": ">=0.10.0"
}
},
- "node_modules/icss-utils": {
- "version": "5.1.0",
- "license": "ISC",
+ "node_modules/is-unicode-supported": {
+ "version": "0.1.0",
+ "license": "MIT",
"engines": {
- "node": "^10 || ^12 || >= 14"
+ "node": ">=10"
},
- "peerDependencies": {
- "postcss": "^8.1.0"
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/identity-obj-proxy": {
- "version": "3.0.0",
- "dev": true,
+ "node_modules/is-upper-case": {
+ "version": "2.0.2",
"license": "MIT",
"dependencies": {
- "harmony-reflect": "^1.4.6"
- },
- "engines": {
- "node": ">=4"
+ "tslib": "^2.0.3"
}
},
- "node_modules/ieee754": {
- "version": "1.2.1",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "BSD-3-Clause"
- },
- "node_modules/ignore": {
- "version": "5.2.4",
+ "node_modules/is-valid-domain": {
+ "version": "0.1.6",
"license": "MIT",
- "engines": {
- "node": ">= 4"
+ "dependencies": {
+ "punycode": "^2.1.1"
}
},
- "node_modules/image-minimizer-webpack-plugin": {
- "version": "3.8.2",
- "dev": true,
+ "node_modules/is-valid-path": {
+ "version": "0.1.1",
"license": "MIT",
"dependencies": {
- "schema-utils": "^4.0.0",
- "serialize-javascript": "^6.0.1"
+ "is-invalid-path": "^0.1.0"
},
"engines": {
- "node": ">= 12.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^5.1.0"
- },
- "peerDependenciesMeta": {
- "@squoosh/lib": {
- "optional": true
- },
- "imagemin": {
- "optional": true
- },
- "sharp": {
- "optional": true
- },
- "svgo": {
- "optional": true
- }
+ "node": ">=0.10.0"
}
},
- "node_modules/image-minimizer-webpack-plugin/node_modules/ajv": {
- "version": "8.12.0",
- "dev": true,
+ "node_modules/is-weakmap": {
+ "version": "2.0.2",
"license": "MIT",
- "dependencies": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/image-minimizer-webpack-plugin/node_modules/ajv-keywords": {
- "version": "5.1.0",
- "dev": true,
+ "node_modules/is-weakref": {
+ "version": "1.0.2",
"license": "MIT",
"dependencies": {
- "fast-deep-equal": "^3.1.3"
+ "call-bind": "^1.0.2"
},
- "peerDependencies": {
- "ajv": "^8.8.2"
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/image-minimizer-webpack-plugin/node_modules/json-schema-traverse": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/image-minimizer-webpack-plugin/node_modules/schema-utils": {
- "version": "4.0.1",
- "dev": true,
+ "node_modules/is-weakset": {
+ "version": "2.0.3",
"license": "MIT",
"dependencies": {
- "@types/json-schema": "^7.0.9",
- "ajv": "^8.9.0",
- "ajv-formats": "^2.1.1",
- "ajv-keywords": "^5.1.0"
+ "call-bind": "^1.0.7",
+ "get-intrinsic": "^1.2.4"
},
"engines": {
- "node": ">= 12.13.0"
+ "node": ">= 0.4"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/imask": {
- "version": "7.1.3",
- "resolved": "https://registry.npmjs.org/imask/-/imask-7.1.3.tgz",
- "integrity": "sha512-jZCqTI5Jgukhl2ff+znBQd8BiHOTlnFYCIgggzHYDdoJsHmSSWr1BaejcYBxsjy4ZIs8Rm0HhbOxQcobcdESRQ==",
- "dependencies": {
- "@babel/runtime-corejs3": "^7.22.6"
- },
+ "node_modules/is-windows": {
+ "version": "1.0.2",
+ "license": "MIT",
"engines": {
- "npm": ">=4.0.0"
+ "node": ">=0.10.0"
}
},
- "node_modules/immediate": {
- "version": "3.0.6",
- "license": "MIT"
- },
- "node_modules/immer": {
- "version": "9.0.21",
+ "node_modules/is-wsl": {
+ "version": "3.1.0",
"license": "MIT",
+ "dependencies": {
+ "is-inside-container": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=16"
+ },
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/immer"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/immutable": {
- "version": "4.3.0",
- "license": "MIT"
- },
- "node_modules/import-fresh": {
- "version": "3.3.0",
+ "node_modules/is64bit": {
+ "version": "2.0.0",
"license": "MIT",
"dependencies": {
- "parent-module": "^1.0.0",
- "resolve-from": "^4.0.0"
+ "system-architecture": "^0.1.0"
},
"engines": {
- "node": ">=6"
+ "node": ">=18"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/import-fresh/node_modules/resolve-from": {
- "version": "4.0.0",
+ "node_modules/isarray": {
+ "version": "2.0.5",
+ "license": "MIT"
+ },
+ "node_modules/isexe": {
+ "version": "2.0.0",
+ "license": "ISC"
+ },
+ "node_modules/isobject": {
+ "version": "3.0.1",
"license": "MIT",
"engines": {
- "node": ">=4"
+ "node": ">=0.10.0"
}
},
- "node_modules/import-from": {
- "version": "4.0.0",
+ "node_modules/issue-parser": {
+ "version": "6.0.0",
+ "dev": true,
"license": "MIT",
- "engines": {
- "node": ">=12.2"
+ "dependencies": {
+ "lodash.capitalize": "^4.2.1",
+ "lodash.escaperegexp": "^4.1.2",
+ "lodash.isplainobject": "^4.0.6",
+ "lodash.isstring": "^4.0.1",
+ "lodash.uniqby": "^4.7.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "engines": {
+ "node": ">=10.13"
}
},
- "node_modules/import-lazy": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
+ "node_modules/istanbul-lib-coverage": {
+ "version": "3.2.2",
+ "license": "BSD-3-Clause",
"engines": {
"node": ">=8"
}
},
- "node_modules/import-local": {
- "version": "3.1.0",
- "dev": true,
- "license": "MIT",
+ "node_modules/istanbul-lib-instrument": {
+ "version": "4.0.3",
+ "license": "BSD-3-Clause",
"dependencies": {
- "pkg-dir": "^4.2.0",
- "resolve-cwd": "^3.0.0"
- },
- "bin": {
- "import-local-fixture": "fixtures/cli.js"
+ "@babel/core": "^7.7.5",
+ "@istanbuljs/schema": "^0.1.2",
+ "istanbul-lib-coverage": "^3.0.0",
+ "semver": "^6.3.0"
},
"engines": {
"node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/imurmurhash": {
- "version": "0.1.4",
- "license": "MIT",
+ "node_modules/istanbul-lib-report": {
+ "version": "3.0.1",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "istanbul-lib-coverage": "^3.0.0",
+ "make-dir": "^4.0.0",
+ "supports-color": "^7.1.0"
+ },
"engines": {
- "node": ">=0.8.19"
+ "node": ">=10"
}
},
- "node_modules/indent-string": {
+ "node_modules/istanbul-lib-report/node_modules/make-dir": {
"version": "4.0.0",
- "dev": true,
"license": "MIT",
+ "dependencies": {
+ "semver": "^7.5.3"
+ },
"engines": {
- "node": ">=8"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/inflight": {
- "version": "1.0.6",
+ "node_modules/istanbul-lib-report/node_modules/semver": {
+ "version": "7.6.3",
"license": "ISC",
- "dependencies": {
- "once": "^1.3.0",
- "wrappy": "1"
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/inherits": {
- "version": "2.0.4",
- "license": "ISC"
- },
- "node_modules/ini": {
- "version": "1.3.8",
- "license": "ISC"
- },
- "node_modules/inline-style-parser": {
- "version": "0.1.1",
- "license": "MIT"
- },
- "node_modules/inline-style-prefixer": {
- "version": "6.0.4",
- "dev": true,
- "license": "MIT",
+ "node_modules/istanbul-lib-source-maps": {
+ "version": "4.0.1",
+ "license": "BSD-3-Clause",
"dependencies": {
- "css-in-js-utils": "^3.1.0",
- "fast-loops": "^1.1.3"
+ "debug": "^4.1.1",
+ "istanbul-lib-coverage": "^3.0.0",
+ "source-map": "^0.6.1"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/inquirer": {
- "version": "8.2.6",
- "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.6.tgz",
- "integrity": "sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==",
+ "node_modules/istanbul-lib-source-maps/node_modules/debug": {
+ "version": "4.4.0",
+ "license": "MIT",
"dependencies": {
- "ansi-escapes": "^4.2.1",
- "chalk": "^4.1.1",
- "cli-cursor": "^3.1.0",
- "cli-width": "^3.0.0",
- "external-editor": "^3.0.3",
- "figures": "^3.0.0",
- "lodash": "^4.17.21",
- "mute-stream": "0.0.8",
- "ora": "^5.4.1",
- "run-async": "^2.4.0",
- "rxjs": "^7.5.5",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0",
- "through": "^2.3.6",
- "wrap-ansi": "^6.0.1"
+ "ms": "^2.1.3"
},
"engines": {
- "node": ">=12.0.0"
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
}
},
- "node_modules/inquirer/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "node_modules/istanbul-reports": {
+ "version": "3.1.7",
+ "license": "BSD-3-Clause",
"dependencies": {
- "color-convert": "^2.0.1"
+ "html-escaper": "^2.0.0",
+ "istanbul-lib-report": "^3.0.0"
},
"engines": {
"node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/inquirer/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "node_modules/iterator.prototype": {
+ "version": "1.1.3",
+ "license": "MIT",
"dependencies": {
- "color-name": "~1.1.4"
+ "define-properties": "^1.2.1",
+ "get-intrinsic": "^1.2.1",
+ "has-symbols": "^1.0.3",
+ "reflect.getprototypeof": "^1.0.4",
+ "set-function-name": "^2.0.1"
},
"engines": {
- "node": ">=7.0.0"
+ "node": ">= 0.4"
}
},
- "node_modules/inquirer/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
- },
- "node_modules/inquirer/node_modules/wrap-ansi": {
- "version": "6.2.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
- "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
+ "node_modules/jackspeak": {
+ "version": "3.4.3",
+ "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz",
+ "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==",
+ "license": "BlueOak-1.0.0",
"dependencies": {
- "ansi-styles": "^4.0.0",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0"
+ "@isaacs/cliui": "^8.0.2"
},
- "engines": {
- "node": ">=8"
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ },
+ "optionalDependencies": {
+ "@pkgjs/parseargs": "^0.11.0"
}
},
- "node_modules/internal-slot": {
- "version": "1.0.5",
- "license": "MIT",
+ "node_modules/jake": {
+ "version": "10.9.2",
+ "devOptional": true,
+ "license": "Apache-2.0",
"dependencies": {
- "get-intrinsic": "^1.2.0",
- "has": "^1.0.3",
- "side-channel": "^1.0.4"
+ "async": "^3.2.3",
+ "chalk": "^4.0.2",
+ "filelist": "^1.0.4",
+ "minimatch": "^3.1.2"
+ },
+ "bin": {
+ "jake": "bin/cli.js"
},
"engines": {
- "node": ">= 0.4"
+ "node": ">=10"
}
},
- "node_modules/interpret": {
- "version": "1.4.0",
+ "node_modules/jake/node_modules/async": {
+ "version": "3.2.6",
+ "devOptional": true,
+ "license": "MIT"
+ },
+ "node_modules/java-properties": {
+ "version": "1.0.2",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">= 0.10"
+ "node": ">= 0.6.0"
}
},
- "node_modules/intersection-observer": {
- "version": "0.12.2",
- "dev": true,
- "license": "Apache-2.0"
+ "node_modules/javascript-stringify": {
+ "version": "2.1.0",
+ "license": "MIT"
},
- "node_modules/intl-messageformat": {
- "version": "9.13.0",
- "license": "BSD-3-Clause",
+ "node_modules/jest": {
+ "version": "29.7.0",
+ "devOptional": true,
+ "license": "MIT",
"dependencies": {
- "@formatjs/ecma402-abstract": "1.11.4",
- "@formatjs/fast-memoize": "1.2.1",
- "@formatjs/icu-messageformat-parser": "2.1.0",
- "tslib": "^2.1.0"
+ "@jest/core": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "import-local": "^3.0.2",
+ "jest-cli": "^29.7.0"
+ },
+ "bin": {
+ "jest": "bin/jest.js"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ },
+ "peerDependencies": {
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
+ },
+ "peerDependenciesMeta": {
+ "node-notifier": {
+ "optional": true
+ }
}
},
- "node_modules/intl-messageformat-parser": {
- "version": "5.5.1",
- "dev": true,
- "license": "BSD-3-Clause",
+ "node_modules/jest-changed-files": {
+ "version": "26.6.2",
+ "license": "MIT",
"dependencies": {
- "@formatjs/intl-numberformat": "^5.5.2"
+ "@jest/types": "^26.6.2",
+ "execa": "^4.0.0",
+ "throat": "^5.0.0"
+ },
+ "engines": {
+ "node": ">= 10.14.2"
}
},
- "node_modules/into-stream": {
- "version": "6.0.0",
- "dev": true,
+ "node_modules/jest-changed-files/node_modules/@jest/types": {
+ "version": "26.6.2",
"license": "MIT",
"dependencies": {
- "from2": "^2.3.0",
- "p-is-promise": "^3.0.0"
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^15.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": ">= 10.14.2"
+ }
+ },
+ "node_modules/jest-changed-files/node_modules/execa": {
+ "version": "4.1.0",
+ "license": "MIT",
+ "dependencies": {
+ "cross-spawn": "^7.0.0",
+ "get-stream": "^5.0.0",
+ "human-signals": "^1.1.1",
+ "is-stream": "^2.0.0",
+ "merge-stream": "^2.0.0",
+ "npm-run-path": "^4.0.0",
+ "onetime": "^5.1.0",
+ "signal-exit": "^3.0.2",
+ "strip-final-newline": "^2.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/sindresorhus/execa?sponsor=1"
}
},
- "node_modules/invariant": {
- "version": "2.2.4",
+ "node_modules/jest-changed-files/node_modules/get-stream": {
+ "version": "5.2.0",
"license": "MIT",
"dependencies": {
- "loose-envify": "^1.0.0"
+ "pump": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/ipaddr.js": {
- "version": "1.9.1",
- "license": "MIT",
+ "node_modules/jest-changed-files/node_modules/human-signals": {
+ "version": "1.1.1",
+ "license": "Apache-2.0",
"engines": {
- "node": ">= 0.10"
+ "node": ">=8.12.0"
}
},
- "node_modules/is-absolute": {
- "version": "1.0.0",
+ "node_modules/jest-circus": {
+ "version": "29.7.0",
"license": "MIT",
"dependencies": {
- "is-relative": "^1.0.0",
- "is-windows": "^1.0.1"
+ "@jest/environment": "^29.7.0",
+ "@jest/expect": "^29.7.0",
+ "@jest/test-result": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "co": "^4.6.0",
+ "dedent": "^1.0.0",
+ "is-generator-fn": "^2.0.0",
+ "jest-each": "^29.7.0",
+ "jest-matcher-utils": "^29.7.0",
+ "jest-message-util": "^29.7.0",
+ "jest-runtime": "^29.7.0",
+ "jest-snapshot": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "p-limit": "^3.1.0",
+ "pretty-format": "^29.7.0",
+ "pure-rand": "^6.0.0",
+ "slash": "^3.0.0",
+ "stack-utils": "^2.0.3"
},
"engines": {
- "node": ">=0.10.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-absolute-url": {
- "version": "3.0.3",
+ "node_modules/jest-circus/node_modules/@jest/console": {
+ "version": "29.7.0",
"license": "MIT",
+ "dependencies": {
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "jest-message-util": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "slash": "^3.0.0"
+ },
"engines": {
- "node": ">=8"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-accessor-descriptor": {
- "version": "1.0.0",
- "dev": true,
+ "node_modules/jest-circus/node_modules/@jest/globals": {
+ "version": "29.7.0",
"license": "MIT",
"dependencies": {
- "kind-of": "^6.0.0"
+ "@jest/environment": "^29.7.0",
+ "@jest/expect": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "jest-mock": "^29.7.0"
},
"engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/is-alphabetical": {
- "version": "1.0.4",
- "license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-alphanumeric": {
- "version": "1.0.0",
+ "node_modules/jest-circus/node_modules/@jest/source-map": {
+ "version": "29.6.3",
"license": "MIT",
+ "dependencies": {
+ "@jridgewell/trace-mapping": "^0.3.18",
+ "callsites": "^3.0.0",
+ "graceful-fs": "^4.2.9"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-alphanumerical": {
- "version": "1.0.4",
+ "node_modules/jest-circus/node_modules/@jest/test-result": {
+ "version": "29.7.0",
"license": "MIT",
"dependencies": {
- "is-alphabetical": "^1.0.0",
- "is-decimal": "^1.0.0"
+ "@jest/console": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "collect-v8-coverage": "^1.0.0"
},
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-arguments": {
- "version": "1.1.1",
+ "node_modules/jest-circus/node_modules/ansi-styles": {
+ "version": "5.2.0",
"license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.2",
- "has-tostringtag": "^1.0.0"
- },
"engines": {
- "node": ">= 0.4"
+ "node": ">=10"
},
"funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/is-array-buffer": {
- "version": "3.0.2",
+ "node_modules/jest-circus/node_modules/ci-info": {
+ "version": "3.9.0",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/sibiraj-s"
+ }
+ ],
"license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.2",
- "get-intrinsic": "^1.2.0",
- "is-typed-array": "^1.1.10"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/is-arrayish": {
- "version": "0.2.1",
+ "node_modules/jest-circus/node_modules/cjs-module-lexer": {
+ "version": "1.4.1",
"license": "MIT"
},
- "node_modules/is-bigint": {
- "version": "1.0.4",
+ "node_modules/jest-circus/node_modules/dedent": {
+ "version": "1.5.3",
"license": "MIT",
+ "peerDependencies": {
+ "babel-plugin-macros": "^3.1.0"
+ },
+ "peerDependenciesMeta": {
+ "babel-plugin-macros": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/jest-circus/node_modules/glob": {
+ "version": "7.2.3",
+ "license": "ISC",
"dependencies": {
- "has-bigints": "^1.0.1"
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ },
+ "engines": {
+ "node": "*"
},
"funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/is-binary-path": {
- "version": "2.1.0",
+ "node_modules/jest-circus/node_modules/jest-each": {
+ "version": "29.7.0",
"license": "MIT",
"dependencies": {
- "binary-extensions": "^2.0.0"
+ "@jest/types": "^29.6.3",
+ "chalk": "^4.0.0",
+ "jest-get-type": "^29.6.3",
+ "jest-util": "^29.7.0",
+ "pretty-format": "^29.7.0"
},
"engines": {
- "node": ">=8"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-boolean-object": {
- "version": "1.1.2",
+ "node_modules/jest-circus/node_modules/jest-haste-map": {
+ "version": "29.7.0",
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "has-tostringtag": "^1.0.0"
+ "@jest/types": "^29.6.3",
+ "@types/graceful-fs": "^4.1.3",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "graceful-fs": "^4.2.9",
+ "jest-regex-util": "^29.6.3",
+ "jest-util": "^29.7.0",
+ "jest-worker": "^29.7.0",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.8"
},
"engines": {
- "node": ">= 0.4"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "optionalDependencies": {
+ "fsevents": "^2.3.2"
}
},
- "node_modules/is-buffer": {
- "version": "2.0.5",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
+ "node_modules/jest-circus/node_modules/jest-message-util": {
+ "version": "29.7.0",
"license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.12.13",
+ "@jest/types": "^29.6.3",
+ "@types/stack-utils": "^2.0.0",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.9",
+ "micromatch": "^4.0.4",
+ "pretty-format": "^29.7.0",
+ "slash": "^3.0.0",
+ "stack-utils": "^2.0.3"
+ },
"engines": {
- "node": ">=4"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-callable": {
- "version": "1.2.7",
+ "node_modules/jest-circus/node_modules/jest-regex-util": {
+ "version": "29.6.3",
"license": "MIT",
"engines": {
- "node": ">= 0.4"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "node_modules/jest-circus/node_modules/jest-resolve": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "dependencies": {
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.9",
+ "jest-haste-map": "^29.7.0",
+ "jest-pnp-resolver": "^1.2.2",
+ "jest-util": "^29.7.0",
+ "jest-validate": "^29.7.0",
+ "resolve": "^1.20.0",
+ "resolve.exports": "^2.0.0",
+ "slash": "^3.0.0"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-ci": {
- "version": "2.0.0",
+ "node_modules/jest-circus/node_modules/jest-runtime": {
+ "version": "29.7.0",
"license": "MIT",
"dependencies": {
- "ci-info": "^2.0.0"
+ "@jest/environment": "^29.7.0",
+ "@jest/fake-timers": "^29.7.0",
+ "@jest/globals": "^29.7.0",
+ "@jest/source-map": "^29.6.3",
+ "@jest/test-result": "^29.7.0",
+ "@jest/transform": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "cjs-module-lexer": "^1.0.0",
+ "collect-v8-coverage": "^1.0.0",
+ "glob": "^7.1.3",
+ "graceful-fs": "^4.2.9",
+ "jest-haste-map": "^29.7.0",
+ "jest-message-util": "^29.7.0",
+ "jest-mock": "^29.7.0",
+ "jest-regex-util": "^29.6.3",
+ "jest-resolve": "^29.7.0",
+ "jest-snapshot": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "slash": "^3.0.0",
+ "strip-bom": "^4.0.0"
},
- "bin": {
- "is-ci": "bin.js"
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-ci/node_modules/ci-info": {
- "version": "2.0.0",
- "license": "MIT"
- },
- "node_modules/is-core-module": {
- "version": "2.11.0",
+ "node_modules/jest-circus/node_modules/jest-snapshot": {
+ "version": "29.7.0",
"license": "MIT",
"dependencies": {
- "has": "^1.0.3"
+ "@babel/core": "^7.11.6",
+ "@babel/generator": "^7.7.2",
+ "@babel/plugin-syntax-jsx": "^7.7.2",
+ "@babel/plugin-syntax-typescript": "^7.7.2",
+ "@babel/types": "^7.3.3",
+ "@jest/expect-utils": "^29.7.0",
+ "@jest/transform": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "babel-preset-current-node-syntax": "^1.0.0",
+ "chalk": "^4.0.0",
+ "expect": "^29.7.0",
+ "graceful-fs": "^4.2.9",
+ "jest-diff": "^29.7.0",
+ "jest-get-type": "^29.6.3",
+ "jest-matcher-utils": "^29.7.0",
+ "jest-message-util": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "natural-compare": "^1.4.0",
+ "pretty-format": "^29.7.0",
+ "semver": "^7.5.3"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-data-descriptor": {
- "version": "1.0.0",
- "dev": true,
+ "node_modules/jest-circus/node_modules/jest-util": {
+ "version": "29.7.0",
"license": "MIT",
"dependencies": {
- "kind-of": "^6.0.0"
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.9",
+ "picomatch": "^2.2.3"
},
"engines": {
- "node": ">=0.10.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-date-object": {
- "version": "1.0.5",
+ "node_modules/jest-circus/node_modules/jest-validate": {
+ "version": "29.7.0",
"license": "MIT",
"dependencies": {
- "has-tostringtag": "^1.0.0"
+ "@jest/types": "^29.6.3",
+ "camelcase": "^6.2.0",
+ "chalk": "^4.0.0",
+ "jest-get-type": "^29.6.3",
+ "leven": "^3.1.0",
+ "pretty-format": "^29.7.0"
},
"engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-decimal": {
- "version": "1.0.4",
- "license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-descriptor": {
- "version": "1.0.2",
- "dev": true,
+ "node_modules/jest-circus/node_modules/jest-worker": {
+ "version": "29.7.0",
"license": "MIT",
"dependencies": {
- "is-accessor-descriptor": "^1.0.0",
- "is-data-descriptor": "^1.0.0",
- "kind-of": "^6.0.2"
+ "@types/node": "*",
+ "jest-util": "^29.7.0",
+ "merge-stream": "^2.0.0",
+ "supports-color": "^8.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-docker": {
- "version": "2.2.1",
+ "node_modules/jest-circus/node_modules/pretty-format": {
+ "version": "29.7.0",
"license": "MIT",
- "bin": {
- "is-docker": "cli.js"
+ "dependencies": {
+ "@jest/schemas": "^29.6.3",
+ "ansi-styles": "^5.0.0",
+ "react-is": "^18.0.0"
},
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-extendable": {
- "version": "0.1.1",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
+ "node_modules/jest-circus/node_modules/react-is": {
+ "version": "18.3.1",
+ "license": "MIT"
},
- "node_modules/is-extglob": {
- "version": "2.1.1",
- "license": "MIT",
+ "node_modules/jest-circus/node_modules/semver": {
+ "version": "7.6.3",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10"
}
},
- "node_modules/is-fullwidth-code-point": {
+ "node_modules/jest-circus/node_modules/slash": {
"version": "3.0.0",
"license": "MIT",
"engines": {
"node": ">=8"
}
},
- "node_modules/is-generator-fn": {
- "version": "2.1.0",
- "dev": true,
+ "node_modules/jest-circus/node_modules/supports-color": {
+ "version": "8.1.1",
"license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/is-generator-function": {
- "version": "1.0.10",
- "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz",
- "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==",
"dependencies": {
- "has-tostringtag": "^1.0.0"
+ "has-flag": "^4.0.0"
},
"engines": {
- "node": ">= 0.4"
+ "node": ">=10"
},
"funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
}
},
- "node_modules/is-git-repository": {
- "version": "1.1.1",
- "dev": true,
+ "node_modules/jest-cli": {
+ "version": "29.7.0",
+ "devOptional": true,
"license": "MIT",
"dependencies": {
- "execa": "^0.6.1",
- "path-is-absolute": "^1.0.1"
+ "@jest/core": "^29.7.0",
+ "@jest/test-result": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "chalk": "^4.0.0",
+ "create-jest": "^29.7.0",
+ "exit": "^0.1.2",
+ "import-local": "^3.0.2",
+ "jest-config": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "jest-validate": "^29.7.0",
+ "yargs": "^17.3.1"
+ },
+ "bin": {
+ "jest": "bin/jest.js"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ },
+ "peerDependencies": {
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
+ },
+ "peerDependenciesMeta": {
+ "node-notifier": {
+ "optional": true
+ }
}
},
- "node_modules/is-git-repository/node_modules/cross-spawn": {
- "version": "5.1.0",
- "dev": true,
+ "node_modules/jest-cli/node_modules/@jest/console": {
+ "version": "29.7.0",
+ "devOptional": true,
"license": "MIT",
"dependencies": {
- "lru-cache": "^4.0.1",
- "shebang-command": "^1.2.0",
- "which": "^1.2.9"
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "jest-message-util": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "slash": "^3.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-git-repository/node_modules/execa": {
- "version": "0.6.3",
- "dev": true,
+ "node_modules/jest-cli/node_modules/@jest/core": {
+ "version": "29.7.0",
+ "devOptional": true,
"license": "MIT",
"dependencies": {
- "cross-spawn": "^5.0.1",
- "get-stream": "^3.0.0",
- "is-stream": "^1.1.0",
- "npm-run-path": "^2.0.0",
- "p-finally": "^1.0.0",
- "signal-exit": "^3.0.0",
- "strip-eof": "^1.0.0"
+ "@jest/console": "^29.7.0",
+ "@jest/reporters": "^29.7.0",
+ "@jest/test-result": "^29.7.0",
+ "@jest/transform": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "ansi-escapes": "^4.2.1",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "exit": "^0.1.2",
+ "graceful-fs": "^4.2.9",
+ "jest-changed-files": "^29.7.0",
+ "jest-config": "^29.7.0",
+ "jest-haste-map": "^29.7.0",
+ "jest-message-util": "^29.7.0",
+ "jest-regex-util": "^29.6.3",
+ "jest-resolve": "^29.7.0",
+ "jest-resolve-dependencies": "^29.7.0",
+ "jest-runner": "^29.7.0",
+ "jest-runtime": "^29.7.0",
+ "jest-snapshot": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "jest-validate": "^29.7.0",
+ "jest-watcher": "^29.7.0",
+ "micromatch": "^4.0.4",
+ "pretty-format": "^29.7.0",
+ "slash": "^3.0.0",
+ "strip-ansi": "^6.0.0"
},
"engines": {
- "node": ">=4"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ },
+ "peerDependencies": {
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
+ },
+ "peerDependenciesMeta": {
+ "node-notifier": {
+ "optional": true
+ }
}
},
- "node_modules/is-git-repository/node_modules/get-stream": {
- "version": "3.0.0",
- "dev": true,
+ "node_modules/jest-cli/node_modules/@jest/globals": {
+ "version": "29.7.0",
+ "devOptional": true,
"license": "MIT",
+ "dependencies": {
+ "@jest/environment": "^29.7.0",
+ "@jest/expect": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "jest-mock": "^29.7.0"
+ },
"engines": {
- "node": ">=4"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-git-repository/node_modules/is-stream": {
- "version": "1.1.0",
- "dev": true,
+ "node_modules/jest-cli/node_modules/@jest/reporters": {
+ "version": "29.7.0",
+ "devOptional": true,
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/is-git-repository/node_modules/lru-cache": {
- "version": "4.1.5",
- "dev": true,
- "license": "ISC",
"dependencies": {
- "pseudomap": "^1.0.2",
- "yallist": "^2.1.2"
+ "@bcoe/v8-coverage": "^0.2.3",
+ "@jest/console": "^29.7.0",
+ "@jest/test-result": "^29.7.0",
+ "@jest/transform": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@jridgewell/trace-mapping": "^0.3.18",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "collect-v8-coverage": "^1.0.0",
+ "exit": "^0.1.2",
+ "glob": "^7.1.3",
+ "graceful-fs": "^4.2.9",
+ "istanbul-lib-coverage": "^3.0.0",
+ "istanbul-lib-instrument": "^6.0.0",
+ "istanbul-lib-report": "^3.0.0",
+ "istanbul-lib-source-maps": "^4.0.0",
+ "istanbul-reports": "^3.1.3",
+ "jest-message-util": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "jest-worker": "^29.7.0",
+ "slash": "^3.0.0",
+ "string-length": "^4.0.1",
+ "strip-ansi": "^6.0.0",
+ "v8-to-istanbul": "^9.0.1"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ },
+ "peerDependencies": {
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
+ },
+ "peerDependenciesMeta": {
+ "node-notifier": {
+ "optional": true
+ }
}
},
- "node_modules/is-git-repository/node_modules/npm-run-path": {
- "version": "2.0.2",
- "dev": true,
+ "node_modules/jest-cli/node_modules/@jest/source-map": {
+ "version": "29.6.3",
+ "devOptional": true,
"license": "MIT",
"dependencies": {
- "path-key": "^2.0.0"
+ "@jridgewell/trace-mapping": "^0.3.18",
+ "callsites": "^3.0.0",
+ "graceful-fs": "^4.2.9"
},
"engines": {
- "node": ">=4"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-git-repository/node_modules/path-key": {
- "version": "2.0.1",
- "dev": true,
+ "node_modules/jest-cli/node_modules/@jest/test-result": {
+ "version": "29.7.0",
+ "devOptional": true,
"license": "MIT",
+ "dependencies": {
+ "@jest/console": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "collect-v8-coverage": "^1.0.0"
+ },
"engines": {
- "node": ">=4"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-git-repository/node_modules/shebang-command": {
- "version": "1.2.0",
- "dev": true,
+ "node_modules/jest-cli/node_modules/@jest/test-sequencer": {
+ "version": "29.7.0",
+ "devOptional": true,
"license": "MIT",
"dependencies": {
- "shebang-regex": "^1.0.0"
+ "@jest/test-result": "^29.7.0",
+ "graceful-fs": "^4.2.9",
+ "jest-haste-map": "^29.7.0",
+ "slash": "^3.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-git-repository/node_modules/shebang-regex": {
- "version": "1.0.0",
- "dev": true,
+ "node_modules/jest-cli/node_modules/ansi-styles": {
+ "version": "5.2.0",
+ "devOptional": true,
"license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/is-git-repository/node_modules/which": {
- "version": "1.3.1",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "isexe": "^2.0.0"
- },
- "bin": {
- "which": "bin/which"
+ "node_modules/jest-cli/node_modules/ci-info": {
+ "version": "3.9.0",
+ "devOptional": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/sibiraj-s"
+ }
+ ],
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/is-git-repository/node_modules/yallist": {
- "version": "2.1.2",
- "dev": true,
- "license": "ISC"
+ "node_modules/jest-cli/node_modules/cjs-module-lexer": {
+ "version": "1.4.1",
+ "devOptional": true,
+ "license": "MIT"
},
- "node_modules/is-glob": {
- "version": "4.0.3",
- "license": "MIT",
+ "node_modules/jest-cli/node_modules/cliui": {
+ "version": "8.0.1",
+ "devOptional": true,
+ "license": "ISC",
"dependencies": {
- "is-extglob": "^2.1.1"
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.1",
+ "wrap-ansi": "^7.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=12"
}
},
- "node_modules/is-hexadecimal": {
- "version": "1.0.4",
+ "node_modules/jest-cli/node_modules/convert-source-map": {
+ "version": "2.0.0",
+ "devOptional": true,
+ "license": "MIT"
+ },
+ "node_modules/jest-cli/node_modules/emittery": {
+ "version": "0.13.1",
+ "devOptional": true,
"license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
"funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "url": "https://github.com/sindresorhus/emittery?sponsor=1"
}
},
- "node_modules/is-installed-globally": {
- "version": "0.4.0",
- "license": "MIT",
+ "node_modules/jest-cli/node_modules/glob": {
+ "version": "7.2.3",
+ "devOptional": true,
+ "license": "ISC",
"dependencies": {
- "global-dirs": "^3.0.0",
- "is-path-inside": "^3.0.2"
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
},
"engines": {
- "node": ">=10"
+ "node": "*"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/is-interactive": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz",
- "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==",
- "engines": {
- "node": ">=8"
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/is-invalid-path": {
- "version": "0.1.0",
- "license": "MIT",
+ "node_modules/jest-cli/node_modules/istanbul-lib-instrument": {
+ "version": "6.0.3",
+ "devOptional": true,
+ "license": "BSD-3-Clause",
"dependencies": {
- "is-glob": "^2.0.0"
+ "@babel/core": "^7.23.9",
+ "@babel/parser": "^7.23.9",
+ "@istanbuljs/schema": "^0.1.3",
+ "istanbul-lib-coverage": "^3.2.0",
+ "semver": "^7.5.4"
},
"engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/is-invalid-path/node_modules/is-extglob": {
- "version": "1.0.0",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "node": ">=10"
}
},
- "node_modules/is-invalid-path/node_modules/is-glob": {
- "version": "2.0.1",
+ "node_modules/jest-cli/node_modules/jest-changed-files": {
+ "version": "29.7.0",
+ "devOptional": true,
"license": "MIT",
"dependencies": {
- "is-extglob": "^1.0.0"
+ "execa": "^5.0.0",
+ "jest-util": "^29.7.0",
+ "p-limit": "^3.1.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-lower-case": {
- "version": "2.0.2",
+ "node_modules/jest-cli/node_modules/jest-config": {
+ "version": "29.7.0",
+ "devOptional": true,
"license": "MIT",
"dependencies": {
- "tslib": "^2.0.3"
- }
- },
- "node_modules/is-map": {
- "version": "2.0.2",
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "@babel/core": "^7.11.6",
+ "@jest/test-sequencer": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "babel-jest": "^29.7.0",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "deepmerge": "^4.2.2",
+ "glob": "^7.1.3",
+ "graceful-fs": "^4.2.9",
+ "jest-circus": "^29.7.0",
+ "jest-environment-node": "^29.7.0",
+ "jest-get-type": "^29.6.3",
+ "jest-regex-util": "^29.6.3",
+ "jest-resolve": "^29.7.0",
+ "jest-runner": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "jest-validate": "^29.7.0",
+ "micromatch": "^4.0.4",
+ "parse-json": "^5.2.0",
+ "pretty-format": "^29.7.0",
+ "slash": "^3.0.0",
+ "strip-json-comments": "^3.1.1"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ },
+ "peerDependencies": {
+ "@types/node": "*",
+ "ts-node": ">=9.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/node": {
+ "optional": true
+ },
+ "ts-node": {
+ "optional": true
+ }
}
- },
- "node_modules/is-mergeable-object": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/is-mergeable-object/-/is-mergeable-object-1.1.1.tgz",
- "integrity": "sha512-CPduJfuGg8h8vW74WOxHtHmtQutyQBzR+3MjQ6iDHIYdbOnm1YC7jv43SqCoU8OPGTJD4nibmiryA4kmogbGrA=="
- },
- "node_modules/is-nan": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz",
- "integrity": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==",
+ },
+ "node_modules/jest-cli/node_modules/jest-docblock": {
+ "version": "29.7.0",
+ "devOptional": true,
+ "license": "MIT",
"dependencies": {
- "call-bind": "^1.0.0",
- "define-properties": "^1.1.3"
+ "detect-newline": "^3.0.0"
},
"engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-negative-zero": {
- "version": "2.0.2",
+ "node_modules/jest-cli/node_modules/jest-environment-node": {
+ "version": "29.7.0",
+ "devOptional": true,
"license": "MIT",
- "engines": {
- "node": ">= 0.4"
+ "dependencies": {
+ "@jest/environment": "^29.7.0",
+ "@jest/fake-timers": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "jest-mock": "^29.7.0",
+ "jest-util": "^29.7.0"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-npm": {
- "version": "5.0.0",
+ "node_modules/jest-cli/node_modules/jest-haste-map": {
+ "version": "29.7.0",
+ "devOptional": true,
"license": "MIT",
- "engines": {
- "node": ">=10"
+ "dependencies": {
+ "@jest/types": "^29.6.3",
+ "@types/graceful-fs": "^4.1.3",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "graceful-fs": "^4.2.9",
+ "jest-regex-util": "^29.6.3",
+ "jest-util": "^29.7.0",
+ "jest-worker": "^29.7.0",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.8"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/is-number": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
"engines": {
- "node": ">=0.12.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ },
+ "optionalDependencies": {
+ "fsevents": "^2.3.2"
}
},
- "node_modules/is-number-object": {
- "version": "1.0.7",
+ "node_modules/jest-cli/node_modules/jest-leak-detector": {
+ "version": "29.7.0",
+ "devOptional": true,
"license": "MIT",
"dependencies": {
- "has-tostringtag": "^1.0.0"
+ "jest-get-type": "^29.6.3",
+ "pretty-format": "^29.7.0"
},
"engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-obj": {
- "version": "2.0.0",
+ "node_modules/jest-cli/node_modules/jest-message-util": {
+ "version": "29.7.0",
+ "devOptional": true,
"license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.12.13",
+ "@jest/types": "^29.6.3",
+ "@types/stack-utils": "^2.0.0",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.9",
+ "micromatch": "^4.0.4",
+ "pretty-format": "^29.7.0",
+ "slash": "^3.0.0",
+ "stack-utils": "^2.0.3"
+ },
"engines": {
- "node": ">=8"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-path-cwd": {
- "version": "2.2.0",
- "dev": true,
+ "node_modules/jest-cli/node_modules/jest-regex-util": {
+ "version": "29.6.3",
+ "devOptional": true,
"license": "MIT",
"engines": {
- "node": ">=6"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-path-in-cwd": {
- "version": "2.1.0",
- "dev": true,
+ "node_modules/jest-cli/node_modules/jest-resolve": {
+ "version": "29.7.0",
+ "devOptional": true,
"license": "MIT",
"dependencies": {
- "is-path-inside": "^2.1.0"
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.9",
+ "jest-haste-map": "^29.7.0",
+ "jest-pnp-resolver": "^1.2.2",
+ "jest-util": "^29.7.0",
+ "jest-validate": "^29.7.0",
+ "resolve": "^1.20.0",
+ "resolve.exports": "^2.0.0",
+ "slash": "^3.0.0"
},
"engines": {
- "node": ">=6"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-path-in-cwd/node_modules/is-path-inside": {
- "version": "2.1.0",
- "dev": true,
+ "node_modules/jest-cli/node_modules/jest-resolve-dependencies": {
+ "version": "29.7.0",
+ "devOptional": true,
"license": "MIT",
"dependencies": {
- "path-is-inside": "^1.0.2"
+ "jest-regex-util": "^29.6.3",
+ "jest-snapshot": "^29.7.0"
},
"engines": {
- "node": ">=6"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-path-inside": {
- "version": "3.0.3",
+ "node_modules/jest-cli/node_modules/jest-runner": {
+ "version": "29.7.0",
+ "devOptional": true,
"license": "MIT",
+ "dependencies": {
+ "@jest/console": "^29.7.0",
+ "@jest/environment": "^29.7.0",
+ "@jest/test-result": "^29.7.0",
+ "@jest/transform": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "emittery": "^0.13.1",
+ "graceful-fs": "^4.2.9",
+ "jest-docblock": "^29.7.0",
+ "jest-environment-node": "^29.7.0",
+ "jest-haste-map": "^29.7.0",
+ "jest-leak-detector": "^29.7.0",
+ "jest-message-util": "^29.7.0",
+ "jest-resolve": "^29.7.0",
+ "jest-runtime": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "jest-watcher": "^29.7.0",
+ "jest-worker": "^29.7.0",
+ "p-limit": "^3.1.0",
+ "source-map-support": "0.5.13"
+ },
"engines": {
- "node": ">=8"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-plain-obj": {
- "version": "1.1.0",
+ "node_modules/jest-cli/node_modules/jest-runtime": {
+ "version": "29.7.0",
+ "devOptional": true,
"license": "MIT",
+ "dependencies": {
+ "@jest/environment": "^29.7.0",
+ "@jest/fake-timers": "^29.7.0",
+ "@jest/globals": "^29.7.0",
+ "@jest/source-map": "^29.6.3",
+ "@jest/test-result": "^29.7.0",
+ "@jest/transform": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "cjs-module-lexer": "^1.0.0",
+ "collect-v8-coverage": "^1.0.0",
+ "glob": "^7.1.3",
+ "graceful-fs": "^4.2.9",
+ "jest-haste-map": "^29.7.0",
+ "jest-message-util": "^29.7.0",
+ "jest-mock": "^29.7.0",
+ "jest-regex-util": "^29.6.3",
+ "jest-resolve": "^29.7.0",
+ "jest-snapshot": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "slash": "^3.0.0",
+ "strip-bom": "^4.0.0"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-plain-object": {
- "version": "5.0.0",
- "dev": true,
+ "node_modules/jest-cli/node_modules/jest-snapshot": {
+ "version": "29.7.0",
+ "devOptional": true,
"license": "MIT",
+ "dependencies": {
+ "@babel/core": "^7.11.6",
+ "@babel/generator": "^7.7.2",
+ "@babel/plugin-syntax-jsx": "^7.7.2",
+ "@babel/plugin-syntax-typescript": "^7.7.2",
+ "@babel/types": "^7.3.3",
+ "@jest/expect-utils": "^29.7.0",
+ "@jest/transform": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "babel-preset-current-node-syntax": "^1.0.0",
+ "chalk": "^4.0.0",
+ "expect": "^29.7.0",
+ "graceful-fs": "^4.2.9",
+ "jest-diff": "^29.7.0",
+ "jest-get-type": "^29.6.3",
+ "jest-matcher-utils": "^29.7.0",
+ "jest-message-util": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "natural-compare": "^1.4.0",
+ "pretty-format": "^29.7.0",
+ "semver": "^7.5.3"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-potential-custom-element-name": {
- "version": "1.0.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/is-promise": {
- "version": "2.2.2",
- "license": "MIT"
- },
- "node_modules/is-regex": {
- "version": "1.1.4",
+ "node_modules/jest-cli/node_modules/jest-util": {
+ "version": "29.7.0",
+ "devOptional": true,
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "has-tostringtag": "^1.0.0"
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.9",
+ "picomatch": "^2.2.3"
},
"engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-relative": {
- "version": "1.0.0",
+ "node_modules/jest-cli/node_modules/jest-validate": {
+ "version": "29.7.0",
+ "devOptional": true,
"license": "MIT",
"dependencies": {
- "is-unc-path": "^1.0.0"
+ "@jest/types": "^29.6.3",
+ "camelcase": "^6.2.0",
+ "chalk": "^4.0.0",
+ "jest-get-type": "^29.6.3",
+ "leven": "^3.1.0",
+ "pretty-format": "^29.7.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-relative-url": {
- "version": "3.0.0",
+ "node_modules/jest-cli/node_modules/jest-watcher": {
+ "version": "29.7.0",
+ "devOptional": true,
"license": "MIT",
"dependencies": {
- "is-absolute-url": "^3.0.0"
+ "@jest/test-result": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "ansi-escapes": "^4.2.1",
+ "chalk": "^4.0.0",
+ "emittery": "^0.13.1",
+ "jest-util": "^29.7.0",
+ "string-length": "^4.0.1"
},
"engines": {
- "node": ">=8"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-retry-allowed": {
- "version": "1.2.0",
+ "node_modules/jest-cli/node_modules/jest-worker": {
+ "version": "29.7.0",
+ "devOptional": true,
"license": "MIT",
+ "dependencies": {
+ "@types/node": "*",
+ "jest-util": "^29.7.0",
+ "merge-stream": "^2.0.0",
+ "supports-color": "^8.0.0"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-root": {
- "version": "2.1.0",
+ "node_modules/jest-cli/node_modules/pretty-format": {
+ "version": "29.7.0",
+ "devOptional": true,
"license": "MIT",
+ "dependencies": {
+ "@jest/schemas": "^29.6.3",
+ "ansi-styles": "^5.0.0",
+ "react-is": "^18.0.0"
+ },
"engines": {
- "node": ">=6"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-set": {
- "version": "2.0.2",
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
+ "node_modules/jest-cli/node_modules/react-is": {
+ "version": "18.3.1",
+ "devOptional": true,
+ "license": "MIT"
},
- "node_modules/is-shared-array-buffer": {
- "version": "1.0.2",
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.2"
+ "node_modules/jest-cli/node_modules/semver": {
+ "version": "7.6.3",
+ "devOptional": true,
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-ssh": {
- "version": "1.4.0",
- "license": "MIT",
- "dependencies": {
- "protocols": "^2.0.1"
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/is-stream": {
- "version": "2.0.1",
+ "node_modules/jest-cli/node_modules/slash": {
+ "version": "3.0.0",
+ "devOptional": true,
"license": "MIT",
"engines": {
"node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/is-string": {
- "version": "1.0.7",
+ "node_modules/jest-cli/node_modules/source-map-support": {
+ "version": "0.5.13",
+ "devOptional": true,
"license": "MIT",
"dependencies": {
- "has-tostringtag": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "buffer-from": "^1.0.0",
+ "source-map": "^0.6.0"
}
},
- "node_modules/is-symbol": {
- "version": "1.0.4",
+ "node_modules/jest-cli/node_modules/supports-color": {
+ "version": "8.1.1",
+ "devOptional": true,
"license": "MIT",
"dependencies": {
- "has-symbols": "^1.0.2"
+ "has-flag": "^4.0.0"
},
"engines": {
- "node": ">= 0.4"
+ "node": ">=10"
},
"funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
}
},
- "node_modules/is-text-path": {
- "version": "1.0.1",
- "dev": true,
- "license": "MIT",
+ "node_modules/jest-cli/node_modules/v8-to-istanbul": {
+ "version": "9.3.0",
+ "devOptional": true,
+ "license": "ISC",
"dependencies": {
- "text-extensions": "^1.0.0"
+ "@jridgewell/trace-mapping": "^0.3.12",
+ "@types/istanbul-lib-coverage": "^2.0.1",
+ "convert-source-map": "^2.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10.12.0"
}
},
- "node_modules/is-typed-array": {
- "version": "1.1.10",
+ "node_modules/jest-cli/node_modules/y18n": {
+ "version": "5.0.8",
+ "devOptional": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/jest-cli/node_modules/yargs": {
+ "version": "17.7.2",
+ "devOptional": true,
"license": "MIT",
"dependencies": {
- "available-typed-arrays": "^1.0.5",
- "call-bind": "^1.0.2",
- "for-each": "^0.3.3",
- "gopd": "^1.0.1",
- "has-tostringtag": "^1.0.0"
+ "cliui": "^8.0.1",
+ "escalade": "^3.1.1",
+ "get-caller-file": "^2.0.5",
+ "require-directory": "^2.1.1",
+ "string-width": "^4.2.3",
+ "y18n": "^5.0.5",
+ "yargs-parser": "^21.1.1"
},
"engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "node": ">=12"
}
},
- "node_modules/is-typedarray": {
- "version": "1.0.0",
- "license": "MIT"
+ "node_modules/jest-cli/node_modules/yargs-parser": {
+ "version": "21.1.1",
+ "devOptional": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">=12"
+ }
},
- "node_modules/is-unc-path": {
- "version": "1.0.0",
+ "node_modules/jest-config": {
+ "version": "26.6.3",
"license": "MIT",
"dependencies": {
- "unc-path-regex": "^0.1.2"
+ "@babel/core": "^7.1.0",
+ "@jest/test-sequencer": "^26.6.3",
+ "@jest/types": "^26.6.2",
+ "babel-jest": "^26.6.3",
+ "chalk": "^4.0.0",
+ "deepmerge": "^4.2.2",
+ "glob": "^7.1.1",
+ "graceful-fs": "^4.2.4",
+ "jest-environment-jsdom": "^26.6.2",
+ "jest-environment-node": "^26.6.2",
+ "jest-get-type": "^26.3.0",
+ "jest-jasmine2": "^26.6.3",
+ "jest-regex-util": "^26.0.0",
+ "jest-resolve": "^26.6.2",
+ "jest-util": "^26.6.2",
+ "jest-validate": "^26.6.2",
+ "micromatch": "^4.0.2",
+ "pretty-format": "^26.6.2"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 10.14.2"
+ },
+ "peerDependencies": {
+ "ts-node": ">=9.0.0"
+ },
+ "peerDependenciesMeta": {
+ "ts-node": {
+ "optional": true
+ }
}
},
- "node_modules/is-unicode-supported": {
- "version": "1.3.0",
- "dev": true,
+ "node_modules/jest-config/node_modules/@jest/environment": {
+ "version": "26.6.2",
"license": "MIT",
- "engines": {
- "node": ">=12"
+ "dependencies": {
+ "@jest/fake-timers": "^26.6.2",
+ "@jest/types": "^26.6.2",
+ "@types/node": "*",
+ "jest-mock": "^26.6.2"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "engines": {
+ "node": ">= 10.14.2"
}
},
- "node_modules/is-upper-case": {
- "version": "2.0.2",
+ "node_modules/jest-config/node_modules/@jest/fake-timers": {
+ "version": "26.6.2",
"license": "MIT",
"dependencies": {
- "tslib": "^2.0.3"
+ "@jest/types": "^26.6.2",
+ "@sinonjs/fake-timers": "^6.0.1",
+ "@types/node": "*",
+ "jest-message-util": "^26.6.2",
+ "jest-mock": "^26.6.2",
+ "jest-util": "^26.6.2"
+ },
+ "engines": {
+ "node": ">= 10.14.2"
}
},
- "node_modules/is-valid-domain": {
- "version": "0.1.6",
+ "node_modules/jest-config/node_modules/@jest/transform": {
+ "version": "26.6.2",
"license": "MIT",
"dependencies": {
- "punycode": "^2.1.1"
+ "@babel/core": "^7.1.0",
+ "@jest/types": "^26.6.2",
+ "babel-plugin-istanbul": "^6.0.0",
+ "chalk": "^4.0.0",
+ "convert-source-map": "^1.4.0",
+ "fast-json-stable-stringify": "^2.0.0",
+ "graceful-fs": "^4.2.4",
+ "jest-haste-map": "^26.6.2",
+ "jest-regex-util": "^26.0.0",
+ "jest-util": "^26.6.2",
+ "micromatch": "^4.0.2",
+ "pirates": "^4.0.1",
+ "slash": "^3.0.0",
+ "source-map": "^0.6.1",
+ "write-file-atomic": "^3.0.0"
+ },
+ "engines": {
+ "node": ">= 10.14.2"
}
},
- "node_modules/is-valid-path": {
- "version": "0.1.1",
+ "node_modules/jest-config/node_modules/@jest/types": {
+ "version": "26.6.2",
"license": "MIT",
"dependencies": {
- "is-invalid-path": "^0.1.0"
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^15.0.0",
+ "chalk": "^4.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 10.14.2"
}
},
- "node_modules/is-weakmap": {
- "version": "2.0.1",
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "node_modules/jest-config/node_modules/@sinonjs/commons": {
+ "version": "1.8.6",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "type-detect": "4.0.8"
}
},
- "node_modules/is-weakref": {
- "version": "1.0.2",
- "license": "MIT",
+ "node_modules/jest-config/node_modules/@sinonjs/fake-timers": {
+ "version": "6.0.1",
+ "license": "BSD-3-Clause",
"dependencies": {
- "call-bind": "^1.0.2"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "@sinonjs/commons": "^1.7.0"
}
},
- "node_modules/is-weakset": {
- "version": "2.0.2",
+ "node_modules/jest-config/node_modules/@tootallnate/once": {
+ "version": "1.1.2",
"license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.2",
- "get-intrinsic": "^1.1.1"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "engines": {
+ "node": ">= 6"
}
},
- "node_modules/is-whitespace-character": {
- "version": "1.0.4",
+ "node_modules/jest-config/node_modules/acorn-globals": {
+ "version": "6.0.0",
"license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "dependencies": {
+ "acorn": "^7.1.1",
+ "acorn-walk": "^7.1.1"
}
},
- "node_modules/is-windows": {
- "version": "1.0.2",
+ "node_modules/jest-config/node_modules/acorn-globals/node_modules/acorn": {
+ "version": "7.4.1",
"license": "MIT",
+ "bin": {
+ "acorn": "bin/acorn"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=0.4.0"
}
},
- "node_modules/is-word-character": {
- "version": "1.0.4",
+ "node_modules/jest-config/node_modules/acorn-walk": {
+ "version": "7.2.0",
"license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "engines": {
+ "node": ">=0.4.0"
}
},
- "node_modules/is-wsl": {
- "version": "2.2.0",
+ "node_modules/jest-config/node_modules/babel-jest": {
+ "version": "26.6.3",
"license": "MIT",
"dependencies": {
- "is-docker": "^2.0.0"
+ "@jest/transform": "^26.6.2",
+ "@jest/types": "^26.6.2",
+ "@types/babel__core": "^7.1.7",
+ "babel-plugin-istanbul": "^6.0.0",
+ "babel-preset-jest": "^26.6.2",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.4",
+ "slash": "^3.0.0"
},
"engines": {
- "node": ">=8"
+ "node": ">= 10.14.2"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
}
},
- "node_modules/is-yarn-global": {
- "version": "0.3.0",
- "license": "MIT"
- },
- "node_modules/isarray": {
- "version": "2.0.5",
+ "node_modules/jest-config/node_modules/cssom": {
+ "version": "0.4.4",
"license": "MIT"
},
- "node_modules/isexe": {
+ "node_modules/jest-config/node_modules/data-urls": {
"version": "2.0.0",
- "license": "ISC"
- },
- "node_modules/isobject": {
- "version": "3.0.1",
"license": "MIT",
+ "dependencies": {
+ "abab": "^2.0.3",
+ "whatwg-mimetype": "^2.3.0",
+ "whatwg-url": "^8.0.0"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10"
}
},
- "node_modules/issue-parser": {
- "version": "6.0.0",
- "dev": true,
+ "node_modules/jest-config/node_modules/debug": {
+ "version": "4.4.0",
"license": "MIT",
"dependencies": {
- "lodash.capitalize": "^4.2.1",
- "lodash.escaperegexp": "^4.1.2",
- "lodash.isplainobject": "^4.0.6",
- "lodash.isstring": "^4.0.1",
- "lodash.uniqby": "^4.7.0"
+ "ms": "^2.1.3"
},
"engines": {
- "node": ">=10.13"
- }
- },
- "node_modules/istanbul-lib-coverage": {
- "version": "3.2.0",
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=8"
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
}
},
- "node_modules/istanbul-lib-instrument": {
- "version": "5.2.1",
- "dev": true,
- "license": "BSD-3-Clause",
+ "node_modules/jest-config/node_modules/domexception": {
+ "version": "2.0.1",
+ "license": "MIT",
"dependencies": {
- "@babel/core": "^7.12.3",
- "@babel/parser": "^7.14.7",
- "@istanbuljs/schema": "^0.1.2",
- "istanbul-lib-coverage": "^3.2.0",
- "semver": "^6.3.0"
+ "webidl-conversions": "^5.0.0"
},
"engines": {
"node": ">=8"
}
},
- "node_modules/istanbul-lib-report": {
- "version": "3.0.0",
- "license": "BSD-3-Clause",
- "dependencies": {
- "istanbul-lib-coverage": "^3.0.0",
- "make-dir": "^3.0.0",
- "supports-color": "^7.1.0"
- },
+ "node_modules/jest-config/node_modules/domexception/node_modules/webidl-conversions": {
+ "version": "5.0.0",
+ "license": "BSD-2-Clause",
"engines": {
"node": ">=8"
}
},
- "node_modules/istanbul-lib-report/node_modules/has-flag": {
- "version": "4.0.0",
+ "node_modules/jest-config/node_modules/form-data": {
+ "version": "3.0.2",
"license": "MIT",
+ "dependencies": {
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.8",
+ "mime-types": "^2.1.12"
+ },
"engines": {
- "node": ">=8"
+ "node": ">= 6"
}
},
- "node_modules/istanbul-lib-report/node_modules/make-dir": {
- "version": "3.1.0",
- "license": "MIT",
+ "node_modules/jest-config/node_modules/glob": {
+ "version": "7.2.3",
+ "license": "ISC",
"dependencies": {
- "semver": "^6.0.0"
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
},
"engines": {
- "node": ">=8"
+ "node": "*"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/istanbul-lib-report/node_modules/supports-color": {
- "version": "7.2.0",
+ "node_modules/jest-config/node_modules/html-encoding-sniffer": {
+ "version": "2.0.1",
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
+ "whatwg-encoding": "^1.0.5"
},
"engines": {
- "node": ">=8"
+ "node": ">=10"
}
},
- "node_modules/istanbul-lib-source-maps": {
+ "node_modules/jest-config/node_modules/http-proxy-agent": {
"version": "4.0.1",
- "dev": true,
- "license": "BSD-3-Clause",
+ "license": "MIT",
"dependencies": {
- "debug": "^4.1.1",
- "istanbul-lib-coverage": "^3.0.0",
- "source-map": "^0.6.1"
+ "@tootallnate/once": "1",
+ "agent-base": "6",
+ "debug": "4"
},
"engines": {
- "node": ">=10"
+ "node": ">= 6"
}
},
- "node_modules/istanbul-reports": {
- "version": "3.1.5",
- "license": "BSD-3-Clause",
+ "node_modules/jest-config/node_modules/jest-environment-jsdom": {
+ "version": "26.6.2",
+ "license": "MIT",
"dependencies": {
- "html-escaper": "^2.0.0",
- "istanbul-lib-report": "^3.0.0"
+ "@jest/environment": "^26.6.2",
+ "@jest/fake-timers": "^26.6.2",
+ "@jest/types": "^26.6.2",
+ "@types/node": "*",
+ "jest-mock": "^26.6.2",
+ "jest-util": "^26.6.2",
+ "jsdom": "^16.4.0"
},
"engines": {
- "node": ">=8"
+ "node": ">= 10.14.2"
}
},
- "node_modules/jackspeak": {
- "version": "3.4.3",
- "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz",
- "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==",
- "dependencies": {
- "@isaacs/cliui": "^8.0.2"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- },
- "optionalDependencies": {
- "@pkgjs/parseargs": "^0.11.0"
+ "node_modules/jest-config/node_modules/jest-get-type": {
+ "version": "26.3.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 10.14.2"
}
},
- "node_modules/java-properties": {
- "version": "1.0.2",
- "dev": true,
+ "node_modules/jest-config/node_modules/jest-mock": {
+ "version": "26.6.2",
"license": "MIT",
+ "dependencies": {
+ "@jest/types": "^26.6.2",
+ "@types/node": "*"
+ },
"engines": {
- "node": ">= 0.6.0"
+ "node": ">= 10.14.2"
}
},
- "node_modules/javascript-stringify": {
- "version": "2.1.0",
- "license": "MIT"
- },
- "node_modules/jest": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz",
- "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==",
- "dev": true,
+ "node_modules/jest-config/node_modules/jsdom": {
+ "version": "16.7.0",
+ "license": "MIT",
"dependencies": {
- "@jest/core": "^29.7.0",
- "@jest/types": "^29.6.3",
- "import-local": "^3.0.2",
- "jest-cli": "^29.7.0"
- },
- "bin": {
- "jest": "bin/jest.js"
+ "abab": "^2.0.5",
+ "acorn": "^8.2.4",
+ "acorn-globals": "^6.0.0",
+ "cssom": "^0.4.4",
+ "cssstyle": "^2.3.0",
+ "data-urls": "^2.0.0",
+ "decimal.js": "^10.2.1",
+ "domexception": "^2.0.1",
+ "escodegen": "^2.0.0",
+ "form-data": "^3.0.0",
+ "html-encoding-sniffer": "^2.0.1",
+ "http-proxy-agent": "^4.0.1",
+ "https-proxy-agent": "^5.0.0",
+ "is-potential-custom-element-name": "^1.0.1",
+ "nwsapi": "^2.2.0",
+ "parse5": "6.0.1",
+ "saxes": "^5.0.1",
+ "symbol-tree": "^3.2.4",
+ "tough-cookie": "^4.0.0",
+ "w3c-hr-time": "^1.0.2",
+ "w3c-xmlserializer": "^2.0.0",
+ "webidl-conversions": "^6.1.0",
+ "whatwg-encoding": "^1.0.5",
+ "whatwg-mimetype": "^2.3.0",
+ "whatwg-url": "^8.5.0",
+ "ws": "^7.4.6",
+ "xml-name-validator": "^3.0.0"
},
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">=10"
},
"peerDependencies": {
- "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
+ "canvas": "^2.5.0"
},
"peerDependenciesMeta": {
- "node-notifier": {
+ "canvas": {
"optional": true
}
}
},
- "node_modules/jest-changed-files": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz",
- "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==",
- "dev": true,
+ "node_modules/jest-config/node_modules/parse5": {
+ "version": "6.0.1",
+ "license": "MIT"
+ },
+ "node_modules/jest-config/node_modules/pretty-format": {
+ "version": "26.6.2",
+ "license": "MIT",
"dependencies": {
- "execa": "^5.0.0",
- "jest-util": "^29.7.0",
- "p-limit": "^3.1.0"
+ "@jest/types": "^26.6.2",
+ "ansi-regex": "^5.0.0",
+ "ansi-styles": "^4.0.0",
+ "react-is": "^17.0.1"
},
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">= 10"
}
},
- "node_modules/jest-circus": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz",
- "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==",
- "dev": true,
+ "node_modules/jest-config/node_modules/react-is": {
+ "version": "17.0.2",
+ "license": "MIT"
+ },
+ "node_modules/jest-config/node_modules/saxes": {
+ "version": "5.0.1",
+ "license": "ISC",
"dependencies": {
- "@jest/environment": "^29.7.0",
- "@jest/expect": "^29.7.0",
- "@jest/test-result": "^29.7.0",
- "@jest/types": "^29.6.3",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "co": "^4.6.0",
- "dedent": "^1.0.0",
- "is-generator-fn": "^2.0.0",
- "jest-each": "^29.7.0",
- "jest-matcher-utils": "^29.7.0",
- "jest-message-util": "^29.7.0",
- "jest-runtime": "^29.7.0",
- "jest-snapshot": "^29.7.0",
- "jest-util": "^29.7.0",
- "p-limit": "^3.1.0",
- "pretty-format": "^29.7.0",
- "pure-rand": "^6.0.0",
- "slash": "^3.0.0",
- "stack-utils": "^2.0.3"
+ "xmlchars": "^2.2.0"
},
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">=10"
}
},
- "node_modules/jest-circus/node_modules/ansi-styles": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
- "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
- "dev": true,
+ "node_modules/jest-config/node_modules/slash": {
+ "version": "3.0.0",
+ "license": "MIT",
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "node": ">=8"
}
},
- "node_modules/jest-circus/node_modules/dedent": {
- "version": "1.5.3",
- "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz",
- "integrity": "sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==",
- "dev": true,
- "peerDependencies": {
- "babel-plugin-macros": "^3.1.0"
+ "node_modules/jest-config/node_modules/tr46": {
+ "version": "2.1.0",
+ "license": "MIT",
+ "dependencies": {
+ "punycode": "^2.1.1"
},
- "peerDependenciesMeta": {
- "babel-plugin-macros": {
- "optional": true
- }
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/jest-circus/node_modules/pretty-format": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz",
- "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==",
- "dev": true,
+ "node_modules/jest-config/node_modules/w3c-xmlserializer": {
+ "version": "2.0.0",
+ "license": "MIT",
"dependencies": {
- "@jest/schemas": "^29.6.3",
- "ansi-styles": "^5.0.0",
- "react-is": "^18.0.0"
+ "xml-name-validator": "^3.0.0"
},
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">=10"
}
},
- "node_modules/jest-circus/node_modules/react-is": {
- "version": "18.2.0",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz",
- "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==",
- "dev": true
- },
- "node_modules/jest-circus/node_modules/slash": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
- "dev": true,
+ "node_modules/jest-config/node_modules/webidl-conversions": {
+ "version": "6.1.0",
+ "license": "BSD-2-Clause",
"engines": {
- "node": ">=8"
+ "node": ">=10.4"
}
},
- "node_modules/jest-cli": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz",
- "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==",
- "dev": true,
+ "node_modules/jest-config/node_modules/whatwg-encoding": {
+ "version": "1.0.5",
+ "license": "MIT",
"dependencies": {
- "@jest/core": "^29.7.0",
- "@jest/test-result": "^29.7.0",
- "@jest/types": "^29.6.3",
- "chalk": "^4.0.0",
- "create-jest": "^29.7.0",
- "exit": "^0.1.2",
- "import-local": "^3.0.2",
- "jest-config": "^29.7.0",
- "jest-util": "^29.7.0",
- "jest-validate": "^29.7.0",
- "yargs": "^17.3.1"
- },
- "bin": {
- "jest": "bin/jest.js"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- },
- "peerDependencies": {
- "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
- },
- "peerDependenciesMeta": {
- "node-notifier": {
- "optional": true
- }
+ "iconv-lite": "0.4.24"
}
},
- "node_modules/jest-cli/node_modules/ansi-styles": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
- "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
- "dev": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
+ "node_modules/jest-config/node_modules/whatwg-mimetype": {
+ "version": "2.3.0",
+ "license": "MIT"
},
- "node_modules/jest-cli/node_modules/glob": {
- "version": "7.2.3",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
- "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
- "dev": true,
+ "node_modules/jest-config/node_modules/whatwg-url": {
+ "version": "8.7.0",
+ "license": "MIT",
"dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.1.1",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
+ "lodash": "^4.7.0",
+ "tr46": "^2.1.0",
+ "webidl-conversions": "^6.1.0"
},
"engines": {
- "node": "*"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
+ "node": ">=10"
}
},
- "node_modules/jest-cli/node_modules/jest-config": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz",
- "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==",
- "dev": true,
- "dependencies": {
- "@babel/core": "^7.11.6",
- "@jest/test-sequencer": "^29.7.0",
- "@jest/types": "^29.6.3",
- "babel-jest": "^29.7.0",
- "chalk": "^4.0.0",
- "ci-info": "^3.2.0",
- "deepmerge": "^4.2.2",
- "glob": "^7.1.3",
- "graceful-fs": "^4.2.9",
- "jest-circus": "^29.7.0",
- "jest-environment-node": "^29.7.0",
- "jest-get-type": "^29.6.3",
- "jest-regex-util": "^29.6.3",
- "jest-resolve": "^29.7.0",
- "jest-runner": "^29.7.0",
- "jest-util": "^29.7.0",
- "jest-validate": "^29.7.0",
- "micromatch": "^4.0.4",
- "parse-json": "^5.2.0",
- "pretty-format": "^29.7.0",
- "slash": "^3.0.0",
- "strip-json-comments": "^3.1.1"
- },
+ "node_modules/jest-config/node_modules/ws": {
+ "version": "7.5.10",
+ "license": "MIT",
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">=8.3.0"
},
"peerDependencies": {
- "@types/node": "*",
- "ts-node": ">=9.0.0"
+ "bufferutil": "^4.0.1",
+ "utf-8-validate": "^5.0.2"
},
"peerDependenciesMeta": {
- "@types/node": {
+ "bufferutil": {
"optional": true
},
- "ts-node": {
+ "utf-8-validate": {
"optional": true
}
}
},
- "node_modules/jest-cli/node_modules/pretty-format": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz",
- "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==",
- "dev": true,
- "dependencies": {
- "@jest/schemas": "^29.6.3",
- "ansi-styles": "^5.0.0",
- "react-is": "^18.0.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/jest-cli/node_modules/react-is": {
- "version": "18.2.0",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz",
- "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==",
- "dev": true
- },
- "node_modules/jest-cli/node_modules/slash": {
+ "node_modules/jest-config/node_modules/xml-name-validator": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
+ "license": "Apache-2.0"
},
"node_modules/jest-diff": {
"version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz",
- "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==",
- "dev": true,
+ "license": "MIT",
"dependencies": {
"chalk": "^4.0.0",
"diff-sequences": "^29.6.3",
@@ -23583,9 +28083,7 @@
},
"node_modules/jest-diff/node_modules/ansi-styles": {
"version": "5.2.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
- "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
- "dev": true,
+ "license": "MIT",
"engines": {
"node": ">=10"
},
@@ -23595,9 +28093,7 @@
},
"node_modules/jest-diff/node_modules/pretty-format": {
"version": "29.7.0",
- "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz",
- "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==",
- "dev": true,
+ "license": "MIT",
"dependencies": {
"@jest/schemas": "^29.6.3",
"ansi-styles": "^5.0.0",
@@ -23608,76 +28104,75 @@
}
},
"node_modules/jest-diff/node_modules/react-is": {
- "version": "18.2.0",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz",
- "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==",
- "dev": true
+ "version": "18.3.1",
+ "license": "MIT"
},
"node_modules/jest-docblock": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz",
- "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==",
- "dev": true,
+ "version": "26.0.0",
+ "license": "MIT",
"dependencies": {
"detect-newline": "^3.0.0"
},
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">= 10.14.2"
}
},
"node_modules/jest-each": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz",
- "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==",
- "dev": true,
+ "version": "26.6.2",
+ "license": "MIT",
"dependencies": {
- "@jest/types": "^29.6.3",
+ "@jest/types": "^26.6.2",
"chalk": "^4.0.0",
- "jest-get-type": "^29.6.3",
- "jest-util": "^29.7.0",
- "pretty-format": "^29.7.0"
+ "jest-get-type": "^26.3.0",
+ "jest-util": "^26.6.2",
+ "pretty-format": "^26.6.2"
},
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">= 10.14.2"
}
},
- "node_modules/jest-each/node_modules/ansi-styles": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
- "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
- "dev": true,
- "engines": {
- "node": ">=10"
+ "node_modules/jest-each/node_modules/@jest/types": {
+ "version": "26.6.2",
+ "license": "MIT",
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^15.0.0",
+ "chalk": "^4.0.0"
},
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "engines": {
+ "node": ">= 10.14.2"
+ }
+ },
+ "node_modules/jest-each/node_modules/jest-get-type": {
+ "version": "26.3.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 10.14.2"
}
},
"node_modules/jest-each/node_modules/pretty-format": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz",
- "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==",
- "dev": true,
- "dependencies": {
- "@jest/schemas": "^29.6.3",
- "ansi-styles": "^5.0.0",
- "react-is": "^18.0.0"
+ "version": "26.6.2",
+ "license": "MIT",
+ "dependencies": {
+ "@jest/types": "^26.6.2",
+ "ansi-regex": "^5.0.0",
+ "ansi-styles": "^4.0.0",
+ "react-is": "^17.0.1"
},
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">= 10"
}
},
"node_modules/jest-each/node_modules/react-is": {
- "version": "18.2.0",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz",
- "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==",
- "dev": true
+ "version": "17.0.2",
+ "license": "MIT"
},
"node_modules/jest-environment-jsdom": {
"version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-29.7.0.tgz",
- "integrity": "sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@jest/environment": "^29.7.0",
"@jest/fake-timers": "^29.7.0",
@@ -23700,206 +28195,214 @@
}
}
},
- "node_modules/jest-environment-node": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz",
- "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==",
- "dev": true,
- "dependencies": {
- "@jest/environment": "^29.7.0",
- "@jest/fake-timers": "^29.7.0",
- "@jest/types": "^29.6.3",
- "@types/node": "*",
- "jest-mock": "^29.7.0",
- "jest-util": "^29.7.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/jest-get-type": {
- "version": "29.6.3",
- "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz",
- "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==",
+ "node_modules/jest-environment-jsdom/node_modules/ci-info": {
+ "version": "3.9.0",
"dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/sibiraj-s"
+ }
+ ],
+ "license": "MIT",
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">=8"
}
},
- "node_modules/jest-haste-map": {
+ "node_modules/jest-environment-jsdom/node_modules/jest-util": {
"version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz",
- "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@jest/types": "^29.6.3",
- "@types/graceful-fs": "^4.1.3",
"@types/node": "*",
- "anymatch": "^3.0.3",
- "fb-watchman": "^2.0.0",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
- "jest-regex-util": "^29.6.3",
- "jest-util": "^29.7.0",
- "jest-worker": "^29.7.0",
- "micromatch": "^4.0.4",
- "walker": "^1.0.8"
+ "picomatch": "^2.2.3"
},
"engines": {
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- },
- "optionalDependencies": {
- "fsevents": "^2.3.2"
}
},
- "node_modules/jest-jasmine2": {
- "version": "26.6.3",
- "dev": true,
+ "node_modules/jest-environment-node": {
+ "version": "26.6.2",
"license": "MIT",
"dependencies": {
- "@babel/traverse": "^7.1.0",
"@jest/environment": "^26.6.2",
- "@jest/source-map": "^26.6.2",
- "@jest/test-result": "^26.6.2",
+ "@jest/fake-timers": "^26.6.2",
"@jest/types": "^26.6.2",
"@types/node": "*",
- "chalk": "^4.0.0",
- "co": "^4.6.0",
- "expect": "^26.6.2",
- "is-generator-fn": "^2.0.0",
- "jest-each": "^26.6.2",
- "jest-matcher-utils": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-runtime": "^26.6.3",
- "jest-snapshot": "^26.6.2",
- "jest-util": "^26.6.2",
- "pretty-format": "^26.6.2",
- "throat": "^5.0.0"
+ "jest-mock": "^26.6.2",
+ "jest-util": "^26.6.2"
},
"engines": {
"node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/@jest/console": {
+ "node_modules/jest-environment-node/node_modules/@jest/environment": {
"version": "26.6.2",
- "dev": true,
"license": "MIT",
"dependencies": {
+ "@jest/fake-timers": "^26.6.2",
"@jest/types": "^26.6.2",
"@types/node": "*",
- "chalk": "^4.0.0",
- "jest-message-util": "^26.6.2",
- "jest-util": "^26.6.2",
- "slash": "^3.0.0"
+ "jest-mock": "^26.6.2"
},
"engines": {
"node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/@jest/environment": {
+ "node_modules/jest-environment-node/node_modules/@jest/fake-timers": {
"version": "26.6.2",
- "dev": true,
"license": "MIT",
"dependencies": {
- "@jest/fake-timers": "^26.6.2",
"@jest/types": "^26.6.2",
+ "@sinonjs/fake-timers": "^6.0.1",
"@types/node": "*",
- "jest-mock": "^26.6.2"
+ "jest-message-util": "^26.6.2",
+ "jest-mock": "^26.6.2",
+ "jest-util": "^26.6.2"
},
"engines": {
"node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/@jest/fake-timers": {
+ "node_modules/jest-environment-node/node_modules/@jest/types": {
"version": "26.6.2",
- "dev": true,
"license": "MIT",
"dependencies": {
- "@jest/types": "^26.6.2",
- "@sinonjs/fake-timers": "^6.0.1",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
- "jest-message-util": "^26.6.2",
- "jest-mock": "^26.6.2",
- "jest-util": "^26.6.2"
+ "@types/yargs": "^15.0.0",
+ "chalk": "^4.0.0"
},
"engines": {
"node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/@jest/globals": {
+ "node_modules/jest-environment-node/node_modules/@sinonjs/commons": {
+ "version": "1.8.6",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "type-detect": "4.0.8"
+ }
+ },
+ "node_modules/jest-environment-node/node_modules/@sinonjs/fake-timers": {
+ "version": "6.0.1",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "@sinonjs/commons": "^1.7.0"
+ }
+ },
+ "node_modules/jest-environment-node/node_modules/jest-mock": {
"version": "26.6.2",
- "dev": true,
"license": "MIT",
"dependencies": {
- "@jest/environment": "^26.6.2",
"@jest/types": "^26.6.2",
- "expect": "^26.6.2"
+ "@types/node": "*"
},
"engines": {
"node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/@jest/source-map": {
+ "node_modules/jest-get-type": {
+ "version": "29.6.3",
+ "license": "MIT",
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "node_modules/jest-haste-map": {
"version": "26.6.2",
- "dev": true,
"license": "MIT",
"dependencies": {
- "callsites": "^3.0.0",
+ "@jest/types": "^26.6.2",
+ "@types/graceful-fs": "^4.1.2",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
"graceful-fs": "^4.2.4",
- "source-map": "^0.6.0"
+ "jest-regex-util": "^26.0.0",
+ "jest-serializer": "^26.6.2",
+ "jest-util": "^26.6.2",
+ "jest-worker": "^26.6.2",
+ "micromatch": "^4.0.2",
+ "sane": "^4.0.3",
+ "walker": "^1.0.7"
},
"engines": {
"node": ">= 10.14.2"
+ },
+ "optionalDependencies": {
+ "fsevents": "^2.1.2"
}
},
- "node_modules/jest-jasmine2/node_modules/@jest/test-result": {
+ "node_modules/jest-haste-map/node_modules/@jest/types": {
"version": "26.6.2",
- "dev": true,
"license": "MIT",
"dependencies": {
- "@jest/console": "^26.6.2",
- "@jest/types": "^26.6.2",
"@types/istanbul-lib-coverage": "^2.0.0",
- "collect-v8-coverage": "^1.0.0"
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^15.0.0",
+ "chalk": "^4.0.0"
},
"engines": {
"node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/@jest/test-sequencer": {
+ "node_modules/jest-jasmine2": {
"version": "26.6.3",
- "dev": true,
"license": "MIT",
"dependencies": {
+ "@babel/traverse": "^7.1.0",
+ "@jest/environment": "^26.6.2",
+ "@jest/source-map": "^26.6.2",
"@jest/test-result": "^26.6.2",
- "graceful-fs": "^4.2.4",
- "jest-haste-map": "^26.6.2",
- "jest-runner": "^26.6.3",
- "jest-runtime": "^26.6.3"
+ "@jest/types": "^26.6.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "co": "^4.6.0",
+ "expect": "^26.6.2",
+ "is-generator-fn": "^2.0.0",
+ "jest-each": "^26.6.2",
+ "jest-matcher-utils": "^26.6.2",
+ "jest-message-util": "^26.6.2",
+ "jest-runtime": "^26.6.3",
+ "jest-snapshot": "^26.6.2",
+ "jest-util": "^26.6.2",
+ "pretty-format": "^26.6.2",
+ "throat": "^5.0.0"
},
"engines": {
"node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/@jest/transform": {
+ "node_modules/jest-jasmine2/node_modules/@jest/environment": {
"version": "26.6.2",
- "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/core": "^7.1.0",
+ "@jest/fake-timers": "^26.6.2",
"@jest/types": "^26.6.2",
- "babel-plugin-istanbul": "^6.0.0",
- "chalk": "^4.0.0",
- "convert-source-map": "^1.4.0",
- "fast-json-stable-stringify": "^2.0.0",
- "graceful-fs": "^4.2.4",
- "jest-haste-map": "^26.6.2",
- "jest-regex-util": "^26.0.0",
- "jest-util": "^26.6.2",
- "micromatch": "^4.0.2",
- "pirates": "^4.0.1",
- "slash": "^3.0.0",
- "source-map": "^0.6.1",
- "write-file-atomic": "^3.0.0"
+ "@types/node": "*",
+ "jest-mock": "^26.6.2"
+ },
+ "engines": {
+ "node": ">= 10.14.2"
+ }
+ },
+ "node_modules/jest-jasmine2/node_modules/@jest/fake-timers": {
+ "version": "26.6.2",
+ "license": "MIT",
+ "dependencies": {
+ "@jest/types": "^26.6.2",
+ "@sinonjs/fake-timers": "^6.0.1",
+ "@types/node": "*",
+ "jest-message-util": "^26.6.2",
+ "jest-mock": "^26.6.2",
+ "jest-util": "^26.6.2"
},
"engines": {
"node": ">= 10.14.2"
@@ -23907,7 +28410,6 @@
},
"node_modules/jest-jasmine2/node_modules/@jest/types": {
"version": "26.6.2",
- "dev": true,
"license": "MIT",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
@@ -23920,385 +28422,423 @@
"node": ">= 10.14.2"
}
},
+ "node_modules/jest-jasmine2/node_modules/@sinonjs/commons": {
+ "version": "1.8.6",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "type-detect": "4.0.8"
+ }
+ },
"node_modules/jest-jasmine2/node_modules/@sinonjs/fake-timers": {
"version": "6.0.1",
- "dev": true,
"license": "BSD-3-Clause",
"dependencies": {
"@sinonjs/commons": "^1.7.0"
}
},
- "node_modules/jest-jasmine2/node_modules/@tootallnate/once": {
- "version": "1.1.2",
- "dev": true,
+ "node_modules/jest-jasmine2/node_modules/diff-sequences": {
+ "version": "26.6.2",
"license": "MIT",
"engines": {
- "node": ">= 6"
+ "node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/@types/yargs": {
- "version": "15.0.15",
- "dev": true,
+ "node_modules/jest-jasmine2/node_modules/expect": {
+ "version": "26.6.2",
"license": "MIT",
"dependencies": {
- "@types/yargs-parser": "*"
+ "@jest/types": "^26.6.2",
+ "ansi-styles": "^4.0.0",
+ "jest-get-type": "^26.3.0",
+ "jest-matcher-utils": "^26.6.2",
+ "jest-message-util": "^26.6.2",
+ "jest-regex-util": "^26.0.0"
+ },
+ "engines": {
+ "node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/ansi-styles": {
- "version": "4.3.0",
- "dev": true,
+ "node_modules/jest-jasmine2/node_modules/jest-diff": {
+ "version": "26.6.2",
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "chalk": "^4.0.0",
+ "diff-sequences": "^26.6.2",
+ "jest-get-type": "^26.3.0",
+ "pretty-format": "^26.6.2"
},
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/babel-jest": {
- "version": "26.6.3",
- "dev": true,
+ "node_modules/jest-jasmine2/node_modules/jest-get-type": {
+ "version": "26.3.0",
"license": "MIT",
- "dependencies": {
- "@jest/transform": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/babel__core": "^7.1.7",
- "babel-plugin-istanbul": "^6.0.0",
- "babel-preset-jest": "^26.6.2",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.4",
- "slash": "^3.0.0"
- },
"engines": {
"node": ">= 10.14.2"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
}
},
- "node_modules/jest-jasmine2/node_modules/babel-plugin-jest-hoist": {
+ "node_modules/jest-jasmine2/node_modules/jest-matcher-utils": {
"version": "26.6.2",
- "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/template": "^7.3.3",
- "@babel/types": "^7.3.3",
- "@types/babel__core": "^7.0.0",
- "@types/babel__traverse": "^7.0.6"
+ "chalk": "^4.0.0",
+ "jest-diff": "^26.6.2",
+ "jest-get-type": "^26.3.0",
+ "pretty-format": "^26.6.2"
},
"engines": {
"node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/babel-preset-jest": {
+ "node_modules/jest-jasmine2/node_modules/jest-mock": {
"version": "26.6.2",
- "dev": true,
"license": "MIT",
"dependencies": {
- "babel-plugin-jest-hoist": "^26.6.2",
- "babel-preset-current-node-syntax": "^1.0.0"
+ "@jest/types": "^26.6.2",
+ "@types/node": "*"
},
"engines": {
"node": ">= 10.14.2"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
}
},
- "node_modules/jest-jasmine2/node_modules/camelcase": {
- "version": "6.3.0",
- "dev": true,
+ "node_modules/jest-jasmine2/node_modules/pretty-format": {
+ "version": "26.6.2",
"license": "MIT",
- "engines": {
- "node": ">=10"
+ "dependencies": {
+ "@jest/types": "^26.6.2",
+ "ansi-regex": "^5.0.0",
+ "ansi-styles": "^4.0.0",
+ "react-is": "^17.0.1"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "engines": {
+ "node": ">= 10"
}
},
- "node_modules/jest-jasmine2/node_modules/cjs-module-lexer": {
- "version": "0.6.0",
- "dev": true,
+ "node_modules/jest-jasmine2/node_modules/react-is": {
+ "version": "17.0.2",
"license": "MIT"
},
- "node_modules/jest-jasmine2/node_modules/cliui": {
- "version": "6.0.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "string-width": "^4.2.0",
- "strip-ansi": "^6.0.0",
- "wrap-ansi": "^6.2.0"
- }
- },
- "node_modules/jest-jasmine2/node_modules/color-convert": {
- "version": "2.0.1",
- "dev": true,
+ "node_modules/jest-leak-detector": {
+ "version": "26.6.2",
"license": "MIT",
"dependencies": {
- "color-name": "~1.1.4"
+ "jest-get-type": "^26.3.0",
+ "pretty-format": "^26.6.2"
},
"engines": {
- "node": ">=7.0.0"
+ "node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/color-name": {
- "version": "1.1.4",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/jest-jasmine2/node_modules/cssom": {
- "version": "0.4.4",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/jest-jasmine2/node_modules/data-urls": {
- "version": "2.0.0",
- "dev": true,
+ "node_modules/jest-leak-detector/node_modules/@jest/types": {
+ "version": "26.6.2",
"license": "MIT",
"dependencies": {
- "abab": "^2.0.3",
- "whatwg-mimetype": "^2.3.0",
- "whatwg-url": "^8.0.0"
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^15.0.0",
+ "chalk": "^4.0.0"
},
"engines": {
- "node": ">=10"
+ "node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/diff-sequences": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/jest-leak-detector/node_modules/jest-get-type": {
+ "version": "26.3.0",
"license": "MIT",
"engines": {
"node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/domexception": {
- "version": "2.0.1",
- "dev": true,
+ "node_modules/jest-leak-detector/node_modules/pretty-format": {
+ "version": "26.6.2",
"license": "MIT",
"dependencies": {
- "webidl-conversions": "^5.0.0"
+ "@jest/types": "^26.6.2",
+ "ansi-regex": "^5.0.0",
+ "ansi-styles": "^4.0.0",
+ "react-is": "^17.0.1"
},
"engines": {
- "node": ">=8"
+ "node": ">= 10"
}
},
- "node_modules/jest-jasmine2/node_modules/domexception/node_modules/webidl-conversions": {
- "version": "5.0.0",
- "dev": true,
- "license": "BSD-2-Clause",
+ "node_modules/jest-leak-detector/node_modules/react-is": {
+ "version": "17.0.2",
+ "license": "MIT"
+ },
+ "node_modules/jest-matcher-utils": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "dependencies": {
+ "chalk": "^4.0.0",
+ "jest-diff": "^29.7.0",
+ "jest-get-type": "^29.6.3",
+ "pretty-format": "^29.7.0"
+ },
"engines": {
- "node": ">=8"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/jest-jasmine2/node_modules/emittery": {
- "version": "0.7.2",
- "dev": true,
+ "node_modules/jest-matcher-utils/node_modules/ansi-styles": {
+ "version": "5.2.0",
"license": "MIT",
"engines": {
"node": ">=10"
},
"funding": {
- "url": "https://github.com/sindresorhus/emittery?sponsor=1"
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/jest-jasmine2/node_modules/expect": {
+ "node_modules/jest-matcher-utils/node_modules/pretty-format": {
+ "version": "29.7.0",
+ "license": "MIT",
+ "dependencies": {
+ "@jest/schemas": "^29.6.3",
+ "ansi-styles": "^5.0.0",
+ "react-is": "^18.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "node_modules/jest-matcher-utils/node_modules/react-is": {
+ "version": "18.3.1",
+ "license": "MIT"
+ },
+ "node_modules/jest-message-util": {
"version": "26.6.2",
- "dev": true,
"license": "MIT",
"dependencies": {
+ "@babel/code-frame": "^7.0.0",
"@jest/types": "^26.6.2",
- "ansi-styles": "^4.0.0",
- "jest-get-type": "^26.3.0",
- "jest-matcher-utils": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-regex-util": "^26.0.0"
+ "@types/stack-utils": "^2.0.0",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.4",
+ "micromatch": "^4.0.2",
+ "pretty-format": "^26.6.2",
+ "slash": "^3.0.0",
+ "stack-utils": "^2.0.2"
},
"engines": {
"node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/form-data": {
- "version": "3.0.1",
- "dev": true,
+ "node_modules/jest-message-util/node_modules/@jest/types": {
+ "version": "26.6.2",
"license": "MIT",
"dependencies": {
- "asynckit": "^0.4.0",
- "combined-stream": "^1.0.8",
- "mime-types": "^2.1.12"
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^15.0.0",
+ "chalk": "^4.0.0"
},
"engines": {
- "node": ">= 6"
+ "node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/glob": {
- "version": "7.2.3",
- "dev": true,
- "license": "ISC",
+ "node_modules/jest-message-util/node_modules/pretty-format": {
+ "version": "26.6.2",
+ "license": "MIT",
"dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.1.1",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
+ "@jest/types": "^26.6.2",
+ "ansi-regex": "^5.0.0",
+ "ansi-styles": "^4.0.0",
+ "react-is": "^17.0.1"
},
"engines": {
- "node": "*"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
+ "node": ">= 10"
}
},
- "node_modules/jest-jasmine2/node_modules/has-flag": {
- "version": "4.0.0",
- "dev": true,
+ "node_modules/jest-message-util/node_modules/react-is": {
+ "version": "17.0.2",
+ "license": "MIT"
+ },
+ "node_modules/jest-message-util/node_modules/slash": {
+ "version": "3.0.0",
"license": "MIT",
"engines": {
"node": ">=8"
}
},
- "node_modules/jest-jasmine2/node_modules/html-encoding-sniffer": {
- "version": "2.0.1",
- "dev": true,
+ "node_modules/jest-mock": {
+ "version": "29.7.0",
"license": "MIT",
"dependencies": {
- "whatwg-encoding": "^1.0.5"
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "jest-util": "^29.7.0"
},
"engines": {
- "node": ">=10"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/jest-jasmine2/node_modules/http-proxy-agent": {
- "version": "4.0.1",
- "dev": true,
+ "node_modules/jest-mock/node_modules/ci-info": {
+ "version": "3.9.0",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/sibiraj-s"
+ }
+ ],
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-mock/node_modules/jest-util": {
+ "version": "29.7.0",
"license": "MIT",
"dependencies": {
- "@tootallnate/once": "1",
- "agent-base": "6",
- "debug": "4"
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.9",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "node_modules/jest-pnp-resolver": {
+ "version": "1.2.3",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
},
+ "peerDependencies": {
+ "jest-resolve": "*"
+ },
+ "peerDependenciesMeta": {
+ "jest-resolve": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/jest-regex-util": {
+ "version": "26.0.0",
+ "license": "MIT",
"engines": {
- "node": ">= 6"
+ "node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/iconv-lite": {
- "version": "0.4.24",
- "dev": true,
+ "node_modules/jest-resolve": {
+ "version": "26.6.2",
"license": "MIT",
"dependencies": {
- "safer-buffer": ">= 2.1.2 < 3"
+ "@jest/types": "^26.6.2",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.4",
+ "jest-pnp-resolver": "^1.2.2",
+ "jest-util": "^26.6.2",
+ "read-pkg-up": "^7.0.1",
+ "resolve": "^1.18.1",
+ "slash": "^3.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/jest-config": {
+ "node_modules/jest-resolve-dependencies": {
"version": "26.6.3",
- "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/core": "^7.1.0",
- "@jest/test-sequencer": "^26.6.3",
"@jest/types": "^26.6.2",
- "babel-jest": "^26.6.3",
- "chalk": "^4.0.0",
- "deepmerge": "^4.2.2",
- "glob": "^7.1.1",
- "graceful-fs": "^4.2.4",
- "jest-environment-jsdom": "^26.6.2",
- "jest-environment-node": "^26.6.2",
- "jest-get-type": "^26.3.0",
- "jest-jasmine2": "^26.6.3",
"jest-regex-util": "^26.0.0",
- "jest-resolve": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-validate": "^26.6.2",
- "micromatch": "^4.0.2",
- "pretty-format": "^26.6.2"
+ "jest-snapshot": "^26.6.2"
},
"engines": {
"node": ">= 10.14.2"
- },
- "peerDependencies": {
- "ts-node": ">=9.0.0"
- },
- "peerDependenciesMeta": {
- "ts-node": {
- "optional": true
- }
}
},
- "node_modules/jest-jasmine2/node_modules/jest-diff": {
+ "node_modules/jest-resolve-dependencies/node_modules/@jest/types": {
"version": "26.6.2",
- "dev": true,
"license": "MIT",
"dependencies": {
- "chalk": "^4.0.0",
- "diff-sequences": "^26.6.2",
- "jest-get-type": "^26.3.0",
- "pretty-format": "^26.6.2"
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^15.0.0",
+ "chalk": "^4.0.0"
},
"engines": {
"node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/jest-docblock": {
- "version": "26.0.0",
- "dev": true,
+ "node_modules/jest-resolve/node_modules/@jest/types": {
+ "version": "26.6.2",
"license": "MIT",
"dependencies": {
- "detect-newline": "^3.0.0"
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^15.0.0",
+ "chalk": "^4.0.0"
},
"engines": {
"node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/jest-each": {
- "version": "26.6.2",
- "dev": true,
+ "node_modules/jest-resolve/node_modules/slash": {
+ "version": "3.0.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-runner": {
+ "version": "26.6.3",
"license": "MIT",
"dependencies": {
+ "@jest/console": "^26.6.2",
+ "@jest/environment": "^26.6.2",
+ "@jest/test-result": "^26.6.2",
"@jest/types": "^26.6.2",
+ "@types/node": "*",
"chalk": "^4.0.0",
- "jest-get-type": "^26.3.0",
+ "emittery": "^0.7.1",
+ "exit": "^0.1.2",
+ "graceful-fs": "^4.2.4",
+ "jest-config": "^26.6.3",
+ "jest-docblock": "^26.0.0",
+ "jest-haste-map": "^26.6.2",
+ "jest-leak-detector": "^26.6.2",
+ "jest-message-util": "^26.6.2",
+ "jest-resolve": "^26.6.2",
+ "jest-runtime": "^26.6.3",
"jest-util": "^26.6.2",
- "pretty-format": "^26.6.2"
+ "jest-worker": "^26.6.2",
+ "source-map-support": "^0.5.6",
+ "throat": "^5.0.0"
},
"engines": {
"node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/jest-environment-jsdom": {
+ "node_modules/jest-runner/node_modules/@jest/environment": {
"version": "26.6.2",
- "dev": true,
"license": "MIT",
"dependencies": {
- "@jest/environment": "^26.6.2",
"@jest/fake-timers": "^26.6.2",
"@jest/types": "^26.6.2",
"@types/node": "*",
- "jest-mock": "^26.6.2",
- "jest-util": "^26.6.2",
- "jsdom": "^16.4.0"
+ "jest-mock": "^26.6.2"
},
"engines": {
"node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/jest-environment-node": {
+ "node_modules/jest-runner/node_modules/@jest/fake-timers": {
"version": "26.6.2",
- "dev": true,
"license": "MIT",
"dependencies": {
- "@jest/environment": "^26.6.2",
- "@jest/fake-timers": "^26.6.2",
"@jest/types": "^26.6.2",
+ "@sinonjs/fake-timers": "^6.0.1",
"@types/node": "*",
+ "jest-message-util": "^26.6.2",
"jest-mock": "^26.6.2",
"jest-util": "^26.6.2"
},
@@ -24306,196 +28846,213 @@
"node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/jest-get-type": {
- "version": "26.3.0",
- "dev": true,
+ "node_modules/jest-runner/node_modules/@jest/types": {
+ "version": "26.6.2",
"license": "MIT",
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^15.0.0",
+ "chalk": "^4.0.0"
+ },
"engines": {
"node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/jest-haste-map": {
+ "node_modules/jest-runner/node_modules/@sinonjs/commons": {
+ "version": "1.8.6",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "type-detect": "4.0.8"
+ }
+ },
+ "node_modules/jest-runner/node_modules/@sinonjs/fake-timers": {
+ "version": "6.0.1",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "@sinonjs/commons": "^1.7.0"
+ }
+ },
+ "node_modules/jest-runner/node_modules/jest-mock": {
"version": "26.6.2",
- "dev": true,
"license": "MIT",
"dependencies": {
"@jest/types": "^26.6.2",
- "@types/graceful-fs": "^4.1.2",
- "@types/node": "*",
- "anymatch": "^3.0.3",
- "fb-watchman": "^2.0.0",
+ "@types/node": "*"
+ },
+ "engines": {
+ "node": ">= 10.14.2"
+ }
+ },
+ "node_modules/jest-runtime": {
+ "version": "26.6.3",
+ "license": "MIT",
+ "dependencies": {
+ "@jest/console": "^26.6.2",
+ "@jest/environment": "^26.6.2",
+ "@jest/fake-timers": "^26.6.2",
+ "@jest/globals": "^26.6.2",
+ "@jest/source-map": "^26.6.2",
+ "@jest/test-result": "^26.6.2",
+ "@jest/transform": "^26.6.2",
+ "@jest/types": "^26.6.2",
+ "@types/yargs": "^15.0.0",
+ "chalk": "^4.0.0",
+ "cjs-module-lexer": "^0.6.0",
+ "collect-v8-coverage": "^1.0.0",
+ "exit": "^0.1.2",
+ "glob": "^7.1.3",
"graceful-fs": "^4.2.4",
+ "jest-config": "^26.6.3",
+ "jest-haste-map": "^26.6.2",
+ "jest-message-util": "^26.6.2",
+ "jest-mock": "^26.6.2",
"jest-regex-util": "^26.0.0",
- "jest-serializer": "^26.6.2",
+ "jest-resolve": "^26.6.2",
+ "jest-snapshot": "^26.6.2",
"jest-util": "^26.6.2",
- "jest-worker": "^26.6.2",
- "micromatch": "^4.0.2",
- "sane": "^4.0.3",
- "walker": "^1.0.7"
+ "jest-validate": "^26.6.2",
+ "slash": "^3.0.0",
+ "strip-bom": "^4.0.0",
+ "yargs": "^15.4.1"
+ },
+ "bin": {
+ "jest-runtime": "bin/jest-runtime.js"
},
"engines": {
"node": ">= 10.14.2"
- },
- "optionalDependencies": {
- "fsevents": "^2.1.2"
}
},
- "node_modules/jest-jasmine2/node_modules/jest-leak-detector": {
+ "node_modules/jest-runtime/node_modules/@jest/environment": {
"version": "26.6.2",
- "dev": true,
"license": "MIT",
"dependencies": {
- "jest-get-type": "^26.3.0",
- "pretty-format": "^26.6.2"
+ "@jest/fake-timers": "^26.6.2",
+ "@jest/types": "^26.6.2",
+ "@types/node": "*",
+ "jest-mock": "^26.6.2"
},
"engines": {
"node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/jest-matcher-utils": {
+ "node_modules/jest-runtime/node_modules/@jest/fake-timers": {
"version": "26.6.2",
- "dev": true,
"license": "MIT",
"dependencies": {
- "chalk": "^4.0.0",
- "jest-diff": "^26.6.2",
- "jest-get-type": "^26.3.0",
- "pretty-format": "^26.6.2"
+ "@jest/types": "^26.6.2",
+ "@sinonjs/fake-timers": "^6.0.1",
+ "@types/node": "*",
+ "jest-message-util": "^26.6.2",
+ "jest-mock": "^26.6.2",
+ "jest-util": "^26.6.2"
},
"engines": {
"node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/jest-message-util": {
+ "node_modules/jest-runtime/node_modules/@jest/transform": {
"version": "26.6.2",
- "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.0.0",
+ "@babel/core": "^7.1.0",
"@jest/types": "^26.6.2",
- "@types/stack-utils": "^2.0.0",
+ "babel-plugin-istanbul": "^6.0.0",
"chalk": "^4.0.0",
+ "convert-source-map": "^1.4.0",
+ "fast-json-stable-stringify": "^2.0.0",
"graceful-fs": "^4.2.4",
+ "jest-haste-map": "^26.6.2",
+ "jest-regex-util": "^26.0.0",
+ "jest-util": "^26.6.2",
"micromatch": "^4.0.2",
- "pretty-format": "^26.6.2",
+ "pirates": "^4.0.1",
"slash": "^3.0.0",
- "stack-utils": "^2.0.2"
+ "source-map": "^0.6.1",
+ "write-file-atomic": "^3.0.0"
},
"engines": {
"node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/jest-mock": {
+ "node_modules/jest-runtime/node_modules/@jest/types": {
"version": "26.6.2",
- "dev": true,
"license": "MIT",
"dependencies": {
- "@jest/types": "^26.6.2",
- "@types/node": "*"
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^15.0.0",
+ "chalk": "^4.0.0"
},
"engines": {
"node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/jest-regex-util": {
- "version": "26.0.0",
- "dev": true,
- "license": "MIT",
+ "node_modules/jest-runtime/node_modules/@sinonjs/commons": {
+ "version": "1.8.6",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "type-detect": "4.0.8"
+ }
+ },
+ "node_modules/jest-runtime/node_modules/@sinonjs/fake-timers": {
+ "version": "6.0.1",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "@sinonjs/commons": "^1.7.0"
+ }
+ },
+ "node_modules/jest-runtime/node_modules/glob": {
+ "version": "7.2.3",
+ "license": "ISC",
+ "dependencies": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ },
"engines": {
- "node": ">= 10.14.2"
+ "node": "*"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/jest-jasmine2/node_modules/jest-resolve": {
+ "node_modules/jest-runtime/node_modules/jest-mock": {
"version": "26.6.2",
- "dev": true,
"license": "MIT",
"dependencies": {
"@jest/types": "^26.6.2",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.4",
- "jest-pnp-resolver": "^1.2.2",
- "jest-util": "^26.6.2",
- "read-pkg-up": "^7.0.1",
- "resolve": "^1.18.1",
- "slash": "^3.0.0"
+ "@types/node": "*"
},
"engines": {
"node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/jest-runner": {
- "version": "26.6.3",
- "dev": true,
+ "node_modules/jest-runtime/node_modules/slash": {
+ "version": "3.0.0",
"license": "MIT",
- "dependencies": {
- "@jest/console": "^26.6.2",
- "@jest/environment": "^26.6.2",
- "@jest/test-result": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "emittery": "^0.7.1",
- "exit": "^0.1.2",
- "graceful-fs": "^4.2.4",
- "jest-config": "^26.6.3",
- "jest-docblock": "^26.0.0",
- "jest-haste-map": "^26.6.2",
- "jest-leak-detector": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-resolve": "^26.6.2",
- "jest-runtime": "^26.6.3",
- "jest-util": "^26.6.2",
- "jest-worker": "^26.6.2",
- "source-map-support": "^0.5.6",
- "throat": "^5.0.0"
- },
"engines": {
- "node": ">= 10.14.2"
+ "node": ">=8"
}
},
- "node_modules/jest-jasmine2/node_modules/jest-runtime": {
- "version": "26.6.3",
- "dev": true,
+ "node_modules/jest-serializer": {
+ "version": "26.6.2",
"license": "MIT",
"dependencies": {
- "@jest/console": "^26.6.2",
- "@jest/environment": "^26.6.2",
- "@jest/fake-timers": "^26.6.2",
- "@jest/globals": "^26.6.2",
- "@jest/source-map": "^26.6.2",
- "@jest/test-result": "^26.6.2",
- "@jest/transform": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/yargs": "^15.0.0",
- "chalk": "^4.0.0",
- "cjs-module-lexer": "^0.6.0",
- "collect-v8-coverage": "^1.0.0",
- "exit": "^0.1.2",
- "glob": "^7.1.3",
- "graceful-fs": "^4.2.4",
- "jest-config": "^26.6.3",
- "jest-haste-map": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-mock": "^26.6.2",
- "jest-regex-util": "^26.0.0",
- "jest-resolve": "^26.6.2",
- "jest-snapshot": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-validate": "^26.6.2",
- "slash": "^3.0.0",
- "strip-bom": "^4.0.0",
- "yargs": "^15.4.1"
- },
- "bin": {
- "jest-runtime": "bin/jest-runtime.js"
+ "@types/node": "*",
+ "graceful-fs": "^4.2.4"
},
"engines": {
"node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/jest-snapshot": {
+ "node_modules/jest-snapshot": {
"version": "26.6.2",
- "dev": true,
"license": "MIT",
"dependencies": {
"@babel/types": "^7.0.0",
@@ -24519,115 +29076,77 @@
"node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/jest-util": {
+ "node_modules/jest-snapshot/node_modules/@jest/types": {
"version": "26.6.2",
- "dev": true,
"license": "MIT",
"dependencies": {
- "@jest/types": "^26.6.2",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.4",
- "is-ci": "^2.0.0",
- "micromatch": "^4.0.2"
+ "@types/yargs": "^15.0.0",
+ "chalk": "^4.0.0"
},
"engines": {
"node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/jest-validate": {
+ "node_modules/jest-snapshot/node_modules/diff-sequences": {
+ "version": "26.6.2",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 10.14.2"
+ }
+ },
+ "node_modules/jest-snapshot/node_modules/expect": {
"version": "26.6.2",
- "dev": true,
"license": "MIT",
"dependencies": {
"@jest/types": "^26.6.2",
- "camelcase": "^6.0.0",
- "chalk": "^4.0.0",
+ "ansi-styles": "^4.0.0",
"jest-get-type": "^26.3.0",
- "leven": "^3.1.0",
- "pretty-format": "^26.6.2"
+ "jest-matcher-utils": "^26.6.2",
+ "jest-message-util": "^26.6.2",
+ "jest-regex-util": "^26.0.0"
},
"engines": {
"node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/jest-worker": {
+ "node_modules/jest-snapshot/node_modules/jest-diff": {
"version": "26.6.2",
- "dev": true,
"license": "MIT",
"dependencies": {
- "@types/node": "*",
- "merge-stream": "^2.0.0",
- "supports-color": "^7.0.0"
+ "chalk": "^4.0.0",
+ "diff-sequences": "^26.6.2",
+ "jest-get-type": "^26.3.0",
+ "pretty-format": "^26.6.2"
},
"engines": {
- "node": ">= 10.13.0"
+ "node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/jsdom": {
- "version": "16.7.0",
- "dev": true,
+ "node_modules/jest-snapshot/node_modules/jest-get-type": {
+ "version": "26.3.0",
"license": "MIT",
- "dependencies": {
- "abab": "^2.0.5",
- "acorn": "^8.2.4",
- "acorn-globals": "^6.0.0",
- "cssom": "^0.4.4",
- "cssstyle": "^2.3.0",
- "data-urls": "^2.0.0",
- "decimal.js": "^10.2.1",
- "domexception": "^2.0.1",
- "escodegen": "^2.0.0",
- "form-data": "^3.0.0",
- "html-encoding-sniffer": "^2.0.1",
- "http-proxy-agent": "^4.0.1",
- "https-proxy-agent": "^5.0.0",
- "is-potential-custom-element-name": "^1.0.1",
- "nwsapi": "^2.2.0",
- "parse5": "6.0.1",
- "saxes": "^5.0.1",
- "symbol-tree": "^3.2.4",
- "tough-cookie": "^4.0.0",
- "w3c-hr-time": "^1.0.2",
- "w3c-xmlserializer": "^2.0.0",
- "webidl-conversions": "^6.1.0",
- "whatwg-encoding": "^1.0.5",
- "whatwg-mimetype": "^2.3.0",
- "whatwg-url": "^8.5.0",
- "ws": "^7.4.6",
- "xml-name-validator": "^3.0.0"
- },
"engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "canvas": "^2.5.0"
- },
- "peerDependenciesMeta": {
- "canvas": {
- "optional": true
- }
+ "node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/lru-cache": {
- "version": "6.0.0",
- "dev": true,
- "license": "ISC",
+ "node_modules/jest-snapshot/node_modules/jest-matcher-utils": {
+ "version": "26.6.2",
+ "license": "MIT",
"dependencies": {
- "yallist": "^4.0.0"
+ "chalk": "^4.0.0",
+ "jest-diff": "^26.6.2",
+ "jest-get-type": "^26.3.0",
+ "pretty-format": "^26.6.2"
},
"engines": {
- "node": ">=10"
+ "node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/parse5": {
- "version": "6.0.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/jest-jasmine2/node_modules/pretty-format": {
+ "node_modules/jest-snapshot/node_modules/pretty-format": {
"version": "26.6.2",
- "dev": true,
"license": "MIT",
"dependencies": {
"@jest/types": "^26.6.2",
@@ -24639,13 +29158,13 @@
"node": ">= 10"
}
},
- "node_modules/jest-jasmine2/node_modules/semver": {
- "version": "7.5.0",
- "dev": true,
+ "node_modules/jest-snapshot/node_modules/react-is": {
+ "version": "17.0.2",
+ "license": "MIT"
+ },
+ "node_modules/jest-snapshot/node_modules/semver": {
+ "version": "7.6.3",
"license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
"bin": {
"semver": "bin/semver.js"
},
@@ -24653,200 +29172,293 @@
"node": ">=10"
}
},
- "node_modules/jest-jasmine2/node_modules/slash": {
- "version": "3.0.0",
- "dev": true,
+ "node_modules/jest-util": {
+ "version": "26.6.2",
"license": "MIT",
+ "dependencies": {
+ "@jest/types": "^26.6.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.4",
+ "is-ci": "^2.0.0",
+ "micromatch": "^4.0.2"
+ },
"engines": {
- "node": ">=8"
+ "node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/supports-color": {
- "version": "7.2.0",
- "dev": true,
+ "node_modules/jest-util/node_modules/@jest/types": {
+ "version": "26.6.2",
+ "license": "MIT",
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^15.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": ">= 10.14.2"
+ }
+ },
+ "node_modules/jest-validate": {
+ "version": "26.6.2",
+ "license": "MIT",
+ "dependencies": {
+ "@jest/types": "^26.6.2",
+ "camelcase": "^6.0.0",
+ "chalk": "^4.0.0",
+ "jest-get-type": "^26.3.0",
+ "leven": "^3.1.0",
+ "pretty-format": "^26.6.2"
+ },
+ "engines": {
+ "node": ">= 10.14.2"
+ }
+ },
+ "node_modules/jest-validate/node_modules/@jest/types": {
+ "version": "26.6.2",
+ "license": "MIT",
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^15.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": ">= 10.14.2"
+ }
+ },
+ "node_modules/jest-validate/node_modules/jest-get-type": {
+ "version": "26.3.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 10.14.2"
+ }
+ },
+ "node_modules/jest-validate/node_modules/pretty-format": {
+ "version": "26.6.2",
+ "license": "MIT",
+ "dependencies": {
+ "@jest/types": "^26.6.2",
+ "ansi-regex": "^5.0.0",
+ "ansi-styles": "^4.0.0",
+ "react-is": "^17.0.1"
+ },
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/jest-validate/node_modules/react-is": {
+ "version": "17.0.2",
+ "license": "MIT"
+ },
+ "node_modules/jest-watcher": {
+ "version": "26.6.2",
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
+ "@jest/test-result": "^26.6.2",
+ "@jest/types": "^26.6.2",
+ "@types/node": "*",
+ "ansi-escapes": "^4.2.1",
+ "chalk": "^4.0.0",
+ "jest-util": "^26.6.2",
+ "string-length": "^4.0.1"
},
"engines": {
- "node": ">=8"
+ "node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/tr46": {
- "version": "2.1.0",
- "dev": true,
+ "node_modules/jest-watcher/node_modules/@jest/types": {
+ "version": "26.6.2",
"license": "MIT",
"dependencies": {
- "punycode": "^2.1.1"
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^15.0.0",
+ "chalk": "^4.0.0"
},
"engines": {
- "node": ">=8"
+ "node": ">= 10.14.2"
}
},
- "node_modules/jest-jasmine2/node_modules/w3c-xmlserializer": {
- "version": "2.0.0",
- "dev": true,
+ "node_modules/jest-worker": {
+ "version": "26.6.2",
"license": "MIT",
"dependencies": {
- "xml-name-validator": "^3.0.0"
+ "@types/node": "*",
+ "merge-stream": "^2.0.0",
+ "supports-color": "^7.0.0"
},
"engines": {
- "node": ">=10"
- }
- },
- "node_modules/jest-jasmine2/node_modules/webidl-conversions": {
- "version": "6.1.0",
- "dev": true,
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">=10.4"
+ "node": ">= 10.13.0"
}
},
- "node_modules/jest-jasmine2/node_modules/whatwg-encoding": {
- "version": "1.0.5",
- "dev": true,
+ "node_modules/jest/node_modules/@jest/console": {
+ "version": "29.7.0",
+ "devOptional": true,
"license": "MIT",
"dependencies": {
- "iconv-lite": "0.4.24"
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "jest-message-util": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "slash": "^3.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/jest-jasmine2/node_modules/whatwg-mimetype": {
- "version": "2.3.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/jest-jasmine2/node_modules/whatwg-url": {
- "version": "8.7.0",
- "dev": true,
+ "node_modules/jest/node_modules/@jest/core": {
+ "version": "29.7.0",
+ "devOptional": true,
"license": "MIT",
"dependencies": {
- "lodash": "^4.7.0",
- "tr46": "^2.1.0",
- "webidl-conversions": "^6.1.0"
+ "@jest/console": "^29.7.0",
+ "@jest/reporters": "^29.7.0",
+ "@jest/test-result": "^29.7.0",
+ "@jest/transform": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "ansi-escapes": "^4.2.1",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "exit": "^0.1.2",
+ "graceful-fs": "^4.2.9",
+ "jest-changed-files": "^29.7.0",
+ "jest-config": "^29.7.0",
+ "jest-haste-map": "^29.7.0",
+ "jest-message-util": "^29.7.0",
+ "jest-regex-util": "^29.6.3",
+ "jest-resolve": "^29.7.0",
+ "jest-resolve-dependencies": "^29.7.0",
+ "jest-runner": "^29.7.0",
+ "jest-runtime": "^29.7.0",
+ "jest-snapshot": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "jest-validate": "^29.7.0",
+ "jest-watcher": "^29.7.0",
+ "micromatch": "^4.0.4",
+ "pretty-format": "^29.7.0",
+ "slash": "^3.0.0",
+ "strip-ansi": "^6.0.0"
},
"engines": {
- "node": ">=10"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ },
+ "peerDependencies": {
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
+ },
+ "peerDependenciesMeta": {
+ "node-notifier": {
+ "optional": true
+ }
}
},
- "node_modules/jest-jasmine2/node_modules/wrap-ansi": {
- "version": "6.2.0",
- "dev": true,
+ "node_modules/jest/node_modules/@jest/globals": {
+ "version": "29.7.0",
+ "devOptional": true,
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.0.0",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0"
+ "@jest/environment": "^29.7.0",
+ "@jest/expect": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "jest-mock": "^29.7.0"
},
"engines": {
- "node": ">=8"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/jest-jasmine2/node_modules/write-file-atomic": {
- "version": "3.0.3",
- "dev": true,
- "license": "ISC",
+ "node_modules/jest/node_modules/@jest/reporters": {
+ "version": "29.7.0",
+ "devOptional": true,
+ "license": "MIT",
"dependencies": {
- "imurmurhash": "^0.1.4",
- "is-typedarray": "^1.0.0",
- "signal-exit": "^3.0.2",
- "typedarray-to-buffer": "^3.1.5"
- }
- },
- "node_modules/jest-jasmine2/node_modules/ws": {
- "version": "7.5.10",
- "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz",
- "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==",
- "dev": true,
+ "@bcoe/v8-coverage": "^0.2.3",
+ "@jest/console": "^29.7.0",
+ "@jest/test-result": "^29.7.0",
+ "@jest/transform": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@jridgewell/trace-mapping": "^0.3.18",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "collect-v8-coverage": "^1.0.0",
+ "exit": "^0.1.2",
+ "glob": "^7.1.3",
+ "graceful-fs": "^4.2.9",
+ "istanbul-lib-coverage": "^3.0.0",
+ "istanbul-lib-instrument": "^6.0.0",
+ "istanbul-lib-report": "^3.0.0",
+ "istanbul-lib-source-maps": "^4.0.0",
+ "istanbul-reports": "^3.1.3",
+ "jest-message-util": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "jest-worker": "^29.7.0",
+ "slash": "^3.0.0",
+ "string-length": "^4.0.1",
+ "strip-ansi": "^6.0.0",
+ "v8-to-istanbul": "^9.0.1"
+ },
"engines": {
- "node": ">=8.3.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
},
"peerDependencies": {
- "bufferutil": "^4.0.1",
- "utf-8-validate": "^5.0.2"
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
},
"peerDependenciesMeta": {
- "bufferutil": {
- "optional": true
- },
- "utf-8-validate": {
+ "node-notifier": {
"optional": true
}
}
},
- "node_modules/jest-jasmine2/node_modules/xml-name-validator": {
- "version": "3.0.0",
- "dev": true,
- "license": "Apache-2.0"
- },
- "node_modules/jest-jasmine2/node_modules/y18n": {
- "version": "4.0.3",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/jest-jasmine2/node_modules/yallist": {
- "version": "4.0.0",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/jest-jasmine2/node_modules/yargs": {
- "version": "15.4.1",
- "dev": true,
+ "node_modules/jest/node_modules/@jest/source-map": {
+ "version": "29.6.3",
+ "devOptional": true,
"license": "MIT",
"dependencies": {
- "cliui": "^6.0.0",
- "decamelize": "^1.2.0",
- "find-up": "^4.1.0",
- "get-caller-file": "^2.0.1",
- "require-directory": "^2.1.1",
- "require-main-filename": "^2.0.0",
- "set-blocking": "^2.0.0",
- "string-width": "^4.2.0",
- "which-module": "^2.0.0",
- "y18n": "^4.0.0",
- "yargs-parser": "^18.1.2"
+ "@jridgewell/trace-mapping": "^0.3.18",
+ "callsites": "^3.0.0",
+ "graceful-fs": "^4.2.9"
},
"engines": {
- "node": ">=8"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/jest-jasmine2/node_modules/yargs-parser": {
- "version": "18.1.3",
- "dev": true,
- "license": "ISC",
+ "node_modules/jest/node_modules/@jest/test-result": {
+ "version": "29.7.0",
+ "devOptional": true,
+ "license": "MIT",
"dependencies": {
- "camelcase": "^5.0.0",
- "decamelize": "^1.2.0"
+ "@jest/console": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "collect-v8-coverage": "^1.0.0"
},
"engines": {
- "node": ">=6"
- }
- },
- "node_modules/jest-jasmine2/node_modules/yargs-parser/node_modules/camelcase": {
- "version": "5.3.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/jest-leak-detector": {
+ "node_modules/jest/node_modules/@jest/test-sequencer": {
"version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz",
- "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==",
- "dev": true,
+ "devOptional": true,
+ "license": "MIT",
"dependencies": {
- "jest-get-type": "^29.6.3",
- "pretty-format": "^29.7.0"
+ "@jest/test-result": "^29.7.0",
+ "graceful-fs": "^4.2.9",
+ "jest-haste-map": "^29.7.0",
+ "slash": "^3.0.0"
},
"engines": {
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/jest-leak-detector/node_modules/ansi-styles": {
+ "node_modules/jest/node_modules/ansi-styles": {
"version": "5.2.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
- "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
- "dev": true,
+ "devOptional": true,
+ "license": "MIT",
"engines": {
"node": ">=10"
},
@@ -24854,178 +29466,226 @@
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/jest-leak-detector/node_modules/pretty-format": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz",
- "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==",
- "dev": true,
- "dependencies": {
- "@jest/schemas": "^29.6.3",
- "ansi-styles": "^5.0.0",
- "react-is": "^18.0.0"
- },
+ "node_modules/jest/node_modules/ci-info": {
+ "version": "3.9.0",
+ "devOptional": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/sibiraj-s"
+ }
+ ],
+ "license": "MIT",
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": ">=8"
}
},
- "node_modules/jest-leak-detector/node_modules/react-is": {
- "version": "18.2.0",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz",
- "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==",
- "dev": true
+ "node_modules/jest/node_modules/cjs-module-lexer": {
+ "version": "1.4.1",
+ "devOptional": true,
+ "license": "MIT"
},
- "node_modules/jest-matcher-utils": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz",
- "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==",
- "dev": true,
+ "node_modules/jest/node_modules/convert-source-map": {
+ "version": "2.0.0",
+ "devOptional": true,
+ "license": "MIT"
+ },
+ "node_modules/jest/node_modules/emittery": {
+ "version": "0.13.1",
+ "devOptional": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sindresorhus/emittery?sponsor=1"
+ }
+ },
+ "node_modules/jest/node_modules/glob": {
+ "version": "7.2.3",
+ "devOptional": true,
+ "license": "ISC",
"dependencies": {
- "chalk": "^4.0.0",
- "jest-diff": "^29.7.0",
- "jest-get-type": "^29.6.3",
- "pretty-format": "^29.7.0"
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
},
"engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ "node": "*"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/jest-matcher-utils/node_modules/ansi-styles": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
- "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
- "dev": true,
+ "node_modules/jest/node_modules/istanbul-lib-instrument": {
+ "version": "6.0.3",
+ "devOptional": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "@babel/core": "^7.23.9",
+ "@babel/parser": "^7.23.9",
+ "@istanbuljs/schema": "^0.1.3",
+ "istanbul-lib-coverage": "^3.2.0",
+ "semver": "^7.5.4"
+ },
"engines": {
"node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/jest-matcher-utils/node_modules/pretty-format": {
+ "node_modules/jest/node_modules/jest-changed-files": {
"version": "29.7.0",
- "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz",
- "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==",
- "dev": true,
+ "devOptional": true,
+ "license": "MIT",
"dependencies": {
- "@jest/schemas": "^29.6.3",
- "ansi-styles": "^5.0.0",
- "react-is": "^18.0.0"
+ "execa": "^5.0.0",
+ "jest-util": "^29.7.0",
+ "p-limit": "^3.1.0"
},
"engines": {
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/jest-matcher-utils/node_modules/react-is": {
- "version": "18.2.0",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz",
- "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==",
- "dev": true
- },
- "node_modules/jest-message-util": {
+ "node_modules/jest/node_modules/jest-config": {
"version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz",
- "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==",
- "dev": true,
+ "devOptional": true,
+ "license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.12.13",
+ "@babel/core": "^7.11.6",
+ "@jest/test-sequencer": "^29.7.0",
"@jest/types": "^29.6.3",
- "@types/stack-utils": "^2.0.0",
+ "babel-jest": "^29.7.0",
"chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "deepmerge": "^4.2.2",
+ "glob": "^7.1.3",
"graceful-fs": "^4.2.9",
+ "jest-circus": "^29.7.0",
+ "jest-environment-node": "^29.7.0",
+ "jest-get-type": "^29.6.3",
+ "jest-regex-util": "^29.6.3",
+ "jest-resolve": "^29.7.0",
+ "jest-runner": "^29.7.0",
+ "jest-util": "^29.7.0",
+ "jest-validate": "^29.7.0",
"micromatch": "^4.0.4",
+ "parse-json": "^5.2.0",
"pretty-format": "^29.7.0",
"slash": "^3.0.0",
- "stack-utils": "^2.0.3"
+ "strip-json-comments": "^3.1.1"
},
"engines": {
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/jest-message-util/node_modules/ansi-styles": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
- "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
- "dev": true,
- "engines": {
- "node": ">=10"
},
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "peerDependencies": {
+ "@types/node": "*",
+ "ts-node": ">=9.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/node": {
+ "optional": true
+ },
+ "ts-node": {
+ "optional": true
+ }
}
},
- "node_modules/jest-message-util/node_modules/pretty-format": {
+ "node_modules/jest/node_modules/jest-docblock": {
"version": "29.7.0",
- "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz",
- "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==",
- "dev": true,
+ "devOptional": true,
+ "license": "MIT",
"dependencies": {
- "@jest/schemas": "^29.6.3",
- "ansi-styles": "^5.0.0",
- "react-is": "^18.0.0"
+ "detect-newline": "^3.0.0"
},
"engines": {
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/jest-message-util/node_modules/react-is": {
- "version": "18.2.0",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz",
- "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==",
- "dev": true
- },
- "node_modules/jest-message-util/node_modules/slash": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
- "dev": true,
+ "node_modules/jest/node_modules/jest-environment-node": {
+ "version": "29.7.0",
+ "devOptional": true,
+ "license": "MIT",
+ "dependencies": {
+ "@jest/environment": "^29.7.0",
+ "@jest/fake-timers": "^29.7.0",
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "jest-mock": "^29.7.0",
+ "jest-util": "^29.7.0"
+ },
"engines": {
- "node": ">=8"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/jest-mock": {
+ "node_modules/jest/node_modules/jest-haste-map": {
"version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz",
- "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==",
- "dev": true,
+ "devOptional": true,
+ "license": "MIT",
"dependencies": {
"@jest/types": "^29.6.3",
+ "@types/graceful-fs": "^4.1.3",
"@types/node": "*",
- "jest-util": "^29.7.0"
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "graceful-fs": "^4.2.9",
+ "jest-regex-util": "^29.6.3",
+ "jest-util": "^29.7.0",
+ "jest-worker": "^29.7.0",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.8"
},
"engines": {
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ },
+ "optionalDependencies": {
+ "fsevents": "^2.3.2"
}
},
- "node_modules/jest-pnp-resolver": {
- "version": "1.2.3",
- "dev": true,
+ "node_modules/jest/node_modules/jest-leak-detector": {
+ "version": "29.7.0",
+ "devOptional": true,
"license": "MIT",
- "engines": {
- "node": ">=6"
+ "dependencies": {
+ "jest-get-type": "^29.6.3",
+ "pretty-format": "^29.7.0"
},
- "peerDependencies": {
- "jest-resolve": "*"
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "node_modules/jest/node_modules/jest-message-util": {
+ "version": "29.7.0",
+ "devOptional": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.12.13",
+ "@jest/types": "^29.6.3",
+ "@types/stack-utils": "^2.0.0",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.9",
+ "micromatch": "^4.0.4",
+ "pretty-format": "^29.7.0",
+ "slash": "^3.0.0",
+ "stack-utils": "^2.0.3"
},
- "peerDependenciesMeta": {
- "jest-resolve": {
- "optional": true
- }
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/jest-regex-util": {
+ "node_modules/jest/node_modules/jest-regex-util": {
"version": "29.6.3",
- "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz",
- "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==",
- "dev": true,
+ "devOptional": true,
+ "license": "MIT",
"engines": {
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/jest-resolve": {
+ "node_modules/jest/node_modules/jest-resolve": {
"version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz",
- "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==",
- "dev": true,
+ "devOptional": true,
+ "license": "MIT",
"dependencies": {
"chalk": "^4.0.0",
"graceful-fs": "^4.2.9",
@@ -25041,11 +29701,10 @@
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/jest-resolve-dependencies": {
+ "node_modules/jest/node_modules/jest-resolve-dependencies": {
"version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz",
- "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==",
- "dev": true,
+ "devOptional": true,
+ "license": "MIT",
"dependencies": {
"jest-regex-util": "^29.6.3",
"jest-snapshot": "^29.7.0"
@@ -25054,19 +29713,10 @@
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/jest-resolve/node_modules/slash": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/jest-runner": {
+ "node_modules/jest/node_modules/jest-runner": {
"version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz",
- "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==",
- "dev": true,
+ "devOptional": true,
+ "license": "MIT",
"dependencies": {
"@jest/console": "^29.7.0",
"@jest/environment": "^29.7.0",
@@ -25094,11 +29744,10 @@
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/jest-runtime": {
+ "node_modules/jest/node_modules/jest-runtime": {
"version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz",
- "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==",
- "dev": true,
+ "devOptional": true,
+ "license": "MIT",
"dependencies": {
"@jest/environment": "^29.7.0",
"@jest/fake-timers": "^29.7.0",
@@ -25127,52 +29776,10 @@
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/jest-runtime/node_modules/glob": {
- "version": "7.2.3",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
- "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
- "dev": true,
- "dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.1.1",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
- },
- "engines": {
- "node": "*"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/jest-runtime/node_modules/slash": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/jest-serializer": {
- "version": "26.6.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/node": "*",
- "graceful-fs": "^4.2.4"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/jest-snapshot": {
+ "node_modules/jest/node_modules/jest-snapshot": {
"version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz",
- "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==",
- "dev": true,
+ "devOptional": true,
+ "license": "MIT",
"dependencies": {
"@babel/core": "^7.11.6",
"@babel/generator": "^7.7.2",
@@ -25199,77 +29806,10 @@
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/jest-snapshot/node_modules/ansi-styles": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
- "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
- "dev": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/jest-snapshot/node_modules/lru-cache": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
- "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
- "dev": true,
- "dependencies": {
- "yallist": "^4.0.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/jest-snapshot/node_modules/pretty-format": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz",
- "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==",
- "dev": true,
- "dependencies": {
- "@jest/schemas": "^29.6.3",
- "ansi-styles": "^5.0.0",
- "react-is": "^18.0.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/jest-snapshot/node_modules/react-is": {
- "version": "18.2.0",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz",
- "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==",
- "dev": true
- },
- "node_modules/jest-snapshot/node_modules/semver": {
- "version": "7.6.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz",
- "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/jest-snapshot/node_modules/yallist": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
- "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
- "dev": true
- },
- "node_modules/jest-util": {
+ "node_modules/jest/node_modules/jest-util": {
"version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz",
- "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==",
- "dev": true,
+ "devOptional": true,
+ "license": "MIT",
"dependencies": {
"@jest/types": "^29.6.3",
"@types/node": "*",
@@ -25282,11 +29822,10 @@
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/jest-validate": {
+ "node_modules/jest/node_modules/jest-validate": {
"version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz",
- "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==",
- "dev": true,
+ "devOptional": true,
+ "license": "MIT",
"dependencies": {
"@jest/types": "^29.6.3",
"camelcase": "^6.2.0",
@@ -25299,55 +29838,10 @@
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/jest-validate/node_modules/ansi-styles": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
- "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
- "dev": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/jest-validate/node_modules/camelcase": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
- "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
- "dev": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/jest-validate/node_modules/pretty-format": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz",
- "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==",
- "dev": true,
- "dependencies": {
- "@jest/schemas": "^29.6.3",
- "ansi-styles": "^5.0.0",
- "react-is": "^18.0.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/jest-validate/node_modules/react-is": {
- "version": "18.2.0",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz",
- "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==",
- "dev": true
- },
- "node_modules/jest-watcher": {
+ "node_modules/jest/node_modules/jest-watcher": {
"version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz",
- "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==",
- "dev": true,
+ "devOptional": true,
+ "license": "MIT",
"dependencies": {
"@jest/test-result": "^29.7.0",
"@jest/types": "^29.6.3",
@@ -25362,11 +29856,10 @@
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/jest-worker": {
+ "node_modules/jest/node_modules/jest-worker": {
"version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz",
- "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==",
- "dev": true,
+ "devOptional": true,
+ "license": "MIT",
"dependencies": {
"@types/node": "*",
"jest-util": "^29.7.0",
@@ -25377,20 +29870,56 @@
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/jest-worker/node_modules/has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true,
+ "node_modules/jest/node_modules/pretty-format": {
+ "version": "29.7.0",
+ "devOptional": true,
+ "license": "MIT",
+ "dependencies": {
+ "@jest/schemas": "^29.6.3",
+ "ansi-styles": "^5.0.0",
+ "react-is": "^18.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "node_modules/jest/node_modules/react-is": {
+ "version": "18.3.1",
+ "devOptional": true,
+ "license": "MIT"
+ },
+ "node_modules/jest/node_modules/semver": {
+ "version": "7.6.3",
+ "devOptional": true,
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/jest/node_modules/slash": {
+ "version": "3.0.0",
+ "devOptional": true,
+ "license": "MIT",
"engines": {
"node": ">=8"
}
},
- "node_modules/jest-worker/node_modules/supports-color": {
+ "node_modules/jest/node_modules/source-map-support": {
+ "version": "0.5.13",
+ "devOptional": true,
+ "license": "MIT",
+ "dependencies": {
+ "buffer-from": "^1.0.0",
+ "source-map": "^0.6.0"
+ }
+ },
+ "node_modules/jest/node_modules/supports-color": {
"version": "8.1.1",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
- "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
- "dev": true,
+ "devOptional": true,
+ "license": "MIT",
"dependencies": {
"has-flag": "^4.0.0"
},
@@ -25401,13 +29930,33 @@
"url": "https://github.com/chalk/supports-color?sponsor=1"
}
},
+ "node_modules/jest/node_modules/v8-to-istanbul": {
+ "version": "9.3.0",
+ "devOptional": true,
+ "license": "ISC",
+ "dependencies": {
+ "@jridgewell/trace-mapping": "^0.3.12",
+ "@types/istanbul-lib-coverage": "^2.0.1",
+ "convert-source-map": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=10.12.0"
+ }
+ },
+ "node_modules/jiti": {
+ "version": "1.21.6",
+ "license": "MIT",
+ "bin": {
+ "jiti": "bin/jiti.js"
+ }
+ },
"node_modules/joi": {
- "version": "17.9.2",
+ "version": "17.13.3",
"license": "BSD-3-Clause",
"dependencies": {
- "@hapi/hoek": "^9.0.0",
- "@hapi/topo": "^5.0.0",
- "@sideway/address": "^4.1.3",
+ "@hapi/hoek": "^9.3.0",
+ "@hapi/topo": "^5.1.0",
+ "@sideway/address": "^4.1.5",
"@sideway/formula": "^3.0.1",
"@sideway/pinpoint": "^2.0.0"
}
@@ -25417,7 +29966,7 @@
"license": "MIT"
},
"node_modules/jquery": {
- "version": "3.6.4",
+ "version": "3.7.1",
"license": "MIT",
"peer": true
},
@@ -25426,34 +29975,25 @@
"dev": true,
"license": "MIT"
},
- "node_modules/js-sdsl": {
- "version": "4.4.0",
- "dev": true,
- "license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/js-sdsl"
- }
- },
"node_modules/js-tokens": {
"version": "4.0.0",
"license": "MIT"
},
"node_modules/js-toml": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/js-toml/-/js-toml-1.0.0.tgz",
- "integrity": "sha512-G757004huuG5Cjg8KUoVTS4zNRR4449KG8kjtFQS0yyQnceq3KfxcArThcqUV2cwdpd0C9I+e1WciK3Xm4cWJw==",
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/js-toml/-/js-toml-1.0.1.tgz",
+ "integrity": "sha512-rHd/IolpFm2V5BmHCEY8CckHs8NDsYZZ64H5RNgA6Opsr9vX4QyTiQPplgtqg7b3ztqYShZC38nl6CUg7QuhXg==",
+ "license": "MIT",
"dependencies": {
"chevrotain": "^11.0.3",
"xregexp": "^5.1.1"
}
},
"node_modules/js-yaml": {
- "version": "3.14.1",
+ "version": "4.1.0",
"license": "MIT",
"dependencies": {
- "argparse": "^1.0.7",
- "esprima": "^4.0.0"
+ "argparse": "^2.0.1"
},
"bin": {
"js-yaml": "bin/js-yaml.js"
@@ -25461,9 +30001,7 @@
},
"node_modules/jsdom": {
"version": "20.0.3",
- "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz",
- "integrity": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==",
- "dev": true,
+ "license": "MIT",
"dependencies": {
"abab": "^2.0.6",
"acorn": "^8.8.1",
@@ -25504,45 +30042,14 @@
}
}
},
- "node_modules/jsdom/node_modules/acorn-globals": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz",
- "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==",
- "dev": true,
- "dependencies": {
- "acorn": "^8.1.0",
- "acorn-walk": "^8.0.2"
- }
- },
- "node_modules/jsdom/node_modules/acorn-walk": {
- "version": "8.3.2",
- "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.2.tgz",
- "integrity": "sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==",
- "dev": true,
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/jsdom/node_modules/saxes": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz",
- "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==",
- "dev": true,
- "dependencies": {
- "xmlchars": "^2.2.0"
- },
- "engines": {
- "node": ">=v12.22.7"
- }
- },
"node_modules/jsesc": {
- "version": "2.5.2",
+ "version": "3.1.0",
"license": "MIT",
"bin": {
"jsesc": "bin/jsesc"
},
"engines": {
- "node": ">=4"
+ "node": ">=6"
}
},
"node_modules/json-buffer": {
@@ -25567,11 +30074,11 @@
"license": "MIT"
},
"node_modules/json-stable-stringify": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.1.1.tgz",
- "integrity": "sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg==",
+ "version": "1.2.1",
+ "license": "MIT",
"dependencies": {
- "call-bind": "^1.0.5",
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.3",
"isarray": "^2.0.5",
"jsonify": "^0.0.1",
"object-keys": "^1.1.1"
@@ -25614,8 +30121,7 @@
},
"node_modules/jsonify": {
"version": "0.0.1",
- "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.1.tgz",
- "integrity": "sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==",
+ "license": "Public Domain",
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
@@ -25644,11 +30150,13 @@
}
},
"node_modules/jsx-ast-utils": {
- "version": "3.3.3",
+ "version": "3.3.5",
"license": "MIT",
"dependencies": {
- "array-includes": "^3.1.5",
- "object.assign": "^4.1.3"
+ "array-includes": "^3.1.6",
+ "array.prototype.flat": "^1.3.1",
+ "object.assign": "^4.1.4",
+ "object.values": "^1.1.6"
},
"engines": {
"node": ">=4.0"
@@ -25659,7 +30167,7 @@
"license": "MIT"
},
"node_modules/keyv": {
- "version": "4.5.2",
+ "version": "4.5.4",
"license": "MIT",
"dependencies": {
"json-buffer": "3.0.1"
@@ -25676,6 +30184,7 @@
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/klaw-sync/-/klaw-sync-6.0.0.tgz",
"integrity": "sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==",
+ "license": "MIT",
"dependencies": {
"graceful-fs": "^4.1.11"
}
@@ -25695,12 +30204,12 @@
}
},
"node_modules/known-css-properties": {
- "version": "0.26.0",
+ "version": "0.29.0",
"dev": true,
"license": "MIT"
},
"node_modules/language-subtag-registry": {
- "version": "0.3.22",
+ "version": "0.3.23",
"license": "CC0-1.0"
},
"node_modules/language-tags": {
@@ -25711,27 +30220,28 @@
}
},
"node_modules/latest-version": {
- "version": "5.1.0",
+ "version": "7.0.0",
"license": "MIT",
"dependencies": {
- "package-json": "^6.3.0"
+ "package-json": "^8.1.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=14.16"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/launch-editor": {
- "version": "2.6.0",
- "devOptional": true,
+ "version": "2.9.1",
"license": "MIT",
"dependencies": {
"picocolors": "^1.0.0",
- "shell-quote": "^1.7.3"
+ "shell-quote": "^1.8.1"
}
},
"node_modules/leven": {
"version": "3.1.0",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=6"
@@ -25766,22 +30276,24 @@
"version": "1.2.4",
"license": "MIT"
},
+ "node_modules/linkfs": {
+ "version": "2.1.0"
+ },
"node_modules/lint-staged": {
- "version": "15.2.0",
- "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-15.2.0.tgz",
- "integrity": "sha512-TFZzUEV00f+2YLaVPWBWGAMq7So6yQx+GG8YRMDeOEIf95Zn5RyiLMsEiX4KTNl9vq/w+NqRJkLA1kPIo15ufQ==",
- "dev": true,
- "dependencies": {
- "chalk": "5.3.0",
- "commander": "11.1.0",
- "debug": "4.3.4",
- "execa": "8.0.1",
- "lilconfig": "3.0.0",
- "listr2": "8.0.0",
- "micromatch": "4.0.5",
- "pidtree": "0.6.0",
- "string-argv": "0.3.2",
- "yaml": "2.3.4"
+ "version": "15.2.11",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "chalk": "~5.3.0",
+ "commander": "~12.1.0",
+ "debug": "~4.4.0",
+ "execa": "~8.0.1",
+ "lilconfig": "~3.1.3",
+ "listr2": "~8.2.5",
+ "micromatch": "~4.0.8",
+ "pidtree": "~0.6.0",
+ "string-argv": "~0.3.2",
+ "yaml": "~2.6.1"
},
"bin": {
"lint-staged": "bin/lint-staged.js"
@@ -25795,9 +30307,8 @@
},
"node_modules/lint-staged/node_modules/chalk": {
"version": "5.3.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz",
- "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": "^12.17.0 || ^14.13 || >=16.0.0"
},
@@ -25806,19 +30317,33 @@
}
},
"node_modules/lint-staged/node_modules/commander": {
- "version": "11.1.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz",
- "integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==",
+ "version": "12.1.0",
"dev": true,
+ "license": "MIT",
"engines": {
- "node": ">=16"
+ "node": ">=18"
+ }
+ },
+ "node_modules/lint-staged/node_modules/debug": {
+ "version": "4.4.0",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
}
},
"node_modules/lint-staged/node_modules/execa": {
"version": "8.0.1",
- "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz",
- "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"cross-spawn": "^7.0.3",
"get-stream": "^8.0.1",
@@ -25839,9 +30364,8 @@
},
"node_modules/lint-staged/node_modules/get-stream": {
"version": "8.0.1",
- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz",
- "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=16"
},
@@ -25851,18 +30375,16 @@
},
"node_modules/lint-staged/node_modules/human-signals": {
"version": "5.0.0",
- "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz",
- "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==",
"dev": true,
+ "license": "Apache-2.0",
"engines": {
"node": ">=16.17.0"
}
},
"node_modules/lint-staged/node_modules/is-stream": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz",
- "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
@@ -25871,19 +30393,20 @@
}
},
"node_modules/lint-staged/node_modules/lilconfig": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.0.0.tgz",
- "integrity": "sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==",
+ "version": "3.1.3",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antonk52"
}
},
"node_modules/lint-staged/node_modules/mimic-fn": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz",
- "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=12"
},
@@ -25892,10 +30415,9 @@
}
},
"node_modules/lint-staged/node_modules/npm-run-path": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz",
- "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==",
+ "version": "5.3.0",
"dev": true,
+ "license": "MIT",
"dependencies": {
"path-key": "^4.0.0"
},
@@ -25908,9 +30430,8 @@
},
"node_modules/lint-staged/node_modules/onetime": {
"version": "6.0.0",
- "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz",
- "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"mimic-fn": "^4.0.0"
},
@@ -25923,9 +30444,8 @@
},
"node_modules/lint-staged/node_modules/path-key": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz",
- "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=12"
},
@@ -25935,9 +30455,8 @@
},
"node_modules/lint-staged/node_modules/signal-exit": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
- "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
"dev": true,
+ "license": "ISC",
"engines": {
"node": ">=14"
},
@@ -25947,9 +30466,8 @@
},
"node_modules/lint-staged/node_modules/strip-final-newline": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz",
- "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=12"
},
@@ -25957,26 +30475,16 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/lint-staged/node_modules/yaml": {
- "version": "2.3.4",
- "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz",
- "integrity": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==",
- "dev": true,
- "engines": {
- "node": ">= 14"
- }
- },
"node_modules/listr2": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/listr2/-/listr2-8.0.0.tgz",
- "integrity": "sha512-u8cusxAcyqAiQ2RhYvV7kRKNLgUvtObIbhOX2NCXqvp1UU32xIg5CT22ykS2TPKJXZWJwtK3IKLiqAGlGNE+Zg==",
+ "version": "8.2.5",
"dev": true,
+ "license": "MIT",
"dependencies": {
"cli-truncate": "^4.0.0",
"colorette": "^2.0.20",
"eventemitter3": "^5.0.1",
- "log-update": "^6.0.0",
- "rfdc": "^1.3.0",
+ "log-update": "^6.1.0",
+ "rfdc": "^1.4.1",
"wrap-ansi": "^9.0.0"
},
"engines": {
@@ -25984,22 +30492,25 @@
}
},
"node_modules/listr2/node_modules/ansi-escapes": {
- "version": "6.2.1",
- "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-6.2.1.tgz",
- "integrity": "sha512-4nJ3yixlEthEJ9Rk4vPcdBRkZvQZlYyu8j4/Mqz5sgIkddmEnH2Yj2ZrnP9S3tQOvSNRUIgVNF/1yPpRAGNRig==",
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.0.0.tgz",
+ "integrity": "sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==",
"dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "environment": "^1.0.0"
+ },
"engines": {
- "node": ">=14.16"
+ "node": ">=18"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/listr2/node_modules/ansi-regex": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz",
- "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
+ "version": "6.1.0",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=12"
},
@@ -26009,9 +30520,8 @@
},
"node_modules/listr2/node_modules/ansi-styles": {
"version": "6.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
- "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=12"
},
@@ -26020,37 +30530,32 @@
}
},
"node_modules/listr2/node_modules/cli-cursor": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-4.0.0.tgz",
- "integrity": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==",
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-5.0.0.tgz",
+ "integrity": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "restore-cursor": "^4.0.0"
+ "restore-cursor": "^5.0.0"
},
"engines": {
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ "node": ">=18"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/listr2/node_modules/emoji-regex": {
- "version": "10.3.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.3.0.tgz",
- "integrity": "sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==",
- "dev": true
- },
- "node_modules/listr2/node_modules/eventemitter3": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz",
- "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==",
- "dev": true
+ "version": "10.4.0",
+ "dev": true,
+ "license": "MIT"
},
"node_modules/listr2/node_modules/is-fullwidth-code-point": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-5.0.0.tgz",
"integrity": "sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"get-east-asian-width": "^1.0.0"
},
@@ -26062,14 +30567,15 @@
}
},
"node_modules/listr2/node_modules/log-update": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/log-update/-/log-update-6.0.0.tgz",
- "integrity": "sha512-niTvB4gqvtof056rRIrTZvjNYE4rCUzO6X/X+kYjd7WFxXeJ0NwEFnRxX6ehkvv3jTwrXnNdtAak5XYZuIyPFw==",
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/log-update/-/log-update-6.1.0.tgz",
+ "integrity": "sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "ansi-escapes": "^6.2.0",
- "cli-cursor": "^4.0.0",
- "slice-ansi": "^7.0.0",
+ "ansi-escapes": "^7.0.0",
+ "cli-cursor": "^5.0.0",
+ "slice-ansi": "^7.1.0",
"strip-ansi": "^7.1.0",
"wrap-ansi": "^9.0.0"
},
@@ -26080,27 +30586,58 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/listr2/node_modules/onetime": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/onetime/-/onetime-7.0.0.tgz",
+ "integrity": "sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "mimic-function": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
"node_modules/listr2/node_modules/restore-cursor": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz",
- "integrity": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==",
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-5.1.0.tgz",
+ "integrity": "sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "onetime": "^5.1.0",
- "signal-exit": "^3.0.2"
+ "onetime": "^7.0.0",
+ "signal-exit": "^4.1.0"
},
"engines": {
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ "node": ">=18"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/listr2/node_modules/signal-exit": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
+ "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
"node_modules/listr2/node_modules/slice-ansi": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-7.1.0.tgz",
"integrity": "sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"ansi-styles": "^6.2.1",
"is-fullwidth-code-point": "^5.0.0"
@@ -26113,10 +30650,9 @@
}
},
"node_modules/listr2/node_modules/string-width": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.0.0.tgz",
- "integrity": "sha512-GPQHj7row82Hjo9hKZieKcHIhaAIKOJvFSIZXuCU9OASVZrMNUaZuz++SPVrBjnLsnk4k+z9f2EIypgxf2vNFw==",
+ "version": "7.2.0",
"dev": true,
+ "license": "MIT",
"dependencies": {
"emoji-regex": "^10.3.0",
"get-east-asian-width": "^1.0.0",
@@ -26131,9 +30667,8 @@
},
"node_modules/listr2/node_modules/strip-ansi": {
"version": "7.1.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
- "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"ansi-regex": "^6.0.1"
},
@@ -26146,9 +30681,8 @@
},
"node_modules/listr2/node_modules/wrap-ansi": {
"version": "9.0.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.0.tgz",
- "integrity": "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"ansi-styles": "^6.2.1",
"string-width": "^7.0.0",
@@ -26260,13 +30794,16 @@
}
},
"node_modules/locate-path": {
- "version": "5.0.0",
+ "version": "6.0.0",
"license": "MIT",
"dependencies": {
- "p-locate": "^4.1.0"
+ "p-locate": "^5.0.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/lock": {
@@ -26281,23 +30818,14 @@
"version": "4.17.21",
"license": "MIT"
},
- "node_modules/lodash.assignin": {
- "version": "4.2.0",
- "license": "MIT"
- },
- "node_modules/lodash.bind": {
- "version": "4.2.1",
- "license": "MIT"
- },
"node_modules/lodash.camelcase": {
"version": "4.3.0",
"license": "MIT"
},
"node_modules/lodash.capitalize": {
"version": "4.2.1",
- "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz",
- "integrity": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/lodash.clonedeep": {
"version": "4.5.0",
@@ -26311,10 +30839,6 @@
"version": "4.1.0",
"license": "MIT"
},
- "node_modules/lodash.defaults": {
- "version": "4.2.0",
- "license": "MIT"
- },
"node_modules/lodash.escaperegexp": {
"version": "4.1.2",
"dev": true,
@@ -26324,14 +30848,6 @@
"version": "4.6.0",
"license": "MIT"
},
- "node_modules/lodash.filter": {
- "version": "4.6.0",
- "license": "MIT"
- },
- "node_modules/lodash.flatten": {
- "version": "4.4.0",
- "license": "MIT"
- },
"node_modules/lodash.flattendeep": {
"version": "4.4.0",
"license": "MIT"
@@ -26370,26 +30886,10 @@
"version": "4.6.2",
"license": "MIT"
},
- "node_modules/lodash.pick": {
- "version": "4.4.0",
- "license": "MIT"
- },
- "node_modules/lodash.reduce": {
- "version": "4.6.0",
- "license": "MIT"
- },
- "node_modules/lodash.reject": {
- "version": "4.6.0",
- "license": "MIT"
- },
"node_modules/lodash.snakecase": {
"version": "4.1.1",
"license": "MIT"
},
- "node_modules/lodash.some": {
- "version": "4.6.0",
- "license": "MIT"
- },
"node_modules/lodash.truncate": {
"version": "4.4.2",
"license": "MIT"
@@ -26404,8 +30904,7 @@
},
"node_modules/log-symbols": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz",
- "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==",
+ "license": "MIT",
"dependencies": {
"chalk": "^4.1.0",
"is-unicode-supported": "^0.1.0"
@@ -26417,21 +30916,11 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/log-symbols/node_modules/is-unicode-supported": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz",
- "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/log-update": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz",
"integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==",
+ "license": "MIT",
"dependencies": {
"ansi-escapes": "^4.3.0",
"cli-cursor": "^3.1.0",
@@ -26445,40 +30934,37 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/log-update/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
+ "node_modules/log-update/node_modules/is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+ "license": "MIT",
"engines": {
"node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/log-update/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "node_modules/log-update/node_modules/slice-ansi": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz",
+ "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==",
+ "license": "MIT",
"dependencies": {
- "color-name": "~1.1.4"
+ "ansi-styles": "^4.0.0",
+ "astral-regex": "^2.0.0",
+ "is-fullwidth-code-point": "^3.0.0"
},
"engines": {
- "node": ">=7.0.0"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/slice-ansi?sponsor=1"
}
},
- "node_modules/log-update/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
- },
"node_modules/log-update/node_modules/wrap-ansi": {
"version": "6.2.0",
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
"integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
+ "license": "MIT",
"dependencies": {
"ansi-styles": "^4.0.0",
"string-width": "^4.1.0",
@@ -26489,7 +30975,7 @@
}
},
"node_modules/longest-streak": {
- "version": "2.0.4",
+ "version": "3.1.0",
"license": "MIT",
"funding": {
"type": "github",
@@ -26507,8 +30993,11 @@
}
},
"node_modules/lower-case": {
- "version": "1.1.4",
- "license": "MIT"
+ "version": "2.0.2",
+ "license": "MIT",
+ "dependencies": {
+ "tslib": "^2.0.3"
+ }
},
"node_modules/lower-case-first": {
"version": "2.0.2",
@@ -26566,9 +31055,24 @@
"node": ">= 12"
}
},
+ "node_modules/mailto-link/node_modules/query-string": {
+ "version": "7.0.1",
+ "license": "MIT",
+ "dependencies": {
+ "decode-uri-component": "^0.2.0",
+ "filter-obj": "^1.1.0",
+ "split-on-first": "^1.0.0",
+ "strict-uri-encode": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
"node_modules/make-dir": {
"version": "2.1.0",
- "dev": true,
"license": "MIT",
"dependencies": {
"pify": "^4.0.1",
@@ -26579,8 +31083,7 @@
}
},
"node_modules/make-dir/node_modules/semver": {
- "version": "5.7.1",
- "dev": true,
+ "version": "5.7.2",
"license": "ISC",
"bin": {
"semver": "bin/semver"
@@ -26588,34 +31091,15 @@
},
"node_modules/make-error": {
"version": "1.3.6",
- "dev": true,
"license": "ISC"
},
"node_modules/makeerror": {
"version": "1.0.12",
- "dev": true,
"license": "BSD-3-Clause",
"dependencies": {
"tmpl": "1.0.5"
}
},
- "node_modules/map-age-cleaner": {
- "version": "0.1.3",
- "license": "MIT",
- "dependencies": {
- "p-defer": "^1.0.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/map-age-cleaner/node_modules/p-defer": {
- "version": "1.0.0",
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/map-cache": {
"version": "0.2.2",
"license": "MIT",
@@ -26636,7 +31120,6 @@
},
"node_modules/map-visit": {
"version": "1.0.0",
- "dev": true,
"license": "MIT",
"dependencies": {
"object-visit": "^1.0.0"
@@ -26645,12 +31128,11 @@
"node": ">=0.10.0"
}
},
- "node_modules/markdown-escapes": {
- "version": "1.0.4",
+ "node_modules/markdown-extensions": {
+ "version": "1.1.1",
"license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "engines": {
+ "node": ">=0.10.0"
}
},
"node_modules/markdown-loader": {
@@ -26695,10 +31177,6 @@
"node": ">=4.0.0"
}
},
- "node_modules/markdown-table": {
- "version": "1.1.3",
- "license": "MIT"
- },
"node_modules/marked": {
"version": "0.3.19",
"dev": true,
@@ -26717,6 +31195,13 @@
"css-mediaquery": "^0.1.2"
}
},
+ "node_modules/math-intrinsics": {
+ "version": "1.0.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/mathml-tag-names": {
"version": "2.1.3",
"dev": true,
@@ -26735,35 +31220,47 @@
"is-buffer": "~1.1.6"
}
},
- "node_modules/md5-file": {
- "version": "5.0.0",
- "license": "MIT",
- "bin": {
- "md5-file": "cli.js"
- },
- "engines": {
- "node": ">=10.13.0"
- }
- },
"node_modules/md5/node_modules/is-buffer": {
"version": "1.1.6",
"license": "MIT"
},
- "node_modules/mdast-squeeze-paragraphs": {
+ "node_modules/mdast-util-definitions": {
"version": "4.0.0",
"license": "MIT",
"dependencies": {
- "unist-util-remove": "^2.0.0"
+ "unist-util-visit": "^2.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
- "node_modules/mdast-squeeze-paragraphs/node_modules/unist-util-remove": {
- "version": "2.1.0",
+ "node_modules/mdast-util-definitions/node_modules/unist-util-is": {
+ "version": "4.1.0",
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-definitions/node_modules/unist-util-visit": {
+ "version": "2.0.3",
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0",
+ "unist-util-visit-parents": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-definitions/node_modules/unist-util-visit-parents": {
+ "version": "3.1.1",
"license": "MIT",
"dependencies": {
+ "@types/unist": "^2.0.0",
"unist-util-is": "^4.0.0"
},
"funding": {
@@ -26771,262 +31268,947 @@
"url": "https://opencollective.com/unified"
}
},
- "node_modules/mdast-util-compact": {
- "version": "1.0.4",
+ "node_modules/mdast-util-from-markdown": {
+ "version": "1.3.1",
"license": "MIT",
"dependencies": {
- "unist-util-visit": "^1.1.0"
+ "@types/mdast": "^3.0.0",
+ "@types/unist": "^2.0.0",
+ "decode-named-character-reference": "^1.0.0",
+ "mdast-util-to-string": "^3.1.0",
+ "micromark": "^3.0.0",
+ "micromark-util-decode-numeric-character-reference": "^1.0.0",
+ "micromark-util-decode-string": "^1.0.0",
+ "micromark-util-normalize-identifier": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "unist-util-stringify-position": "^3.0.0",
+ "uvu": "^0.5.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
- "node_modules/mdast-util-compact/node_modules/unist-util-is": {
- "version": "3.0.0",
+ "node_modules/mdast-util-mdx": {
+ "version": "2.0.1",
+ "license": "MIT",
+ "dependencies": {
+ "mdast-util-from-markdown": "^1.0.0",
+ "mdast-util-mdx-expression": "^1.0.0",
+ "mdast-util-mdx-jsx": "^2.0.0",
+ "mdast-util-mdxjs-esm": "^1.0.0",
+ "mdast-util-to-markdown": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-mdx-expression": {
+ "version": "1.3.2",
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree-jsx": "^1.0.0",
+ "@types/hast": "^2.0.0",
+ "@types/mdast": "^3.0.0",
+ "mdast-util-from-markdown": "^1.0.0",
+ "mdast-util-to-markdown": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-mdx-jsx": {
+ "version": "2.1.4",
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree-jsx": "^1.0.0",
+ "@types/hast": "^2.0.0",
+ "@types/mdast": "^3.0.0",
+ "@types/unist": "^2.0.0",
+ "ccount": "^2.0.0",
+ "mdast-util-from-markdown": "^1.1.0",
+ "mdast-util-to-markdown": "^1.3.0",
+ "parse-entities": "^4.0.0",
+ "stringify-entities": "^4.0.0",
+ "unist-util-remove-position": "^4.0.0",
+ "unist-util-stringify-position": "^3.0.0",
+ "vfile-message": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-mdxjs-esm": {
+ "version": "1.3.1",
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree-jsx": "^1.0.0",
+ "@types/hast": "^2.0.0",
+ "@types/mdast": "^3.0.0",
+ "mdast-util-from-markdown": "^1.0.0",
+ "mdast-util-to-markdown": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-phrasing": {
+ "version": "3.0.1",
+ "license": "MIT",
+ "dependencies": {
+ "@types/mdast": "^3.0.0",
+ "unist-util-is": "^5.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-to-hast": {
+ "version": "10.2.0",
+ "license": "MIT",
+ "dependencies": {
+ "@types/mdast": "^3.0.0",
+ "@types/unist": "^2.0.0",
+ "mdast-util-definitions": "^4.0.0",
+ "mdurl": "^1.0.0",
+ "unist-builder": "^2.0.0",
+ "unist-util-generated": "^1.0.0",
+ "unist-util-position": "^3.0.0",
+ "unist-util-visit": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-to-hast/node_modules/unist-util-is": {
+ "version": "4.1.0",
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-to-hast/node_modules/unist-util-position": {
+ "version": "3.1.0",
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-to-hast/node_modules/unist-util-visit": {
+ "version": "2.0.3",
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0",
+ "unist-util-visit-parents": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-to-hast/node_modules/unist-util-visit-parents": {
+ "version": "3.1.1",
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-to-markdown": {
+ "version": "1.5.0",
+ "license": "MIT",
+ "dependencies": {
+ "@types/mdast": "^3.0.0",
+ "@types/unist": "^2.0.0",
+ "longest-streak": "^3.0.0",
+ "mdast-util-phrasing": "^3.0.0",
+ "mdast-util-to-string": "^3.0.0",
+ "micromark-util-decode-string": "^1.0.0",
+ "unist-util-visit": "^4.0.0",
+ "zwitch": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-to-string": {
+ "version": "3.2.0",
+ "license": "MIT",
+ "dependencies": {
+ "@types/mdast": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-toc": {
+ "version": "6.1.1",
+ "license": "MIT",
+ "dependencies": {
+ "@types/extend": "^3.0.0",
+ "@types/mdast": "^3.0.0",
+ "extend": "^3.0.0",
+ "github-slugger": "^2.0.0",
+ "mdast-util-to-string": "^3.1.0",
+ "unist-util-is": "^5.0.0",
+ "unist-util-visit": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdn-data": {
+ "version": "2.0.14",
+ "license": "CC0-1.0"
+ },
+ "node_modules/mdurl": {
+ "version": "1.0.1",
"license": "MIT"
},
- "node_modules/mdast-util-compact/node_modules/unist-util-visit": {
+ "node_modules/meant": {
+ "version": "1.0.3",
+ "license": "MIT"
+ },
+ "node_modules/media-query-parser": {
+ "version": "2.0.2",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.12.5"
+ }
+ },
+ "node_modules/media-typer": {
+ "version": "0.3.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/memfs": {
+ "version": "3.5.3",
+ "license": "Unlicense",
+ "dependencies": {
+ "fs-monkey": "^1.0.4"
+ },
+ "engines": {
+ "node": ">= 4.0.0"
+ }
+ },
+ "node_modules/memoizee": {
+ "version": "0.4.17",
+ "license": "ISC",
+ "dependencies": {
+ "d": "^1.0.2",
+ "es5-ext": "^0.10.64",
+ "es6-weak-map": "^2.0.3",
+ "event-emitter": "^0.3.5",
+ "is-promise": "^2.2.2",
+ "lru-queue": "^0.1.0",
+ "next-tick": "^1.1.0",
+ "timers-ext": "^0.1.7"
+ },
+ "engines": {
+ "node": ">=0.12"
+ }
+ },
+ "node_modules/memory-fs": {
+ "version": "0.2.0",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/meow": {
+ "version": "8.1.2",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/minimist": "^1.2.0",
+ "camelcase-keys": "^6.2.2",
+ "decamelize-keys": "^1.1.0",
+ "hard-rejection": "^2.1.0",
+ "minimist-options": "4.1.0",
+ "normalize-package-data": "^3.0.0",
+ "read-pkg-up": "^7.0.1",
+ "redent": "^3.0.0",
+ "trim-newlines": "^3.0.0",
+ "type-fest": "^0.18.0",
+ "yargs-parser": "^20.2.3"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/meow/node_modules/hosted-git-info": {
+ "version": "4.1.0",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "lru-cache": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/meow/node_modules/lru-cache": {
+ "version": "6.0.0",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "yallist": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/meow/node_modules/normalize-package-data": {
+ "version": "3.0.3",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "hosted-git-info": "^4.0.1",
+ "is-core-module": "^2.5.0",
+ "semver": "^7.3.4",
+ "validate-npm-package-license": "^3.0.1"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/meow/node_modules/semver": {
+ "version": "7.6.3",
+ "dev": true,
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/meow/node_modules/type-fest": {
+ "version": "0.18.1",
+ "dev": true,
+ "license": "(MIT OR CC0-1.0)",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/meow/node_modules/yallist": {
+ "version": "4.0.0",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/merge-descriptors": {
+ "version": "1.0.1",
+ "license": "MIT"
+ },
+ "node_modules/merge-stream": {
+ "version": "2.0.0",
+ "license": "MIT"
+ },
+ "node_modules/merge2": {
"version": "1.4.1",
"license": "MIT",
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/methods": {
+ "version": "1.1.2",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/micromark": {
+ "version": "3.2.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "@types/debug": "^4.0.0",
+ "debug": "^4.0.0",
+ "decode-named-character-reference": "^1.0.0",
+ "micromark-core-commonmark": "^1.0.1",
+ "micromark-factory-space": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-chunked": "^1.0.0",
+ "micromark-util-combine-extensions": "^1.0.0",
+ "micromark-util-decode-numeric-character-reference": "^1.0.0",
+ "micromark-util-encode": "^1.0.0",
+ "micromark-util-normalize-identifier": "^1.0.0",
+ "micromark-util-resolve-all": "^1.0.0",
+ "micromark-util-sanitize-uri": "^1.0.0",
+ "micromark-util-subtokenize": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.1",
+ "uvu": "^0.5.0"
+ }
+ },
+ "node_modules/micromark-core-commonmark": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "decode-named-character-reference": "^1.0.0",
+ "micromark-factory-destination": "^1.0.0",
+ "micromark-factory-label": "^1.0.0",
+ "micromark-factory-space": "^1.0.0",
+ "micromark-factory-title": "^1.0.0",
+ "micromark-factory-whitespace": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-chunked": "^1.0.0",
+ "micromark-util-classify-character": "^1.0.0",
+ "micromark-util-html-tag-name": "^1.0.0",
+ "micromark-util-normalize-identifier": "^1.0.0",
+ "micromark-util-resolve-all": "^1.0.0",
+ "micromark-util-subtokenize": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.1",
+ "uvu": "^0.5.0"
+ }
+ },
+ "node_modules/micromark-extension-mdx-expression": {
+ "version": "1.0.8",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "^1.0.0",
+ "micromark-factory-mdx-expression": "^1.0.0",
+ "micromark-factory-space": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-events-to-acorn": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "uvu": "^0.5.0"
+ }
+ },
+ "node_modules/micromark-extension-mdx-jsx": {
+ "version": "1.0.5",
+ "license": "MIT",
+ "dependencies": {
+ "@types/acorn": "^4.0.0",
+ "@types/estree": "^1.0.0",
+ "estree-util-is-identifier-name": "^2.0.0",
+ "micromark-factory-mdx-expression": "^1.0.0",
+ "micromark-factory-space": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "uvu": "^0.5.0",
+ "vfile-message": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-extension-mdx-md": {
+ "version": "1.0.1",
+ "license": "MIT",
+ "dependencies": {
+ "micromark-util-types": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-extension-mdxjs": {
+ "version": "1.0.1",
+ "license": "MIT",
+ "dependencies": {
+ "acorn": "^8.0.0",
+ "acorn-jsx": "^5.0.0",
+ "micromark-extension-mdx-expression": "^1.0.0",
+ "micromark-extension-mdx-jsx": "^1.0.0",
+ "micromark-extension-mdx-md": "^1.0.0",
+ "micromark-extension-mdxjs-esm": "^1.0.0",
+ "micromark-util-combine-extensions": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-extension-mdxjs-esm": {
+ "version": "1.0.5",
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "^1.0.0",
+ "micromark-core-commonmark": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-events-to-acorn": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "unist-util-position-from-estree": "^1.1.0",
+ "uvu": "^0.5.0",
+ "vfile-message": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-factory-destination": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
+ }
+ },
+ "node_modules/micromark-factory-label": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "uvu": "^0.5.0"
+ }
+ },
+ "node_modules/micromark-factory-mdx-expression": {
+ "version": "1.0.9",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-events-to-acorn": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "unist-util-position-from-estree": "^1.0.0",
+ "uvu": "^0.5.0",
+ "vfile-message": "^3.0.0"
+ }
+ },
+ "node_modules/micromark-factory-space": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
"dependencies": {
- "unist-util-visit-parents": "^2.0.0"
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
}
},
- "node_modules/mdast-util-compact/node_modules/unist-util-visit-parents": {
- "version": "2.1.2",
+ "node_modules/micromark-factory-title": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "unist-util-is": "^3.0.0"
+ "micromark-factory-space": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
}
},
- "node_modules/mdast-util-definitions": {
- "version": "4.0.0",
+ "node_modules/micromark-factory-whitespace": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "unist-util-visit": "^2.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "micromark-factory-space": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
}
},
- "node_modules/mdast-util-to-hast": {
- "version": "10.0.1",
+ "node_modules/micromark-util-character": {
+ "version": "1.2.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "@types/mdast": "^3.0.0",
- "@types/unist": "^2.0.0",
- "mdast-util-definitions": "^4.0.0",
- "mdurl": "^1.0.0",
- "unist-builder": "^2.0.0",
- "unist-util-generated": "^1.0.0",
- "unist-util-position": "^3.0.0",
- "unist-util-visit": "^2.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
}
},
- "node_modules/mdast-util-to-nlcst": {
- "version": "3.2.3",
+ "node_modules/micromark-util-chunked": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "nlcst-to-string": "^2.0.0",
- "repeat-string": "^1.5.2",
- "unist-util-position": "^3.0.0",
- "vfile-location": "^2.0.0"
- }
- },
- "node_modules/mdast-util-to-nlcst/node_modules/vfile-location": {
- "version": "2.0.6",
- "license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "micromark-util-symbol": "^1.0.0"
}
},
- "node_modules/mdast-util-to-string": {
+ "node_modules/micromark-util-classify-character": {
"version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "dependencies": {
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
}
},
- "node_modules/mdast-util-toc": {
- "version": "3.1.0",
+ "node_modules/micromark-util-combine-extensions": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "github-slugger": "^1.2.1",
- "mdast-util-to-string": "^1.0.5",
- "unist-util-is": "^2.1.2",
- "unist-util-visit": "^1.1.0"
+ "micromark-util-chunked": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
}
},
- "node_modules/mdast-util-toc/node_modules/unist-util-is": {
- "version": "2.1.3",
- "license": "MIT"
- },
- "node_modules/mdast-util-toc/node_modules/unist-util-visit": {
- "version": "1.4.1",
+ "node_modules/micromark-util-decode-numeric-character-reference": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "unist-util-visit-parents": "^2.0.0"
+ "micromark-util-symbol": "^1.0.0"
}
},
- "node_modules/mdast-util-toc/node_modules/unist-util-visit-parents": {
- "version": "2.1.2",
+ "node_modules/micromark-util-decode-string": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "unist-util-is": "^3.0.0"
+ "decode-named-character-reference": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-decode-numeric-character-reference": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0"
}
},
- "node_modules/mdast-util-toc/node_modules/unist-util-visit-parents/node_modules/unist-util-is": {
- "version": "3.0.0",
- "license": "MIT"
- },
- "node_modules/mdn-data": {
- "version": "2.0.14",
- "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz",
- "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow=="
- },
- "node_modules/mdurl": {
- "version": "1.0.1",
- "license": "MIT"
- },
- "node_modules/meant": {
- "version": "1.0.3",
+ "node_modules/micromark-util-encode": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT"
},
- "node_modules/media-query-parser": {
- "version": "2.0.2",
- "dev": true,
+ "node_modules/micromark-util-events-to-acorn": {
+ "version": "1.2.3",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.12.5"
+ "@types/acorn": "^4.0.0",
+ "@types/estree": "^1.0.0",
+ "@types/unist": "^2.0.0",
+ "estree-util-visit": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "uvu": "^0.5.0",
+ "vfile-message": "^3.0.0"
}
},
- "node_modules/media-typer": {
- "version": "0.3.0",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
+ "node_modules/micromark-util-html-tag-name": {
+ "version": "1.2.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT"
},
- "node_modules/mem": {
- "version": "8.1.1",
+ "node_modules/micromark-util-normalize-identifier": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "map-age-cleaner": "^0.1.3",
- "mimic-fn": "^3.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sindresorhus/mem?sponsor=1"
+ "micromark-util-symbol": "^1.0.0"
}
},
- "node_modules/mem/node_modules/mimic-fn": {
- "version": "3.1.0",
+ "node_modules/micromark-util-resolve-all": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/memfs": {
- "version": "3.5.1",
- "license": "Unlicense",
"dependencies": {
- "fs-monkey": "^1.0.3"
- },
- "engines": {
- "node": ">= 4.0.0"
+ "micromark-util-types": "^1.0.0"
}
},
- "node_modules/memoizee": {
- "version": "0.4.15",
- "license": "ISC",
+ "node_modules/micromark-util-sanitize-uri": {
+ "version": "1.2.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
"dependencies": {
- "d": "^1.0.1",
- "es5-ext": "^0.10.53",
- "es6-weak-map": "^2.0.3",
- "event-emitter": "^0.3.5",
- "is-promise": "^2.2.2",
- "lru-queue": "^0.1.0",
- "next-tick": "^1.1.0",
- "timers-ext": "^0.1.7"
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-encode": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0"
}
},
- "node_modules/memory-fs": {
- "version": "0.2.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/meow": {
- "version": "8.1.2",
- "dev": true,
+ "node_modules/micromark-util-subtokenize": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "@types/minimist": "^1.2.0",
- "camelcase-keys": "^6.2.2",
- "decamelize-keys": "^1.1.0",
- "hard-rejection": "^2.1.0",
- "minimist-options": "4.1.0",
- "normalize-package-data": "^3.0.0",
- "read-pkg-up": "^7.0.1",
- "redent": "^3.0.0",
- "trim-newlines": "^3.0.0",
- "type-fest": "^0.18.0",
- "yargs-parser": "^20.2.3"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/meow/node_modules/type-fest": {
- "version": "0.18.1",
- "dev": true,
- "license": "(MIT OR CC0-1.0)",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "micromark-util-chunked": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "uvu": "^0.5.0"
}
},
- "node_modules/merge-descriptors": {
- "version": "1.0.1",
+ "node_modules/micromark-util-symbol": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT"
},
- "node_modules/merge-stream": {
- "version": "2.0.0",
+ "node_modules/micromark-util-types": {
+ "version": "1.1.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT"
},
- "node_modules/merge2": {
- "version": "1.4.1",
+ "node_modules/micromark/node_modules/@types/debug": {
+ "version": "4.1.12",
"license": "MIT",
- "engines": {
- "node": ">= 8"
+ "dependencies": {
+ "@types/ms": "*"
}
},
- "node_modules/methods": {
- "version": "1.1.2",
+ "node_modules/micromark/node_modules/debug": {
+ "version": "4.4.0",
"license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
"engines": {
- "node": ">= 0.6"
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
}
},
"node_modules/micromatch": {
- "version": "4.0.5",
+ "version": "4.0.8",
"license": "MIT",
"dependencies": {
- "braces": "^3.0.2",
+ "braces": "^3.0.3",
"picomatch": "^2.3.1"
},
"engines": {
@@ -27044,7 +32226,7 @@
}
},
"node_modules/mime-db": {
- "version": "1.52.0",
+ "version": "1.53.0",
"license": "MIT",
"engines": {
"node": ">= 0.6"
@@ -27060,6 +32242,13 @@
"node": ">= 0.6"
}
},
+ "node_modules/mime-types/node_modules/mime-db": {
+ "version": "1.52.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
"node_modules/mimic-fn": {
"version": "2.1.0",
"license": "MIT",
@@ -27067,6 +32256,19 @@
"node": ">=6"
}
},
+ "node_modules/mimic-function": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz",
+ "integrity": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
"node_modules/mimic-response": {
"version": "1.0.1",
"license": "MIT",
@@ -27101,7 +32303,7 @@
}
},
"node_modules/mini-css-extract-plugin/node_modules/schema-utils": {
- "version": "3.1.2",
+ "version": "3.3.0",
"license": "MIT",
"dependencies": {
"@types/json-schema": "^7.0.8",
@@ -27126,7 +32328,6 @@
},
"node_modules/minimalistic-assert": {
"version": "1.0.1",
- "devOptional": true,
"license": "ISC"
},
"node_modules/minimatch": {
@@ -27141,8 +32342,7 @@
},
"node_modules/minimist": {
"version": "1.2.8",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
- "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
+ "license": "MIT",
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
@@ -27160,10 +32360,19 @@
"node": ">= 6"
}
},
+ "node_modules/minimist-options/node_modules/arrify": {
+ "version": "1.0.1",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
"node_modules/minipass": {
"version": "7.1.2",
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
"integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
+ "license": "ISC",
"engines": {
"node": ">=16 || 14 >=14.17"
}
@@ -27174,7 +32383,6 @@
},
"node_modules/mixin-deep": {
"version": "1.3.2",
- "dev": true,
"license": "MIT",
"dependencies": {
"for-in": "^1.0.2",
@@ -27186,7 +32394,6 @@
},
"node_modules/mixin-deep/node_modules/is-extendable": {
"version": "1.0.1",
- "dev": true,
"license": "MIT",
"dependencies": {
"is-plain-object": "^2.0.4"
@@ -27197,7 +32404,6 @@
},
"node_modules/mixin-deep/node_modules/is-plain-object": {
"version": "2.0.4",
- "dev": true,
"license": "MIT",
"dependencies": {
"isobject": "^3.0.1"
@@ -27220,6 +32426,11 @@
"version": "0.5.3",
"license": "MIT"
},
+ "node_modules/modern-ahocorasick": {
+ "version": "1.1.0",
+ "dev": true,
+ "license": "MIT"
+ },
"node_modules/modify-values": {
"version": "1.0.1",
"dev": true,
@@ -27229,56 +32440,72 @@
}
},
"node_modules/moment": {
- "version": "2.29.4",
+ "version": "2.30.1",
"license": "MIT",
"engines": {
"node": "*"
}
},
+ "node_modules/mri": {
+ "version": "1.2.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
"node_modules/mrmime": {
- "version": "1.0.1",
- "dev": true,
+ "version": "2.0.0",
"license": "MIT",
"engines": {
"node": ">=10"
}
},
"node_modules/ms": {
- "version": "2.1.2",
+ "version": "2.1.3",
"license": "MIT"
},
"node_modules/msgpackr": {
- "version": "1.10.1",
- "resolved": "https://registry.npmjs.org/msgpackr/-/msgpackr-1.10.1.tgz",
- "integrity": "sha512-r5VRLv9qouXuLiIBrLpl2d5ZvPt8svdQTl5/vMvE4nzDMyEX4sgW5yWhuBBj5UmgwOTWj8CIdSXn5sAfsHAWIQ==",
+ "version": "1.11.2",
+ "license": "MIT",
"optionalDependencies": {
"msgpackr-extract": "^3.0.2"
}
},
"node_modules/msgpackr-extract": {
- "version": "3.0.2",
+ "version": "3.0.3",
"hasInstallScript": true,
"license": "MIT",
"optional": true,
"dependencies": {
- "node-gyp-build-optional-packages": "5.0.7"
+ "node-gyp-build-optional-packages": "5.2.2"
},
"bin": {
"download-msgpackr-prebuilds": "bin/download-prebuilds.js"
},
"optionalDependencies": {
- "@msgpackr-extract/msgpackr-extract-darwin-arm64": "3.0.2",
- "@msgpackr-extract/msgpackr-extract-darwin-x64": "3.0.2",
- "@msgpackr-extract/msgpackr-extract-linux-arm": "3.0.2",
- "@msgpackr-extract/msgpackr-extract-linux-arm64": "3.0.2",
- "@msgpackr-extract/msgpackr-extract-linux-x64": "3.0.2",
- "@msgpackr-extract/msgpackr-extract-win32-x64": "3.0.2"
+ "@msgpackr-extract/msgpackr-extract-darwin-arm64": "3.0.3",
+ "@msgpackr-extract/msgpackr-extract-darwin-x64": "3.0.3",
+ "@msgpackr-extract/msgpackr-extract-linux-arm": "3.0.3",
+ "@msgpackr-extract/msgpackr-extract-linux-arm64": "3.0.3",
+ "@msgpackr-extract/msgpackr-extract-linux-x64": "3.0.3",
+ "@msgpackr-extract/msgpackr-extract-win32-x64": "3.0.3"
+ }
+ },
+ "node_modules/msgpackr-extract/node_modules/detect-libc": {
+ "version": "2.0.3",
+ "license": "Apache-2.0",
+ "optional": true,
+ "engines": {
+ "node": ">=8"
}
},
"node_modules/msgpackr-extract/node_modules/node-gyp-build-optional-packages": {
- "version": "5.0.7",
+ "version": "5.2.2",
"license": "MIT",
"optional": true,
+ "dependencies": {
+ "detect-libc": "^2.0.1"
+ },
"bin": {
"node-gyp-build-optional-packages": "bin.js",
"node-gyp-build-optional-packages-optional": "optional.js",
@@ -27303,7 +32530,6 @@
},
"node_modules/multicast-dns": {
"version": "7.2.5",
- "devOptional": true,
"license": "MIT",
"dependencies": {
"dns-packet": "^5.2.2",
@@ -27318,18 +32544,18 @@
"license": "ISC"
},
"node_modules/nano-css": {
- "version": "5.3.5",
+ "version": "5.6.2",
"dev": true,
"license": "Unlicense",
"dependencies": {
+ "@jridgewell/sourcemap-codec": "^1.4.15",
"css-tree": "^1.1.2",
- "csstype": "^3.0.6",
+ "csstype": "^3.1.2",
"fastest-stable-stringify": "^2.0.2",
- "inline-style-prefixer": "^6.0.0",
- "rtl-css-js": "^1.14.0",
- "sourcemap-codec": "^1.4.8",
+ "inline-style-prefixer": "^7.0.1",
+ "rtl-css-js": "^1.16.1",
"stacktrace-js": "^2.0.2",
- "stylis": "^4.0.6"
+ "stylis": "^4.3.0"
},
"peerDependencies": {
"react": "*",
@@ -27337,7 +32563,13 @@
}
},
"node_modules/nanoid": {
- "version": "3.3.4",
+ "version": "3.3.8",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
"license": "MIT",
"bin": {
"nanoid": "bin/nanoid.cjs"
@@ -27348,7 +32580,6 @@
},
"node_modules/nanomatch": {
"version": "1.2.13",
- "dev": true,
"license": "MIT",
"dependencies": {
"arr-diff": "^4.0.0",
@@ -27369,7 +32600,6 @@
},
"node_modules/nanomatch/node_modules/extend-shallow": {
"version": "3.0.2",
- "dev": true,
"license": "MIT",
"dependencies": {
"assign-symbols": "^1.0.0",
@@ -27381,7 +32611,6 @@
},
"node_modules/nanomatch/node_modules/is-extendable": {
"version": "1.0.1",
- "dev": true,
"license": "MIT",
"dependencies": {
"is-plain-object": "^2.0.4"
@@ -27392,7 +32621,6 @@
},
"node_modules/nanomatch/node_modules/is-plain-object": {
"version": "2.0.4",
- "dev": true,
"license": "MIT",
"dependencies": {
"isobject": "^3.0.1"
@@ -27411,7 +32639,6 @@
},
"node_modules/natural-compare-lite": {
"version": "1.4.0",
- "dev": true,
"license": "MIT"
},
"node_modules/negotiator": {
@@ -27438,23 +32665,16 @@
"version": "1.0.5",
"license": "MIT"
},
- "node_modules/nlcst-to-string": {
- "version": "2.0.4",
- "license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
"node_modules/no-case": {
- "version": "2.3.2",
+ "version": "3.0.4",
"license": "MIT",
"dependencies": {
- "lower-case": "^1.1.1"
+ "lower-case": "^2.0.2",
+ "tslib": "^2.0.3"
}
},
"node_modules/node-abi": {
- "version": "3.40.0",
+ "version": "3.71.0",
"license": "MIT",
"dependencies": {
"semver": "^7.3.5"
@@ -27463,22 +32683,9 @@
"node": ">=10"
}
},
- "node_modules/node-abi/node_modules/lru-cache": {
- "version": "6.0.0",
- "license": "ISC",
- "dependencies": {
- "yallist": "^4.0.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
"node_modules/node-abi/node_modules/semver": {
- "version": "7.5.0",
+ "version": "7.6.3",
"license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
"bin": {
"semver": "bin/semver.js"
},
@@ -27486,12 +32693,8 @@
"node": ">=10"
}
},
- "node_modules/node-abi/node_modules/yallist": {
- "version": "4.0.0",
- "license": "ISC"
- },
"node_modules/node-addon-api": {
- "version": "3.2.1",
+ "version": "7.1.1",
"license": "MIT"
},
"node_modules/node-dir": {
@@ -27513,7 +32716,7 @@
}
},
"node_modules/node-fetch": {
- "version": "2.6.9",
+ "version": "2.7.0",
"license": "MIT",
"dependencies": {
"whatwg-url": "^5.0.0"
@@ -27548,21 +32751,11 @@
},
"node_modules/node-forge": {
"version": "1.3.1",
- "devOptional": true,
"license": "(BSD-3-Clause OR GPL-2.0)",
"engines": {
"node": ">= 6.13.0"
}
},
- "node_modules/node-gyp-build": {
- "version": "4.6.0",
- "license": "MIT",
- "bin": {
- "node-gyp-build": "bin.js",
- "node-gyp-build-optional": "optional.js",
- "node-gyp-build-test": "build-test.js"
- }
- },
"node_modules/node-gyp-build-optional-packages": {
"version": "5.0.3",
"license": "MIT",
@@ -27580,71 +32773,12 @@
"he": "1.2.0"
}
},
- "node_modules/node-html-parser/node_modules/css-select": {
- "version": "4.3.0",
- "license": "BSD-2-Clause",
- "dependencies": {
- "boolbase": "^1.0.0",
- "css-what": "^6.0.1",
- "domhandler": "^4.3.1",
- "domutils": "^2.8.0",
- "nth-check": "^2.0.1"
- },
- "funding": {
- "url": "https://github.com/sponsors/fb55"
- }
- },
- "node_modules/node-html-parser/node_modules/dom-serializer": {
- "version": "1.4.1",
- "license": "MIT",
- "dependencies": {
- "domelementtype": "^2.0.1",
- "domhandler": "^4.2.0",
- "entities": "^2.0.0"
- },
- "funding": {
- "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
- }
- },
- "node_modules/node-html-parser/node_modules/domhandler": {
- "version": "4.3.1",
- "license": "BSD-2-Clause",
- "dependencies": {
- "domelementtype": "^2.2.0"
- },
- "engines": {
- "node": ">= 4"
- },
- "funding": {
- "url": "https://github.com/fb55/domhandler?sponsor=1"
- }
- },
- "node_modules/node-html-parser/node_modules/domutils": {
- "version": "2.8.0",
- "license": "BSD-2-Clause",
- "dependencies": {
- "dom-serializer": "^1.0.1",
- "domelementtype": "^2.2.0",
- "domhandler": "^4.2.0"
- },
- "funding": {
- "url": "https://github.com/fb55/domutils?sponsor=1"
- }
- },
- "node_modules/node-html-parser/node_modules/entities": {
- "version": "2.2.0",
- "license": "BSD-2-Clause",
- "funding": {
- "url": "https://github.com/fb55/entities?sponsor=1"
- }
- },
"node_modules/node-int64": {
"version": "0.4.0",
"license": "MIT"
},
"node_modules/node-notifier": {
"version": "8.0.2",
- "dev": true,
"license": "MIT",
"optional": true,
"dependencies": {
@@ -27656,26 +32790,35 @@
"which": "^2.0.2"
}
},
- "node_modules/node-notifier/node_modules/lru-cache": {
- "version": "6.0.0",
- "dev": true,
- "license": "ISC",
+ "node_modules/node-notifier/node_modules/is-docker": {
+ "version": "2.2.1",
+ "license": "MIT",
+ "optional": true,
+ "bin": {
+ "is-docker": "cli.js"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/node-notifier/node_modules/is-wsl": {
+ "version": "2.2.0",
+ "license": "MIT",
"optional": true,
"dependencies": {
- "yallist": "^4.0.0"
+ "is-docker": "^2.0.0"
},
"engines": {
- "node": ">=10"
+ "node": ">=8"
}
},
"node_modules/node-notifier/node_modules/semver": {
- "version": "7.5.0",
- "dev": true,
+ "version": "7.6.3",
"license": "ISC",
"optional": true,
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
"bin": {
"semver": "bin/semver.js"
},
@@ -27685,19 +32828,12 @@
},
"node_modules/node-notifier/node_modules/uuid": {
"version": "8.3.2",
- "dev": true,
"license": "MIT",
"optional": true,
"bin": {
"uuid": "dist/bin/uuid"
}
},
- "node_modules/node-notifier/node_modules/yallist": {
- "version": "4.0.0",
- "dev": true,
- "license": "ISC",
- "optional": true
- },
"node_modules/node-object-hash": {
"version": "2.3.10",
"license": "MIT",
@@ -27706,54 +32842,30 @@
}
},
"node_modules/node-releases": {
- "version": "2.0.14",
- "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz",
- "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw=="
+ "version": "2.0.19",
+ "license": "MIT"
},
"node_modules/normalize-package-data": {
- "version": "3.0.3",
- "dev": true,
+ "version": "2.5.0",
"license": "BSD-2-Clause",
"dependencies": {
- "hosted-git-info": "^4.0.1",
- "is-core-module": "^2.5.0",
- "semver": "^7.3.4",
+ "hosted-git-info": "^2.1.4",
+ "resolve": "^1.10.0",
+ "semver": "2 || 3 || 4 || 5",
"validate-npm-package-license": "^3.0.1"
- },
- "engines": {
- "node": ">=10"
}
},
- "node_modules/normalize-package-data/node_modules/lru-cache": {
- "version": "6.0.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "yallist": "^4.0.0"
- },
- "engines": {
- "node": ">=10"
- }
+ "node_modules/normalize-package-data/node_modules/hosted-git-info": {
+ "version": "2.8.9",
+ "license": "ISC"
},
"node_modules/normalize-package-data/node_modules/semver": {
- "version": "7.3.8",
- "dev": true,
+ "version": "5.7.2",
"license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
"bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
+ "semver": "bin/semver"
}
},
- "node_modules/normalize-package-data/node_modules/yallist": {
- "version": "4.0.0",
- "dev": true,
- "license": "ISC"
- },
"node_modules/normalize-path": {
"version": "3.0.0",
"license": "MIT",
@@ -27778,6 +32890,9 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/not": {
+ "version": "0.1.0"
+ },
"node_modules/npm": {
"version": "8.19.4",
"bundleDependencies": [
@@ -30095,1311 +35210,2048 @@
"smart-buffer": "^4.2.0"
},
"engines": {
- "node": ">= 10.13.0",
- "npm": ">= 3.0.0"
+ "node": ">= 10.13.0",
+ "npm": ">= 3.0.0"
+ }
+ },
+ "node_modules/npm/node_modules/socks-proxy-agent": {
+ "version": "7.0.0",
+ "dev": true,
+ "inBundle": true,
+ "license": "MIT",
+ "dependencies": {
+ "agent-base": "^6.0.2",
+ "debug": "^4.3.3",
+ "socks": "^2.6.2"
+ },
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/npm/node_modules/spdx-correct": {
+ "version": "3.1.1",
+ "dev": true,
+ "inBundle": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "spdx-expression-parse": "^3.0.0",
+ "spdx-license-ids": "^3.0.0"
+ }
+ },
+ "node_modules/npm/node_modules/spdx-exceptions": {
+ "version": "2.3.0",
+ "dev": true,
+ "inBundle": true,
+ "license": "CC-BY-3.0"
+ },
+ "node_modules/npm/node_modules/spdx-expression-parse": {
+ "version": "3.0.1",
+ "dev": true,
+ "inBundle": true,
+ "license": "MIT",
+ "dependencies": {
+ "spdx-exceptions": "^2.1.0",
+ "spdx-license-ids": "^3.0.0"
+ }
+ },
+ "node_modules/npm/node_modules/spdx-license-ids": {
+ "version": "3.0.11",
+ "dev": true,
+ "inBundle": true,
+ "license": "CC0-1.0"
+ },
+ "node_modules/npm/node_modules/ssri": {
+ "version": "9.0.1",
+ "dev": true,
+ "inBundle": true,
+ "license": "ISC",
+ "dependencies": {
+ "minipass": "^3.1.1"
+ },
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ }
+ },
+ "node_modules/npm/node_modules/string_decoder": {
+ "version": "1.3.0",
+ "dev": true,
+ "inBundle": true,
+ "license": "MIT",
+ "dependencies": {
+ "safe-buffer": "~5.2.0"
+ }
+ },
+ "node_modules/npm/node_modules/string-width": {
+ "version": "4.2.3",
+ "dev": true,
+ "inBundle": true,
+ "license": "MIT",
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/npm/node_modules/strip-ansi": {
+ "version": "6.0.1",
+ "dev": true,
+ "inBundle": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/npm/node_modules/supports-color": {
+ "version": "7.2.0",
+ "dev": true,
+ "inBundle": true,
+ "license": "MIT",
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/npm/node_modules/tar": {
+ "version": "6.1.11",
+ "dev": true,
+ "inBundle": true,
+ "license": "ISC",
+ "dependencies": {
+ "chownr": "^2.0.0",
+ "fs-minipass": "^2.0.0",
+ "minipass": "^3.0.0",
+ "minizlib": "^2.1.1",
+ "mkdirp": "^1.0.3",
+ "yallist": "^4.0.0"
+ },
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/npm/node_modules/text-table": {
+ "version": "0.2.0",
+ "dev": true,
+ "inBundle": true,
+ "license": "MIT"
+ },
+ "node_modules/npm/node_modules/tiny-relative-date": {
+ "version": "1.3.0",
+ "dev": true,
+ "inBundle": true,
+ "license": "MIT"
+ },
+ "node_modules/npm/node_modules/treeverse": {
+ "version": "2.0.0",
+ "dev": true,
+ "inBundle": true,
+ "license": "ISC",
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ }
+ },
+ "node_modules/npm/node_modules/unique-filename": {
+ "version": "2.0.1",
+ "dev": true,
+ "inBundle": true,
+ "license": "ISC",
+ "dependencies": {
+ "unique-slug": "^3.0.0"
+ },
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ }
+ },
+ "node_modules/npm/node_modules/unique-slug": {
+ "version": "3.0.0",
+ "dev": true,
+ "inBundle": true,
+ "license": "ISC",
+ "dependencies": {
+ "imurmurhash": "^0.1.4"
+ },
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ }
+ },
+ "node_modules/npm/node_modules/util-deprecate": {
+ "version": "1.0.2",
+ "dev": true,
+ "inBundle": true,
+ "license": "MIT"
+ },
+ "node_modules/npm/node_modules/validate-npm-package-license": {
+ "version": "3.0.4",
+ "dev": true,
+ "inBundle": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "spdx-correct": "^3.0.0",
+ "spdx-expression-parse": "^3.0.0"
+ }
+ },
+ "node_modules/npm/node_modules/validate-npm-package-name": {
+ "version": "4.0.0",
+ "dev": true,
+ "inBundle": true,
+ "license": "ISC",
+ "dependencies": {
+ "builtins": "^5.0.0"
+ },
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ }
+ },
+ "node_modules/npm/node_modules/walk-up-path": {
+ "version": "1.0.0",
+ "dev": true,
+ "inBundle": true,
+ "license": "ISC"
+ },
+ "node_modules/npm/node_modules/wcwidth": {
+ "version": "1.0.1",
+ "dev": true,
+ "inBundle": true,
+ "license": "MIT",
+ "dependencies": {
+ "defaults": "^1.0.3"
+ }
+ },
+ "node_modules/npm/node_modules/which": {
+ "version": "2.0.2",
+ "dev": true,
+ "inBundle": true,
+ "license": "ISC",
+ "dependencies": {
+ "isexe": "^2.0.0"
+ },
+ "bin": {
+ "node-which": "bin/node-which"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/npm/node_modules/wide-align": {
+ "version": "1.1.5",
+ "dev": true,
+ "inBundle": true,
+ "license": "ISC",
+ "dependencies": {
+ "string-width": "^1.0.2 || 2 || 3 || 4"
+ }
+ },
+ "node_modules/npm/node_modules/wrappy": {
+ "version": "1.0.2",
+ "dev": true,
+ "inBundle": true,
+ "license": "ISC"
+ },
+ "node_modules/npm/node_modules/write-file-atomic": {
+ "version": "4.0.2",
+ "dev": true,
+ "inBundle": true,
+ "license": "ISC",
+ "dependencies": {
+ "imurmurhash": "^0.1.4",
+ "signal-exit": "^3.0.7"
+ },
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ }
+ },
+ "node_modules/npm/node_modules/yallist": {
+ "version": "4.0.0",
+ "dev": true,
+ "inBundle": true,
+ "license": "ISC"
+ },
+ "node_modules/nth-check": {
+ "version": "2.1.1",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "boolbase": "^1.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/nth-check?sponsor=1"
+ }
+ },
+ "node_modules/null-loader": {
+ "version": "4.0.1",
+ "license": "MIT",
+ "dependencies": {
+ "loader-utils": "^2.0.0",
+ "schema-utils": "^3.0.0"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependencies": {
+ "webpack": "^4.0.0 || ^5.0.0"
+ }
+ },
+ "node_modules/null-loader/node_modules/schema-utils": {
+ "version": "3.3.0",
+ "license": "MIT",
+ "dependencies": {
+ "@types/json-schema": "^7.0.8",
+ "ajv": "^6.12.5",
+ "ajv-keywords": "^3.5.2"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ }
+ },
+ "node_modules/nullthrows": {
+ "version": "1.1.1",
+ "license": "MIT"
+ },
+ "node_modules/nwsapi": {
+ "version": "2.2.16",
+ "license": "MIT"
+ },
+ "node_modules/object-assign": {
+ "version": "4.1.1",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/object-code": {
+ "version": "1.3.3",
+ "license": "MIT"
+ },
+ "node_modules/object-copy": {
+ "version": "0.1.0",
+ "license": "MIT",
+ "dependencies": {
+ "copy-descriptor": "^0.1.0",
+ "define-property": "^0.2.5",
+ "kind-of": "^3.0.3"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/object-copy/node_modules/define-property": {
+ "version": "0.2.5",
+ "license": "MIT",
+ "dependencies": {
+ "is-descriptor": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/object-copy/node_modules/is-buffer": {
+ "version": "1.1.6",
+ "license": "MIT"
+ },
+ "node_modules/object-copy/node_modules/is-descriptor": {
+ "version": "0.1.7",
+ "license": "MIT",
+ "dependencies": {
+ "is-accessor-descriptor": "^1.0.1",
+ "is-data-descriptor": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/object-copy/node_modules/kind-of": {
+ "version": "3.2.2",
+ "license": "MIT",
+ "dependencies": {
+ "is-buffer": "^1.1.5"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/object-filter": {
+ "version": "1.0.2",
+ "license": "MIT"
+ },
+ "node_modules/object-inspect": {
+ "version": "1.13.3",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/object-is": {
+ "version": "1.1.6",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/object-keys": {
+ "version": "1.1.1",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/object-visit": {
+ "version": "1.0.1",
+ "license": "MIT",
+ "dependencies": {
+ "isobject": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/object.assign": {
+ "version": "4.1.5",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.5",
+ "define-properties": "^1.2.1",
+ "has-symbols": "^1.0.3",
+ "object-keys": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/object.entries": {
+ "version": "1.1.8",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/object.fromentries": {
+ "version": "2.0.8",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/object.groupby": {
+ "version": "1.0.3",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/object.hasown": {
+ "version": "1.1.4",
+ "license": "MIT",
+ "dependencies": {
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/object.pick": {
+ "version": "1.3.0",
+ "license": "MIT",
+ "dependencies": {
+ "isobject": "^3.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/object.values": {
+ "version": "1.2.0",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/npm/node_modules/socks-proxy-agent": {
- "version": "7.0.0",
- "dev": true,
- "inBundle": true,
+ "node_modules/obuf": {
+ "version": "1.1.2",
+ "license": "MIT"
+ },
+ "node_modules/on-finished": {
+ "version": "2.4.1",
"license": "MIT",
"dependencies": {
- "agent-base": "^6.0.2",
- "debug": "^4.3.3",
- "socks": "^2.6.2"
+ "ee-first": "1.1.1"
},
"engines": {
- "node": ">= 10"
+ "node": ">= 0.8"
}
},
- "node_modules/npm/node_modules/spdx-correct": {
- "version": "3.1.1",
- "dev": true,
- "inBundle": true,
- "license": "Apache-2.0",
- "dependencies": {
- "spdx-expression-parse": "^3.0.0",
- "spdx-license-ids": "^3.0.0"
+ "node_modules/on-headers": {
+ "version": "1.0.2",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
}
},
- "node_modules/npm/node_modules/spdx-exceptions": {
- "version": "2.3.0",
- "dev": true,
- "inBundle": true,
- "license": "CC-BY-3.0"
- },
- "node_modules/npm/node_modules/spdx-expression-parse": {
- "version": "3.0.1",
- "dev": true,
- "inBundle": true,
- "license": "MIT",
+ "node_modules/once": {
+ "version": "1.4.0",
+ "license": "ISC",
"dependencies": {
- "spdx-exceptions": "^2.1.0",
- "spdx-license-ids": "^3.0.0"
+ "wrappy": "1"
}
},
- "node_modules/npm/node_modules/spdx-license-ids": {
- "version": "3.0.11",
- "dev": true,
- "inBundle": true,
- "license": "CC0-1.0"
- },
- "node_modules/npm/node_modules/ssri": {
- "version": "9.0.1",
- "dev": true,
- "inBundle": true,
- "license": "ISC",
+ "node_modules/onetime": {
+ "version": "5.1.2",
+ "license": "MIT",
"dependencies": {
- "minipass": "^3.1.1"
+ "mimic-fn": "^2.1.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/npm/node_modules/string_decoder": {
- "version": "1.3.0",
- "dev": true,
- "inBundle": true,
+ "node_modules/open": {
+ "version": "7.4.2",
"license": "MIT",
"dependencies": {
- "safe-buffer": "~5.2.0"
+ "is-docker": "^2.0.0",
+ "is-wsl": "^2.1.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/npm/node_modules/string-width": {
- "version": "4.2.3",
- "dev": true,
- "inBundle": true,
+ "node_modules/open/node_modules/is-docker": {
+ "version": "2.2.1",
"license": "MIT",
- "dependencies": {
- "emoji-regex": "^8.0.0",
- "is-fullwidth-code-point": "^3.0.0",
- "strip-ansi": "^6.0.1"
+ "bin": {
+ "is-docker": "cli.js"
},
"engines": {
"node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/npm/node_modules/strip-ansi": {
- "version": "6.0.1",
- "dev": true,
- "inBundle": true,
+ "node_modules/open/node_modules/is-wsl": {
+ "version": "2.2.0",
"license": "MIT",
"dependencies": {
- "ansi-regex": "^5.0.1"
+ "is-docker": "^2.0.0"
},
"engines": {
"node": ">=8"
}
},
- "node_modules/npm/node_modules/supports-color": {
- "version": "7.2.0",
- "dev": true,
- "inBundle": true,
+ "node_modules/opener": {
+ "version": "1.5.2",
+ "license": "(WTFPL OR MIT)",
+ "bin": {
+ "opener": "bin/opener-bin.js"
+ }
+ },
+ "node_modules/opentracing": {
+ "version": "0.14.7",
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=0.10"
+ }
+ },
+ "node_modules/optionator": {
+ "version": "0.9.4",
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
+ "deep-is": "^0.1.3",
+ "fast-levenshtein": "^2.0.6",
+ "levn": "^0.4.1",
+ "prelude-ls": "^1.2.1",
+ "type-check": "^0.4.0",
+ "word-wrap": "^1.2.5"
},
"engines": {
- "node": ">=8"
+ "node": ">= 0.8.0"
}
},
- "node_modules/npm/node_modules/tar": {
- "version": "6.1.11",
- "dev": true,
- "inBundle": true,
- "license": "ISC",
+ "node_modules/ora": {
+ "version": "5.4.1",
+ "license": "MIT",
"dependencies": {
- "chownr": "^2.0.0",
- "fs-minipass": "^2.0.0",
- "minipass": "^3.0.0",
- "minizlib": "^2.1.1",
- "mkdirp": "^1.0.3",
- "yallist": "^4.0.0"
+ "bl": "^4.1.0",
+ "chalk": "^4.1.0",
+ "cli-cursor": "^3.1.0",
+ "cli-spinners": "^2.5.0",
+ "is-interactive": "^1.0.0",
+ "is-unicode-supported": "^0.1.0",
+ "log-symbols": "^4.1.0",
+ "strip-ansi": "^6.0.0",
+ "wcwidth": "^1.0.1"
},
"engines": {
- "node": ">= 10"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/npm/node_modules/text-table": {
- "version": "0.2.0",
- "dev": true,
- "inBundle": true,
+ "node_modules/ordered-binary": {
+ "version": "1.5.3",
"license": "MIT"
},
- "node_modules/npm/node_modules/tiny-relative-date": {
- "version": "1.3.0",
- "dev": true,
- "inBundle": true,
- "license": "MIT"
+ "node_modules/os-homedir": {
+ "version": "1.0.2",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "node_modules/npm/node_modules/treeverse": {
- "version": "2.0.0",
- "dev": true,
- "inBundle": true,
- "license": "ISC",
+ "node_modules/os-tmpdir": {
+ "version": "1.0.2",
+ "license": "MIT",
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=0.10.0"
}
},
- "node_modules/npm/node_modules/unique-filename": {
- "version": "2.0.1",
+ "node_modules/outdent": {
+ "version": "0.8.0",
"dev": true,
- "inBundle": true,
- "license": "ISC",
- "dependencies": {
- "unique-slug": "^3.0.0"
- },
+ "license": "MIT"
+ },
+ "node_modules/p-cancelable": {
+ "version": "2.1.1",
+ "license": "MIT",
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=8"
}
},
- "node_modules/npm/node_modules/unique-slug": {
+ "node_modules/p-defer": {
"version": "3.0.0",
- "dev": true,
- "inBundle": true,
- "license": "ISC",
- "dependencies": {
- "imurmurhash": "^0.1.4"
- },
+ "license": "MIT",
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=8"
}
},
- "node_modules/npm/node_modules/util-deprecate": {
- "version": "1.0.2",
- "dev": true,
- "inBundle": true,
- "license": "MIT"
- },
- "node_modules/npm/node_modules/validate-npm-package-license": {
- "version": "3.0.4",
- "dev": true,
- "inBundle": true,
- "license": "Apache-2.0",
- "dependencies": {
- "spdx-correct": "^3.0.0",
- "spdx-expression-parse": "^3.0.0"
+ "node_modules/p-each-series": {
+ "version": "2.2.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/npm/node_modules/validate-npm-package-name": {
- "version": "4.0.0",
+ "node_modules/p-filter": {
+ "version": "2.1.0",
"dev": true,
- "inBundle": true,
- "license": "ISC",
+ "license": "MIT",
"dependencies": {
- "builtins": "^5.0.0"
+ "p-map": "^2.0.0"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=8"
}
},
- "node_modules/npm/node_modules/walk-up-path": {
+ "node_modules/p-finally": {
"version": "1.0.0",
- "dev": true,
- "inBundle": true,
- "license": "ISC"
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
},
- "node_modules/npm/node_modules/wcwidth": {
- "version": "1.0.1",
+ "node_modules/p-is-promise": {
+ "version": "3.0.0",
"dev": true,
- "inBundle": true,
"license": "MIT",
- "dependencies": {
- "defaults": "^1.0.3"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/npm/node_modules/which": {
- "version": "2.0.2",
- "dev": true,
- "inBundle": true,
- "license": "ISC",
+ "node_modules/p-limit": {
+ "version": "3.1.0",
+ "license": "MIT",
"dependencies": {
- "isexe": "^2.0.0"
- },
- "bin": {
- "node-which": "bin/node-which"
+ "yocto-queue": "^0.1.0"
},
"engines": {
- "node": ">= 8"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/npm/node_modules/wide-align": {
- "version": "1.1.5",
- "dev": true,
- "inBundle": true,
- "license": "ISC",
+ "node_modules/p-locate": {
+ "version": "5.0.0",
+ "license": "MIT",
"dependencies": {
- "string-width": "^1.0.2 || 2 || 3 || 4"
+ "p-limit": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/npm/node_modules/wrappy": {
- "version": "1.0.2",
- "dev": true,
- "inBundle": true,
- "license": "ISC"
- },
- "node_modules/npm/node_modules/write-file-atomic": {
- "version": "4.0.2",
- "dev": true,
- "inBundle": true,
- "license": "ISC",
- "dependencies": {
- "imurmurhash": "^0.1.4",
- "signal-exit": "^3.0.7"
- },
+ "node_modules/p-map": {
+ "version": "2.1.0",
+ "license": "MIT",
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=6"
}
},
- "node_modules/npm/node_modules/yallist": {
- "version": "4.0.0",
+ "node_modules/p-reduce": {
+ "version": "2.1.0",
"dev": true,
- "inBundle": true,
- "license": "ISC"
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
},
- "node_modules/nth-check": {
- "version": "2.1.1",
- "license": "BSD-2-Clause",
+ "node_modules/p-retry": {
+ "version": "4.6.2",
+ "license": "MIT",
"dependencies": {
- "boolbase": "^1.0.0"
+ "@types/retry": "0.12.0",
+ "retry": "^0.13.1"
},
- "funding": {
- "url": "https://github.com/fb55/nth-check?sponsor=1"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/null-loader": {
- "version": "4.0.1",
+ "node_modules/p-retry/node_modules/retry": {
+ "version": "0.13.1",
"license": "MIT",
- "dependencies": {
- "loader-utils": "^2.0.0",
- "schema-utils": "^3.0.0"
- },
"engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^4.0.0 || ^5.0.0"
+ "node": ">= 4"
}
},
- "node_modules/null-loader/node_modules/schema-utils": {
- "version": "3.1.2",
+ "node_modules/p-try": {
+ "version": "2.2.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/package-json": {
+ "version": "8.1.1",
"license": "MIT",
"dependencies": {
- "@types/json-schema": "^7.0.8",
- "ajv": "^6.12.5",
- "ajv-keywords": "^3.5.2"
+ "got": "^12.1.0",
+ "registry-auth-token": "^5.0.1",
+ "registry-url": "^6.0.0",
+ "semver": "^7.3.7"
},
"engines": {
- "node": ">= 10.13.0"
+ "node": ">=14.16"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/nullthrows": {
- "version": "1.1.1",
- "license": "MIT"
- },
- "node_modules/nwsapi": {
- "version": "2.2.2",
- "dev": true,
- "license": "MIT"
+ "node_modules/package-json-from-dist": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
+ "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
+ "license": "BlueOak-1.0.0"
},
- "node_modules/object-assign": {
- "version": "4.1.1",
+ "node_modules/package-json/node_modules/@sindresorhus/is": {
+ "version": "5.6.0",
"license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": ">=14.16"
+ },
+ "funding": {
+ "url": "https://github.com/sindresorhus/is?sponsor=1"
}
},
- "node_modules/object-code": {
- "version": "1.2.4",
- "license": "MIT"
- },
- "node_modules/object-copy": {
- "version": "0.1.0",
- "dev": true,
+ "node_modules/package-json/node_modules/@szmarczak/http-timer": {
+ "version": "5.0.1",
"license": "MIT",
"dependencies": {
- "copy-descriptor": "^0.1.0",
- "define-property": "^0.2.5",
- "kind-of": "^3.0.3"
+ "defer-to-connect": "^2.0.1"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=14.16"
}
},
- "node_modules/object-copy/node_modules/define-property": {
- "version": "0.2.5",
- "dev": true,
+ "node_modules/package-json/node_modules/cacheable-lookup": {
+ "version": "7.0.0",
"license": "MIT",
- "dependencies": {
- "is-descriptor": "^0.1.0"
- },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=14.16"
}
},
- "node_modules/object-copy/node_modules/is-accessor-descriptor": {
- "version": "0.1.6",
- "dev": true,
+ "node_modules/package-json/node_modules/cacheable-request": {
+ "version": "10.2.14",
"license": "MIT",
"dependencies": {
- "kind-of": "^3.0.2"
+ "@types/http-cache-semantics": "^4.0.2",
+ "get-stream": "^6.0.1",
+ "http-cache-semantics": "^4.1.1",
+ "keyv": "^4.5.3",
+ "mimic-response": "^4.0.0",
+ "normalize-url": "^8.0.0",
+ "responselike": "^3.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=14.16"
}
},
- "node_modules/object-copy/node_modules/is-buffer": {
- "version": "1.1.6",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/object-copy/node_modules/is-data-descriptor": {
- "version": "0.1.4",
- "dev": true,
+ "node_modules/package-json/node_modules/got": {
+ "version": "12.6.1",
"license": "MIT",
"dependencies": {
- "kind-of": "^3.0.2"
+ "@sindresorhus/is": "^5.2.0",
+ "@szmarczak/http-timer": "^5.0.1",
+ "cacheable-lookup": "^7.0.0",
+ "cacheable-request": "^10.2.8",
+ "decompress-response": "^6.0.0",
+ "form-data-encoder": "^2.1.2",
+ "get-stream": "^6.0.1",
+ "http2-wrapper": "^2.1.10",
+ "lowercase-keys": "^3.0.0",
+ "p-cancelable": "^3.0.0",
+ "responselike": "^3.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=14.16"
+ },
+ "funding": {
+ "url": "https://github.com/sindresorhus/got?sponsor=1"
}
},
- "node_modules/object-copy/node_modules/is-descriptor": {
- "version": "0.1.6",
- "dev": true,
+ "node_modules/package-json/node_modules/http2-wrapper": {
+ "version": "2.2.1",
"license": "MIT",
"dependencies": {
- "is-accessor-descriptor": "^0.1.6",
- "is-data-descriptor": "^0.1.4",
- "kind-of": "^5.0.0"
+ "quick-lru": "^5.1.1",
+ "resolve-alpn": "^1.2.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10.19.0"
}
},
- "node_modules/object-copy/node_modules/is-descriptor/node_modules/kind-of": {
- "version": "5.1.0",
- "dev": true,
+ "node_modules/package-json/node_modules/lowercase-keys": {
+ "version": "3.0.0",
"license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/object-copy/node_modules/kind-of": {
- "version": "3.2.2",
- "dev": true,
+ "node_modules/package-json/node_modules/mimic-response": {
+ "version": "4.0.0",
"license": "MIT",
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
"engines": {
- "node": ">=0.10.0"
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/object-filter": {
- "version": "1.0.2",
- "license": "MIT"
- },
- "node_modules/object-inspect": {
- "version": "1.13.2",
- "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz",
- "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==",
+ "node_modules/package-json/node_modules/normalize-url": {
+ "version": "8.0.1",
+ "license": "MIT",
"engines": {
- "node": ">= 0.4"
+ "node": ">=14.16"
},
"funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/object-is": {
- "version": "1.1.5",
+ "node_modules/package-json/node_modules/p-cancelable": {
+ "version": "3.0.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12.20"
+ }
+ },
+ "node_modules/package-json/node_modules/responselike": {
+ "version": "3.0.0",
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3"
+ "lowercase-keys": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=14.16"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/package-json/node_modules/semver": {
+ "version": "7.6.3",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
},
"engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "node": ">=10"
}
},
- "node_modules/object-keys": {
- "version": "1.1.1",
+ "node_modules/paragon-pattern-library-documentation": {
+ "resolved": "www",
+ "link": true
+ },
+ "node_modules/param-case": {
+ "version": "3.0.4",
"license": "MIT",
- "engines": {
- "node": ">= 0.4"
+ "dependencies": {
+ "dot-case": "^3.0.4",
+ "tslib": "^2.0.3"
}
},
- "node_modules/object-visit": {
+ "node_modules/parent-module": {
"version": "1.0.1",
- "dev": true,
"license": "MIT",
"dependencies": {
- "isobject": "^3.0.0"
+ "callsites": "^3.0.0"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=6"
}
},
- "node_modules/object.assign": {
- "version": "4.1.4",
+ "node_modules/parse-entities": {
+ "version": "4.0.1",
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "has-symbols": "^1.0.3",
- "object-keys": "^1.1.1"
- },
- "engines": {
- "node": ">= 0.4"
+ "@types/unist": "^2.0.0",
+ "character-entities": "^2.0.0",
+ "character-entities-legacy": "^3.0.0",
+ "character-reference-invalid": "^2.0.0",
+ "decode-named-character-reference": "^1.0.0",
+ "is-alphanumerical": "^2.0.0",
+ "is-decimal": "^2.0.0",
+ "is-hexadecimal": "^2.0.0"
},
"funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/object.entries": {
- "version": "1.1.6",
+ "node_modules/parse-filepath": {
+ "version": "1.0.2",
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "is-absolute": "^1.0.0",
+ "map-cache": "^0.2.0",
+ "path-root": "^0.1.1"
},
"engines": {
- "node": ">= 0.4"
+ "node": ">=0.8"
}
},
- "node_modules/object.fromentries": {
- "version": "2.0.6",
+ "node_modules/parse-json": {
+ "version": "5.2.0",
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "@babel/code-frame": "^7.0.0",
+ "error-ex": "^1.3.1",
+ "json-parse-even-better-errors": "^2.3.0",
+ "lines-and-columns": "^1.1.6"
},
"engines": {
- "node": ">= 0.4"
+ "node": ">=8"
},
"funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/object.hasown": {
- "version": "1.1.2",
+ "node_modules/parse-prop-types": {
+ "version": "0.3.0",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "engines": {
+ "node": ">=6"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "peerDependencies": {
+ "prop-types": "^15.0.0"
}
},
- "node_modules/object.pick": {
- "version": "1.3.0",
- "dev": true,
+ "node_modules/parse5": {
+ "version": "7.2.1",
"license": "MIT",
"dependencies": {
- "isobject": "^3.0.1"
+ "entities": "^4.5.0"
},
+ "funding": {
+ "url": "https://github.com/inikulin/parse5?sponsor=1"
+ }
+ },
+ "node_modules/parseurl": {
+ "version": "1.3.3",
+ "license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 0.8"
}
},
- "node_modules/object.values": {
- "version": "1.1.6",
+ "node_modules/pascal-case": {
+ "version": "3.1.2",
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
- },
+ "no-case": "^3.0.4",
+ "tslib": "^2.0.3"
+ }
+ },
+ "node_modules/pascalcase": {
+ "version": "0.1.1",
+ "license": "MIT",
"engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "node": ">=0.10.0"
}
},
- "node_modules/obuf": {
- "version": "1.1.2",
- "devOptional": true,
- "license": "MIT"
+ "node_modules/password-prompt": {
+ "version": "1.1.3",
+ "license": "0BSD",
+ "dependencies": {
+ "ansi-escapes": "^4.3.2",
+ "cross-spawn": "^7.0.3"
+ }
},
- "node_modules/on-finished": {
- "version": "2.4.1",
+ "node_modules/patch-package": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/patch-package/-/patch-package-8.0.0.tgz",
+ "integrity": "sha512-da8BVIhzjtgScwDJ2TtKsfT5JFWz1hYoBl9rUQ1f38MC2HwnEIkK8VN3dKMKcP7P7bvvgzNDbfNHtx3MsQb5vA==",
"license": "MIT",
"dependencies": {
- "ee-first": "1.1.1"
+ "@yarnpkg/lockfile": "^1.1.0",
+ "chalk": "^4.1.2",
+ "ci-info": "^3.7.0",
+ "cross-spawn": "^7.0.3",
+ "find-yarn-workspace-root": "^2.0.0",
+ "fs-extra": "^9.0.0",
+ "json-stable-stringify": "^1.0.2",
+ "klaw-sync": "^6.0.0",
+ "minimist": "^1.2.6",
+ "open": "^7.4.2",
+ "rimraf": "^2.6.3",
+ "semver": "^7.5.3",
+ "slash": "^2.0.0",
+ "tmp": "^0.0.33",
+ "yaml": "^2.2.2"
+ },
+ "bin": {
+ "patch-package": "index.js"
},
"engines": {
- "node": ">= 0.8"
+ "node": ">=14",
+ "npm": ">5"
}
},
- "node_modules/on-headers": {
- "version": "1.0.2",
+ "node_modules/patch-package/node_modules/ci-info": {
+ "version": "3.9.0",
+ "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
+ "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/sibiraj-s"
+ }
+ ],
"license": "MIT",
"engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/once": {
- "version": "1.4.0",
- "license": "ISC",
- "dependencies": {
- "wrappy": "1"
+ "node": ">=8"
}
},
- "node_modules/onetime": {
- "version": "5.1.2",
+ "node_modules/patch-package/node_modules/fs-extra": {
+ "version": "9.1.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
+ "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
"license": "MIT",
"dependencies": {
- "mimic-fn": "^2.1.0"
+ "at-least-node": "^1.0.0",
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
},
"engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=10"
}
},
- "node_modules/open": {
- "version": "7.4.2",
- "license": "MIT",
+ "node_modules/patch-package/node_modules/glob": {
+ "version": "7.2.3",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
+ "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
+ "deprecated": "Glob versions prior to v9 are no longer supported",
+ "license": "ISC",
"dependencies": {
- "is-docker": "^2.0.0",
- "is-wsl": "^2.1.1"
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
},
"engines": {
- "node": ">=8"
+ "node": "*"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/opener": {
- "version": "1.5.2",
- "dev": true,
- "license": "(WTFPL OR MIT)",
+ "node_modules/patch-package/node_modules/rimraf": {
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
+ "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
+ "deprecated": "Rimraf versions prior to v4 are no longer supported",
+ "license": "ISC",
+ "dependencies": {
+ "glob": "^7.1.3"
+ },
"bin": {
- "opener": "bin/opener-bin.js"
+ "rimraf": "bin.js"
}
},
- "node_modules/opentracing": {
- "version": "0.14.7",
- "license": "Apache-2.0",
+ "node_modules/patch-package/node_modules/semver": {
+ "version": "7.6.3",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
+ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
"engines": {
- "node": ">=0.10"
+ "node": ">=10"
}
},
- "node_modules/optionator": {
- "version": "0.9.1",
+ "node_modules/patch-package/node_modules/tmp": {
+ "version": "0.0.33",
+ "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz",
+ "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==",
"license": "MIT",
"dependencies": {
- "deep-is": "^0.1.3",
- "fast-levenshtein": "^2.0.6",
- "levn": "^0.4.1",
- "prelude-ls": "^1.2.1",
- "type-check": "^0.4.0",
- "word-wrap": "^1.2.3"
+ "os-tmpdir": "~1.0.2"
},
"engines": {
- "node": ">= 0.8.0"
+ "node": ">=0.6.0"
}
},
- "node_modules/ora": {
- "version": "5.4.1",
- "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz",
- "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==",
+ "node_modules/path": {
+ "version": "0.12.7",
+ "resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz",
+ "integrity": "sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==",
+ "license": "MIT",
"dependencies": {
- "bl": "^4.1.0",
- "chalk": "^4.1.0",
- "cli-cursor": "^3.1.0",
- "cli-spinners": "^2.5.0",
- "is-interactive": "^1.0.0",
- "is-unicode-supported": "^0.1.0",
- "log-symbols": "^4.1.0",
- "strip-ansi": "^6.0.0",
- "wcwidth": "^1.0.1"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "process": "^0.11.1",
+ "util": "^0.10.3"
}
},
- "node_modules/ora/node_modules/is-unicode-supported": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz",
- "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node_modules/path-case": {
+ "version": "3.0.4",
+ "license": "MIT",
+ "dependencies": {
+ "dot-case": "^3.0.4",
+ "tslib": "^2.0.3"
}
},
- "node_modules/ordered-binary": {
- "version": "1.4.0",
- "license": "MIT"
+ "node_modules/path-exists": {
+ "version": "4.0.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
},
- "node_modules/os-homedir": {
- "version": "1.0.2",
+ "node_modules/path-is-absolute": {
+ "version": "1.0.1",
"license": "MIT",
"engines": {
"node": ">=0.10.0"
}
},
- "node_modules/os-tmpdir": {
+ "node_modules/path-is-inside": {
"version": "1.0.2",
+ "license": "(WTFPL OR MIT)"
+ },
+ "node_modules/path-key": {
+ "version": "3.1.1",
"license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": ">=8"
}
},
- "node_modules/outdent": {
- "version": "0.8.0",
- "dev": true,
+ "node_modules/path-parse": {
+ "version": "1.0.7",
"license": "MIT"
},
- "node_modules/p-cancelable": {
- "version": "2.1.1",
+ "node_modules/path-root": {
+ "version": "0.1.1",
"license": "MIT",
+ "dependencies": {
+ "path-root-regex": "^0.1.0"
+ },
"engines": {
- "node": ">=8"
+ "node": ">=0.10.0"
}
},
- "node_modules/p-defer": {
- "version": "3.0.0",
+ "node_modules/path-root-regex": {
+ "version": "0.1.2",
"license": "MIT",
"engines": {
- "node": ">=8"
+ "node": ">=0.10.0"
}
},
- "node_modules/p-each-series": {
- "version": "2.2.0",
- "dev": true,
- "license": "MIT",
+ "node_modules/path-scurry": {
+ "version": "1.11.1",
+ "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz",
+ "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
+ "license": "BlueOak-1.0.0",
+ "dependencies": {
+ "lru-cache": "^10.2.0",
+ "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
+ },
"engines": {
- "node": ">=8"
+ "node": ">=16 || 14 >=14.18"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/p-filter": {
- "version": "2.1.0",
- "dev": true,
+ "node_modules/path-scurry/node_modules/lru-cache": {
+ "version": "10.4.3",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
+ "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
+ "license": "ISC"
+ },
+ "node_modules/path-to-regexp": {
+ "version": "0.1.7",
+ "license": "MIT"
+ },
+ "node_modules/path-type": {
+ "version": "4.0.0",
"license": "MIT",
- "dependencies": {
- "p-map": "^2.0.0"
- },
"engines": {
"node": ">=8"
}
},
- "node_modules/p-finally": {
- "version": "1.0.0",
+ "node_modules/path-unified": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/path-unified/-/path-unified-0.2.0.tgz",
+ "integrity": "sha512-MNKqvrKbbbb5p7XHXV6ZAsf/1f/yJQa13S/fcX0uua8ew58Tgc6jXV+16JyAbnR/clgCH+euKDxrF2STxMHdrg==",
+ "license": "MIT"
+ },
+ "node_modules/path/node_modules/inherits": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
+ "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==",
+ "license": "ISC"
+ },
+ "node_modules/path/node_modules/util": {
+ "version": "0.10.4",
+ "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz",
+ "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==",
"license": "MIT",
- "engines": {
- "node": ">=4"
+ "dependencies": {
+ "inherits": "2.0.3"
}
},
- "node_modules/p-is-promise": {
- "version": "3.0.0",
- "dev": true,
+ "node_modules/peek-readable": {
+ "version": "4.1.0",
"license": "MIT",
"engines": {
"node": ">=8"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/Borewit"
}
},
- "node_modules/p-limit": {
+ "node_modules/periscopic": {
"version": "3.1.0",
"license": "MIT",
"dependencies": {
- "yocto-queue": "^0.1.0"
- },
+ "@types/estree": "^1.0.0",
+ "estree-walker": "^3.0.0",
+ "is-reference": "^3.0.0"
+ }
+ },
+ "node_modules/physical-cpu-count": {
+ "version": "2.0.0",
+ "license": "ISC"
+ },
+ "node_modules/picocolors": {
+ "version": "1.1.1",
+ "license": "ISC"
+ },
+ "node_modules/picomatch": {
+ "version": "2.3.1",
+ "license": "MIT",
"engines": {
- "node": ">=10"
+ "node": ">=8.6"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/sponsors/jonschlinkert"
}
},
- "node_modules/p-locate": {
- "version": "4.1.0",
+ "node_modules/pidtree": {
+ "version": "0.6.0",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "p-limit": "^2.2.0"
+ "bin": {
+ "pidtree": "bin/pidtree.js"
},
"engines": {
- "node": ">=8"
+ "node": ">=0.10"
}
},
- "node_modules/p-locate/node_modules/p-limit": {
- "version": "2.3.0",
+ "node_modules/pify": {
+ "version": "4.0.1",
"license": "MIT",
- "dependencies": {
- "p-try": "^2.0.0"
- },
"engines": {
"node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/p-map": {
- "version": "2.1.0",
- "dev": true,
+ "node_modules/pinkie": {
+ "version": "2.0.4",
"license": "MIT",
"engines": {
- "node": ">=6"
+ "node": ">=0.10.0"
}
},
- "node_modules/p-queue": {
- "version": "6.6.2",
+ "node_modules/pinkie-promise": {
+ "version": "2.0.1",
"license": "MIT",
"dependencies": {
- "eventemitter3": "^4.0.4",
- "p-timeout": "^3.2.0"
+ "pinkie": "^2.0.0"
},
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=0.10.0"
}
},
- "node_modules/p-reduce": {
+ "node_modules/pirates": {
+ "version": "4.0.6",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/pkg-conf": {
"version": "2.1.0",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "find-up": "^2.0.0",
+ "load-json-file": "^4.0.0"
+ },
"engines": {
- "node": ">=8"
+ "node": ">=4"
}
},
- "node_modules/p-retry": {
- "version": "4.6.2",
- "devOptional": true,
+ "node_modules/pkg-conf/node_modules/find-up": {
+ "version": "2.1.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/retry": "0.12.0",
- "retry": "^0.13.1"
+ "locate-path": "^2.0.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=4"
}
},
- "node_modules/p-timeout": {
- "version": "3.2.0",
+ "node_modules/pkg-conf/node_modules/locate-path": {
+ "version": "2.0.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "p-finally": "^1.0.0"
+ "p-locate": "^2.0.0",
+ "path-exists": "^3.0.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=4"
}
},
- "node_modules/p-try": {
- "version": "2.2.0",
+ "node_modules/pkg-conf/node_modules/p-limit": {
+ "version": "1.3.0",
+ "dev": true,
"license": "MIT",
+ "dependencies": {
+ "p-try": "^1.0.0"
+ },
"engines": {
- "node": ">=6"
+ "node": ">=4"
}
},
- "node_modules/package-json": {
- "version": "6.5.0",
+ "node_modules/pkg-conf/node_modules/p-locate": {
+ "version": "2.0.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "got": "^9.6.0",
- "registry-auth-token": "^4.0.0",
- "registry-url": "^5.0.0",
- "semver": "^6.2.0"
+ "p-limit": "^1.1.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=4"
}
},
- "node_modules/package-json-from-dist": {
+ "node_modules/pkg-conf/node_modules/p-try": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz",
- "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw=="
- },
- "node_modules/package-json/node_modules/@sindresorhus/is": {
- "version": "0.14.0",
+ "dev": true,
"license": "MIT",
"engines": {
- "node": ">=6"
+ "node": ">=4"
}
},
- "node_modules/package-json/node_modules/@szmarczak/http-timer": {
- "version": "1.1.2",
+ "node_modules/pkg-conf/node_modules/path-exists": {
+ "version": "3.0.0",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "defer-to-connect": "^1.0.1"
- },
"engines": {
- "node": ">=6"
+ "node": ">=4"
}
},
- "node_modules/package-json/node_modules/cacheable-request": {
- "version": "6.1.0",
+ "node_modules/pkg-dir": {
+ "version": "7.0.0",
"license": "MIT",
- "dependencies": {
- "clone-response": "^1.0.2",
- "get-stream": "^5.1.0",
- "http-cache-semantics": "^4.0.0",
- "keyv": "^3.0.0",
- "lowercase-keys": "^2.0.0",
- "normalize-url": "^4.1.0",
- "responselike": "^1.0.2"
+ "dependencies": {
+ "find-up": "^6.3.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=14.16"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/package-json/node_modules/cacheable-request/node_modules/get-stream": {
- "version": "5.2.0",
+ "node_modules/pkg-dir/node_modules/find-up": {
+ "version": "6.3.0",
"license": "MIT",
"dependencies": {
- "pump": "^3.0.0"
+ "locate-path": "^7.1.0",
+ "path-exists": "^5.0.0"
},
"engines": {
- "node": ">=8"
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/package-json/node_modules/decompress-response": {
- "version": "3.3.0",
+ "node_modules/pkg-dir/node_modules/locate-path": {
+ "version": "7.2.0",
"license": "MIT",
"dependencies": {
- "mimic-response": "^1.0.0"
+ "p-locate": "^6.0.0"
},
"engines": {
- "node": ">=4"
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/package-json/node_modules/defer-to-connect": {
- "version": "1.1.3",
- "license": "MIT"
- },
- "node_modules/package-json/node_modules/get-stream": {
- "version": "4.1.0",
+ "node_modules/pkg-dir/node_modules/p-limit": {
+ "version": "4.0.0",
"license": "MIT",
"dependencies": {
- "pump": "^3.0.0"
+ "yocto-queue": "^1.0.0"
},
"engines": {
- "node": ">=6"
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/package-json/node_modules/got": {
- "version": "9.6.0",
+ "node_modules/pkg-dir/node_modules/p-locate": {
+ "version": "6.0.0",
"license": "MIT",
"dependencies": {
- "@sindresorhus/is": "^0.14.0",
- "@szmarczak/http-timer": "^1.1.2",
- "cacheable-request": "^6.0.0",
- "decompress-response": "^3.3.0",
- "duplexer3": "^0.1.4",
- "get-stream": "^4.1.0",
- "lowercase-keys": "^1.0.1",
- "mimic-response": "^1.0.1",
- "p-cancelable": "^1.0.0",
- "to-readable-stream": "^1.0.0",
- "url-parse-lax": "^3.0.0"
+ "p-limit": "^4.0.0"
},
"engines": {
- "node": ">=8.6"
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/package-json/node_modules/got/node_modules/lowercase-keys": {
- "version": "1.0.1",
+ "node_modules/pkg-dir/node_modules/path-exists": {
+ "version": "5.0.0",
"license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
},
- "node_modules/package-json/node_modules/json-buffer": {
- "version": "3.0.0",
- "license": "MIT"
+ "node_modules/pkg-dir/node_modules/yocto-queue": {
+ "version": "1.1.1",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12.20"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
},
- "node_modules/package-json/node_modules/keyv": {
+ "node_modules/pkg-up": {
"version": "3.1.0",
"license": "MIT",
"dependencies": {
- "json-buffer": "3.0.0"
+ "find-up": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/package-json/node_modules/normalize-url": {
- "version": "4.5.1",
+ "node_modules/pkg-up/node_modules/find-up": {
+ "version": "3.0.0",
"license": "MIT",
+ "dependencies": {
+ "locate-path": "^3.0.0"
+ },
"engines": {
- "node": ">=8"
+ "node": ">=6"
}
},
- "node_modules/package-json/node_modules/p-cancelable": {
- "version": "1.1.0",
+ "node_modules/pkg-up/node_modules/locate-path": {
+ "version": "3.0.0",
"license": "MIT",
+ "dependencies": {
+ "p-locate": "^3.0.0",
+ "path-exists": "^3.0.0"
+ },
"engines": {
"node": ">=6"
}
},
- "node_modules/package-json/node_modules/registry-auth-token": {
- "version": "4.2.2",
+ "node_modules/pkg-up/node_modules/p-limit": {
+ "version": "2.3.0",
"license": "MIT",
"dependencies": {
- "rc": "1.2.8"
+ "p-try": "^2.0.0"
},
"engines": {
- "node": ">=6.0.0"
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/package-json/node_modules/responselike": {
- "version": "1.0.2",
+ "node_modules/pkg-up/node_modules/p-locate": {
+ "version": "3.0.0",
"license": "MIT",
"dependencies": {
- "lowercase-keys": "^1.0.0"
+ "p-limit": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
}
},
- "node_modules/package-json/node_modules/responselike/node_modules/lowercase-keys": {
- "version": "1.0.1",
+ "node_modules/pkg-up/node_modules/path-exists": {
+ "version": "3.0.0",
"license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": ">=4"
}
},
- "node_modules/paragon-pattern-library-documentation": {
- "resolved": "www",
- "link": true
+ "node_modules/platform": {
+ "version": "1.3.6",
+ "license": "MIT"
},
- "node_modules/param-case": {
- "version": "2.1.1",
+ "node_modules/playroom": {
+ "version": "0.31.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "no-case": "^2.2.0"
+ "@babel/cli": "^7.19.3",
+ "@babel/core": "^7.20.5",
+ "@babel/preset-env": "^7.20.2",
+ "@babel/preset-react": "^7.18.6",
+ "@babel/preset-typescript": "^7.18.6",
+ "@babel/standalone": "^7.20.6",
+ "@soda/friendly-errors-webpack-plugin": "^1.8.1",
+ "@types/base64-url": "^2.2.0",
+ "@types/codemirror": "^5.60.5",
+ "@types/dedent": "^0.7.0",
+ "@types/lodash": "^4.14.191",
+ "@types/lz-string": "^1.3.34",
+ "@types/prettier": "^2.7.1",
+ "@types/react": "^18.0.26",
+ "@types/react-dom": "^18.0.9",
+ "@vanilla-extract/css": "^1.9.2",
+ "@vanilla-extract/css-utils": "^0.1.3",
+ "@vanilla-extract/sprinkles": "^1.5.1",
+ "@vanilla-extract/webpack-plugin": "2.1.12",
+ "babel-loader": "^9.1.0",
+ "classnames": "^2.3.2",
+ "codemirror": "^5.65.10",
+ "command-line-args": "^5.2.1",
+ "command-line-usage": "^6.1.3",
+ "copy-to-clipboard": "^3.3.3",
+ "css-loader": "^6.7.2",
+ "current-git-branch": "^1.1.0",
+ "dedent": "^0.7.0",
+ "fast-glob": "^3.2.12",
+ "find-up": "^5.0.0",
+ "fuzzy": "^0.1.3",
+ "history": "^5.3.0",
+ "html-webpack-plugin": "^5.5.0",
+ "intersection-observer": "^0.12.2",
+ "localforage": "^1.10.0",
+ "lodash": "^4.17.21",
+ "lz-string": "^1.4.4",
+ "mini-css-extract-plugin": "^2.7.2",
+ "parse-prop-types": "^0.3.0",
+ "polished": "^4.2.2",
+ "portfinder": "^1.0.32",
+ "prettier": "^2.8.1",
+ "prop-types": "^15.8.1",
+ "query-string": "^7.1.3",
+ "re-resizable": "^6.9.9",
+ "react-docgen-typescript": "^2.2.2",
+ "react-use": "^17.4.0",
+ "read-pkg-up": "^7.0.1",
+ "scope-eval": "^1.0.0",
+ "typescript": "^4.5.4",
+ "use-debounce": "^9.0.2",
+ "webpack": "^5.75.0",
+ "webpack-dev-server": "^4.11.1",
+ "webpack-merge": "^5.8.0"
+ },
+ "bin": {
+ "playroom": "bin/cli.js"
+ },
+ "peerDependencies": {
+ "react": "^16.8 || ^17 || ^18",
+ "react-dom": "^16.8 || ^17 || ^18"
}
},
- "node_modules/parent-module": {
- "version": "1.0.1",
+ "node_modules/playroom/node_modules/babel-loader": {
+ "version": "9.2.1",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "callsites": "^3.0.0"
+ "find-cache-dir": "^4.0.0",
+ "schema-utils": "^4.0.0"
},
"engines": {
- "node": ">=6"
+ "node": ">= 14.15.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.12.0",
+ "webpack": ">=5"
}
},
- "node_modules/parse-english": {
- "version": "4.2.0",
+ "node_modules/playroom/node_modules/css-loader": {
+ "version": "6.11.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "nlcst-to-string": "^2.0.0",
- "parse-latin": "^4.0.0",
- "unist-util-modify-children": "^2.0.0",
- "unist-util-visit-children": "^1.0.0"
+ "icss-utils": "^5.1.0",
+ "postcss": "^8.4.33",
+ "postcss-modules-extract-imports": "^3.1.0",
+ "postcss-modules-local-by-default": "^4.0.5",
+ "postcss-modules-scope": "^3.2.0",
+ "postcss-modules-values": "^4.0.0",
+ "postcss-value-parser": "^4.2.0",
+ "semver": "^7.5.4"
+ },
+ "engines": {
+ "node": ">= 12.13.0"
},
"funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependencies": {
+ "@rspack/core": "0.x || 1.x",
+ "webpack": "^5.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@rspack/core": {
+ "optional": true
+ },
+ "webpack": {
+ "optional": true
+ }
}
},
- "node_modules/parse-entities": {
- "version": "2.0.0",
+ "node_modules/playroom/node_modules/history": {
+ "version": "5.3.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "character-entities": "^1.0.0",
- "character-entities-legacy": "^1.0.0",
- "character-reference-invalid": "^1.0.0",
- "is-alphanumerical": "^1.0.0",
- "is-decimal": "^1.0.0",
- "is-hexadecimal": "^1.0.0"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "@babel/runtime": "^7.7.6"
}
},
- "node_modules/parse-filepath": {
- "version": "1.0.2",
+ "node_modules/playroom/node_modules/mini-css-extract-plugin": {
+ "version": "2.9.2",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "is-absolute": "^1.0.0",
- "map-cache": "^0.2.0",
- "path-root": "^0.1.1"
+ "schema-utils": "^4.0.0",
+ "tapable": "^2.2.1"
},
"engines": {
- "node": ">=0.8"
+ "node": ">= 12.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependencies": {
+ "webpack": "^5.0.0"
}
},
- "node_modules/parse-json": {
- "version": "5.2.0",
+ "node_modules/playroom/node_modules/query-string": {
+ "version": "7.1.3",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.0.0",
- "error-ex": "^1.3.1",
- "json-parse-even-better-errors": "^2.3.0",
- "lines-and-columns": "^1.1.6"
+ "decode-uri-component": "^0.2.2",
+ "filter-obj": "^1.1.0",
+ "split-on-first": "^1.0.0",
+ "strict-uri-encode": "^2.0.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=6"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/parse-latin": {
- "version": "4.3.0",
- "license": "MIT",
- "dependencies": {
- "nlcst-to-string": "^2.0.0",
- "unist-util-modify-children": "^2.0.0",
- "unist-util-visit-children": "^1.0.0"
+ "node_modules/playroom/node_modules/semver": {
+ "version": "7.6.3",
+ "dev": true,
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
},
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/parse-path": {
- "version": "7.0.0",
+ "node_modules/polished": {
+ "version": "4.3.1",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "protocols": "^2.0.0"
+ "@babel/runtime": "^7.17.8"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/parse-prop-types": {
- "version": "0.3.0",
- "dev": true,
+ "node_modules/popper.js": {
+ "version": "1.16.1",
"license": "MIT",
- "engines": {
- "node": ">=6"
- },
- "peerDependencies": {
- "prop-types": "^15.0.0"
+ "peer": true,
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/popperjs"
}
},
- "node_modules/parse-url": {
- "version": "8.1.0",
+ "node_modules/portfinder": {
+ "version": "1.0.32",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "parse-path": "^7.0.0"
+ "async": "^2.6.4",
+ "debug": "^3.2.7",
+ "mkdirp": "^0.5.6"
+ },
+ "engines": {
+ "node": ">= 0.12.0"
}
},
- "node_modules/parse5": {
- "version": "7.1.2",
- "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz",
- "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==",
+ "node_modules/portfinder/node_modules/async": {
+ "version": "2.6.4",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "entities": "^4.4.0"
- },
- "funding": {
- "url": "https://github.com/inikulin/parse5?sponsor=1"
+ "lodash": "^4.17.14"
}
},
- "node_modules/parseurl": {
- "version": "1.3.3",
+ "node_modules/posix-character-classes": {
+ "version": "0.1.1",
"license": "MIT",
"engines": {
- "node": ">= 0.8"
+ "node": ">=0.10.0"
}
},
- "node_modules/pascal-case": {
- "version": "3.1.2",
+ "node_modules/possible-typed-array-names": {
+ "version": "1.0.0",
"license": "MIT",
- "dependencies": {
- "no-case": "^3.0.4",
- "tslib": "^2.0.3"
+ "engines": {
+ "node": ">= 0.4"
}
},
- "node_modules/pascal-case/node_modules/lower-case": {
- "version": "2.0.2",
+ "node_modules/postcss": {
+ "version": "8.4.49",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/postcss"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "tslib": "^2.0.3"
+ "nanoid": "^3.3.7",
+ "picocolors": "^1.1.1",
+ "source-map-js": "^1.2.1"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14"
}
},
- "node_modules/pascal-case/node_modules/no-case": {
- "version": "3.0.4",
+ "node_modules/postcss-calc": {
+ "version": "9.0.1",
"license": "MIT",
"dependencies": {
- "lower-case": "^2.0.2",
- "tslib": "^2.0.3"
+ "postcss-selector-parser": "^6.0.11",
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^14 || ^16 || >=18.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.2"
}
},
- "node_modules/pascalcase": {
- "version": "0.1.1",
- "dev": true,
+ "node_modules/postcss-calc-ast-parser": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/postcss-calc-ast-parser/-/postcss-calc-ast-parser-0.1.4.tgz",
+ "integrity": "sha512-CebpbHc96zgFjGgdQ6BqBy6XIUgRx1xXWCAAk6oke02RZ5nxwo9KQejTg8y7uYEeI9kv8jKQPYjoe6REsY23vw==",
"license": "MIT",
+ "dependencies": {
+ "postcss-value-parser": "^3.3.1"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=6.5"
}
},
- "node_modules/password-prompt": {
- "version": "1.1.2",
- "license": "WTFPL",
- "dependencies": {
- "ansi-escapes": "^3.1.0",
- "cross-spawn": "^6.0.5"
- }
+ "node_modules/postcss-calc-ast-parser/node_modules/postcss-value-parser": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
+ "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==",
+ "license": "MIT"
},
- "node_modules/password-prompt/node_modules/ansi-escapes": {
- "version": "3.2.0",
+ "node_modules/postcss-colormin": {
+ "version": "6.1.0",
"license": "MIT",
+ "dependencies": {
+ "browserslist": "^4.23.0",
+ "caniuse-api": "^3.0.0",
+ "colord": "^2.9.3",
+ "postcss-value-parser": "^4.2.0"
+ },
"engines": {
- "node": ">=4"
+ "node": "^14 || ^16 || >=18.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
}
},
- "node_modules/password-prompt/node_modules/cross-spawn": {
- "version": "6.0.5",
+ "node_modules/postcss-combine-duplicated-selectors": {
+ "version": "10.0.3",
+ "resolved": "https://registry.npmjs.org/postcss-combine-duplicated-selectors/-/postcss-combine-duplicated-selectors-10.0.3.tgz",
+ "integrity": "sha512-IP0BmwFloCskv7DV7xqvzDXqMHpwdczJa6ZvIW8abgHdcIHs9mCJX2ltFhu3EwA51ozp13DByng30+Ke+eIExA==",
"license": "MIT",
"dependencies": {
- "nice-try": "^1.0.4",
- "path-key": "^2.0.1",
- "semver": "^5.5.0",
- "shebang-command": "^1.2.0",
- "which": "^1.2.9"
+ "postcss-selector-parser": "^6.0.4"
},
"engines": {
- "node": ">=4.8"
+ "node": "^10.0.0 || ^12.0.0 || >=14.0.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.1.0"
}
},
- "node_modules/password-prompt/node_modules/path-key": {
- "version": "2.0.1",
+ "node_modules/postcss-convert-values": {
+ "version": "6.1.0",
"license": "MIT",
+ "dependencies": {
+ "browserslist": "^4.23.0",
+ "postcss-value-parser": "^4.2.0"
+ },
"engines": {
- "node": ">=4"
- }
- },
- "node_modules/password-prompt/node_modules/semver": {
- "version": "5.7.1",
- "license": "ISC",
- "bin": {
- "semver": "bin/semver"
+ "node": "^14 || ^16 || >=18.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
}
},
- "node_modules/password-prompt/node_modules/shebang-command": {
- "version": "1.2.0",
+ "node_modules/postcss-custom-media": {
+ "version": "9.1.5",
+ "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-9.1.5.tgz",
+ "integrity": "sha512-GStyWMz7Qbo/Gtw1xVspzVSX8eipgNg4lpsO3CAeY4/A1mzok+RV6MCv3fg62trWijh/lYEj6vps4o8JcBBpDA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/csstools"
+ },
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/csstools"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "shebang-regex": "^1.0.0"
+ "@csstools/cascade-layer-name-parser": "^1.0.2",
+ "@csstools/css-parser-algorithms": "^2.2.0",
+ "@csstools/css-tokenizer": "^2.1.1",
+ "@csstools/media-query-list-parser": "^2.1.1"
},
"engines": {
- "node": ">=0.10.0"
+ "node": "^14 || ^16 || >=18"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4"
}
},
- "node_modules/password-prompt/node_modules/shebang-regex": {
- "version": "1.0.0",
+ "node_modules/postcss-discard-comments": {
+ "version": "6.0.2",
"license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": "^14 || ^16 || >=18.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
}
},
- "node_modules/password-prompt/node_modules/which": {
- "version": "1.3.1",
- "license": "ISC",
- "dependencies": {
- "isexe": "^2.0.0"
+ "node_modules/postcss-discard-duplicates": {
+ "version": "6.0.3",
+ "license": "MIT",
+ "engines": {
+ "node": "^14 || ^16 || >=18.0"
},
- "bin": {
- "which": "bin/which"
+ "peerDependencies": {
+ "postcss": "^8.4.31"
}
},
- "node_modules/patch-package": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/patch-package/-/patch-package-8.0.0.tgz",
- "integrity": "sha512-da8BVIhzjtgScwDJ2TtKsfT5JFWz1hYoBl9rUQ1f38MC2HwnEIkK8VN3dKMKcP7P7bvvgzNDbfNHtx3MsQb5vA==",
- "dependencies": {
- "@yarnpkg/lockfile": "^1.1.0",
- "chalk": "^4.1.2",
- "ci-info": "^3.7.0",
- "cross-spawn": "^7.0.3",
- "find-yarn-workspace-root": "^2.0.0",
- "fs-extra": "^9.0.0",
- "json-stable-stringify": "^1.0.2",
- "klaw-sync": "^6.0.0",
- "minimist": "^1.2.6",
- "open": "^7.4.2",
- "rimraf": "^2.6.3",
- "semver": "^7.5.3",
- "slash": "^2.0.0",
- "tmp": "^0.0.33",
- "yaml": "^2.2.2"
- },
- "bin": {
- "patch-package": "index.js"
+ "node_modules/postcss-discard-empty": {
+ "version": "6.0.3",
+ "license": "MIT",
+ "engines": {
+ "node": "^14 || ^16 || >=18.0"
},
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/postcss-discard-overridden": {
+ "version": "6.0.2",
+ "license": "MIT",
"engines": {
- "node": ">=14",
- "npm": ">5"
+ "node": "^14 || ^16 || >=18.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
}
},
- "node_modules/patch-package/node_modules/fs-extra": {
- "version": "9.1.0",
- "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
- "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
+ "node_modules/postcss-flexbugs-fixes": {
+ "version": "5.0.2",
+ "license": "MIT",
+ "peerDependencies": {
+ "postcss": "^8.1.4"
+ }
+ },
+ "node_modules/postcss-import": {
+ "version": "15.1.0",
+ "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz",
+ "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==",
+ "license": "MIT",
"dependencies": {
- "at-least-node": "^1.0.0",
- "graceful-fs": "^4.2.0",
- "jsonfile": "^6.0.1",
- "universalify": "^2.0.0"
+ "postcss-value-parser": "^4.0.0",
+ "read-cache": "^1.0.0",
+ "resolve": "^1.1.7"
},
"engines": {
- "node": ">=10"
+ "node": ">=14.0.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.0.0"
}
},
- "node_modules/patch-package/node_modules/glob": {
- "version": "7.2.3",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
- "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
- "deprecated": "Glob versions prior to v9 are no longer supported",
+ "node_modules/postcss-loader": {
+ "version": "7.3.3",
+ "license": "MIT",
"dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.1.1",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
+ "cosmiconfig": "^8.2.0",
+ "jiti": "^1.18.2",
+ "semver": "^7.3.8"
},
"engines": {
- "node": "*"
+ "node": ">= 14.15.0"
},
"funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/patch-package/node_modules/rimraf": {
- "version": "2.7.1",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
- "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
- "deprecated": "Rimraf versions prior to v4 are no longer supported",
- "dependencies": {
- "glob": "^7.1.3"
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
},
- "bin": {
- "rimraf": "bin.js"
+ "peerDependencies": {
+ "postcss": "^7.0.0 || ^8.0.1",
+ "webpack": "^5.0.0"
}
},
- "node_modules/patch-package/node_modules/semver": {
+ "node_modules/postcss-loader/node_modules/semver": {
"version": "7.6.3",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
- "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
+ "license": "ISC",
"bin": {
"semver": "bin/semver.js"
},
@@ -31407,613 +37259,590 @@
"node": ">=10"
}
},
- "node_modules/patch-package/node_modules/tmp": {
- "version": "0.0.33",
- "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz",
- "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==",
+ "node_modules/postcss-map": {
+ "version": "0.11.0",
+ "resolved": "https://registry.npmjs.org/postcss-map/-/postcss-map-0.11.0.tgz",
+ "integrity": "sha512-cgHYZrH9aAMds90upYUPhYz8xnAcRD45SwuNns/nQHONIrPQDhpwk3JLsAQGOndQxnRVXfB6nB+3WqSMy8fqlA==",
+ "license": "Unlicense",
"dependencies": {
- "os-tmpdir": "~1.0.2"
- },
- "engines": {
- "node": ">=0.6.0"
- }
- },
- "node_modules/patch-package/node_modules/yaml": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.5.0.tgz",
- "integrity": "sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==",
- "bin": {
- "yaml": "bin.mjs"
+ "js-yaml": "^3.12.0",
+ "postcss": "^7.0.2",
+ "reduce-function-call": "^1.0.1"
},
"engines": {
- "node": ">= 14"
+ "node": ">=6.0.0"
}
},
- "node_modules/path": {
- "version": "0.12.7",
- "resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz",
- "integrity": "sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==",
+ "node_modules/postcss-map/node_modules/argparse": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
+ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
+ "license": "MIT",
"dependencies": {
- "process": "^0.11.1",
- "util": "^0.10.3"
+ "sprintf-js": "~1.0.2"
}
},
- "node_modules/path-case": {
- "version": "3.0.4",
+ "node_modules/postcss-map/node_modules/js-yaml": {
+ "version": "3.14.1",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
+ "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
"license": "MIT",
"dependencies": {
- "dot-case": "^3.0.4",
- "tslib": "^2.0.3"
+ "argparse": "^1.0.7",
+ "esprima": "^4.0.0"
+ },
+ "bin": {
+ "js-yaml": "bin/js-yaml.js"
}
},
- "node_modules/path-exists": {
- "version": "4.0.0",
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
+ "node_modules/postcss-map/node_modules/picocolors": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
+ "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
+ "license": "ISC"
},
- "node_modules/path-is-absolute": {
- "version": "1.0.1",
+ "node_modules/postcss-map/node_modules/postcss": {
+ "version": "7.0.39",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
+ "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"license": "MIT",
+ "dependencies": {
+ "picocolors": "^0.2.1",
+ "source-map": "^0.6.1"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
}
},
- "node_modules/path-is-inside": {
- "version": "1.0.2",
+ "node_modules/postcss-media-query-parser": {
+ "version": "0.2.3",
"dev": true,
- "license": "(WTFPL OR MIT)"
- },
- "node_modules/path-key": {
- "version": "3.1.1",
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/path-parse": {
- "version": "1.0.7",
"license": "MIT"
},
- "node_modules/path-root": {
- "version": "0.1.1",
+ "node_modules/postcss-merge-longhand": {
+ "version": "6.0.5",
"license": "MIT",
"dependencies": {
- "path-root-regex": "^0.1.0"
+ "postcss-value-parser": "^4.2.0",
+ "stylehacks": "^6.1.1"
},
"engines": {
- "node": ">=0.10.0"
+ "node": "^14 || ^16 || >=18.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
}
},
- "node_modules/path-root-regex": {
- "version": "0.1.2",
+ "node_modules/postcss-merge-rules": {
+ "version": "6.1.1",
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/path-scurry": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz",
- "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
"dependencies": {
- "lru-cache": "^10.2.0",
- "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
+ "browserslist": "^4.23.0",
+ "caniuse-api": "^3.0.0",
+ "cssnano-utils": "^4.0.2",
+ "postcss-selector-parser": "^6.0.16"
},
"engines": {
- "node": ">=16 || 14 >=14.18"
+ "node": "^14 || ^16 || >=18.0"
},
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
+ "peerDependencies": {
+ "postcss": "^8.4.31"
}
},
- "node_modules/path-scurry/node_modules/lru-cache": {
- "version": "10.4.3",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
- "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ=="
- },
- "node_modules/path-to-regexp": {
- "version": "0.1.7",
- "license": "MIT"
- },
- "node_modules/path-type": {
- "version": "4.0.0",
+ "node_modules/postcss-minify": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/postcss-minify/-/postcss-minify-1.1.0.tgz",
+ "integrity": "sha512-9D64ueIW0DL2FdLajQTlXrnTN8Ox9NjuXqigKMmB819RhdClNPYx5Zp3i5x0ghjjy3vGrLBBYEYvJjY/1eMNbw==",
"license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/path-unified": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/path-unified/-/path-unified-0.1.0.tgz",
- "integrity": "sha512-/Oaz9ZJforrkmFrwkR/AcvjVsCAwGSJHO0X6O6ISj8YeFbATjIEBXLDcZfnK3MO4uvCBrJTdVIxdOc79PMqSdg=="
- },
- "node_modules/path/node_modules/inherits": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
- "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw=="
- },
- "node_modules/path/node_modules/util": {
- "version": "0.10.4",
- "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz",
- "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==",
"dependencies": {
- "inherits": "2.0.3"
+ "postcss-selector-parser": "^6.0",
+ "postcss-value-parser": "^4.1"
+ },
+ "peerDependencies": {
+ "postcss": "^8.0"
}
},
- "node_modules/peek-readable": {
- "version": "4.1.0",
+ "node_modules/postcss-minify-font-values": {
+ "version": "6.1.0",
"license": "MIT",
+ "dependencies": {
+ "postcss-value-parser": "^4.2.0"
+ },
"engines": {
- "node": ">=8"
+ "node": "^14 || ^16 || >=18.0"
},
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/Borewit"
+ "peerDependencies": {
+ "postcss": "^8.4.31"
}
},
- "node_modules/physical-cpu-count": {
- "version": "2.0.0",
- "license": "ISC"
- },
- "node_modules/picocolors": {
- "version": "1.0.0",
- "license": "ISC"
- },
- "node_modules/picomatch": {
- "version": "2.3.1",
+ "node_modules/postcss-minify-gradients": {
+ "version": "6.0.3",
"license": "MIT",
+ "dependencies": {
+ "colord": "^2.9.3",
+ "cssnano-utils": "^4.0.2",
+ "postcss-value-parser": "^4.2.0"
+ },
"engines": {
- "node": ">=8.6"
+ "node": "^14 || ^16 || >=18.0"
},
- "funding": {
- "url": "https://github.com/sponsors/jonschlinkert"
+ "peerDependencies": {
+ "postcss": "^8.4.31"
}
},
- "node_modules/pidtree": {
- "version": "0.6.0",
- "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz",
- "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==",
- "dev": true,
- "bin": {
- "pidtree": "bin/pidtree.js"
+ "node_modules/postcss-minify-params": {
+ "version": "6.1.0",
+ "license": "MIT",
+ "dependencies": {
+ "browserslist": "^4.23.0",
+ "cssnano-utils": "^4.0.2",
+ "postcss-value-parser": "^4.2.0"
},
"engines": {
- "node": ">=0.10"
+ "node": "^14 || ^16 || >=18.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
}
},
- "node_modules/pify": {
- "version": "4.0.1",
- "dev": true,
+ "node_modules/postcss-minify-selectors": {
+ "version": "6.0.4",
"license": "MIT",
+ "dependencies": {
+ "postcss-selector-parser": "^6.0.16"
+ },
"engines": {
- "node": ">=6"
+ "node": "^14 || ^16 || >=18.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
}
},
- "node_modules/pinkie": {
- "version": "2.0.4",
- "dev": true,
- "license": "MIT",
+ "node_modules/postcss-modules-extract-imports": {
+ "version": "3.1.0",
+ "license": "ISC",
"engines": {
- "node": ">=0.10.0"
+ "node": "^10 || ^12 || >= 14"
+ },
+ "peerDependencies": {
+ "postcss": "^8.1.0"
}
},
- "node_modules/pinkie-promise": {
- "version": "2.0.1",
- "dev": true,
+ "node_modules/postcss-modules-local-by-default": {
+ "version": "4.2.0",
"license": "MIT",
"dependencies": {
- "pinkie": "^2.0.0"
+ "icss-utils": "^5.0.0",
+ "postcss-selector-parser": "^7.0.0",
+ "postcss-value-parser": "^4.1.0"
},
"engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/pirates": {
- "version": "4.0.5",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 6"
+ "node": "^10 || ^12 || >= 14"
+ },
+ "peerDependencies": {
+ "postcss": "^8.1.0"
}
},
- "node_modules/pkg-conf": {
- "version": "2.1.0",
- "dev": true,
+ "node_modules/postcss-modules-local-by-default/node_modules/postcss-selector-parser": {
+ "version": "7.0.0",
"license": "MIT",
"dependencies": {
- "find-up": "^2.0.0",
- "load-json-file": "^4.0.0"
+ "cssesc": "^3.0.0",
+ "util-deprecate": "^1.0.2"
},
"engines": {
"node": ">=4"
}
},
- "node_modules/pkg-conf/node_modules/find-up": {
- "version": "2.1.0",
- "dev": true,
- "license": "MIT",
+ "node_modules/postcss-modules-scope": {
+ "version": "3.2.1",
+ "license": "ISC",
"dependencies": {
- "locate-path": "^2.0.0"
+ "postcss-selector-parser": "^7.0.0"
},
"engines": {
- "node": ">=4"
+ "node": "^10 || ^12 || >= 14"
+ },
+ "peerDependencies": {
+ "postcss": "^8.1.0"
}
},
- "node_modules/pkg-conf/node_modules/locate-path": {
- "version": "2.0.0",
- "dev": true,
+ "node_modules/postcss-modules-scope/node_modules/postcss-selector-parser": {
+ "version": "7.0.0",
"license": "MIT",
"dependencies": {
- "p-locate": "^2.0.0",
- "path-exists": "^3.0.0"
+ "cssesc": "^3.0.0",
+ "util-deprecate": "^1.0.2"
},
"engines": {
"node": ">=4"
}
},
- "node_modules/pkg-conf/node_modules/p-limit": {
- "version": "1.3.0",
- "dev": true,
- "license": "MIT",
+ "node_modules/postcss-modules-values": {
+ "version": "4.0.0",
+ "license": "ISC",
"dependencies": {
- "p-try": "^1.0.0"
+ "icss-utils": "^5.0.0"
},
"engines": {
- "node": ">=4"
+ "node": "^10 || ^12 || >= 14"
+ },
+ "peerDependencies": {
+ "postcss": "^8.1.0"
}
},
- "node_modules/pkg-conf/node_modules/p-locate": {
- "version": "2.0.0",
- "dev": true,
+ "node_modules/postcss-normalize-charset": {
+ "version": "6.0.2",
"license": "MIT",
- "dependencies": {
- "p-limit": "^1.1.0"
- },
"engines": {
- "node": ">=4"
+ "node": "^14 || ^16 || >=18.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
}
},
- "node_modules/pkg-conf/node_modules/p-try": {
- "version": "1.0.0",
- "dev": true,
+ "node_modules/postcss-normalize-display-values": {
+ "version": "6.0.2",
"license": "MIT",
+ "dependencies": {
+ "postcss-value-parser": "^4.2.0"
+ },
"engines": {
- "node": ">=4"
+ "node": "^14 || ^16 || >=18.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
}
},
- "node_modules/pkg-conf/node_modules/path-exists": {
- "version": "3.0.0",
- "dev": true,
+ "node_modules/postcss-normalize-positions": {
+ "version": "6.0.2",
"license": "MIT",
+ "dependencies": {
+ "postcss-value-parser": "^4.2.0"
+ },
"engines": {
- "node": ">=4"
+ "node": "^14 || ^16 || >=18.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
}
},
- "node_modules/pkg-dir": {
- "version": "4.2.0",
+ "node_modules/postcss-normalize-repeat-style": {
+ "version": "6.0.2",
"license": "MIT",
"dependencies": {
- "find-up": "^4.0.0"
+ "postcss-value-parser": "^4.2.0"
},
"engines": {
- "node": ">=8"
+ "node": "^14 || ^16 || >=18.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
}
},
- "node_modules/pkg-up": {
- "version": "3.1.0",
+ "node_modules/postcss-normalize-string": {
+ "version": "6.0.2",
"license": "MIT",
"dependencies": {
- "find-up": "^3.0.0"
+ "postcss-value-parser": "^4.2.0"
},
"engines": {
- "node": ">=8"
+ "node": "^14 || ^16 || >=18.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
}
},
- "node_modules/pkg-up/node_modules/find-up": {
- "version": "3.0.0",
+ "node_modules/postcss-normalize-timing-functions": {
+ "version": "6.0.2",
"license": "MIT",
"dependencies": {
- "locate-path": "^3.0.0"
+ "postcss-value-parser": "^4.2.0"
},
"engines": {
- "node": ">=6"
+ "node": "^14 || ^16 || >=18.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
}
},
- "node_modules/pkg-up/node_modules/locate-path": {
- "version": "3.0.0",
+ "node_modules/postcss-normalize-unicode": {
+ "version": "6.1.0",
"license": "MIT",
"dependencies": {
- "p-locate": "^3.0.0",
- "path-exists": "^3.0.0"
+ "browserslist": "^4.23.0",
+ "postcss-value-parser": "^4.2.0"
},
"engines": {
- "node": ">=6"
+ "node": "^14 || ^16 || >=18.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
}
},
- "node_modules/pkg-up/node_modules/p-limit": {
- "version": "2.3.0",
+ "node_modules/postcss-normalize-url": {
+ "version": "6.0.2",
"license": "MIT",
"dependencies": {
- "p-try": "^2.0.0"
+ "postcss-value-parser": "^4.2.0"
},
"engines": {
- "node": ">=6"
+ "node": "^14 || ^16 || >=18.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "peerDependencies": {
+ "postcss": "^8.4.31"
}
},
- "node_modules/pkg-up/node_modules/p-locate": {
- "version": "3.0.0",
+ "node_modules/postcss-normalize-whitespace": {
+ "version": "6.0.2",
"license": "MIT",
"dependencies": {
- "p-limit": "^2.0.0"
+ "postcss-value-parser": "^4.2.0"
},
"engines": {
- "node": ">=6"
+ "node": "^14 || ^16 || >=18.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
}
},
- "node_modules/pkg-up/node_modules/path-exists": {
- "version": "3.0.0",
+ "node_modules/postcss-ordered-values": {
+ "version": "6.0.2",
"license": "MIT",
+ "dependencies": {
+ "cssnano-utils": "^4.0.2",
+ "postcss-value-parser": "^4.2.0"
+ },
"engines": {
- "node": ">=4"
+ "node": "^14 || ^16 || >=18.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
}
},
- "node_modules/platform": {
- "version": "1.3.6",
- "license": "MIT"
- },
- "node_modules/playroom": {
- "version": "0.31.0",
- "dev": true,
+ "node_modules/postcss-reduce-initial": {
+ "version": "6.1.0",
"license": "MIT",
"dependencies": {
- "@babel/cli": "^7.19.3",
- "@babel/core": "^7.20.5",
- "@babel/preset-env": "^7.20.2",
- "@babel/preset-react": "^7.18.6",
- "@babel/preset-typescript": "^7.18.6",
- "@babel/standalone": "^7.20.6",
- "@soda/friendly-errors-webpack-plugin": "^1.8.1",
- "@types/base64-url": "^2.2.0",
- "@types/codemirror": "^5.60.5",
- "@types/dedent": "^0.7.0",
- "@types/lodash": "^4.14.191",
- "@types/lz-string": "^1.3.34",
- "@types/prettier": "^2.7.1",
- "@types/react": "^18.0.26",
- "@types/react-dom": "^18.0.9",
- "@vanilla-extract/css": "^1.9.2",
- "@vanilla-extract/css-utils": "^0.1.3",
- "@vanilla-extract/sprinkles": "^1.5.1",
- "@vanilla-extract/webpack-plugin": "2.1.12",
- "babel-loader": "^9.1.0",
- "classnames": "^2.3.2",
- "codemirror": "^5.65.10",
- "command-line-args": "^5.2.1",
- "command-line-usage": "^6.1.3",
- "copy-to-clipboard": "^3.3.3",
- "css-loader": "^6.7.2",
- "current-git-branch": "^1.1.0",
- "dedent": "^0.7.0",
- "fast-glob": "^3.2.12",
- "find-up": "^5.0.0",
- "fuzzy": "^0.1.3",
- "history": "^5.3.0",
- "html-webpack-plugin": "^5.5.0",
- "intersection-observer": "^0.12.2",
- "localforage": "^1.10.0",
- "lodash": "^4.17.21",
- "lz-string": "^1.4.4",
- "mini-css-extract-plugin": "^2.7.2",
- "parse-prop-types": "^0.3.0",
- "polished": "^4.2.2",
- "portfinder": "^1.0.32",
- "prettier": "^2.8.1",
- "prop-types": "^15.8.1",
- "query-string": "^7.1.3",
- "re-resizable": "^6.9.9",
- "react-docgen-typescript": "^2.2.2",
- "react-use": "^17.4.0",
- "read-pkg-up": "^7.0.1",
- "scope-eval": "^1.0.0",
- "typescript": "^4.5.4",
- "use-debounce": "^9.0.2",
- "webpack": "^5.75.0",
- "webpack-dev-server": "^4.11.1",
- "webpack-merge": "^5.8.0"
+ "browserslist": "^4.23.0",
+ "caniuse-api": "^3.0.0"
},
- "bin": {
- "playroom": "bin/cli.js"
+ "engines": {
+ "node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
- "react": "^16.8 || ^17 || ^18",
- "react-dom": "^16.8 || ^17 || ^18"
+ "postcss": "^8.4.31"
}
},
- "node_modules/playroom/node_modules/@types/react": {
- "version": "18.2.6",
- "dev": true,
+ "node_modules/postcss-reduce-transforms": {
+ "version": "6.0.2",
"license": "MIT",
"dependencies": {
- "@types/prop-types": "*",
- "@types/scheduler": "*",
- "csstype": "^3.0.2"
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^14 || ^16 || >=18.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
}
},
- "node_modules/playroom/node_modules/@types/react-dom": {
- "version": "18.2.4",
+ "node_modules/postcss-resolve-nested-selector": {
+ "version": "0.1.6",
"dev": true,
- "license": "MIT",
+ "license": "MIT"
+ },
+ "node_modules/postcss-rtlcss": {
+ "version": "5.1.2",
+ "license": "Apache-2.0",
+ "peer": true,
"dependencies": {
- "@types/react": "*"
+ "rtlcss": "4.1.1"
+ },
+ "engines": {
+ "node": ">=18.0.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.21"
}
},
- "node_modules/playroom/node_modules/ajv": {
- "version": "8.12.0",
+ "node_modules/postcss-safe-parser": {
+ "version": "6.0.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
+ "engines": {
+ "node": ">=12.0"
},
"funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ "peerDependencies": {
+ "postcss": "^8.3.3"
}
},
- "node_modules/playroom/node_modules/ajv-keywords": {
- "version": "5.1.0",
+ "node_modules/postcss-scss": {
+ "version": "4.0.9",
"dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/postcss-scss"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
"license": "MIT",
- "dependencies": {
- "fast-deep-equal": "^3.1.3"
+ "engines": {
+ "node": ">=12.0"
},
"peerDependencies": {
- "ajv": "^8.8.2"
+ "postcss": "^8.4.29"
}
},
- "node_modules/playroom/node_modules/babel-loader": {
- "version": "9.1.2",
- "dev": true,
+ "node_modules/postcss-selector-parser": {
+ "version": "6.1.2",
"license": "MIT",
"dependencies": {
- "find-cache-dir": "^3.3.2",
- "schema-utils": "^4.0.0"
+ "cssesc": "^3.0.0",
+ "util-deprecate": "^1.0.2"
},
"engines": {
- "node": ">= 14.15.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.12.0",
- "webpack": ">=5"
+ "node": ">=4"
}
},
- "node_modules/playroom/node_modules/css-loader": {
- "version": "6.7.3",
- "dev": true,
+ "node_modules/postcss-svgo": {
+ "version": "6.0.3",
"license": "MIT",
"dependencies": {
- "icss-utils": "^5.1.0",
- "postcss": "^8.4.19",
- "postcss-modules-extract-imports": "^3.0.0",
- "postcss-modules-local-by-default": "^4.0.0",
- "postcss-modules-scope": "^3.0.0",
- "postcss-modules-values": "^4.0.0",
"postcss-value-parser": "^4.2.0",
- "semver": "^7.3.8"
+ "svgo": "^3.2.0"
},
"engines": {
- "node": ">= 12.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
+ "node": "^14 || ^16 || >= 18"
},
"peerDependencies": {
- "webpack": "^5.0.0"
+ "postcss": "^8.4.31"
}
},
- "node_modules/playroom/node_modules/find-up": {
- "version": "5.0.0",
- "dev": true,
+ "node_modules/postcss-unique-selectors": {
+ "version": "6.0.4",
"license": "MIT",
"dependencies": {
- "locate-path": "^6.0.0",
- "path-exists": "^4.0.0"
+ "postcss-selector-parser": "^6.0.16"
},
"engines": {
- "node": ">=10"
+ "node": "^14 || ^16 || >=18.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/playroom/node_modules/history": {
- "version": "5.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.7.6"
+ "peerDependencies": {
+ "postcss": "^8.4.31"
}
},
- "node_modules/playroom/node_modules/json-schema-traverse": {
- "version": "1.0.0",
- "dev": true,
+ "node_modules/postcss-value-parser": {
+ "version": "4.2.0",
"license": "MIT"
},
- "node_modules/playroom/node_modules/locate-path": {
- "version": "6.0.0",
- "dev": true,
+ "node_modules/prebuild-install": {
+ "version": "7.1.2",
"license": "MIT",
"dependencies": {
- "p-locate": "^5.0.0"
+ "detect-libc": "^2.0.0",
+ "expand-template": "^2.0.3",
+ "github-from-package": "0.0.0",
+ "minimist": "^1.2.3",
+ "mkdirp-classic": "^0.5.3",
+ "napi-build-utils": "^1.0.1",
+ "node-abi": "^3.3.0",
+ "pump": "^3.0.0",
+ "rc": "^1.2.7",
+ "simple-get": "^4.0.0",
+ "tar-fs": "^2.0.0",
+ "tunnel-agent": "^0.6.0"
+ },
+ "bin": {
+ "prebuild-install": "bin.js"
},
"engines": {
"node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/playroom/node_modules/lru-cache": {
- "version": "6.0.0",
- "dev": true,
- "license": "ISC",
+ "node_modules/prebuild-install/node_modules/detect-libc": {
+ "version": "2.0.3",
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/prebuild-install/node_modules/readable-stream": {
+ "version": "3.6.2",
+ "license": "MIT",
"dependencies": {
- "yallist": "^4.0.0"
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
},
"engines": {
- "node": ">=10"
+ "node": ">= 6"
}
},
- "node_modules/playroom/node_modules/mini-css-extract-plugin": {
- "version": "2.7.5",
- "dev": true,
+ "node_modules/prebuild-install/node_modules/tar-fs": {
+ "version": "2.1.1",
"license": "MIT",
"dependencies": {
- "schema-utils": "^4.0.0"
+ "chownr": "^1.1.1",
+ "mkdirp-classic": "^0.5.2",
+ "pump": "^3.0.0",
+ "tar-stream": "^2.1.4"
+ }
+ },
+ "node_modules/prebuild-install/node_modules/tar-stream": {
+ "version": "2.2.0",
+ "license": "MIT",
+ "dependencies": {
+ "bl": "^4.0.3",
+ "end-of-stream": "^1.4.1",
+ "fs-constants": "^1.0.0",
+ "inherits": "^2.0.3",
+ "readable-stream": "^3.1.1"
},
"engines": {
- "node": ">= 12.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^5.0.0"
+ "node": ">=6"
}
},
- "node_modules/playroom/node_modules/p-locate": {
- "version": "5.0.0",
+ "node_modules/prelude-ls": {
+ "version": "1.2.1",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/prettier": {
+ "version": "2.8.8",
"dev": true,
"license": "MIT",
- "dependencies": {
- "p-limit": "^3.0.2"
+ "bin": {
+ "prettier": "bin-prettier.js"
},
"engines": {
- "node": ">=10"
+ "node": ">=10.13.0"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/prettier/prettier?sponsor=1"
}
},
- "node_modules/playroom/node_modules/query-string": {
- "version": "7.1.3",
- "dev": true,
+ "node_modules/pretty-bytes": {
+ "version": "5.6.0",
"license": "MIT",
- "dependencies": {
- "decode-uri-component": "^0.2.2",
- "filter-obj": "^1.1.0",
- "split-on-first": "^1.0.0",
- "strict-uri-encode": "^2.0.0"
- },
"engines": {
"node": ">=6"
},
@@ -32021,2367 +37850,3194 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/playroom/node_modules/schema-utils": {
- "version": "4.0.1",
+ "node_modules/pretty-error": {
+ "version": "2.1.2",
+ "license": "MIT",
+ "dependencies": {
+ "lodash": "^4.17.20",
+ "renderkid": "^2.0.4"
+ }
+ },
+ "node_modules/pretty-format": {
+ "version": "27.5.1",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@types/json-schema": "^7.0.9",
- "ajv": "^8.9.0",
- "ajv-formats": "^2.1.1",
- "ajv-keywords": "^5.1.0"
+ "ansi-regex": "^5.0.1",
+ "ansi-styles": "^5.0.0",
+ "react-is": "^17.0.1"
},
"engines": {
- "node": ">= 12.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
- "node_modules/playroom/node_modules/semver": {
- "version": "7.5.0",
+ "node_modules/pretty-format/node_modules/ansi-styles": {
+ "version": "5.2.0",
"dev": true,
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
+ "license": "MIT",
+ "peer": true,
"engines": {
"node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/playroom/node_modules/yallist": {
- "version": "4.0.0",
+ "node_modules/pretty-format/node_modules/react-is": {
+ "version": "17.0.2",
"dev": true,
- "license": "ISC"
+ "license": "MIT",
+ "peer": true
},
- "node_modules/polished": {
- "version": "4.2.2",
+ "node_modules/prism-react-renderer": {
+ "version": "1.3.5",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": ">=0.14.9"
+ }
+ },
+ "node_modules/private": {
+ "version": "0.1.8",
"dev": true,
"license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/process": {
+ "version": "0.11.10",
+ "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
+ "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6.0"
+ }
+ },
+ "node_modules/process-nextick-args": {
+ "version": "2.0.1",
+ "license": "MIT"
+ },
+ "node_modules/progress": {
+ "version": "2.0.3",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/promise": {
+ "version": "7.3.1",
+ "license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.17.8"
+ "asap": "~2.0.3"
+ }
+ },
+ "node_modules/prompts": {
+ "version": "2.4.2",
+ "license": "MIT",
+ "dependencies": {
+ "kleur": "^3.0.3",
+ "sisteransi": "^1.0.5"
},
"engines": {
- "node": ">=10"
+ "node": ">= 6"
}
},
- "node_modules/popper.js": {
- "version": "1.16.1",
+ "node_modules/prop-types": {
+ "version": "15.8.1",
+ "license": "MIT",
+ "dependencies": {
+ "loose-envify": "^1.4.0",
+ "object-assign": "^4.1.1",
+ "react-is": "^16.13.1"
+ }
+ },
+ "node_modules/prop-types-extra": {
+ "version": "1.1.1",
+ "license": "MIT",
+ "dependencies": {
+ "react-is": "^16.3.2",
+ "warning": "^4.0.0"
+ },
+ "peerDependencies": {
+ "react": ">=0.14.0"
+ }
+ },
+ "node_modules/proper-lockfile": {
+ "version": "4.1.2",
+ "license": "MIT",
+ "dependencies": {
+ "graceful-fs": "^4.2.4",
+ "retry": "^0.12.0",
+ "signal-exit": "^3.0.2"
+ }
+ },
+ "node_modules/property-information": {
+ "version": "6.5.0",
"license": "MIT",
- "peer": true,
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/popperjs"
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/portfinder": {
- "version": "1.0.32",
- "dev": true,
+ "node_modules/proto-list": {
+ "version": "1.2.4",
+ "license": "ISC"
+ },
+ "node_modules/proxy-addr": {
+ "version": "2.0.7",
"license": "MIT",
"dependencies": {
- "async": "^2.6.4",
- "debug": "^3.2.7",
- "mkdirp": "^0.5.6"
+ "forwarded": "0.2.0",
+ "ipaddr.js": "1.9.1"
},
"engines": {
- "node": ">= 0.12.0"
+ "node": ">= 0.10"
}
},
- "node_modules/portfinder/node_modules/async": {
- "version": "2.6.4",
- "dev": true,
+ "node_modules/proxy-from-env": {
+ "version": "1.1.0",
+ "license": "MIT"
+ },
+ "node_modules/pseudomap": {
+ "version": "1.0.2",
+ "license": "ISC"
+ },
+ "node_modules/psl": {
+ "version": "1.15.0",
"license": "MIT",
"dependencies": {
- "lodash": "^4.17.14"
+ "punycode": "^2.3.1"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/lupomontero"
}
},
- "node_modules/portfinder/node_modules/debug": {
- "version": "3.2.7",
- "dev": true,
+ "node_modules/pubsub-js": {
+ "version": "1.9.5",
+ "license": "MIT"
+ },
+ "node_modules/pump": {
+ "version": "3.0.2",
"license": "MIT",
"dependencies": {
- "ms": "^2.1.1"
+ "end-of-stream": "^1.1.0",
+ "once": "^1.3.1"
}
},
- "node_modules/posix-character-classes": {
- "version": "0.1.1",
- "dev": true,
+ "node_modules/punycode": {
+ "version": "2.3.1",
"license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": ">=6"
}
},
- "node_modules/postcss": {
- "version": "8.4.21",
+ "node_modules/pure-rand": {
+ "version": "6.1.0",
"funding": [
{
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
+ "type": "individual",
+ "url": "https://github.com/sponsors/dubzzz"
},
{
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/postcss"
+ "type": "opencollective",
+ "url": "https://opencollective.com/fast-check"
}
],
+ "license": "MIT"
+ },
+ "node_modules/purgecss": {
+ "version": "5.0.0",
"license": "MIT",
"dependencies": {
- "nanoid": "^3.3.4",
- "picocolors": "^1.0.0",
- "source-map-js": "^1.0.2"
+ "commander": "^9.0.0",
+ "glob": "^8.0.3",
+ "postcss": "^8.4.4",
+ "postcss-selector-parser": "^6.0.7"
},
- "engines": {
- "node": "^10 || ^12 || >=14"
+ "bin": {
+ "purgecss": "bin/purgecss.js"
}
},
- "node_modules/postcss-calc": {
- "version": "8.2.4",
+ "node_modules/q": {
+ "version": "1.5.1",
+ "dev": true,
"license": "MIT",
+ "engines": {
+ "node": ">=0.6.0",
+ "teleport": ">=0.2.0"
+ }
+ },
+ "node_modules/qs": {
+ "version": "6.11.0",
+ "license": "BSD-3-Clause",
"dependencies": {
- "postcss-selector-parser": "^6.0.9",
- "postcss-value-parser": "^4.2.0"
+ "side-channel": "^1.0.4"
},
- "peerDependencies": {
- "postcss": "^8.2.2"
+ "engines": {
+ "node": ">=0.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/postcss-calc-ast-parser": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/postcss-calc-ast-parser/-/postcss-calc-ast-parser-0.1.4.tgz",
- "integrity": "sha512-CebpbHc96zgFjGgdQ6BqBy6XIUgRx1xXWCAAk6oke02RZ5nxwo9KQejTg8y7uYEeI9kv8jKQPYjoe6REsY23vw==",
+ "node_modules/query-string": {
+ "version": "6.14.1",
+ "license": "MIT",
"dependencies": {
- "postcss-value-parser": "^3.3.1"
+ "decode-uri-component": "^0.2.0",
+ "filter-obj": "^1.1.0",
+ "split-on-first": "^1.0.0",
+ "strict-uri-encode": "^2.0.0"
},
"engines": {
- "node": ">=6.5"
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/postcss-calc-ast-parser/node_modules/postcss-value-parser": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
- "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ=="
+ "node_modules/querystringify": {
+ "version": "2.2.0",
+ "license": "MIT"
},
- "node_modules/postcss-colormin": {
- "version": "5.3.1",
+ "node_modules/queue-microtask": {
+ "version": "1.2.3",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/queue-tick": {
+ "version": "1.0.1",
+ "license": "MIT"
+ },
+ "node_modules/quick-lru": {
+ "version": "5.1.1",
"license": "MIT",
- "dependencies": {
- "browserslist": "^4.21.4",
- "caniuse-api": "^3.0.0",
- "colord": "^2.9.1",
- "postcss-value-parser": "^4.2.0"
- },
"engines": {
- "node": "^10 || ^12 || >=14.0"
+ "node": ">=10"
},
- "peerDependencies": {
- "postcss": "^8.2.15"
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/postcss-combine-duplicated-selectors": {
- "version": "10.0.3",
- "resolved": "https://registry.npmjs.org/postcss-combine-duplicated-selectors/-/postcss-combine-duplicated-selectors-10.0.3.tgz",
- "integrity": "sha512-IP0BmwFloCskv7DV7xqvzDXqMHpwdczJa6ZvIW8abgHdcIHs9mCJX2ltFhu3EwA51ozp13DByng30+Ke+eIExA==",
+ "node_modules/randombytes": {
+ "version": "2.1.0",
+ "license": "MIT",
"dependencies": {
- "postcss-selector-parser": "^6.0.4"
- },
+ "safe-buffer": "^5.1.0"
+ }
+ },
+ "node_modules/range-parser": {
+ "version": "1.2.1",
+ "license": "MIT",
"engines": {
- "node": "^10.0.0 || ^12.0.0 || >=14.0.0"
- },
- "peerDependencies": {
- "postcss": "^8.1.0"
+ "node": ">= 0.6"
}
},
- "node_modules/postcss-convert-values": {
- "version": "5.1.3",
+ "node_modules/raw-body": {
+ "version": "2.5.1",
+ "license": "MIT",
+ "dependencies": {
+ "bytes": "3.1.2",
+ "http-errors": "2.0.0",
+ "iconv-lite": "0.4.24",
+ "unpipe": "1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/raw-loader": {
+ "version": "4.0.2",
"license": "MIT",
"dependencies": {
- "browserslist": "^4.21.4",
- "postcss-value-parser": "^4.2.0"
+ "loader-utils": "^2.0.0",
+ "schema-utils": "^3.0.0"
},
"engines": {
- "node": "^10 || ^12 || >=14.0"
+ "node": ">= 10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
},
"peerDependencies": {
- "postcss": "^8.2.15"
+ "webpack": "^4.0.0 || ^5.0.0"
}
},
- "node_modules/postcss-custom-media": {
- "version": "9.1.3",
+ "node_modules/raw-loader/node_modules/schema-utils": {
+ "version": "3.3.0",
"license": "MIT",
"dependencies": {
- "@csstools/cascade-layer-name-parser": "^1.0.2",
- "@csstools/css-parser-algorithms": "^2.1.1",
- "@csstools/css-tokenizer": "^2.1.1",
- "@csstools/media-query-list-parser": "^2.0.4"
+ "@types/json-schema": "^7.0.8",
+ "ajv": "^6.12.5",
+ "ajv-keywords": "^3.5.2"
},
"engines": {
- "node": "^14 || ^16 || >=18"
+ "node": ">= 10.13.0"
},
"funding": {
"type": "opencollective",
- "url": "https://opencollective.com/csstools"
+ "url": "https://opencollective.com/webpack"
+ }
+ },
+ "node_modules/rc": {
+ "version": "1.2.8",
+ "license": "(BSD-2-Clause OR MIT OR Apache-2.0)",
+ "dependencies": {
+ "deep-extend": "^0.6.0",
+ "ini": "~1.3.0",
+ "minimist": "^1.2.0",
+ "strip-json-comments": "~2.0.1"
},
- "peerDependencies": {
- "postcss": "^8.4"
+ "bin": {
+ "rc": "cli.js"
}
},
- "node_modules/postcss-discard-comments": {
- "version": "5.1.2",
+ "node_modules/rc/node_modules/strip-json-comments": {
+ "version": "2.0.1",
"license": "MIT",
"engines": {
- "node": "^10 || ^12 || >=14.0"
- },
- "peerDependencies": {
- "postcss": "^8.2.15"
+ "node": ">=0.10.0"
}
},
- "node_modules/postcss-discard-duplicates": {
- "version": "5.1.0",
+ "node_modules/re-resizable": {
+ "version": "6.10.3",
+ "dev": true,
"license": "MIT",
- "engines": {
- "node": "^10 || ^12 || >=14.0"
- },
"peerDependencies": {
- "postcss": "^8.2.15"
+ "react": "^16.13.1 || ^17.0.0 || ^18.0.0 || ^19.0.0",
+ "react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
},
- "node_modules/postcss-discard-empty": {
- "version": "5.1.1",
+ "node_modules/react": {
+ "version": "18.3.1",
"license": "MIT",
+ "dependencies": {
+ "loose-envify": "^1.1.0"
+ },
"engines": {
- "node": "^10 || ^12 || >=14.0"
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/react-axe": {
+ "version": "3.5.4",
+ "license": "MPL-2.0",
+ "dependencies": {
+ "axe-core": "^3.5.0",
+ "requestidlecallback": "^0.3.0"
+ }
+ },
+ "node_modules/react-axe/node_modules/axe-core": {
+ "version": "3.5.6",
+ "license": "MPL-2.0",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/react-bootstrap": {
+ "version": "1.6.8",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.14.0",
+ "@restart/context": "^2.1.4",
+ "@restart/hooks": "^0.4.7",
+ "@types/invariant": "^2.2.33",
+ "@types/prop-types": "^15.7.3",
+ "@types/react": ">=16.14.8",
+ "@types/react-transition-group": "^4.4.1",
+ "@types/warning": "^3.0.0",
+ "classnames": "^2.3.1",
+ "dom-helpers": "^5.2.1",
+ "invariant": "^2.2.4",
+ "prop-types": "^15.7.2",
+ "prop-types-extra": "^1.1.0",
+ "react-overlays": "^5.1.2",
+ "react-transition-group": "^4.4.1",
+ "uncontrollable": "^7.2.1",
+ "warning": "^4.0.3"
},
"peerDependencies": {
- "postcss": "^8.2.15"
+ "react": ">=16.8.0",
+ "react-dom": ">=16.8.0"
}
},
- "node_modules/postcss-discard-overridden": {
- "version": "5.1.0",
+ "node_modules/react-clientside-effect": {
+ "version": "1.2.6",
"license": "MIT",
- "engines": {
- "node": "^10 || ^12 || >=14.0"
+ "dependencies": {
+ "@babel/runtime": "^7.12.13"
},
"peerDependencies": {
- "postcss": "^8.2.15"
+ "react": "^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
}
},
- "node_modules/postcss-flexbugs-fixes": {
- "version": "5.0.2",
+ "node_modules/react-colorful": {
+ "version": "5.6.1",
"license": "MIT",
"peerDependencies": {
- "postcss": "^8.1.4"
+ "react": ">=16.8.0",
+ "react-dom": ">=16.8.0"
}
},
- "node_modules/postcss-import": {
- "version": "15.1.0",
- "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz",
- "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==",
+ "node_modules/react-dev-utils": {
+ "version": "12.0.1",
+ "license": "MIT",
"dependencies": {
- "postcss-value-parser": "^4.0.0",
- "read-cache": "^1.0.0",
- "resolve": "^1.1.7"
+ "@babel/code-frame": "^7.16.0",
+ "address": "^1.1.2",
+ "browserslist": "^4.18.1",
+ "chalk": "^4.1.2",
+ "cross-spawn": "^7.0.3",
+ "detect-port-alt": "^1.1.6",
+ "escape-string-regexp": "^4.0.0",
+ "filesize": "^8.0.6",
+ "find-up": "^5.0.0",
+ "fork-ts-checker-webpack-plugin": "^6.5.0",
+ "global-modules": "^2.0.0",
+ "globby": "^11.0.4",
+ "gzip-size": "^6.0.0",
+ "immer": "^9.0.7",
+ "is-root": "^2.1.0",
+ "loader-utils": "^3.2.0",
+ "open": "^8.4.0",
+ "pkg-up": "^3.1.0",
+ "prompts": "^2.4.2",
+ "react-error-overlay": "^6.0.11",
+ "recursive-readdir": "^2.2.2",
+ "shell-quote": "^1.7.3",
+ "strip-ansi": "^6.0.1",
+ "text-table": "^0.2.0"
},
"engines": {
- "node": ">=14.0.0"
- },
- "peerDependencies": {
- "postcss": "^8.0.0"
+ "node": ">=14"
}
},
- "node_modules/postcss-loader": {
- "version": "6.2.1",
- "dev": true,
+ "node_modules/react-dev-utils/node_modules/is-docker": {
+ "version": "2.2.1",
"license": "MIT",
- "dependencies": {
- "cosmiconfig": "^7.0.0",
- "klona": "^2.0.5",
- "semver": "^7.3.5"
+ "bin": {
+ "is-docker": "cli.js"
},
"engines": {
- "node": ">= 12.13.0"
+ "node": ">=8"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/react-dev-utils/node_modules/is-wsl": {
+ "version": "2.2.0",
+ "license": "MIT",
+ "dependencies": {
+ "is-docker": "^2.0.0"
},
- "peerDependencies": {
- "postcss": "^7.0.0 || ^8.0.1",
- "webpack": "^5.0.0"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/postcss-loader/node_modules/lru-cache": {
- "version": "6.0.0",
- "dev": true,
- "license": "ISC",
+ "node_modules/react-dev-utils/node_modules/loader-utils": {
+ "version": "3.3.1",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 12.13.0"
+ }
+ },
+ "node_modules/react-dev-utils/node_modules/open": {
+ "version": "8.4.2",
+ "license": "MIT",
"dependencies": {
- "yallist": "^4.0.0"
+ "define-lazy-prop": "^2.0.0",
+ "is-docker": "^2.1.1",
+ "is-wsl": "^2.2.0"
},
"engines": {
- "node": ">=10"
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/postcss-loader/node_modules/semver": {
- "version": "7.5.0",
- "dev": true,
- "license": "ISC",
+ "node_modules/react-docgen": {
+ "version": "5.4.3",
+ "license": "MIT",
"dependencies": {
- "lru-cache": "^6.0.0"
+ "@babel/core": "^7.7.5",
+ "@babel/generator": "^7.12.11",
+ "@babel/runtime": "^7.7.6",
+ "ast-types": "^0.14.2",
+ "commander": "^2.19.0",
+ "doctrine": "^3.0.0",
+ "estree-to-babel": "^3.1.0",
+ "neo-async": "^2.6.1",
+ "node-dir": "^0.1.10",
+ "strip-indent": "^3.0.0"
},
"bin": {
- "semver": "bin/semver.js"
+ "react-docgen": "bin/react-docgen.js"
},
"engines": {
- "node": ">=10"
+ "node": ">=8.10.0"
}
},
- "node_modules/postcss-loader/node_modules/yallist": {
- "version": "4.0.0",
+ "node_modules/react-docgen-typescript": {
+ "version": "2.2.2",
"dev": true,
- "license": "ISC"
+ "license": "MIT",
+ "peerDependencies": {
+ "typescript": ">= 4.3.x"
+ }
},
- "node_modules/postcss-map": {
- "version": "0.11.0",
- "resolved": "https://registry.npmjs.org/postcss-map/-/postcss-map-0.11.0.tgz",
- "integrity": "sha512-cgHYZrH9aAMds90upYUPhYz8xnAcRD45SwuNns/nQHONIrPQDhpwk3JLsAQGOndQxnRVXfB6nB+3WqSMy8fqlA==",
+ "node_modules/react-docgen/node_modules/commander": {
+ "version": "2.20.3",
+ "license": "MIT"
+ },
+ "node_modules/react-docgen/node_modules/doctrine": {
+ "version": "3.0.0",
+ "license": "Apache-2.0",
"dependencies": {
- "js-yaml": "^3.12.0",
- "postcss": "^7.0.2",
- "reduce-function-call": "^1.0.1"
+ "esutils": "^2.0.2"
},
"engines": {
"node": ">=6.0.0"
}
},
- "node_modules/postcss-map/node_modules/picocolors": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
- "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA=="
- },
- "node_modules/postcss-map/node_modules/postcss": {
- "version": "7.0.39",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
- "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
+ "node_modules/react-dom": {
+ "version": "18.3.1",
+ "license": "MIT",
"dependencies": {
- "picocolors": "^0.2.1",
- "source-map": "^0.6.1"
- },
- "engines": {
- "node": ">=6.0.0"
+ "loose-envify": "^1.1.0",
+ "scheduler": "^0.23.2"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
+ "peerDependencies": {
+ "react": "^18.3.1"
}
},
- "node_modules/postcss-media-query-parser": {
- "version": "0.2.3",
- "dev": true,
- "license": "MIT"
+ "node_modules/react-dom/node_modules/scheduler": {
+ "version": "0.23.2",
+ "license": "MIT",
+ "dependencies": {
+ "loose-envify": "^1.1.0"
+ }
},
- "node_modules/postcss-merge-longhand": {
- "version": "5.1.7",
+ "node_modules/react-dropzone": {
+ "version": "14.3.5",
"license": "MIT",
"dependencies": {
- "postcss-value-parser": "^4.2.0",
- "stylehacks": "^5.1.1"
+ "attr-accept": "^2.2.4",
+ "file-selector": "^2.1.0",
+ "prop-types": "^15.8.1"
},
"engines": {
- "node": "^10 || ^12 || >=14.0"
+ "node": ">= 10.13"
},
"peerDependencies": {
- "postcss": "^8.2.15"
+ "react": ">= 16.8 || 18.0.0"
}
},
- "node_modules/postcss-merge-rules": {
- "version": "5.1.4",
+ "node_modules/react-dropzone/node_modules/file-selector": {
+ "version": "2.1.2",
"license": "MIT",
"dependencies": {
- "browserslist": "^4.21.4",
- "caniuse-api": "^3.0.0",
- "cssnano-utils": "^3.1.0",
- "postcss-selector-parser": "^6.0.5"
+ "tslib": "^2.7.0"
},
"engines": {
- "node": "^10 || ^12 || >=14.0"
- },
- "peerDependencies": {
- "postcss": "^8.2.15"
+ "node": ">= 12"
}
},
- "node_modules/postcss-minify": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/postcss-minify/-/postcss-minify-1.1.0.tgz",
- "integrity": "sha512-9D64ueIW0DL2FdLajQTlXrnTN8Ox9NjuXqigKMmB819RhdClNPYx5Zp3i5x0ghjjy3vGrLBBYEYvJjY/1eMNbw==",
+ "node_modules/react-error-overlay": {
+ "version": "6.0.11",
+ "license": "MIT"
+ },
+ "node_modules/react-fast-compare": {
+ "version": "3.2.2",
+ "license": "MIT"
+ },
+ "node_modules/react-focus-lock": {
+ "version": "2.13.2",
+ "license": "MIT",
"dependencies": {
- "postcss-selector-parser": "^6.0",
- "postcss-value-parser": "^4.1"
+ "@babel/runtime": "^7.0.0",
+ "focus-lock": "^1.3.5",
+ "prop-types": "^15.6.2",
+ "react-clientside-effect": "^1.2.6",
+ "use-callback-ref": "^1.3.2",
+ "use-sidecar": "^1.1.2"
},
"peerDependencies": {
- "postcss": "^8.0"
+ "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
}
},
- "node_modules/postcss-minify-font-values": {
- "version": "5.1.0",
+ "node_modules/react-focus-on": {
+ "version": "3.9.4",
"license": "MIT",
"dependencies": {
- "postcss-value-parser": "^4.2.0"
+ "aria-hidden": "^1.2.2",
+ "react-focus-lock": "^2.11.3",
+ "react-remove-scroll": "^2.6.0",
+ "react-style-singleton": "^2.2.1",
+ "tslib": "^2.3.1",
+ "use-sidecar": "^1.1.2"
},
"engines": {
- "node": "^10 || ^12 || >=14.0"
+ "node": ">=8.5.0"
},
"peerDependencies": {
- "postcss": "^8.2.15"
+ "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
}
},
- "node_modules/postcss-minify-gradients": {
- "version": "5.1.1",
+ "node_modules/react-helmet": {
+ "version": "6.1.0",
"license": "MIT",
"dependencies": {
- "colord": "^2.9.1",
- "cssnano-utils": "^3.1.0",
- "postcss-value-parser": "^4.2.0"
- },
- "engines": {
- "node": "^10 || ^12 || >=14.0"
+ "object-assign": "^4.1.1",
+ "prop-types": "^15.7.2",
+ "react-fast-compare": "^3.1.1",
+ "react-side-effect": "^2.1.0"
},
"peerDependencies": {
- "postcss": "^8.2.15"
+ "react": ">=16.3.0"
}
},
- "node_modules/postcss-minify-params": {
- "version": "5.1.4",
+ "node_modules/react-imask": {
+ "version": "7.6.1",
"license": "MIT",
"dependencies": {
- "browserslist": "^4.21.4",
- "cssnano-utils": "^3.1.0",
- "postcss-value-parser": "^4.2.0"
+ "imask": "^7.6.1",
+ "prop-types": "^15.8.1"
},
"engines": {
- "node": "^10 || ^12 || >=14.0"
+ "npm": ">=4.0.0"
},
"peerDependencies": {
- "postcss": "^8.2.15"
+ "react": ">=0.14.0"
}
},
- "node_modules/postcss-minify-selectors": {
- "version": "5.2.1",
- "license": "MIT",
+ "node_modules/react-intl": {
+ "version": "6.8.9",
+ "license": "BSD-3-Clause",
"dependencies": {
- "postcss-selector-parser": "^6.0.5"
- },
- "engines": {
- "node": "^10 || ^12 || >=14.0"
+ "@formatjs/ecma402-abstract": "2.2.4",
+ "@formatjs/icu-messageformat-parser": "2.9.4",
+ "@formatjs/intl": "2.10.15",
+ "@formatjs/intl-displaynames": "6.8.5",
+ "@formatjs/intl-listformat": "7.7.5",
+ "@types/hoist-non-react-statics": "3",
+ "@types/react": "16 || 17 || 18",
+ "hoist-non-react-statics": "3",
+ "intl-messageformat": "10.7.7",
+ "tslib": "2"
},
"peerDependencies": {
- "postcss": "^8.2.15"
+ "react": "^16.6.0 || 17 || 18",
+ "typescript": "^4.7 || 5"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
}
},
- "node_modules/postcss-modules-extract-imports": {
- "version": "3.0.0",
- "license": "ISC",
- "engines": {
- "node": "^10 || ^12 || >= 14"
- },
- "peerDependencies": {
- "postcss": "^8.1.0"
+ "node_modules/react-intl/node_modules/@formatjs/ecma402-abstract": {
+ "version": "2.2.4",
+ "license": "MIT",
+ "dependencies": {
+ "@formatjs/fast-memoize": "2.2.3",
+ "@formatjs/intl-localematcher": "0.5.8",
+ "tslib": "2"
}
},
- "node_modules/postcss-modules-local-by-default": {
- "version": "4.0.0",
+ "node_modules/react-intl/node_modules/@formatjs/fast-memoize": {
+ "version": "2.2.3",
"license": "MIT",
"dependencies": {
- "icss-utils": "^5.0.0",
- "postcss-selector-parser": "^6.0.2",
- "postcss-value-parser": "^4.1.0"
- },
- "engines": {
- "node": "^10 || ^12 || >= 14"
- },
- "peerDependencies": {
- "postcss": "^8.1.0"
+ "tslib": "2"
}
},
- "node_modules/postcss-modules-scope": {
- "version": "3.0.0",
- "license": "ISC",
+ "node_modules/react-intl/node_modules/@formatjs/icu-messageformat-parser": {
+ "version": "2.9.4",
+ "license": "MIT",
"dependencies": {
- "postcss-selector-parser": "^6.0.4"
- },
- "engines": {
- "node": "^10 || ^12 || >= 14"
- },
- "peerDependencies": {
- "postcss": "^8.1.0"
+ "@formatjs/ecma402-abstract": "2.2.4",
+ "@formatjs/icu-skeleton-parser": "1.8.8",
+ "tslib": "2"
}
},
- "node_modules/postcss-modules-values": {
- "version": "4.0.0",
- "license": "ISC",
+ "node_modules/react-intl/node_modules/@formatjs/icu-skeleton-parser": {
+ "version": "1.8.8",
+ "license": "MIT",
"dependencies": {
- "icss-utils": "^5.0.0"
- },
- "engines": {
- "node": "^10 || ^12 || >= 14"
- },
- "peerDependencies": {
- "postcss": "^8.1.0"
+ "@formatjs/ecma402-abstract": "2.2.4",
+ "tslib": "2"
}
},
- "node_modules/postcss-normalize-charset": {
- "version": "5.1.0",
+ "node_modules/react-intl/node_modules/@formatjs/intl": {
+ "version": "2.10.15",
"license": "MIT",
- "engines": {
- "node": "^10 || ^12 || >=14.0"
+ "dependencies": {
+ "@formatjs/ecma402-abstract": "2.2.4",
+ "@formatjs/fast-memoize": "2.2.3",
+ "@formatjs/icu-messageformat-parser": "2.9.4",
+ "@formatjs/intl-displaynames": "6.8.5",
+ "@formatjs/intl-listformat": "7.7.5",
+ "intl-messageformat": "10.7.7",
+ "tslib": "2"
},
"peerDependencies": {
- "postcss": "^8.2.15"
+ "typescript": "^4.7 || 5"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
}
},
- "node_modules/postcss-normalize-display-values": {
- "version": "5.1.0",
+ "node_modules/react-intl/node_modules/@formatjs/intl-displaynames": {
+ "version": "6.8.5",
"license": "MIT",
"dependencies": {
- "postcss-value-parser": "^4.2.0"
- },
- "engines": {
- "node": "^10 || ^12 || >=14.0"
- },
- "peerDependencies": {
- "postcss": "^8.2.15"
+ "@formatjs/ecma402-abstract": "2.2.4",
+ "@formatjs/intl-localematcher": "0.5.8",
+ "tslib": "2"
}
},
- "node_modules/postcss-normalize-positions": {
- "version": "5.1.1",
+ "node_modules/react-intl/node_modules/@formatjs/intl-listformat": {
+ "version": "7.7.5",
"license": "MIT",
"dependencies": {
- "postcss-value-parser": "^4.2.0"
- },
- "engines": {
- "node": "^10 || ^12 || >=14.0"
- },
- "peerDependencies": {
- "postcss": "^8.2.15"
+ "@formatjs/ecma402-abstract": "2.2.4",
+ "@formatjs/intl-localematcher": "0.5.8",
+ "tslib": "2"
}
},
- "node_modules/postcss-normalize-repeat-style": {
- "version": "5.1.1",
+ "node_modules/react-intl/node_modules/@formatjs/intl-localematcher": {
+ "version": "0.5.8",
"license": "MIT",
"dependencies": {
- "postcss-value-parser": "^4.2.0"
- },
- "engines": {
- "node": "^10 || ^12 || >=14.0"
- },
- "peerDependencies": {
- "postcss": "^8.2.15"
+ "tslib": "2"
}
},
- "node_modules/postcss-normalize-string": {
- "version": "5.1.0",
+ "node_modules/react-intl/node_modules/intl-messageformat": {
+ "version": "10.7.7",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "@formatjs/ecma402-abstract": "2.2.4",
+ "@formatjs/fast-memoize": "2.2.3",
+ "@formatjs/icu-messageformat-parser": "2.9.4",
+ "tslib": "2"
+ }
+ },
+ "node_modules/react-is": {
+ "version": "16.13.1",
+ "license": "MIT"
+ },
+ "node_modules/react-lifecycles-compat": {
+ "version": "3.0.4",
+ "license": "MIT"
+ },
+ "node_modules/react-live": {
+ "version": "2.4.1",
"license": "MIT",
"dependencies": {
- "postcss-value-parser": "^4.2.0"
- },
- "engines": {
- "node": "^10 || ^12 || >=14.0"
+ "@types/buble": "^0.20.0",
+ "buble": "0.19.6",
+ "core-js": "^3.14.0",
+ "dom-iterator": "^1.0.0",
+ "prism-react-renderer": "^1.2.1",
+ "prop-types": "^15.7.2",
+ "react-simple-code-editor": "^0.11.0",
+ "unescape": "^1.0.1"
},
+ "engines": {
+ "node": ">= 0.12.0",
+ "npm": ">= 2.0.0"
+ }
+ },
+ "node_modules/react-loading-skeleton": {
+ "version": "3.5.0",
+ "license": "MIT",
"peerDependencies": {
- "postcss": "^8.2.15"
+ "react": ">=16.8.0"
}
},
- "node_modules/postcss-normalize-timing-functions": {
- "version": "5.1.0",
+ "node_modules/react-markdown": {
+ "version": "9.0.1",
"license": "MIT",
"dependencies": {
- "postcss-value-parser": "^4.2.0"
+ "@types/hast": "^3.0.0",
+ "devlop": "^1.0.0",
+ "hast-util-to-jsx-runtime": "^2.0.0",
+ "html-url-attributes": "^3.0.0",
+ "mdast-util-to-hast": "^13.0.0",
+ "remark-parse": "^11.0.0",
+ "remark-rehype": "^11.0.0",
+ "unified": "^11.0.0",
+ "unist-util-visit": "^5.0.0",
+ "vfile": "^6.0.0"
},
- "engines": {
- "node": "^10 || ^12 || >=14.0"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
},
"peerDependencies": {
- "postcss": "^8.2.15"
+ "@types/react": ">=18",
+ "react": ">=18"
}
},
- "node_modules/postcss-normalize-unicode": {
- "version": "5.1.1",
+ "node_modules/react-markdown/node_modules/@types/debug": {
+ "version": "4.1.12",
"license": "MIT",
"dependencies": {
- "browserslist": "^4.21.4",
- "postcss-value-parser": "^4.2.0"
- },
- "engines": {
- "node": "^10 || ^12 || >=14.0"
- },
- "peerDependencies": {
- "postcss": "^8.2.15"
+ "@types/ms": "*"
}
},
- "node_modules/postcss-normalize-url": {
- "version": "5.1.0",
+ "node_modules/react-markdown/node_modules/@types/hast": {
+ "version": "3.0.4",
"license": "MIT",
"dependencies": {
- "normalize-url": "^6.0.1",
- "postcss-value-parser": "^4.2.0"
- },
- "engines": {
- "node": "^10 || ^12 || >=14.0"
- },
- "peerDependencies": {
- "postcss": "^8.2.15"
+ "@types/unist": "*"
}
},
- "node_modules/postcss-normalize-whitespace": {
- "version": "5.1.1",
+ "node_modules/react-markdown/node_modules/@types/mdast": {
+ "version": "4.0.4",
"license": "MIT",
"dependencies": {
- "postcss-value-parser": "^4.2.0"
- },
- "engines": {
- "node": "^10 || ^12 || >=14.0"
- },
- "peerDependencies": {
- "postcss": "^8.2.15"
+ "@types/unist": "*"
}
},
- "node_modules/postcss-ordered-values": {
- "version": "5.1.3",
+ "node_modules/react-markdown/node_modules/@types/unist": {
+ "version": "3.0.3",
+ "license": "MIT"
+ },
+ "node_modules/react-markdown/node_modules/debug": {
+ "version": "4.4.0",
"license": "MIT",
"dependencies": {
- "cssnano-utils": "^3.1.0",
- "postcss-value-parser": "^4.2.0"
+ "ms": "^2.1.3"
},
"engines": {
- "node": "^10 || ^12 || >=14.0"
+ "node": ">=6.0"
},
- "peerDependencies": {
- "postcss": "^8.2.15"
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
}
},
- "node_modules/postcss-reduce-initial": {
- "version": "5.1.2",
+ "node_modules/react-markdown/node_modules/is-plain-obj": {
+ "version": "4.1.0",
"license": "MIT",
- "dependencies": {
- "browserslist": "^4.21.4",
- "caniuse-api": "^3.0.0"
- },
"engines": {
- "node": "^10 || ^12 || >=14.0"
+ "node": ">=12"
},
- "peerDependencies": {
- "postcss": "^8.2.15"
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/postcss-reduce-transforms": {
- "version": "5.1.0",
+ "node_modules/react-markdown/node_modules/mdast-util-from-markdown": {
+ "version": "2.0.2",
"license": "MIT",
"dependencies": {
- "postcss-value-parser": "^4.2.0"
- },
- "engines": {
- "node": "^10 || ^12 || >=14.0"
+ "@types/mdast": "^4.0.0",
+ "@types/unist": "^3.0.0",
+ "decode-named-character-reference": "^1.0.0",
+ "devlop": "^1.0.0",
+ "mdast-util-to-string": "^4.0.0",
+ "micromark": "^4.0.0",
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
+ "micromark-util-decode-string": "^2.0.0",
+ "micromark-util-normalize-identifier": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0",
+ "unist-util-stringify-position": "^4.0.0"
},
- "peerDependencies": {
- "postcss": "^8.2.15"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/postcss-resolve-nested-selector": {
- "version": "0.1.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/postcss-rtlcss": {
- "version": "3.7.2",
- "dev": true,
- "license": "Apache-2.0",
+ "node_modules/react-markdown/node_modules/mdast-util-to-hast": {
+ "version": "13.2.0",
+ "license": "MIT",
"dependencies": {
- "rtlcss": "^3.5.0"
+ "@types/hast": "^3.0.0",
+ "@types/mdast": "^4.0.0",
+ "@ungap/structured-clone": "^1.0.0",
+ "devlop": "^1.0.0",
+ "micromark-util-sanitize-uri": "^2.0.0",
+ "trim-lines": "^3.0.0",
+ "unist-util-position": "^5.0.0",
+ "unist-util-visit": "^5.0.0",
+ "vfile": "^6.0.0"
},
- "engines": {
- "node": ">=12.0.0"
- },
- "peerDependencies": {
- "postcss": "^8.0.0"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/postcss-safe-parser": {
- "version": "6.0.0",
- "dev": true,
+ "node_modules/react-markdown/node_modules/mdast-util-to-string": {
+ "version": "4.0.0",
"license": "MIT",
- "engines": {
- "node": ">=12.0"
+ "dependencies": {
+ "@types/mdast": "^4.0.0"
},
"funding": {
"type": "opencollective",
- "url": "https://opencollective.com/postcss/"
- },
- "peerDependencies": {
- "postcss": "^8.3.3"
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/postcss-scss": {
- "version": "4.0.6",
- "dev": true,
+ "node_modules/react-markdown/node_modules/micromark": {
+ "version": "4.0.1",
"funding": [
{
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
},
{
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/postcss-scss"
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
}
],
"license": "MIT",
- "engines": {
- "node": ">=12.0"
- },
- "peerDependencies": {
- "postcss": "^8.4.19"
- }
- },
- "node_modules/postcss-selector-parser": {
- "version": "6.0.11",
+ "dependencies": {
+ "@types/debug": "^4.0.0",
+ "debug": "^4.0.0",
+ "decode-named-character-reference": "^1.0.0",
+ "devlop": "^1.0.0",
+ "micromark-core-commonmark": "^2.0.0",
+ "micromark-factory-space": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-chunked": "^2.0.0",
+ "micromark-util-combine-extensions": "^2.0.0",
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
+ "micromark-util-encode": "^2.0.0",
+ "micromark-util-normalize-identifier": "^2.0.0",
+ "micromark-util-resolve-all": "^2.0.0",
+ "micromark-util-sanitize-uri": "^2.0.0",
+ "micromark-util-subtokenize": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/react-markdown/node_modules/micromark-core-commonmark": {
+ "version": "2.0.2",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "cssesc": "^3.0.0",
- "util-deprecate": "^1.0.2"
- },
- "engines": {
- "node": ">=4"
+ "decode-named-character-reference": "^1.0.0",
+ "devlop": "^1.0.0",
+ "micromark-factory-destination": "^2.0.0",
+ "micromark-factory-label": "^2.0.0",
+ "micromark-factory-space": "^2.0.0",
+ "micromark-factory-title": "^2.0.0",
+ "micromark-factory-whitespace": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-chunked": "^2.0.0",
+ "micromark-util-classify-character": "^2.0.0",
+ "micromark-util-html-tag-name": "^2.0.0",
+ "micromark-util-normalize-identifier": "^2.0.0",
+ "micromark-util-resolve-all": "^2.0.0",
+ "micromark-util-subtokenize": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/react-markdown/node_modules/micromark-factory-destination": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/postcss-svgo": {
- "version": "5.1.0",
+ "node_modules/react-markdown/node_modules/micromark-factory-label": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "postcss-value-parser": "^4.2.0",
- "svgo": "^2.7.0"
- },
- "engines": {
- "node": "^10 || ^12 || >=14.0"
- },
- "peerDependencies": {
- "postcss": "^8.2.15"
+ "devlop": "^1.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/postcss-unique-selectors": {
- "version": "5.1.1",
+ "node_modules/react-markdown/node_modules/micromark-factory-space": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "postcss-selector-parser": "^6.0.5"
- },
- "engines": {
- "node": "^10 || ^12 || >=14.0"
- },
- "peerDependencies": {
- "postcss": "^8.2.15"
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/postcss-value-parser": {
- "version": "4.2.0",
- "license": "MIT"
- },
- "node_modules/prebuild-install": {
- "version": "7.1.1",
+ "node_modules/react-markdown/node_modules/micromark-factory-title": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "detect-libc": "^2.0.0",
- "expand-template": "^2.0.3",
- "github-from-package": "0.0.0",
- "minimist": "^1.2.3",
- "mkdirp-classic": "^0.5.3",
- "napi-build-utils": "^1.0.1",
- "node-abi": "^3.3.0",
- "pump": "^3.0.0",
- "rc": "^1.2.7",
- "simple-get": "^4.0.0",
- "tar-fs": "^2.0.0",
- "tunnel-agent": "^0.6.0"
- },
- "bin": {
- "prebuild-install": "bin.js"
- },
- "engines": {
- "node": ">=10"
+ "micromark-factory-space": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/prebuild-install/node_modules/detect-libc": {
+ "node_modules/react-markdown/node_modules/micromark-factory-whitespace": {
"version": "2.0.1",
- "license": "Apache-2.0",
- "engines": {
- "node": ">=8"
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "micromark-factory-space": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/prelude-ls": {
- "version": "1.2.1",
+ "node_modules/react-markdown/node_modules/micromark-util-character": {
+ "version": "2.1.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
- "engines": {
- "node": ">= 0.8.0"
+ "dependencies": {
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/prepend-http": {
- "version": "2.0.0",
+ "node_modules/react-markdown/node_modules/micromark-util-chunked": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
- "engines": {
- "node": ">=4"
+ "dependencies": {
+ "micromark-util-symbol": "^2.0.0"
}
},
- "node_modules/prettier": {
- "version": "2.8.8",
- "dev": true,
+ "node_modules/react-markdown/node_modules/micromark-util-classify-character": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
- "bin": {
- "prettier": "bin-prettier.js"
- },
- "engines": {
- "node": ">=10.13.0"
- },
- "funding": {
- "url": "https://github.com/prettier/prettier?sponsor=1"
+ "dependencies": {
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/pretty-bytes": {
- "version": "5.6.0",
+ "node_modules/react-markdown/node_modules/micromark-util-combine-extensions": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "dependencies": {
+ "micromark-util-chunked": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/pretty-error": {
- "version": "2.1.2",
+ "node_modules/react-markdown/node_modules/micromark-util-decode-numeric-character-reference": {
+ "version": "2.0.2",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "lodash": "^4.17.20",
- "renderkid": "^2.0.4"
+ "micromark-util-symbol": "^2.0.0"
}
},
- "node_modules/pretty-format": {
- "version": "27.5.1",
- "dev": true,
+ "node_modules/react-markdown/node_modules/micromark-util-decode-string": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "ansi-regex": "^5.0.1",
- "ansi-styles": "^5.0.0",
- "react-is": "^17.0.1"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ "decode-named-character-reference": "^1.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0"
}
},
- "node_modules/pretty-format/node_modules/ansi-styles": {
- "version": "5.2.0",
- "dev": true,
+ "node_modules/react-markdown/node_modules/micromark-util-encode": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/react-markdown/node_modules/micromark-util-html-tag-name": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/react-markdown/node_modules/micromark-util-normalize-identifier": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "dependencies": {
+ "micromark-util-symbol": "^2.0.0"
}
},
- "node_modules/prism-react-renderer": {
- "version": "1.3.5",
+ "node_modules/react-markdown/node_modules/micromark-util-resolve-all": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
- "peerDependencies": {
- "react": ">=0.14.9"
+ "dependencies": {
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/private": {
- "version": "0.1.8",
- "dev": true,
+ "node_modules/react-markdown/node_modules/micromark-util-sanitize-uri": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
- "engines": {
- "node": ">= 0.6"
+ "dependencies": {
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-encode": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0"
}
},
- "node_modules/process": {
- "version": "0.11.10",
- "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
- "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==",
- "engines": {
- "node": ">= 0.6.0"
+ "node_modules/react-markdown/node_modules/micromark-util-subtokenize": {
+ "version": "2.0.3",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "devlop": "^1.0.0",
+ "micromark-util-chunked": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/process-nextick-args": {
+ "node_modules/react-markdown/node_modules/micromark-util-symbol": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/react-markdown/node_modules/micromark-util-types": {
"version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT"
},
- "node_modules/progress": {
- "version": "2.0.3",
+ "node_modules/react-markdown/node_modules/remark-parse": {
+ "version": "11.0.0",
"license": "MIT",
- "engines": {
- "node": ">=0.4.0"
+ "dependencies": {
+ "@types/mdast": "^4.0.0",
+ "mdast-util-from-markdown": "^2.0.0",
+ "micromark-util-types": "^2.0.0",
+ "unified": "^11.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/promise": {
- "version": "7.3.1",
+ "node_modules/react-markdown/node_modules/remark-rehype": {
+ "version": "11.1.1",
"license": "MIT",
"dependencies": {
- "asap": "~2.0.3"
+ "@types/hast": "^3.0.0",
+ "@types/mdast": "^4.0.0",
+ "mdast-util-to-hast": "^13.0.0",
+ "unified": "^11.0.0",
+ "vfile": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/prompts": {
- "version": "2.4.2",
+ "node_modules/react-markdown/node_modules/unified": {
+ "version": "11.0.5",
"license": "MIT",
"dependencies": {
- "kleur": "^3.0.3",
- "sisteransi": "^1.0.5"
+ "@types/unist": "^3.0.0",
+ "bail": "^2.0.0",
+ "devlop": "^1.0.0",
+ "extend": "^3.0.0",
+ "is-plain-obj": "^4.0.0",
+ "trough": "^2.0.0",
+ "vfile": "^6.0.0"
},
- "engines": {
- "node": ">= 6"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/prop-types": {
- "version": "15.8.1",
+ "node_modules/react-markdown/node_modules/unist-util-is": {
+ "version": "6.0.0",
"license": "MIT",
"dependencies": {
- "loose-envify": "^1.4.0",
- "object-assign": "^4.1.1",
- "react-is": "^16.13.1"
+ "@types/unist": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/prop-types-extra": {
- "version": "1.1.1",
+ "node_modules/react-markdown/node_modules/unist-util-position": {
+ "version": "5.0.0",
"license": "MIT",
"dependencies": {
- "react-is": "^16.3.2",
- "warning": "^4.0.0"
+ "@types/unist": "^3.0.0"
},
- "peerDependencies": {
- "react": ">=0.14.0"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/prop-types-extra/node_modules/react-is": {
- "version": "16.13.1",
- "license": "MIT"
+ "node_modules/react-markdown/node_modules/unist-util-stringify-position": {
+ "version": "4.0.0",
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
},
- "node_modules/prop-types/node_modules/react-is": {
- "version": "16.13.1",
- "license": "MIT"
+ "node_modules/react-markdown/node_modules/unist-util-visit": {
+ "version": "5.0.0",
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^3.0.0",
+ "unist-util-is": "^6.0.0",
+ "unist-util-visit-parents": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
},
- "node_modules/proper-lockfile": {
- "version": "4.1.2",
+ "node_modules/react-markdown/node_modules/unist-util-visit-parents": {
+ "version": "6.0.1",
"license": "MIT",
"dependencies": {
- "graceful-fs": "^4.2.4",
- "retry": "^0.12.0",
- "signal-exit": "^3.0.2"
+ "@types/unist": "^3.0.0",
+ "unist-util-is": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/proper-lockfile/node_modules/retry": {
- "version": "0.12.0",
+ "node_modules/react-markdown/node_modules/vfile": {
+ "version": "6.0.3",
"license": "MIT",
- "engines": {
- "node": ">= 4"
+ "dependencies": {
+ "@types/unist": "^3.0.0",
+ "vfile-message": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/property-information": {
- "version": "5.6.0",
+ "node_modules/react-markdown/node_modules/vfile-message": {
+ "version": "4.0.2",
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^3.0.0",
+ "unist-util-stringify-position": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/react-overlays": {
+ "version": "5.2.1",
"license": "MIT",
"dependencies": {
- "xtend": "^4.0.0"
+ "@babel/runtime": "^7.13.8",
+ "@popperjs/core": "^2.11.6",
+ "@restart/hooks": "^0.4.7",
+ "@types/warning": "^3.0.0",
+ "dom-helpers": "^5.2.0",
+ "prop-types": "^15.7.2",
+ "uncontrollable": "^7.2.1",
+ "warning": "^4.0.3"
},
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "peerDependencies": {
+ "react": ">=16.3.0",
+ "react-dom": ">=16.3.0"
}
},
- "node_modules/proto-list": {
- "version": "1.2.4",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/protocols": {
- "version": "2.0.1",
- "license": "MIT"
- },
- "node_modules/proxy-addr": {
- "version": "2.0.7",
+ "node_modules/react-popper": {
+ "version": "2.3.0",
"license": "MIT",
"dependencies": {
- "forwarded": "0.2.0",
- "ipaddr.js": "1.9.1"
+ "react-fast-compare": "^3.0.1",
+ "warning": "^4.0.2"
},
- "engines": {
- "node": ">= 0.10"
+ "peerDependencies": {
+ "@popperjs/core": "^2.0.0",
+ "react": "^16.8.0 || ^17 || ^18",
+ "react-dom": "^16.8.0 || ^17 || ^18"
}
},
- "node_modules/proxy-from-env": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
- "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg=="
- },
- "node_modules/pseudomap": {
- "version": "1.0.2",
- "license": "ISC"
- },
- "node_modules/psl": {
- "version": "1.9.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/pubsub-js": {
- "version": "1.9.4",
+ "node_modules/react-proptype-conditional-require": {
+ "version": "1.0.4",
"license": "MIT"
},
- "node_modules/pump": {
- "version": "3.0.0",
+ "node_modules/react-redux": {
+ "version": "7.2.9",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "end-of-stream": "^1.1.0",
- "once": "^1.3.1"
+ "@babel/runtime": "^7.15.4",
+ "@types/react-redux": "^7.1.20",
+ "hoist-non-react-statics": "^3.3.2",
+ "loose-envify": "^1.4.0",
+ "prop-types": "^15.7.2",
+ "react-is": "^17.0.2"
+ },
+ "peerDependencies": {
+ "react": "^16.8.3 || ^17 || ^18"
+ },
+ "peerDependenciesMeta": {
+ "react-dom": {
+ "optional": true
+ },
+ "react-native": {
+ "optional": true
+ }
}
},
- "node_modules/punycode": {
- "version": "2.3.0",
+ "node_modules/react-redux/node_modules/react-is": {
+ "version": "17.0.2",
+ "license": "MIT",
+ "peer": true
+ },
+ "node_modules/react-refresh": {
+ "version": "0.14.0",
"license": "MIT",
"engines": {
- "node": ">=6"
+ "node": ">=0.10.0"
}
},
- "node_modules/pupa": {
- "version": "2.1.1",
+ "node_modules/react-remove-scroll": {
+ "version": "2.6.0",
"license": "MIT",
"dependencies": {
- "escape-goat": "^2.0.0"
+ "react-remove-scroll-bar": "^2.3.6",
+ "react-style-singleton": "^2.2.1",
+ "tslib": "^2.1.0",
+ "use-callback-ref": "^1.3.0",
+ "use-sidecar": "^1.1.2"
},
"engines": {
- "node": ">=8"
- }
- },
- "node_modules/pure-rand": {
- "version": "6.1.0",
- "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz",
- "integrity": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==",
- "dev": true,
- "funding": [
- {
- "type": "individual",
- "url": "https://github.com/sponsors/dubzzz"
- },
- {
- "type": "opencollective",
- "url": "https://opencollective.com/fast-check"
+ "node": ">=10"
+ },
+ "peerDependencies": {
+ "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
}
- ]
+ }
},
- "node_modules/purgecss": {
- "version": "5.0.0",
- "dev": true,
+ "node_modules/react-remove-scroll-bar": {
+ "version": "2.3.6",
"license": "MIT",
"dependencies": {
- "commander": "^9.0.0",
- "glob": "^8.0.3",
- "postcss": "^8.4.4",
- "postcss-selector-parser": "^6.0.7"
+ "react-style-singleton": "^2.2.1",
+ "tslib": "^2.0.0"
},
- "bin": {
- "purgecss": "bin/purgecss.js"
- }
- },
- "node_modules/q": {
- "version": "1.5.1",
- "dev": true,
- "license": "MIT",
"engines": {
- "node": ">=0.6.0",
- "teleport": ">=0.2.0"
+ "node": ">=10"
+ },
+ "peerDependencies": {
+ "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
}
},
- "node_modules/qs": {
- "version": "6.11.0",
- "license": "BSD-3-Clause",
+ "node_modules/react-responsive": {
+ "version": "8.2.0",
+ "license": "MIT",
"dependencies": {
- "side-channel": "^1.0.4"
+ "hyphenate-style-name": "^1.0.0",
+ "matchmediaquery": "^0.3.0",
+ "prop-types": "^15.6.1",
+ "shallow-equal": "^1.1.0"
},
"engines": {
- "node": ">=0.6"
+ "node": ">= 0.10"
},
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "peerDependencies": {
+ "react": ">=16.8.0"
}
},
- "node_modules/query-string": {
- "version": "7.0.1",
+ "node_modules/react-router": {
+ "version": "6.28.1",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "decode-uri-component": "^0.2.0",
- "filter-obj": "^1.1.0",
- "split-on-first": "^1.0.0",
- "strict-uri-encode": "^2.0.0"
+ "@remix-run/router": "1.21.0"
},
"engines": {
- "node": ">=6"
+ "node": ">=14.0.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "peerDependencies": {
+ "react": ">=16.8"
}
},
- "node_modules/querystringify": {
- "version": "2.2.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/queue-microtask": {
- "version": "1.2.3",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "MIT"
- },
- "node_modules/quick-lru": {
- "version": "4.0.1",
- "dev": true,
+ "node_modules/react-router-dom": {
+ "version": "6.28.1",
"license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@remix-run/router": "1.21.0",
+ "react-router": "6.28.1"
+ },
"engines": {
- "node": ">=8"
+ "node": ">=14.0.0"
+ },
+ "peerDependencies": {
+ "react": ">=16.8",
+ "react-dom": ">=16.8"
}
},
- "node_modules/randombytes": {
- "version": "2.1.0",
+ "node_modules/react-server-dom-webpack": {
+ "version": "0.0.0-experimental-c8b778b7f-20220825",
"license": "MIT",
"dependencies": {
- "safe-buffer": "^5.1.0"
+ "acorn": "^6.2.1",
+ "loose-envify": "^1.1.0",
+ "neo-async": "^2.6.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ },
+ "peerDependencies": {
+ "react": "0.0.0-experimental-c8b778b7f-20220825",
+ "webpack": "^5.59.0"
}
},
- "node_modules/range-parser": {
- "version": "1.2.1",
+ "node_modules/react-server-dom-webpack/node_modules/acorn": {
+ "version": "6.4.2",
"license": "MIT",
+ "bin": {
+ "acorn": "bin/acorn"
+ },
"engines": {
- "node": ">= 0.6"
+ "node": ">=0.4.0"
}
},
- "node_modules/raw-body": {
- "version": "2.5.2",
- "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz",
- "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==",
+ "node_modules/react-shallow-renderer": {
+ "version": "16.15.0",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "bytes": "3.1.2",
- "http-errors": "2.0.0",
- "iconv-lite": "0.4.24",
- "unpipe": "1.0.0"
+ "object-assign": "^4.1.1",
+ "react-is": "^16.12.0 || ^17.0.0 || ^18.0.0"
},
- "engines": {
- "node": ">= 0.8"
+ "peerDependencies": {
+ "react": "^16.0.0 || ^17.0.0 || ^18.0.0"
}
},
- "node_modules/raw-body/node_modules/bytes": {
- "version": "3.1.2",
+ "node_modules/react-side-effect": {
+ "version": "2.1.2",
"license": "MIT",
- "engines": {
- "node": ">= 0.8"
+ "peerDependencies": {
+ "react": "^16.3.0 || ^17.0.0 || ^18.0.0"
}
},
- "node_modules/raw-body/node_modules/iconv-lite": {
- "version": "0.4.24",
+ "node_modules/react-simple-code-editor": {
+ "version": "0.11.3",
"license": "MIT",
- "dependencies": {
- "safer-buffer": ">= 2.1.2 < 3"
- },
- "engines": {
- "node": ">=0.10.0"
+ "peerDependencies": {
+ "react": "*",
+ "react-dom": "*"
}
},
- "node_modules/raw-loader": {
- "version": "4.0.2",
+ "node_modules/react-style-singleton": {
+ "version": "2.2.1",
"license": "MIT",
"dependencies": {
- "loader-utils": "^2.0.0",
- "schema-utils": "^3.0.0"
+ "get-nonce": "^1.0.0",
+ "invariant": "^2.2.4",
+ "tslib": "^2.0.0"
},
"engines": {
- "node": ">= 10.13.0"
+ "node": ">=10"
+ },
+ "peerDependencies": {
+ "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/react-table": {
+ "version": "7.8.0",
+ "license": "MIT",
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
+ "type": "github",
+ "url": "https://github.com/sponsors/tannerlinsley"
},
"peerDependencies": {
- "webpack": "^4.0.0 || ^5.0.0"
+ "react": "^16.8.3 || ^17.0.0-0 || ^18.0.0"
}
},
- "node_modules/raw-loader/node_modules/schema-utils": {
- "version": "3.1.2",
+ "node_modules/react-test-renderer": {
+ "version": "18.3.1",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@types/json-schema": "^7.0.8",
- "ajv": "^6.12.5",
- "ajv-keywords": "^3.5.2"
- },
- "engines": {
- "node": ">= 10.13.0"
+ "react-is": "^18.3.1",
+ "react-shallow-renderer": "^16.15.0",
+ "scheduler": "^0.23.2"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
+ "peerDependencies": {
+ "react": "^18.3.1"
}
},
- "node_modules/rc": {
- "version": "1.2.8",
- "license": "(BSD-2-Clause OR MIT OR Apache-2.0)",
+ "node_modules/react-test-renderer/node_modules/react-is": {
+ "version": "18.3.1",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/react-test-renderer/node_modules/scheduler": {
+ "version": "0.23.2",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "deep-extend": "^0.6.0",
- "ini": "~1.3.0",
- "minimist": "^1.2.0",
- "strip-json-comments": "~2.0.1"
+ "loose-envify": "^1.1.0"
+ }
+ },
+ "node_modules/react-transition-group": {
+ "version": "4.4.5",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "@babel/runtime": "^7.5.5",
+ "dom-helpers": "^5.0.1",
+ "loose-envify": "^1.4.0",
+ "prop-types": "^15.6.2"
},
- "bin": {
- "rc": "cli.js"
+ "peerDependencies": {
+ "react": ">=16.6.0",
+ "react-dom": ">=16.6.0"
}
},
- "node_modules/rc/node_modules/strip-json-comments": {
- "version": "2.0.1",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "node_modules/react-universal-interface": {
+ "version": "0.6.2",
+ "dev": true,
+ "peerDependencies": {
+ "react": "*",
+ "tslib": "*"
}
},
- "node_modules/re-resizable": {
- "version": "6.9.9",
+ "node_modules/react-use": {
+ "version": "17.6.0",
"dev": true,
- "license": "MIT",
+ "license": "Unlicense",
+ "dependencies": {
+ "@types/js-cookie": "^2.2.6",
+ "@xobotyi/scrollbar-width": "^1.9.5",
+ "copy-to-clipboard": "^3.3.1",
+ "fast-deep-equal": "^3.1.3",
+ "fast-shallow-equal": "^1.0.0",
+ "js-cookie": "^2.2.1",
+ "nano-css": "^5.6.2",
+ "react-universal-interface": "^0.6.2",
+ "resize-observer-polyfill": "^1.5.1",
+ "screenfull": "^5.1.0",
+ "set-harmonic-interval": "^1.0.1",
+ "throttle-debounce": "^3.0.1",
+ "ts-easing": "^0.2.0",
+ "tslib": "^2.1.0"
+ },
"peerDependencies": {
- "react": "^16.13.1 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0"
+ "react": "*",
+ "react-dom": "*"
}
},
- "node_modules/react": {
- "version": "17.0.2",
- "license": "MIT",
+ "node_modules/read": {
+ "version": "1.0.7",
+ "license": "ISC",
"dependencies": {
- "loose-envify": "^1.1.0",
- "object-assign": "^4.1.1"
+ "mute-stream": "~0.0.4"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=0.8"
}
},
- "node_modules/react-axe": {
- "version": "3.5.4",
- "license": "MPL-2.0",
+ "node_modules/read-cache": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz",
+ "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==",
+ "license": "MIT",
"dependencies": {
- "axe-core": "^3.5.0",
- "requestidlecallback": "^0.3.0"
+ "pify": "^2.3.0"
}
},
- "node_modules/react-axe/node_modules/axe-core": {
- "version": "3.5.6",
- "license": "MPL-2.0",
+ "node_modules/read-cache/node_modules/pify": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+ "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==",
+ "license": "MIT",
"engines": {
- "node": ">=4"
+ "node": ">=0.10.0"
}
},
- "node_modules/react-bootstrap": {
- "version": "1.6.6",
+ "node_modules/read-pkg": {
+ "version": "5.2.0",
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.14.0",
- "@restart/context": "^2.1.4",
- "@restart/hooks": "^0.4.7",
- "@types/invariant": "^2.2.33",
- "@types/prop-types": "^15.7.3",
- "@types/react": ">=16.14.8",
- "@types/react-transition-group": "^4.4.1",
- "@types/warning": "^3.0.0",
- "classnames": "^2.3.1",
- "dom-helpers": "^5.2.1",
- "invariant": "^2.2.4",
- "prop-types": "^15.7.2",
- "prop-types-extra": "^1.1.0",
- "react-overlays": "^5.1.2",
- "react-transition-group": "^4.4.1",
- "uncontrollable": "^7.2.1",
- "warning": "^4.0.3"
+ "@types/normalize-package-data": "^2.4.0",
+ "normalize-package-data": "^2.5.0",
+ "parse-json": "^5.0.0",
+ "type-fest": "^0.6.0"
},
- "peerDependencies": {
- "react": ">=16.8.0",
- "react-dom": ">=16.8.0"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/react-clientside-effect": {
- "version": "1.2.6",
+ "node_modules/read-pkg-up": {
+ "version": "7.0.1",
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.12.13"
+ "find-up": "^4.1.0",
+ "read-pkg": "^5.2.0",
+ "type-fest": "^0.8.1"
},
- "peerDependencies": {
- "react": "^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/react-colorful": {
- "version": "5.6.1",
+ "node_modules/read-pkg-up/node_modules/find-up": {
+ "version": "4.1.0",
"license": "MIT",
- "peerDependencies": {
- "react": ">=16.8.0",
- "react-dom": ">=16.8.0"
+ "dependencies": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/react-dev-utils": {
- "version": "12.0.1",
+ "node_modules/read-pkg-up/node_modules/locate-path": {
+ "version": "5.0.0",
"license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.16.0",
- "address": "^1.1.2",
- "browserslist": "^4.18.1",
- "chalk": "^4.1.2",
- "cross-spawn": "^7.0.3",
- "detect-port-alt": "^1.1.6",
- "escape-string-regexp": "^4.0.0",
- "filesize": "^8.0.6",
- "find-up": "^5.0.0",
- "fork-ts-checker-webpack-plugin": "^6.5.0",
- "global-modules": "^2.0.0",
- "globby": "^11.0.4",
- "gzip-size": "^6.0.0",
- "immer": "^9.0.7",
- "is-root": "^2.1.0",
- "loader-utils": "^3.2.0",
- "open": "^8.4.0",
- "pkg-up": "^3.1.0",
- "prompts": "^2.4.2",
- "react-error-overlay": "^6.0.11",
- "recursive-readdir": "^2.2.2",
- "shell-quote": "^1.7.3",
- "strip-ansi": "^6.0.1",
- "text-table": "^0.2.0"
+ "p-locate": "^4.1.0"
},
"engines": {
- "node": ">=14"
+ "node": ">=8"
}
},
- "node_modules/react-dev-utils/node_modules/escape-string-regexp": {
- "version": "4.0.0",
+ "node_modules/read-pkg-up/node_modules/p-limit": {
+ "version": "2.3.0",
"license": "MIT",
+ "dependencies": {
+ "p-try": "^2.0.0"
+ },
"engines": {
- "node": ">=10"
+ "node": ">=6"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/react-dev-utils/node_modules/find-up": {
- "version": "5.0.0",
- "license": "MIT",
- "dependencies": {
- "locate-path": "^6.0.0",
- "path-exists": "^4.0.0"
- },
+ "node_modules/read-pkg-up/node_modules/p-locate": {
+ "version": "4.1.0",
+ "license": "MIT",
+ "dependencies": {
+ "p-limit": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/read-pkg-up/node_modules/type-fest": {
+ "version": "0.8.1",
+ "license": "(MIT OR CC0-1.0)",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/read-pkg/node_modules/type-fest": {
+ "version": "0.6.0",
+ "license": "(MIT OR CC0-1.0)",
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=8"
}
},
- "node_modules/react-dev-utils/node_modules/loader-utils": {
- "version": "3.2.1",
+ "node_modules/readable-stream": {
+ "version": "2.3.8",
"license": "MIT",
- "engines": {
- "node": ">= 12.13.0"
+ "dependencies": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
}
},
- "node_modules/react-dev-utils/node_modules/locate-path": {
- "version": "6.0.0",
+ "node_modules/readable-stream/node_modules/isarray": {
+ "version": "1.0.0",
+ "license": "MIT"
+ },
+ "node_modules/readable-stream/node_modules/safe-buffer": {
+ "version": "5.1.2",
+ "license": "MIT"
+ },
+ "node_modules/readable-web-to-node-stream": {
+ "version": "3.0.2",
"license": "MIT",
"dependencies": {
- "p-locate": "^5.0.0"
+ "readable-stream": "^3.6.0"
},
"engines": {
- "node": ">=10"
+ "node": ">=8"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "type": "github",
+ "url": "https://github.com/sponsors/Borewit"
}
},
- "node_modules/react-dev-utils/node_modules/open": {
- "version": "8.4.2",
+ "node_modules/readable-web-to-node-stream/node_modules/readable-stream": {
+ "version": "3.6.2",
"license": "MIT",
"dependencies": {
- "define-lazy-prop": "^2.0.0",
- "is-docker": "^2.1.1",
- "is-wsl": "^2.2.0"
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
},
"engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">= 6"
}
},
- "node_modules/react-dev-utils/node_modules/p-locate": {
- "version": "5.0.0",
+ "node_modules/readdirp": {
+ "version": "3.6.0",
"license": "MIT",
"dependencies": {
- "p-limit": "^3.0.2"
+ "picomatch": "^2.2.1"
},
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=8.10.0"
}
},
- "node_modules/react-docgen": {
- "version": "5.4.3",
+ "node_modules/recast": {
+ "version": "0.11.23",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/core": "^7.7.5",
- "@babel/generator": "^7.12.11",
- "@babel/runtime": "^7.7.6",
- "ast-types": "^0.14.2",
- "commander": "^2.19.0",
- "doctrine": "^3.0.0",
- "estree-to-babel": "^3.1.0",
- "neo-async": "^2.6.1",
- "node-dir": "^0.1.10",
- "strip-indent": "^3.0.0"
- },
- "bin": {
- "react-docgen": "bin/react-docgen.js"
+ "ast-types": "0.9.6",
+ "esprima": "~3.1.0",
+ "private": "~0.1.5",
+ "source-map": "~0.5.0"
},
"engines": {
- "node": ">=8.10.0"
+ "node": ">= 0.8"
}
},
- "node_modules/react-docgen-typescript": {
- "version": "2.2.2",
+ "node_modules/recast/node_modules/ast-types": {
+ "version": "0.9.6",
"dev": true,
"license": "MIT",
- "peerDependencies": {
- "typescript": ">= 4.3.x"
+ "engines": {
+ "node": ">= 0.8"
}
},
- "node_modules/react-docgen/node_modules/ast-types": {
- "version": "0.14.2",
- "license": "MIT",
- "dependencies": {
- "tslib": "^2.0.1"
+ "node_modules/recast/node_modules/esprima": {
+ "version": "3.1.3",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "bin": {
+ "esparse": "bin/esparse.js",
+ "esvalidate": "bin/esvalidate.js"
},
"engines": {
"node": ">=4"
}
},
- "node_modules/react-docgen/node_modules/commander": {
- "version": "2.20.3",
- "license": "MIT"
+ "node_modules/recast/node_modules/source-map": {
+ "version": "0.5.7",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "node_modules/react-dom": {
- "version": "17.0.2",
+ "node_modules/rechoir": {
+ "version": "0.8.0",
"license": "MIT",
"dependencies": {
- "loose-envify": "^1.1.0",
- "object-assign": "^4.1.1",
- "scheduler": "^0.20.2"
+ "resolve": "^1.20.0"
},
- "peerDependencies": {
- "react": "17.0.2"
+ "engines": {
+ "node": ">= 10.13.0"
}
},
- "node_modules/react-dropzone": {
- "version": "14.2.3",
+ "node_modules/recursive-readdir": {
+ "version": "2.2.3",
"license": "MIT",
"dependencies": {
- "attr-accept": "^2.2.2",
- "file-selector": "^0.6.0",
- "prop-types": "^15.8.1"
+ "minimatch": "^3.0.5"
},
"engines": {
- "node": ">= 10.13"
- },
- "peerDependencies": {
- "react": ">= 16.8 || 18.0.0"
+ "node": ">=6.0.0"
}
},
- "node_modules/react-error-boundary": {
- "version": "3.1.4",
+ "node_modules/redent": {
+ "version": "3.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.12.5"
+ "indent-string": "^4.0.0",
+ "strip-indent": "^3.0.0"
},
"engines": {
- "node": ">=10",
- "npm": ">=6"
- },
- "peerDependencies": {
- "react": ">=16.13.1"
+ "node": ">=8"
}
},
- "node_modules/react-error-overlay": {
- "version": "6.0.11",
- "license": "MIT"
+ "node_modules/redeyed": {
+ "version": "2.1.1",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "esprima": "~4.0.0"
+ }
},
- "node_modules/react-fast-compare": {
- "version": "3.2.1",
- "license": "MIT"
+ "node_modules/reduce-flatten": {
+ "version": "2.0.0",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
},
- "node_modules/react-focus-lock": {
- "version": "2.9.4",
+ "node_modules/reduce-function-call": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/reduce-function-call/-/reduce-function-call-1.0.3.tgz",
+ "integrity": "sha512-Hl/tuV2VDgWgCSEeWMLwxLZqX7OK59eU1guxXsRKTAyeYimivsKdtcV4fu3r710tpG5GmDKDhQ0HSZLExnNmyQ==",
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.0.0",
- "focus-lock": "^0.11.6",
- "prop-types": "^15.6.2",
- "react-clientside-effect": "^1.2.6",
- "use-callback-ref": "^1.3.0",
- "use-sidecar": "^1.1.2"
- },
- "peerDependencies": {
- "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "balanced-match": "^1.0.0"
}
},
- "node_modules/react-focus-on": {
- "version": "3.8.0",
+ "node_modules/redux": {
+ "version": "4.2.1",
"license": "MIT",
"dependencies": {
- "aria-hidden": "^1.2.2",
- "react-focus-lock": "^2.9.2",
- "react-remove-scroll": "^2.5.5",
- "react-style-singleton": "^2.2.0",
- "tslib": "^2.3.1",
- "use-callback-ref": "^1.3.0",
- "use-sidecar": "^1.1.2"
- },
- "engines": {
- "node": ">=8.5.0"
- },
- "peerDependencies": {
- "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "@babel/runtime": "^7.9.2"
}
},
- "node_modules/react-helmet": {
- "version": "6.1.0",
+ "node_modules/redux-thunk": {
+ "version": "2.4.2",
"license": "MIT",
- "dependencies": {
- "object-assign": "^4.1.1",
- "prop-types": "^15.7.2",
- "react-fast-compare": "^3.1.1",
- "react-side-effect": "^2.1.0"
- },
"peerDependencies": {
- "react": ">=16.3.0"
+ "redux": "^4"
}
},
- "node_modules/react-imask": {
- "version": "7.1.3",
- "resolved": "https://registry.npmjs.org/react-imask/-/react-imask-7.1.3.tgz",
- "integrity": "sha512-anCnzdkqpDzNwe7ot76kQSvmnz4Sw7AW/QFjjLh3B87HVNv9e2oHC+1m9hQKSIui2Tqm7w68ooMgDFsCQlDMyg==",
+ "node_modules/reflect.getprototypeof": {
+ "version": "1.0.8",
+ "license": "MIT",
"dependencies": {
- "imask": "^7.1.3",
- "prop-types": "^15.8.1"
+ "call-bind": "^1.0.8",
+ "define-properties": "^1.2.1",
+ "dunder-proto": "^1.0.0",
+ "es-abstract": "^1.23.5",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.4",
+ "gopd": "^1.2.0",
+ "which-builtin-type": "^1.2.0"
},
"engines": {
- "npm": ">=4.0.0"
+ "node": ">= 0.4"
},
- "peerDependencies": {
- "react": ">=0.14.0"
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/react-intl": {
- "version": "5.25.1",
- "license": "BSD-3-Clause",
+ "node_modules/regenerate": {
+ "version": "1.4.2",
+ "license": "MIT"
+ },
+ "node_modules/regenerate-unicode-properties": {
+ "version": "10.2.0",
+ "license": "MIT",
"dependencies": {
- "@formatjs/ecma402-abstract": "1.11.4",
- "@formatjs/icu-messageformat-parser": "2.1.0",
- "@formatjs/intl": "2.2.1",
- "@formatjs/intl-displaynames": "5.4.3",
- "@formatjs/intl-listformat": "6.5.3",
- "@types/hoist-non-react-statics": "^3.3.1",
- "@types/react": "16 || 17 || 18",
- "hoist-non-react-statics": "^3.3.2",
- "intl-messageformat": "9.13.0",
- "tslib": "^2.1.0"
- },
- "peerDependencies": {
- "react": "^16.3.0 || 17 || 18",
- "typescript": "^4.5"
+ "regenerate": "^1.4.2"
},
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/react-is": {
- "version": "17.0.2",
+ "node_modules/regenerator-runtime": {
+ "version": "0.13.11",
"license": "MIT"
},
- "node_modules/react-lifecycles-compat": {
- "version": "3.0.4",
- "license": "MIT"
+ "node_modules/regenerator-transform": {
+ "version": "0.15.2",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.8.4"
+ }
},
- "node_modules/react-live": {
- "version": "2.4.1",
+ "node_modules/regex-not": {
+ "version": "1.0.2",
"license": "MIT",
"dependencies": {
- "@types/buble": "^0.20.0",
- "buble": "0.19.6",
- "core-js": "^3.14.0",
- "dom-iterator": "^1.0.0",
- "prism-react-renderer": "^1.2.1",
- "prop-types": "^15.7.2",
- "react-simple-code-editor": "^0.11.0",
- "unescape": "^1.0.1"
+ "extend-shallow": "^3.0.2",
+ "safe-regex": "^1.1.0"
},
"engines": {
- "node": ">= 0.12.0",
- "npm": ">= 2.0.0"
+ "node": ">=0.10.0"
}
},
- "node_modules/react-loading-skeleton": {
- "version": "3.2.0",
+ "node_modules/regex-not/node_modules/extend-shallow": {
+ "version": "3.0.2",
"license": "MIT",
- "peerDependencies": {
- "react": ">=16.8.0"
+ "dependencies": {
+ "assign-symbols": "^1.0.0",
+ "is-extendable": "^1.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/react-overlays": {
- "version": "5.2.1",
+ "node_modules/regex-not/node_modules/is-extendable": {
+ "version": "1.0.1",
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.13.8",
- "@popperjs/core": "^2.11.6",
- "@restart/hooks": "^0.4.7",
- "@types/warning": "^3.0.0",
- "dom-helpers": "^5.2.0",
- "prop-types": "^15.7.2",
- "uncontrollable": "^7.2.1",
- "warning": "^4.0.3"
+ "is-plain-object": "^2.0.4"
},
- "peerDependencies": {
- "react": ">=16.3.0",
- "react-dom": ">=16.3.0"
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/react-popper": {
- "version": "2.3.0",
+ "node_modules/regex-not/node_modules/is-plain-object": {
+ "version": "2.0.4",
"license": "MIT",
"dependencies": {
- "react-fast-compare": "^3.0.1",
- "warning": "^4.0.2"
+ "isobject": "^3.0.1"
},
- "peerDependencies": {
- "@popperjs/core": "^2.0.0",
- "react": "^16.8.0 || ^17 || ^18",
- "react-dom": "^16.8.0 || ^17 || ^18"
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/react-proptype-conditional-require": {
- "version": "1.0.4",
+ "node_modules/regex-parser": {
+ "version": "2.3.0",
"license": "MIT"
},
- "node_modules/react-redux": {
- "version": "7.2.9",
+ "node_modules/regexp.prototype.flags": {
+ "version": "1.5.3",
"license": "MIT",
- "peer": true,
"dependencies": {
- "@babel/runtime": "^7.15.4",
- "@types/react-redux": "^7.1.20",
- "hoist-non-react-statics": "^3.3.2",
- "loose-envify": "^1.4.0",
- "prop-types": "^15.7.2",
- "react-is": "^17.0.2"
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-errors": "^1.3.0",
+ "set-function-name": "^2.0.2"
},
- "peerDependencies": {
- "react": "^16.8.3 || ^17 || ^18"
+ "engines": {
+ "node": ">= 0.4"
},
- "peerDependenciesMeta": {
- "react-dom": {
- "optional": true
- },
- "react-native": {
- "optional": true
- }
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/react-refresh": {
- "version": "0.14.0",
+ "node_modules/regexpp": {
+ "version": "3.2.0",
"license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/mysticatea"
}
},
- "node_modules/react-remove-scroll": {
- "version": "2.5.5",
+ "node_modules/regexpu-core": {
+ "version": "6.2.0",
"license": "MIT",
"dependencies": {
- "react-remove-scroll-bar": "^2.3.3",
- "react-style-singleton": "^2.2.1",
- "tslib": "^2.1.0",
- "use-callback-ref": "^1.3.0",
- "use-sidecar": "^1.1.2"
+ "regenerate": "^1.4.2",
+ "regenerate-unicode-properties": "^10.2.0",
+ "regjsgen": "^0.8.0",
+ "regjsparser": "^0.12.0",
+ "unicode-match-property-ecmascript": "^2.0.0",
+ "unicode-match-property-value-ecmascript": "^2.1.0"
},
"engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "node": ">=4"
}
},
- "node_modules/react-remove-scroll-bar": {
- "version": "2.3.4",
+ "node_modules/registry-auth-token": {
+ "version": "5.0.3",
"license": "MIT",
"dependencies": {
- "react-style-singleton": "^2.2.1",
- "tslib": "^2.0.0"
+ "@pnpm/npm-conf": "^2.1.0"
},
"engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "node": ">=14"
}
},
- "node_modules/react-responsive": {
- "version": "8.2.0",
+ "node_modules/registry-url": {
+ "version": "6.0.1",
"license": "MIT",
"dependencies": {
- "hyphenate-style-name": "^1.0.0",
- "matchmediaquery": "^0.3.0",
- "prop-types": "^15.6.1",
- "shallow-equal": "^1.1.0"
+ "rc": "1.2.8"
},
"engines": {
- "node": ">= 0.10"
+ "node": ">=12"
},
- "peerDependencies": {
- "react": ">=16.8.0"
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/react-router": {
- "version": "5.3.4",
- "license": "MIT",
- "peer": true,
+ "node_modules/regjsgen": {
+ "version": "0.8.0",
+ "license": "MIT"
+ },
+ "node_modules/regjsparser": {
+ "version": "0.12.0",
+ "license": "BSD-2-Clause",
"dependencies": {
- "@babel/runtime": "^7.12.13",
- "history": "^4.9.0",
- "hoist-non-react-statics": "^3.1.0",
- "loose-envify": "^1.3.1",
- "path-to-regexp": "^1.7.0",
- "prop-types": "^15.6.2",
- "react-is": "^16.6.0",
- "tiny-invariant": "^1.0.2",
- "tiny-warning": "^1.0.0"
+ "jsesc": "~3.0.2"
},
- "peerDependencies": {
- "react": ">=15"
+ "bin": {
+ "regjsparser": "bin/parser"
}
},
- "node_modules/react-router-dom": {
- "version": "5.3.4",
+ "node_modules/regjsparser/node_modules/jsesc": {
+ "version": "3.0.2",
+ "license": "MIT",
+ "bin": {
+ "jsesc": "bin/jsesc"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/rehype-autolink-headings": {
+ "version": "5.1.0",
"license": "MIT",
- "peer": true,
"dependencies": {
- "@babel/runtime": "^7.12.13",
- "history": "^4.9.0",
- "loose-envify": "^1.3.1",
- "prop-types": "^15.6.2",
- "react-router": "5.3.4",
- "tiny-invariant": "^1.0.2",
- "tiny-warning": "^1.0.0"
+ "extend": "^3.0.0",
+ "hast-util-has-property": "^1.0.0",
+ "hast-util-heading-rank": "^1.0.0",
+ "unist-util-visit": "^2.0.0"
},
- "peerDependencies": {
- "react": ">=15"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/react-router/node_modules/isarray": {
- "version": "0.0.1",
+ "node_modules/rehype-autolink-headings/node_modules/unist-util-is": {
+ "version": "4.1.0",
"license": "MIT",
- "peer": true
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
},
- "node_modules/react-router/node_modules/path-to-regexp": {
- "version": "1.8.0",
+ "node_modules/rehype-autolink-headings/node_modules/unist-util-visit": {
+ "version": "2.0.3",
"license": "MIT",
- "peer": true,
"dependencies": {
- "isarray": "0.0.1"
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0",
+ "unist-util-visit-parents": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/react-router/node_modules/react-is": {
- "version": "16.13.1",
+ "node_modules/rehype-autolink-headings/node_modules/unist-util-visit-parents": {
+ "version": "3.1.1",
"license": "MIT",
- "peer": true
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/rehype-infer-description-meta": {
+ "version": "1.1.0",
+ "license": "MIT",
+ "dependencies": {
+ "@types/hast": "^2.0.0",
+ "hast-util-excerpt": "^1.0.0",
+ "hast-util-select": "^5.0.0",
+ "hast-util-to-text": "^3.0.0",
+ "hast-util-truncate": "^1.0.0",
+ "unified": "^10.0.0",
+ "unist-util-remove-position": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
},
- "node_modules/react-shallow-renderer": {
- "version": "16.15.0",
- "dev": true,
+ "node_modules/rehype-mdx-code-props": {
+ "version": "3.0.1",
"license": "MIT",
"dependencies": {
- "object-assign": "^4.1.1",
- "react-is": "^16.12.0 || ^17.0.0 || ^18.0.0"
+ "@types/hast": "^3.0.0",
+ "hast-util-properties-to-mdx-jsx-attributes": "^1.0.0",
+ "mdast-util-from-markdown": "^2.0.0",
+ "mdast-util-mdx": "^3.0.0",
+ "micromark-extension-mdxjs": "^3.0.0",
+ "unified": "^11.0.0",
+ "unist-util-visit-parents": "^6.0.0"
},
- "peerDependencies": {
- "react": "^16.0.0 || ^17.0.0 || ^18.0.0"
+ "funding": {
+ "url": "https://github.com/sponsors/remcohaszing"
}
},
- "node_modules/react-side-effect": {
- "version": "2.1.2",
+ "node_modules/rehype-mdx-code-props/node_modules/@types/debug": {
+ "version": "4.1.12",
"license": "MIT",
- "peerDependencies": {
- "react": "^16.3.0 || ^17.0.0 || ^18.0.0"
+ "dependencies": {
+ "@types/ms": "*"
}
},
- "node_modules/react-simple-code-editor": {
- "version": "0.11.3",
+ "node_modules/rehype-mdx-code-props/node_modules/@types/hast": {
+ "version": "3.0.4",
"license": "MIT",
- "peerDependencies": {
- "react": "*",
- "react-dom": "*"
+ "dependencies": {
+ "@types/unist": "*"
}
},
- "node_modules/react-style-singleton": {
- "version": "2.2.1",
+ "node_modules/rehype-mdx-code-props/node_modules/@types/mdast": {
+ "version": "4.0.4",
"license": "MIT",
"dependencies": {
- "get-nonce": "^1.0.0",
- "invariant": "^2.2.4",
- "tslib": "^2.0.0"
+ "@types/unist": "*"
+ }
+ },
+ "node_modules/rehype-mdx-code-props/node_modules/@types/unist": {
+ "version": "3.0.3",
+ "license": "MIT"
+ },
+ "node_modules/rehype-mdx-code-props/node_modules/debug": {
+ "version": "4.4.0",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.3"
},
"engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ "node": ">=6.0"
},
"peerDependenciesMeta": {
- "@types/react": {
+ "supports-color": {
"optional": true
}
}
},
- "node_modules/react-table": {
- "version": "7.8.0",
+ "node_modules/rehype-mdx-code-props/node_modules/estree-util-is-identifier-name": {
+ "version": "3.0.0",
"license": "MIT",
"funding": {
- "type": "github",
- "url": "https://github.com/sponsors/tannerlinsley"
- },
- "peerDependencies": {
- "react": "^16.8.3 || ^17.0.0-0 || ^18.0.0"
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/react-test-renderer": {
- "version": "17.0.2",
- "dev": true,
+ "node_modules/rehype-mdx-code-props/node_modules/estree-util-visit": {
+ "version": "2.0.0",
"license": "MIT",
"dependencies": {
- "object-assign": "^4.1.1",
- "react-is": "^17.0.2",
- "react-shallow-renderer": "^16.13.1",
- "scheduler": "^0.20.2"
+ "@types/estree-jsx": "^1.0.0",
+ "@types/unist": "^3.0.0"
},
- "peerDependencies": {
- "react": "17.0.2"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/react-transition-group": {
- "version": "4.4.5",
- "license": "BSD-3-Clause",
- "dependencies": {
- "@babel/runtime": "^7.5.5",
- "dom-helpers": "^5.0.1",
- "loose-envify": "^1.4.0",
- "prop-types": "^15.6.2"
+ "node_modules/rehype-mdx-code-props/node_modules/is-plain-obj": {
+ "version": "4.1.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
},
- "peerDependencies": {
- "react": ">=16.6.0",
- "react-dom": ">=16.6.0"
- }
- },
- "node_modules/react-universal-interface": {
- "version": "0.6.2",
- "dev": true,
- "peerDependencies": {
- "react": "*",
- "tslib": "*"
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/react-use": {
- "version": "17.4.0",
- "dev": true,
- "license": "Unlicense",
+ "node_modules/rehype-mdx-code-props/node_modules/mdast-util-from-markdown": {
+ "version": "2.0.2",
+ "license": "MIT",
"dependencies": {
- "@types/js-cookie": "^2.2.6",
- "@xobotyi/scrollbar-width": "^1.9.5",
- "copy-to-clipboard": "^3.3.1",
- "fast-deep-equal": "^3.1.3",
- "fast-shallow-equal": "^1.0.0",
- "js-cookie": "^2.2.1",
- "nano-css": "^5.3.1",
- "react-universal-interface": "^0.6.2",
- "resize-observer-polyfill": "^1.5.1",
- "screenfull": "^5.1.0",
- "set-harmonic-interval": "^1.0.1",
- "throttle-debounce": "^3.0.1",
- "ts-easing": "^0.2.0",
- "tslib": "^2.1.0"
+ "@types/mdast": "^4.0.0",
+ "@types/unist": "^3.0.0",
+ "decode-named-character-reference": "^1.0.0",
+ "devlop": "^1.0.0",
+ "mdast-util-to-string": "^4.0.0",
+ "micromark": "^4.0.0",
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
+ "micromark-util-decode-string": "^2.0.0",
+ "micromark-util-normalize-identifier": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0",
+ "unist-util-stringify-position": "^4.0.0"
},
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/read": {
- "version": "1.0.7",
- "license": "ISC",
+ "node_modules/rehype-mdx-code-props/node_modules/mdast-util-mdx": {
+ "version": "3.0.0",
+ "license": "MIT",
"dependencies": {
- "mute-stream": "~0.0.4"
+ "mdast-util-from-markdown": "^2.0.0",
+ "mdast-util-mdx-expression": "^2.0.0",
+ "mdast-util-mdx-jsx": "^3.0.0",
+ "mdast-util-mdxjs-esm": "^2.0.0",
+ "mdast-util-to-markdown": "^2.0.0"
},
- "engines": {
- "node": ">=0.8"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/read-cache": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz",
- "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==",
+ "node_modules/rehype-mdx-code-props/node_modules/mdast-util-mdx-expression": {
+ "version": "2.0.1",
+ "license": "MIT",
"dependencies": {
- "pify": "^2.3.0"
- }
- },
- "node_modules/read-cache/node_modules/pify": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
- "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==",
- "engines": {
- "node": ">=0.10.0"
+ "@types/estree-jsx": "^1.0.0",
+ "@types/hast": "^3.0.0",
+ "@types/mdast": "^4.0.0",
+ "devlop": "^1.0.0",
+ "mdast-util-from-markdown": "^2.0.0",
+ "mdast-util-to-markdown": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/read-pkg": {
- "version": "5.2.0",
- "dev": true,
+ "node_modules/rehype-mdx-code-props/node_modules/mdast-util-mdx-jsx": {
+ "version": "3.1.3",
"license": "MIT",
"dependencies": {
- "@types/normalize-package-data": "^2.4.0",
- "normalize-package-data": "^2.5.0",
- "parse-json": "^5.0.0",
- "type-fest": "^0.6.0"
+ "@types/estree-jsx": "^1.0.0",
+ "@types/hast": "^3.0.0",
+ "@types/mdast": "^4.0.0",
+ "@types/unist": "^3.0.0",
+ "ccount": "^2.0.0",
+ "devlop": "^1.1.0",
+ "mdast-util-from-markdown": "^2.0.0",
+ "mdast-util-to-markdown": "^2.0.0",
+ "parse-entities": "^4.0.0",
+ "stringify-entities": "^4.0.0",
+ "unist-util-stringify-position": "^4.0.0",
+ "vfile-message": "^4.0.0"
},
- "engines": {
- "node": ">=8"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/read-pkg-up": {
- "version": "7.0.1",
- "dev": true,
+ "node_modules/rehype-mdx-code-props/node_modules/mdast-util-mdxjs-esm": {
+ "version": "2.0.1",
"license": "MIT",
"dependencies": {
- "find-up": "^4.1.0",
- "read-pkg": "^5.2.0",
- "type-fest": "^0.8.1"
- },
- "engines": {
- "node": ">=8"
+ "@types/estree-jsx": "^1.0.0",
+ "@types/hast": "^3.0.0",
+ "@types/mdast": "^4.0.0",
+ "devlop": "^1.0.0",
+ "mdast-util-from-markdown": "^2.0.0",
+ "mdast-util-to-markdown": "^2.0.0"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/read-pkg-up/node_modules/type-fest": {
- "version": "0.8.1",
- "dev": true,
- "license": "(MIT OR CC0-1.0)",
- "engines": {
- "node": ">=8"
+ "node_modules/rehype-mdx-code-props/node_modules/mdast-util-phrasing": {
+ "version": "4.1.0",
+ "license": "MIT",
+ "dependencies": {
+ "@types/mdast": "^4.0.0",
+ "unist-util-is": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/read-pkg/node_modules/hosted-git-info": {
- "version": "2.8.9",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/read-pkg/node_modules/normalize-package-data": {
- "version": "2.5.0",
- "dev": true,
- "license": "BSD-2-Clause",
+ "node_modules/rehype-mdx-code-props/node_modules/mdast-util-to-markdown": {
+ "version": "2.1.2",
+ "license": "MIT",
"dependencies": {
- "hosted-git-info": "^2.1.4",
- "resolve": "^1.10.0",
- "semver": "2 || 3 || 4 || 5",
- "validate-npm-package-license": "^3.0.1"
+ "@types/mdast": "^4.0.0",
+ "@types/unist": "^3.0.0",
+ "longest-streak": "^3.0.0",
+ "mdast-util-phrasing": "^4.0.0",
+ "mdast-util-to-string": "^4.0.0",
+ "micromark-util-classify-character": "^2.0.0",
+ "micromark-util-decode-string": "^2.0.0",
+ "unist-util-visit": "^5.0.0",
+ "zwitch": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/read-pkg/node_modules/semver": {
- "version": "5.7.1",
- "dev": true,
- "license": "ISC",
- "bin": {
- "semver": "bin/semver"
+ "node_modules/rehype-mdx-code-props/node_modules/mdast-util-to-string": {
+ "version": "4.0.0",
+ "license": "MIT",
+ "dependencies": {
+ "@types/mdast": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/read-pkg/node_modules/type-fest": {
- "version": "0.6.0",
- "dev": true,
- "license": "(MIT OR CC0-1.0)",
- "engines": {
- "node": ">=8"
+ "node_modules/rehype-mdx-code-props/node_modules/micromark": {
+ "version": "4.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "@types/debug": "^4.0.0",
+ "debug": "^4.0.0",
+ "decode-named-character-reference": "^1.0.0",
+ "devlop": "^1.0.0",
+ "micromark-core-commonmark": "^2.0.0",
+ "micromark-factory-space": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-chunked": "^2.0.0",
+ "micromark-util-combine-extensions": "^2.0.0",
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
+ "micromark-util-encode": "^2.0.0",
+ "micromark-util-normalize-identifier": "^2.0.0",
+ "micromark-util-resolve-all": "^2.0.0",
+ "micromark-util-sanitize-uri": "^2.0.0",
+ "micromark-util-subtokenize": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/rehype-mdx-code-props/node_modules/micromark-core-commonmark": {
+ "version": "2.0.2",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "decode-named-character-reference": "^1.0.0",
+ "devlop": "^1.0.0",
+ "micromark-factory-destination": "^2.0.0",
+ "micromark-factory-label": "^2.0.0",
+ "micromark-factory-space": "^2.0.0",
+ "micromark-factory-title": "^2.0.0",
+ "micromark-factory-whitespace": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-chunked": "^2.0.0",
+ "micromark-util-classify-character": "^2.0.0",
+ "micromark-util-html-tag-name": "^2.0.0",
+ "micromark-util-normalize-identifier": "^2.0.0",
+ "micromark-util-resolve-all": "^2.0.0",
+ "micromark-util-subtokenize": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/rehype-mdx-code-props/node_modules/micromark-extension-mdx-expression": {
+ "version": "3.0.0",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "^1.0.0",
+ "devlop": "^1.0.0",
+ "micromark-factory-mdx-expression": "^2.0.0",
+ "micromark-factory-space": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-events-to-acorn": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/readable-stream": {
- "version": "2.3.8",
+ "node_modules/rehype-mdx-code-props/node_modules/micromark-extension-mdx-jsx": {
+ "version": "3.0.1",
"license": "MIT",
"dependencies": {
- "core-util-is": "~1.0.0",
- "inherits": "~2.0.3",
- "isarray": "~1.0.0",
- "process-nextick-args": "~2.0.0",
- "safe-buffer": "~5.1.1",
- "string_decoder": "~1.1.1",
- "util-deprecate": "~1.0.1"
+ "@types/acorn": "^4.0.0",
+ "@types/estree": "^1.0.0",
+ "devlop": "^1.0.0",
+ "estree-util-is-identifier-name": "^3.0.0",
+ "micromark-factory-mdx-expression": "^2.0.0",
+ "micromark-factory-space": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-events-to-acorn": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0",
+ "vfile-message": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/readable-stream/node_modules/isarray": {
- "version": "1.0.0",
- "license": "MIT"
- },
- "node_modules/readable-web-to-node-stream": {
- "version": "3.0.2",
+ "node_modules/rehype-mdx-code-props/node_modules/micromark-extension-mdx-md": {
+ "version": "2.0.0",
"license": "MIT",
"dependencies": {
- "readable-stream": "^3.6.0"
- },
- "engines": {
- "node": ">=8"
+ "micromark-util-types": "^2.0.0"
},
"funding": {
- "type": "github",
- "url": "https://github.com/sponsors/Borewit"
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/readable-web-to-node-stream/node_modules/readable-stream": {
- "version": "3.6.2",
+ "node_modules/rehype-mdx-code-props/node_modules/micromark-extension-mdxjs": {
+ "version": "3.0.0",
"license": "MIT",
"dependencies": {
- "inherits": "^2.0.3",
- "string_decoder": "^1.1.1",
- "util-deprecate": "^1.0.1"
+ "acorn": "^8.0.0",
+ "acorn-jsx": "^5.0.0",
+ "micromark-extension-mdx-expression": "^3.0.0",
+ "micromark-extension-mdx-jsx": "^3.0.0",
+ "micromark-extension-mdx-md": "^2.0.0",
+ "micromark-extension-mdxjs-esm": "^3.0.0",
+ "micromark-util-combine-extensions": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
},
- "engines": {
- "node": ">= 6"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/readdirp": {
- "version": "3.6.0",
+ "node_modules/rehype-mdx-code-props/node_modules/micromark-extension-mdxjs-esm": {
+ "version": "3.0.0",
"license": "MIT",
"dependencies": {
- "picomatch": "^2.2.1"
+ "@types/estree": "^1.0.0",
+ "devlop": "^1.0.0",
+ "micromark-core-commonmark": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-events-to-acorn": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0",
+ "unist-util-position-from-estree": "^2.0.0",
+ "vfile-message": "^4.0.0"
},
- "engines": {
- "node": ">=8.10.0"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/recast": {
- "version": "0.11.23",
- "dev": true,
+ "node_modules/rehype-mdx-code-props/node_modules/micromark-factory-destination": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "ast-types": "0.9.6",
- "esprima": "~3.1.0",
- "private": "~0.1.5",
- "source-map": "~0.5.0"
- },
- "engines": {
- "node": ">= 0.8"
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/recast/node_modules/esprima": {
- "version": "3.1.3",
- "dev": true,
- "license": "BSD-2-Clause",
- "bin": {
- "esparse": "bin/esparse.js",
- "esvalidate": "bin/esvalidate.js"
- },
- "engines": {
- "node": ">=4"
+ "node_modules/rehype-mdx-code-props/node_modules/micromark-factory-label": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "devlop": "^1.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/recast/node_modules/source-map": {
- "version": "0.5.7",
- "dev": true,
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
+ "node_modules/rehype-mdx-code-props/node_modules/micromark-factory-mdx-expression": {
+ "version": "2.0.2",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "^1.0.0",
+ "devlop": "^1.0.0",
+ "micromark-factory-space": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-events-to-acorn": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0",
+ "unist-util-position-from-estree": "^2.0.0",
+ "vfile-message": "^4.0.0"
}
},
- "node_modules/rechoir": {
- "version": "0.8.0",
- "dev": true,
+ "node_modules/rehype-mdx-code-props/node_modules/micromark-factory-space": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "resolve": "^1.20.0"
- },
- "engines": {
- "node": ">= 10.13.0"
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/recursive-readdir": {
- "version": "2.2.3",
+ "node_modules/rehype-mdx-code-props/node_modules/micromark-factory-title": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "minimatch": "^3.0.5"
- },
- "engines": {
- "node": ">=6.0.0"
+ "micromark-factory-space": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/redent": {
- "version": "3.0.0",
- "dev": true,
+ "node_modules/rehype-mdx-code-props/node_modules/micromark-factory-whitespace": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "indent-string": "^4.0.0",
- "strip-indent": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
+ "micromark-factory-space": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/redeyed": {
+ "node_modules/rehype-mdx-code-props/node_modules/micromark-util-character": {
"version": "2.1.1",
- "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "esprima": "~4.0.0"
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/reduce-flatten": {
- "version": "2.0.0",
- "dev": true,
+ "node_modules/rehype-mdx-code-props/node_modules/micromark-util-chunked": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
- "engines": {
- "node": ">=6"
+ "dependencies": {
+ "micromark-util-symbol": "^2.0.0"
}
},
- "node_modules/reduce-function-call": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/reduce-function-call/-/reduce-function-call-1.0.3.tgz",
- "integrity": "sha512-Hl/tuV2VDgWgCSEeWMLwxLZqX7OK59eU1guxXsRKTAyeYimivsKdtcV4fu3r710tpG5GmDKDhQ0HSZLExnNmyQ==",
+ "node_modules/rehype-mdx-code-props/node_modules/micromark-util-classify-character": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
"dependencies": {
- "balanced-match": "^1.0.0"
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/redux": {
- "version": "4.2.1",
+ "node_modules/rehype-mdx-code-props/node_modules/micromark-util-combine-extensions": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
- "peer": true,
"dependencies": {
- "@babel/runtime": "^7.9.2"
+ "micromark-util-chunked": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/redux-thunk": {
- "version": "2.4.2",
+ "node_modules/rehype-mdx-code-props/node_modules/micromark-util-decode-numeric-character-reference": {
+ "version": "2.0.2",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
- "peerDependencies": {
- "redux": "^4"
+ "dependencies": {
+ "micromark-util-symbol": "^2.0.0"
}
},
- "node_modules/regenerate": {
- "version": "1.4.2",
- "license": "MIT"
- },
- "node_modules/regenerate-unicode-properties": {
- "version": "10.1.0",
+ "node_modules/rehype-mdx-code-props/node_modules/micromark-util-decode-string": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "regenerate": "^1.4.2"
- },
- "engines": {
- "node": ">=4"
+ "decode-named-character-reference": "^1.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0"
}
},
- "node_modules/regenerator-runtime": {
- "version": "0.13.11",
+ "node_modules/rehype-mdx-code-props/node_modules/micromark-util-encode": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT"
},
- "node_modules/regenerator-transform": {
- "version": "0.15.1",
+ "node_modules/rehype-mdx-code-props/node_modules/micromark-util-events-to-acorn": {
+ "version": "2.0.2",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.8.4"
+ "@types/acorn": "^4.0.0",
+ "@types/estree": "^1.0.0",
+ "@types/unist": "^3.0.0",
+ "devlop": "^1.0.0",
+ "estree-util-visit": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0",
+ "vfile-message": "^4.0.0"
}
},
- "node_modules/regex-not": {
- "version": "1.0.2",
- "dev": true,
+ "node_modules/rehype-mdx-code-props/node_modules/micromark-util-html-tag-name": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/rehype-mdx-code-props/node_modules/micromark-util-normalize-identifier": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "extend-shallow": "^3.0.2",
- "safe-regex": "^1.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
+ "micromark-util-symbol": "^2.0.0"
}
},
- "node_modules/regex-not/node_modules/extend-shallow": {
- "version": "3.0.2",
- "dev": true,
+ "node_modules/rehype-mdx-code-props/node_modules/micromark-util-resolve-all": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "assign-symbols": "^1.0.0",
- "is-extendable": "^1.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/regex-not/node_modules/is-extendable": {
- "version": "1.0.1",
- "dev": true,
+ "node_modules/rehype-mdx-code-props/node_modules/micromark-util-sanitize-uri": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "is-plain-object": "^2.0.4"
- },
- "engines": {
- "node": ">=0.10.0"
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-encode": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0"
}
},
- "node_modules/regex-not/node_modules/is-plain-object": {
- "version": "2.0.4",
- "dev": true,
+ "node_modules/rehype-mdx-code-props/node_modules/micromark-util-subtokenize": {
+ "version": "2.0.3",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "isobject": "^3.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
+ "devlop": "^1.0.0",
+ "micromark-util-chunked": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/regex-parser": {
- "version": "2.2.11",
+ "node_modules/rehype-mdx-code-props/node_modules/micromark-util-symbol": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT"
},
- "node_modules/regexp.prototype.flags": {
- "version": "1.4.3",
+ "node_modules/rehype-mdx-code-props/node_modules/micromark-util-types": {
+ "version": "2.0.1",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/rehype-mdx-code-props/node_modules/unified": {
+ "version": "11.0.5",
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "functions-have-names": "^1.2.2"
- },
- "engines": {
- "node": ">= 0.4"
+ "@types/unist": "^3.0.0",
+ "bail": "^2.0.0",
+ "devlop": "^1.0.0",
+ "extend": "^3.0.0",
+ "is-plain-obj": "^4.0.0",
+ "trough": "^2.0.0",
+ "vfile": "^6.0.0"
},
"funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/regexpp": {
- "version": "3.2.0",
+ "node_modules/rehype-mdx-code-props/node_modules/unist-util-is": {
+ "version": "6.0.0",
"license": "MIT",
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "@types/unist": "^3.0.0"
},
"funding": {
- "url": "https://github.com/sponsors/mysticatea"
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/regexpu-core": {
- "version": "5.3.2",
+ "node_modules/rehype-mdx-code-props/node_modules/unist-util-position-from-estree": {
+ "version": "2.0.0",
"license": "MIT",
"dependencies": {
- "@babel/regjsgen": "^0.8.0",
- "regenerate": "^1.4.2",
- "regenerate-unicode-properties": "^10.1.0",
- "regjsparser": "^0.9.1",
- "unicode-match-property-ecmascript": "^2.0.0",
- "unicode-match-property-value-ecmascript": "^2.1.0"
+ "@types/unist": "^3.0.0"
},
- "engines": {
- "node": ">=4"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/registry-auth-token": {
- "version": "5.0.2",
- "dev": true,
+ "node_modules/rehype-mdx-code-props/node_modules/unist-util-stringify-position": {
+ "version": "4.0.0",
"license": "MIT",
"dependencies": {
- "@pnpm/npm-conf": "^2.1.0"
+ "@types/unist": "^3.0.0"
},
- "engines": {
- "node": ">=14"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/registry-url": {
- "version": "5.1.0",
+ "node_modules/rehype-mdx-code-props/node_modules/unist-util-visit": {
+ "version": "5.0.0",
"license": "MIT",
"dependencies": {
- "rc": "^1.2.8"
+ "@types/unist": "^3.0.0",
+ "unist-util-is": "^6.0.0",
+ "unist-util-visit-parents": "^6.0.0"
},
- "engines": {
- "node": ">=8"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/regjsgen": {
- "version": "0.5.2",
- "license": "MIT"
- },
- "node_modules/regjsparser": {
- "version": "0.9.1",
- "license": "BSD-2-Clause",
+ "node_modules/rehype-mdx-code-props/node_modules/unist-util-visit-parents": {
+ "version": "6.0.1",
+ "license": "MIT",
"dependencies": {
- "jsesc": "~0.5.0"
+ "@types/unist": "^3.0.0",
+ "unist-util-is": "^6.0.0"
},
- "bin": {
- "regjsparser": "bin/parser"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/regjsparser/node_modules/jsesc": {
- "version": "0.5.0",
- "bin": {
- "jsesc": "bin/jsesc"
+ "node_modules/rehype-mdx-code-props/node_modules/vfile": {
+ "version": "6.0.3",
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^3.0.0",
+ "vfile-message": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/rehype-autolink-headings": {
- "version": "5.1.0",
+ "node_modules/rehype-mdx-code-props/node_modules/vfile-message": {
+ "version": "4.0.2",
"license": "MIT",
"dependencies": {
- "extend": "^3.0.0",
- "hast-util-has-property": "^1.0.0",
- "hast-util-heading-rank": "^1.0.0",
- "unist-util-visit": "^2.0.0"
+ "@types/unist": "^3.0.0",
+ "unist-util-stringify-position": "^4.0.0"
},
"funding": {
"type": "opencollective",
@@ -34403,308 +41059,159 @@
"url": "https://opencollective.com/unified"
}
},
- "node_modules/relateurl": {
- "version": "0.2.7",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.10"
- }
- },
- "node_modules/relay-runtime": {
- "version": "12.0.0",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.0.0",
- "fbjs": "^3.0.0",
- "invariant": "^2.2.4"
- }
+ "node_modules/rehype-slug/node_modules/github-slugger": {
+ "version": "1.5.0",
+ "license": "ISC"
},
- "node_modules/remark": {
- "version": "10.0.1",
+ "node_modules/rehype-slug/node_modules/hast-util-to-string": {
+ "version": "1.0.4",
"license": "MIT",
- "dependencies": {
- "remark-parse": "^6.0.0",
- "remark-stringify": "^6.0.0",
- "unified": "^7.0.0"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/remark-footnotes": {
- "version": "2.0.0",
+ "node_modules/rehype-slug/node_modules/unist-util-is": {
+ "version": "4.1.0",
"license": "MIT",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
- "node_modules/remark-mdx": {
- "version": "1.6.22",
+ "node_modules/rehype-slug/node_modules/unist-util-visit": {
+ "version": "2.0.3",
"license": "MIT",
"dependencies": {
- "@babel/core": "7.12.9",
- "@babel/helper-plugin-utils": "7.10.4",
- "@babel/plugin-proposal-object-rest-spread": "7.12.1",
- "@babel/plugin-syntax-jsx": "7.12.1",
- "@mdx-js/util": "1.6.22",
- "is-alphabetical": "1.0.4",
- "remark-parse": "8.0.3",
- "unified": "9.2.0"
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0",
+ "unist-util-visit-parents": "^3.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
- "node_modules/remark-mdx/node_modules/@babel/core": {
- "version": "7.12.9",
+ "node_modules/rehype-slug/node_modules/unist-util-visit-parents": {
+ "version": "3.1.1",
"license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.5",
- "@babel/helper-module-transforms": "^7.12.1",
- "@babel/helpers": "^7.12.5",
- "@babel/parser": "^7.12.7",
- "@babel/template": "^7.12.7",
- "@babel/traverse": "^7.12.9",
- "@babel/types": "^7.12.7",
- "convert-source-map": "^1.7.0",
- "debug": "^4.1.0",
- "gensync": "^1.0.0-beta.1",
- "json5": "^2.1.2",
- "lodash": "^4.17.19",
- "resolve": "^1.3.2",
- "semver": "^5.4.1",
- "source-map": "^0.5.0"
- },
- "engines": {
- "node": ">=6.9.0"
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0"
},
"funding": {
"type": "opencollective",
- "url": "https://opencollective.com/babel"
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/remark-mdx/node_modules/@babel/helper-plugin-utils": {
- "version": "7.10.4",
- "license": "MIT"
- },
- "node_modules/remark-mdx/node_modules/@babel/plugin-proposal-object-rest-spread": {
- "version": "7.12.1",
+ "node_modules/relateurl": {
+ "version": "0.2.7",
"license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/plugin-syntax-object-rest-spread": "^7.8.0",
- "@babel/plugin-transform-parameters": "^7.12.1"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "engines": {
+ "node": ">= 0.10"
}
},
- "node_modules/remark-mdx/node_modules/@babel/plugin-syntax-jsx": {
- "version": "7.12.1",
+ "node_modules/relay-runtime": {
+ "version": "12.0.0",
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.10.4"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/remark-mdx/node_modules/semver": {
- "version": "5.7.1",
- "license": "ISC",
- "bin": {
- "semver": "bin/semver"
- }
- },
- "node_modules/remark-mdx/node_modules/source-map": {
- "version": "0.5.7",
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
+ "@babel/runtime": "^7.0.0",
+ "fbjs": "^3.0.0",
+ "invariant": "^2.2.4"
}
},
- "node_modules/remark-parse": {
- "version": "8.0.3",
+ "node_modules/remark-mdx": {
+ "version": "2.3.0",
"license": "MIT",
"dependencies": {
- "ccount": "^1.0.0",
- "collapse-white-space": "^1.0.2",
- "is-alphabetical": "^1.0.0",
- "is-decimal": "^1.0.0",
- "is-whitespace-character": "^1.0.0",
- "is-word-character": "^1.0.0",
- "markdown-escapes": "^1.0.0",
- "parse-entities": "^2.0.0",
- "repeat-string": "^1.5.4",
- "state-toggle": "^1.0.0",
- "trim": "0.0.1",
- "trim-trailing-lines": "^1.0.0",
- "unherit": "^1.0.4",
- "unist-util-remove-position": "^2.0.0",
- "vfile-location": "^3.0.0",
- "xtend": "^4.0.1"
+ "mdast-util-mdx": "^2.0.0",
+ "micromark-extension-mdxjs": "^1.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
- "node_modules/remark-retext": {
- "version": "3.1.3",
- "license": "MIT",
- "dependencies": {
- "mdast-util-to-nlcst": "^3.2.0"
- }
- },
- "node_modules/remark-squeeze-paragraphs": {
- "version": "4.0.0",
+ "node_modules/remark-parse": {
+ "version": "10.0.2",
"license": "MIT",
"dependencies": {
- "mdast-squeeze-paragraphs": "^4.0.0"
+ "@types/mdast": "^3.0.0",
+ "mdast-util-from-markdown": "^1.0.0",
+ "unified": "^10.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
- "node_modules/remark-stringify": {
- "version": "6.0.4",
- "license": "MIT",
- "dependencies": {
- "ccount": "^1.0.0",
- "is-alphanumeric": "^1.0.0",
- "is-decimal": "^1.0.0",
- "is-whitespace-character": "^1.0.0",
- "longest-streak": "^2.0.1",
- "markdown-escapes": "^1.0.0",
- "markdown-table": "^1.1.0",
- "mdast-util-compact": "^1.0.0",
- "parse-entities": "^1.0.2",
- "repeat-string": "^1.5.4",
- "state-toggle": "^1.0.0",
- "stringify-entities": "^1.0.1",
- "unherit": "^1.0.4",
- "xtend": "^4.0.1"
- }
- },
- "node_modules/remark-stringify/node_modules/parse-entities": {
- "version": "1.2.2",
- "license": "MIT",
- "dependencies": {
- "character-entities": "^1.0.0",
- "character-entities-legacy": "^1.0.0",
- "character-reference-invalid": "^1.0.0",
- "is-alphanumerical": "^1.0.0",
- "is-decimal": "^1.0.0",
- "is-hexadecimal": "^1.0.0"
- }
- },
- "node_modules/remark/node_modules/parse-entities": {
- "version": "1.2.2",
+ "node_modules/remark-rehype": {
+ "version": "10.1.0",
"license": "MIT",
"dependencies": {
- "character-entities": "^1.0.0",
- "character-entities-legacy": "^1.0.0",
- "character-reference-invalid": "^1.0.0",
- "is-alphanumerical": "^1.0.0",
- "is-decimal": "^1.0.0",
- "is-hexadecimal": "^1.0.0"
+ "@types/hast": "^2.0.0",
+ "@types/mdast": "^3.0.0",
+ "mdast-util-to-hast": "^12.1.0",
+ "unified": "^10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/remark/node_modules/remark-parse": {
- "version": "6.0.3",
- "license": "MIT",
- "dependencies": {
- "collapse-white-space": "^1.0.2",
- "is-alphabetical": "^1.0.0",
- "is-decimal": "^1.0.0",
- "is-whitespace-character": "^1.0.0",
- "is-word-character": "^1.0.0",
- "markdown-escapes": "^1.0.0",
- "parse-entities": "^1.1.0",
- "repeat-string": "^1.5.4",
- "state-toggle": "^1.0.0",
- "trim": "0.0.1",
- "trim-trailing-lines": "^1.0.0",
- "unherit": "^1.0.4",
- "unist-util-remove-position": "^1.0.0",
- "vfile-location": "^2.0.0",
- "xtend": "^4.0.1"
- }
- },
- "node_modules/remark/node_modules/unified": {
- "version": "7.1.0",
+ "node_modules/remark-rehype/node_modules/mdast-util-definitions": {
+ "version": "5.1.2",
"license": "MIT",
"dependencies": {
+ "@types/mdast": "^3.0.0",
"@types/unist": "^2.0.0",
- "@types/vfile": "^3.0.0",
- "bail": "^1.0.0",
- "extend": "^3.0.0",
- "is-plain-obj": "^1.1.0",
- "trough": "^1.0.0",
- "vfile": "^3.0.0",
- "x-is-string": "^0.1.0"
- }
- },
- "node_modules/remark/node_modules/unist-util-is": {
- "version": "3.0.0",
- "license": "MIT"
- },
- "node_modules/remark/node_modules/unist-util-remove-position": {
- "version": "1.1.4",
- "license": "MIT",
- "dependencies": {
- "unist-util-visit": "^1.1.0"
+ "unist-util-visit": "^4.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
- "node_modules/remark/node_modules/unist-util-stringify-position": {
- "version": "1.1.2",
- "license": "MIT"
- },
- "node_modules/remark/node_modules/unist-util-visit": {
- "version": "1.4.1",
+ "node_modules/remark-rehype/node_modules/mdast-util-to-hast": {
+ "version": "12.3.0",
"license": "MIT",
"dependencies": {
- "unist-util-visit-parents": "^2.0.0"
+ "@types/hast": "^2.0.0",
+ "@types/mdast": "^3.0.0",
+ "mdast-util-definitions": "^5.0.0",
+ "micromark-util-sanitize-uri": "^1.1.0",
+ "trim-lines": "^3.0.0",
+ "unist-util-generated": "^2.0.0",
+ "unist-util-position": "^4.0.0",
+ "unist-util-visit": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/remark/node_modules/unist-util-visit-parents": {
- "version": "2.1.2",
+ "node_modules/remark-rehype/node_modules/unist-util-generated": {
+ "version": "2.0.1",
"license": "MIT",
- "dependencies": {
- "unist-util-is": "^3.0.0"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/remark/node_modules/vfile": {
+ "node_modules/remark-unwrap-images": {
"version": "3.0.1",
"license": "MIT",
"dependencies": {
- "is-buffer": "^2.0.0",
- "replace-ext": "1.0.0",
- "unist-util-stringify-position": "^1.0.0",
- "vfile-message": "^1.0.0"
- }
- },
- "node_modules/remark/node_modules/vfile-location": {
- "version": "2.0.6",
- "license": "MIT",
+ "@types/mdast": "^3.0.0",
+ "hast-util-whitespace": "^2.0.0",
+ "unified": "^10.0.0",
+ "unist-util-visit": "^4.0.0"
+ },
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
- "node_modules/remark/node_modules/vfile-message": {
- "version": "1.1.1",
- "license": "MIT",
- "dependencies": {
- "unist-util-stringify-position": "^1.1.1"
- }
- },
"node_modules/remove-trailing-separator": {
"version": "1.1.0",
"license": "ISC"
@@ -34731,81 +41238,6 @@
"node": ">=0.10.0"
}
},
- "node_modules/renderkid/node_modules/css-select": {
- "version": "4.3.0",
- "license": "BSD-2-Clause",
- "dependencies": {
- "boolbase": "^1.0.0",
- "css-what": "^6.0.1",
- "domhandler": "^4.3.1",
- "domutils": "^2.8.0",
- "nth-check": "^2.0.1"
- },
- "funding": {
- "url": "https://github.com/sponsors/fb55"
- }
- },
- "node_modules/renderkid/node_modules/dom-serializer": {
- "version": "1.4.1",
- "license": "MIT",
- "dependencies": {
- "domelementtype": "^2.0.1",
- "domhandler": "^4.2.0",
- "entities": "^2.0.0"
- },
- "funding": {
- "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
- }
- },
- "node_modules/renderkid/node_modules/domhandler": {
- "version": "4.3.1",
- "license": "BSD-2-Clause",
- "dependencies": {
- "domelementtype": "^2.2.0"
- },
- "engines": {
- "node": ">= 4"
- },
- "funding": {
- "url": "https://github.com/fb55/domhandler?sponsor=1"
- }
- },
- "node_modules/renderkid/node_modules/domutils": {
- "version": "2.8.0",
- "license": "BSD-2-Clause",
- "dependencies": {
- "dom-serializer": "^1.0.1",
- "domelementtype": "^2.2.0",
- "domhandler": "^4.2.0"
- },
- "funding": {
- "url": "https://github.com/fb55/domutils?sponsor=1"
- }
- },
- "node_modules/renderkid/node_modules/entities": {
- "version": "2.2.0",
- "license": "BSD-2-Clause",
- "funding": {
- "url": "https://github.com/fb55/entities?sponsor=1"
- }
- },
- "node_modules/renderkid/node_modules/htmlparser2": {
- "version": "6.1.0",
- "funding": [
- "https://github.com/fb55/htmlparser2?sponsor=1",
- {
- "type": "github",
- "url": "https://github.com/sponsors/fb55"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "domelementtype": "^2.0.1",
- "domhandler": "^4.0.0",
- "domutils": "^2.5.2",
- "entities": "^2.0.0"
- }
- },
"node_modules/renderkid/node_modules/strip-ansi": {
"version": "3.0.1",
"license": "MIT",
@@ -34818,7 +41250,6 @@
},
"node_modules/repeat-element": {
"version": "1.1.4",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -34831,13 +41262,6 @@
"node": ">=0.10"
}
},
- "node_modules/replace-ext": {
- "version": "1.0.0",
- "license": "MIT",
- "engines": {
- "node": ">= 0.10"
- }
- },
"node_modules/requestidlecallback": {
"version": "0.3.0",
"license": "MIT"
@@ -34858,6 +41282,7 @@
},
"node_modules/require-like": {
"version": "0.1.2",
+ "dev": true,
"engines": {
"node": "*"
}
@@ -34872,7 +41297,6 @@
},
"node_modules/requires-port": {
"version": "1.0.0",
- "devOptional": true,
"license": "MIT"
},
"node_modules/resize-observer-polyfill": {
@@ -34881,10 +41305,10 @@
"license": "MIT"
},
"node_modules/resolve": {
- "version": "1.22.1",
+ "version": "1.22.8",
"license": "MIT",
"dependencies": {
- "is-core-module": "^2.9.0",
+ "is-core-module": "^2.13.0",
"path-parse": "^1.0.7",
"supports-preserve-symlinks-flag": "^1.0.0"
},
@@ -34926,7 +41350,6 @@
},
"node_modules/resolve-url-loader": {
"version": "5.0.0",
- "dev": true,
"license": "MIT",
"dependencies": {
"adjust-sourcemap-loader": "^4.0.0",
@@ -34940,10 +41363,8 @@
}
},
"node_modules/resolve.exports": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz",
- "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==",
- "dev": true,
+ "version": "2.0.3",
+ "license": "MIT",
"engines": {
"node": ">=10"
}
@@ -34971,27 +41392,13 @@
},
"node_modules/ret": {
"version": "0.1.15",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.12"
}
},
- "node_modules/retext-english": {
- "version": "3.0.4",
- "license": "MIT",
- "dependencies": {
- "parse-english": "^4.0.0",
- "unherit": "^1.0.4"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
"node_modules/retry": {
- "version": "0.13.1",
- "devOptional": true,
+ "version": "0.12.0",
"license": "MIT",
"engines": {
"node": ">= 4"
@@ -35042,10 +41449,9 @@
}
},
"node_modules/rfdc": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz",
- "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==",
- "dev": true
+ "version": "1.4.1",
+ "dev": true,
+ "license": "MIT"
},
"node_modules/rimraf": {
"version": "3.0.2",
@@ -35080,7 +41486,6 @@
},
"node_modules/rsvp": {
"version": "4.8.5",
- "dev": true,
"license": "MIT",
"engines": {
"node": "6.* || >= 7.*"
@@ -35095,60 +41500,19 @@
}
},
"node_modules/rtlcss": {
- "version": "3.5.0",
- "dev": true,
+ "version": "4.1.1",
"license": "MIT",
"dependencies": {
- "find-up": "^5.0.0",
+ "escalade": "^3.1.1",
"picocolors": "^1.0.0",
- "postcss": "^8.3.11",
+ "postcss": "^8.4.21",
"strip-json-comments": "^3.1.1"
},
"bin": {
"rtlcss": "bin/rtlcss.js"
- }
- },
- "node_modules/rtlcss/node_modules/find-up": {
- "version": "5.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "locate-path": "^6.0.0",
- "path-exists": "^4.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/rtlcss/node_modules/locate-path": {
- "version": "6.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "p-locate": "^5.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/rtlcss/node_modules/p-locate": {
- "version": "5.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "p-limit": "^3.0.2"
},
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=12.0.0"
}
},
"node_modules/run-async": {
@@ -35181,32 +41545,73 @@
},
"node_modules/rxjs": {
"version": "7.8.1",
- "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz",
- "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==",
+ "license": "Apache-2.0",
"dependencies": {
"tslib": "^2.1.0"
}
},
+ "node_modules/sade": {
+ "version": "1.8.1",
+ "license": "MIT",
+ "dependencies": {
+ "mri": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/safe-array-concat": {
+ "version": "1.1.2",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "get-intrinsic": "^1.2.4",
+ "has-symbols": "^1.0.3",
+ "isarray": "^2.0.5"
+ },
+ "engines": {
+ "node": ">=0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/safe-buffer": {
- "version": "5.1.2",
+ "version": "5.2.1",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
"license": "MIT"
},
"node_modules/safe-regex": {
"version": "1.1.0",
- "dev": true,
"license": "MIT",
"dependencies": {
"ret": "~0.1.10"
}
},
"node_modules/safe-regex-test": {
- "version": "1.0.0",
+ "version": "1.0.3",
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "get-intrinsic": "^1.1.3",
+ "call-bind": "^1.0.6",
+ "es-errors": "^1.3.0",
"is-regex": "^1.1.4"
},
+ "engines": {
+ "node": ">= 0.4"
+ },
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
@@ -35217,7 +41622,6 @@
},
"node_modules/sane": {
"version": "4.1.0",
- "dev": true,
"license": "MIT",
"dependencies": {
"@cnakazawa/watch": "^1.0.3",
@@ -35239,7 +41643,6 @@
},
"node_modules/sane/node_modules/anymatch": {
"version": "2.0.0",
- "dev": true,
"license": "ISC",
"dependencies": {
"micromatch": "^3.1.4",
@@ -35248,7 +41651,6 @@
},
"node_modules/sane/node_modules/braces": {
"version": "2.3.2",
- "dev": true,
"license": "MIT",
"dependencies": {
"arr-flatten": "^1.1.0",
@@ -35267,8 +41669,7 @@
}
},
"node_modules/sane/node_modules/cross-spawn": {
- "version": "6.0.5",
- "dev": true,
+ "version": "6.0.6",
"license": "MIT",
"dependencies": {
"nice-try": "^1.0.4",
@@ -35283,7 +41684,6 @@
},
"node_modules/sane/node_modules/execa": {
"version": "1.0.0",
- "dev": true,
"license": "MIT",
"dependencies": {
"cross-spawn": "^6.0.0",
@@ -35300,7 +41700,6 @@
},
"node_modules/sane/node_modules/fill-range": {
"version": "4.0.0",
- "dev": true,
"license": "MIT",
"dependencies": {
"extend-shallow": "^2.0.1",
@@ -35314,7 +41713,6 @@
},
"node_modules/sane/node_modules/get-stream": {
"version": "4.1.0",
- "dev": true,
"license": "MIT",
"dependencies": {
"pump": "^3.0.0"
@@ -35325,12 +41723,10 @@
},
"node_modules/sane/node_modules/is-buffer": {
"version": "1.1.6",
- "dev": true,
"license": "MIT"
},
"node_modules/sane/node_modules/is-extendable": {
"version": "1.0.1",
- "dev": true,
"license": "MIT",
"dependencies": {
"is-plain-object": "^2.0.4"
@@ -35341,7 +41737,6 @@
},
"node_modules/sane/node_modules/is-number": {
"version": "3.0.0",
- "dev": true,
"license": "MIT",
"dependencies": {
"kind-of": "^3.0.2"
@@ -35352,7 +41747,6 @@
},
"node_modules/sane/node_modules/is-number/node_modules/kind-of": {
"version": "3.2.2",
- "dev": true,
"license": "MIT",
"dependencies": {
"is-buffer": "^1.1.5"
@@ -35363,7 +41757,6 @@
},
"node_modules/sane/node_modules/is-plain-object": {
"version": "2.0.4",
- "dev": true,
"license": "MIT",
"dependencies": {
"isobject": "^3.0.1"
@@ -35374,7 +41767,6 @@
},
"node_modules/sane/node_modules/is-stream": {
"version": "1.1.0",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -35382,7 +41774,6 @@
},
"node_modules/sane/node_modules/micromatch": {
"version": "3.1.10",
- "dev": true,
"license": "MIT",
"dependencies": {
"arr-diff": "^4.0.0",
@@ -35405,7 +41796,6 @@
},
"node_modules/sane/node_modules/micromatch/node_modules/extend-shallow": {
"version": "3.0.2",
- "dev": true,
"license": "MIT",
"dependencies": {
"assign-symbols": "^1.0.0",
@@ -35417,7 +41807,6 @@
},
"node_modules/sane/node_modules/normalize-path": {
"version": "2.1.1",
- "dev": true,
"license": "MIT",
"dependencies": {
"remove-trailing-separator": "^1.0.1"
@@ -35428,7 +41817,6 @@
},
"node_modules/sane/node_modules/npm-run-path": {
"version": "2.0.2",
- "dev": true,
"license": "MIT",
"dependencies": {
"path-key": "^2.0.0"
@@ -35439,15 +41827,13 @@
},
"node_modules/sane/node_modules/path-key": {
"version": "2.0.1",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=4"
}
},
"node_modules/sane/node_modules/semver": {
- "version": "5.7.1",
- "dev": true,
+ "version": "5.7.2",
"license": "ISC",
"bin": {
"semver": "bin/semver"
@@ -35455,7 +41841,6 @@
},
"node_modules/sane/node_modules/shebang-command": {
"version": "1.2.0",
- "dev": true,
"license": "MIT",
"dependencies": {
"shebang-regex": "^1.0.0"
@@ -35466,7 +41851,6 @@
},
"node_modules/sane/node_modules/shebang-regex": {
"version": "1.0.0",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -35474,7 +41858,6 @@
},
"node_modules/sane/node_modules/to-regex-range": {
"version": "2.1.1",
- "dev": true,
"license": "MIT",
"dependencies": {
"is-number": "^3.0.0",
@@ -35486,7 +41869,6 @@
},
"node_modules/sane/node_modules/which": {
"version": "1.3.1",
- "dev": true,
"license": "ISC",
"dependencies": {
"isexe": "^2.0.0"
@@ -35496,11 +41878,11 @@
}
},
"node_modules/sass": {
- "version": "1.62.0",
+ "version": "1.82.0",
"license": "MIT",
"dependencies": {
- "chokidar": ">=3.0.0 <4.0.0",
- "immutable": "^4.0.0",
+ "chokidar": "^4.0.0",
+ "immutable": "^5.0.2",
"source-map-js": ">=0.6.2 <2.0.0"
},
"bin": {
@@ -35508,6 +41890,9 @@
},
"engines": {
"node": ">=14.0.0"
+ },
+ "optionalDependencies": {
+ "@parcel/watcher": "^2.4.1"
}
},
"node_modules/sass-loader": {
@@ -35546,15 +41931,42 @@
}
}
},
+ "node_modules/sass/node_modules/chokidar": {
+ "version": "4.0.1",
+ "license": "MIT",
+ "dependencies": {
+ "readdirp": "^4.0.1"
+ },
+ "engines": {
+ "node": ">= 14.16.0"
+ },
+ "funding": {
+ "url": "https://paulmillr.com/funding/"
+ }
+ },
+ "node_modules/sass/node_modules/immutable": {
+ "version": "5.0.3",
+ "license": "MIT"
+ },
+ "node_modules/sass/node_modules/readdirp": {
+ "version": "4.0.2",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 14.16.0"
+ },
+ "funding": {
+ "type": "individual",
+ "url": "https://paulmillr.com/funding/"
+ }
+ },
"node_modules/saxes": {
- "version": "5.0.1",
- "dev": true,
+ "version": "6.0.0",
"license": "ISC",
"dependencies": {
"xmlchars": "^2.2.0"
},
"engines": {
- "node": ">=10"
+ "node": ">=v12.22.7"
}
},
"node_modules/scheduler": {
@@ -35566,21 +41978,50 @@
}
},
"node_modules/schema-utils": {
- "version": "2.7.1",
+ "version": "4.3.0",
"license": "MIT",
"dependencies": {
- "@types/json-schema": "^7.0.5",
- "ajv": "^6.12.4",
- "ajv-keywords": "^3.5.2"
+ "@types/json-schema": "^7.0.9",
+ "ajv": "^8.9.0",
+ "ajv-formats": "^2.1.1",
+ "ajv-keywords": "^5.1.0"
},
"engines": {
- "node": ">= 8.9.0"
+ "node": ">= 10.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
}
},
+ "node_modules/schema-utils/node_modules/ajv": {
+ "version": "8.17.1",
+ "license": "MIT",
+ "dependencies": {
+ "fast-deep-equal": "^3.1.3",
+ "fast-uri": "^3.0.1",
+ "json-schema-traverse": "^1.0.0",
+ "require-from-string": "^2.0.2"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/epoberezkin"
+ }
+ },
+ "node_modules/schema-utils/node_modules/ajv-keywords": {
+ "version": "5.1.0",
+ "license": "MIT",
+ "dependencies": {
+ "fast-deep-equal": "^3.1.3"
+ },
+ "peerDependencies": {
+ "ajv": "^8.8.2"
+ }
+ },
+ "node_modules/schema-utils/node_modules/json-schema-traverse": {
+ "version": "1.0.0",
+ "license": "MIT"
+ },
"node_modules/scope-eval": {
"version": "1.0.0",
"dev": true,
@@ -35597,6 +42038,11 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/search-insights": {
+ "version": "2.17.3",
+ "license": "MIT",
+ "peer": true
+ },
"node_modules/section-matter": {
"version": "1.0.0",
"license": "MIT",
@@ -35610,14 +42056,13 @@
},
"node_modules/select-hose": {
"version": "2.0.0",
- "devOptional": true,
"license": "MIT"
},
"node_modules/selfsigned": {
- "version": "2.1.1",
- "devOptional": true,
+ "version": "2.4.1",
"license": "MIT",
"dependencies": {
+ "@types/node-forge": "^1.3.0",
"node-forge": "^1"
},
"engines": {
@@ -35681,29 +42126,20 @@
}
},
"node_modules/semantic-release/node_modules/ansi-escapes": {
- "version": "5.0.0",
+ "version": "6.2.1",
"dev": true,
"license": "MIT",
- "dependencies": {
- "type-fest": "^1.0.2"
- },
"engines": {
- "node": ">=12"
+ "node": ">=14.16"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/semantic-release/node_modules/argparse": {
- "version": "2.0.1",
- "dev": true,
- "license": "Python-2.0"
- },
"node_modules/semantic-release/node_modules/chalk": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz",
- "integrity": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==",
+ "version": "5.3.0",
"dev": true,
+ "license": "MIT",
"engines": {
"node": "^12.17.0 || ^14.13 || >=16.0.0"
},
@@ -35725,21 +42161,33 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/semantic-release/node_modules/cosmiconfig": {
- "version": "8.1.3",
+ "node_modules/semantic-release/node_modules/cliui": {
+ "version": "8.0.1",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.1",
+ "wrap-ansi": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/semantic-release/node_modules/debug": {
+ "version": "4.4.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "import-fresh": "^3.2.1",
- "js-yaml": "^4.1.0",
- "parse-json": "^5.0.0",
- "path-type": "^4.0.0"
+ "ms": "^2.1.3"
},
"engines": {
- "node": ">=14"
+ "node": ">=6.0"
},
- "funding": {
- "url": "https://github.com/sponsors/d-fischer"
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
}
},
"node_modules/semantic-release/node_modules/escape-string-regexp": {
@@ -35754,7 +42202,7 @@
}
},
"node_modules/semantic-release/node_modules/execa": {
- "version": "7.1.1",
+ "version": "7.2.0",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -35806,7 +42254,7 @@
}
},
"node_modules/semantic-release/node_modules/hosted-git-info": {
- "version": "6.1.1",
+ "version": "6.1.3",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -35816,14 +42264,6 @@
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
}
},
- "node_modules/semantic-release/node_modules/hosted-git-info/node_modules/lru-cache": {
- "version": "7.18.3",
- "dev": true,
- "license": "ISC",
- "engines": {
- "node": ">=12"
- }
- },
"node_modules/semantic-release/node_modules/human-signals": {
"version": "4.3.1",
"dev": true,
@@ -35854,15 +42294,15 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/semantic-release/node_modules/js-yaml": {
- "version": "4.1.0",
+ "node_modules/semantic-release/node_modules/is-unicode-supported": {
+ "version": "1.3.0",
"dev": true,
"license": "MIT",
- "dependencies": {
- "argparse": "^2.0.1"
+ "engines": {
+ "node": ">=12"
},
- "bin": {
- "js-yaml": "bin/js-yaml.js"
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/semantic-release/node_modules/locate-path": {
@@ -35880,18 +42320,15 @@
}
},
"node_modules/semantic-release/node_modules/lru-cache": {
- "version": "6.0.0",
+ "version": "7.18.3",
"dev": true,
"license": "ISC",
- "dependencies": {
- "yallist": "^4.0.0"
- },
"engines": {
- "node": ">=10"
+ "node": ">=12"
}
},
"node_modules/semantic-release/node_modules/marked": {
- "version": "4.2.12",
+ "version": "4.3.0",
"dev": true,
"license": "MIT",
"bin": {
@@ -35902,22 +42339,22 @@
}
},
"node_modules/semantic-release/node_modules/marked-terminal": {
- "version": "5.1.1",
+ "version": "5.2.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-escapes": "^5.0.0",
+ "ansi-escapes": "^6.2.0",
"cardinal": "^2.1.1",
- "chalk": "^5.0.0",
- "cli-table3": "^0.6.1",
+ "chalk": "^5.2.0",
+ "cli-table3": "^0.6.3",
"node-emoji": "^1.11.0",
- "supports-hyperlinks": "^2.2.0"
+ "supports-hyperlinks": "^2.3.0"
},
"engines": {
"node": ">=14.13.1 || >=16.0.0"
},
"peerDependencies": {
- "marked": "^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0"
+ "marked": "^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0"
}
},
"node_modules/semantic-release/node_modules/mimic-fn": {
@@ -35931,8 +42368,44 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/semantic-release/node_modules/normalize-package-data": {
+ "version": "3.0.3",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "hosted-git-info": "^4.0.1",
+ "is-core-module": "^2.5.0",
+ "semver": "^7.3.4",
+ "validate-npm-package-license": "^3.0.1"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/semantic-release/node_modules/normalize-package-data/node_modules/hosted-git-info": {
+ "version": "4.1.0",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "lru-cache": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/semantic-release/node_modules/normalize-package-data/node_modules/lru-cache": {
+ "version": "6.0.0",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "yallist": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
"node_modules/semantic-release/node_modules/npm-run-path": {
- "version": "5.1.0",
+ "version": "5.3.0",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -36061,18 +42534,29 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/semantic-release/node_modules/read-pkg-up/node_modules/type-fest": {
- "version": "2.19.0",
+ "node_modules/semantic-release/node_modules/semver": {
+ "version": "7.6.3",
"dev": true,
- "license": "(MIT OR CC0-1.0)",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
"engines": {
- "node": ">=12.20"
+ "node": ">=10"
+ }
+ },
+ "node_modules/semantic-release/node_modules/strip-final-newline": {
+ "version": "3.0.0",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/semantic-release/node_modules/read-pkg/node_modules/type-fest": {
+ "node_modules/semantic-release/node_modules/type-fest": {
"version": "2.19.0",
"dev": true,
"license": "(MIT OR CC0-1.0)",
@@ -36083,63 +42567,46 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/semantic-release/node_modules/semver": {
- "version": "7.3.8",
+ "node_modules/semantic-release/node_modules/y18n": {
+ "version": "5.0.8",
"dev": true,
"license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
"engines": {
"node": ">=10"
}
},
- "node_modules/semantic-release/node_modules/semver-diff": {
+ "node_modules/semantic-release/node_modules/yallist": {
"version": "4.0.0",
"dev": true,
+ "license": "ISC"
+ },
+ "node_modules/semantic-release/node_modules/yargs": {
+ "version": "17.7.2",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "semver": "^7.3.5"
+ "cliui": "^8.0.1",
+ "escalade": "^3.1.1",
+ "get-caller-file": "^2.0.5",
+ "require-directory": "^2.1.1",
+ "string-width": "^4.2.3",
+ "y18n": "^5.0.5",
+ "yargs-parser": "^21.1.1"
},
"engines": {
"node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/semantic-release/node_modules/strip-final-newline": {
- "version": "3.0.0",
+ "node_modules/semantic-release/node_modules/yargs-parser": {
+ "version": "21.1.1",
"dev": true,
- "license": "MIT",
+ "license": "ISC",
"engines": {
"node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/semantic-release/node_modules/type-fest": {
- "version": "1.4.0",
- "dev": true,
- "license": "(MIT OR CC0-1.0)",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/semantic-release/node_modules/yallist": {
- "version": "4.0.0",
- "dev": true,
- "license": "ISC"
- },
"node_modules/semantic-release/node_modules/yocto-queue": {
- "version": "1.0.0",
+ "version": "1.1.1",
"dev": true,
"license": "MIT",
"engines": {
@@ -36151,20 +42618,34 @@
},
"node_modules/semver": {
"version": "6.3.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
- "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
+ "license": "ISC",
"bin": {
"semver": "bin/semver.js"
}
},
"node_modules/semver-diff": {
- "version": "3.1.1",
+ "version": "4.0.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "semver": "^6.3.0"
+ "semver": "^7.3.5"
},
"engines": {
- "node": ">=8"
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/semver-diff/node_modules/semver": {
+ "version": "7.6.3",
+ "dev": true,
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
}
},
"node_modules/semver-regex": {
@@ -36221,10 +42702,6 @@
"node": ">=4"
}
},
- "node_modules/send/node_modules/ms": {
- "version": "2.1.3",
- "license": "MIT"
- },
"node_modules/sentence-case": {
"version": "3.0.4",
"license": "MIT",
@@ -36234,23 +42711,8 @@
"upper-case-first": "^2.0.2"
}
},
- "node_modules/sentence-case/node_modules/lower-case": {
- "version": "2.0.2",
- "license": "MIT",
- "dependencies": {
- "tslib": "^2.0.3"
- }
- },
- "node_modules/sentence-case/node_modules/no-case": {
- "version": "3.0.4",
- "license": "MIT",
- "dependencies": {
- "lower-case": "^2.0.2",
- "tslib": "^2.0.3"
- }
- },
"node_modules/serialize-javascript": {
- "version": "6.0.1",
+ "version": "5.0.1",
"license": "BSD-3-Clause",
"dependencies": {
"randombytes": "^2.1.0"
@@ -36258,7 +42720,6 @@
},
"node_modules/serve-index": {
"version": "1.9.1",
- "devOptional": true,
"license": "MIT",
"dependencies": {
"accepts": "~1.3.4",
@@ -36275,7 +42736,6 @@
},
"node_modules/serve-index/node_modules/debug": {
"version": "2.6.9",
- "devOptional": true,
"license": "MIT",
"dependencies": {
"ms": "2.0.0"
@@ -36283,7 +42743,6 @@
},
"node_modules/serve-index/node_modules/depd": {
"version": "1.1.2",
- "devOptional": true,
"license": "MIT",
"engines": {
"node": ">= 0.6"
@@ -36291,7 +42750,6 @@
},
"node_modules/serve-index/node_modules/http-errors": {
"version": "1.6.3",
- "devOptional": true,
"license": "MIT",
"dependencies": {
"depd": "~1.1.2",
@@ -36305,22 +42763,18 @@
},
"node_modules/serve-index/node_modules/inherits": {
"version": "2.0.3",
- "devOptional": true,
"license": "ISC"
},
"node_modules/serve-index/node_modules/ms": {
"version": "2.0.0",
- "devOptional": true,
"license": "MIT"
},
"node_modules/serve-index/node_modules/setprototypeof": {
"version": "1.1.0",
- "devOptional": true,
"license": "ISC"
},
"node_modules/serve-index/node_modules/statuses": {
"version": "1.5.0",
- "devOptional": true,
"license": "MIT",
"engines": {
"node": ">= 0.6"
@@ -36345,8 +42799,7 @@
},
"node_modules/set-function-length": {
"version": "1.2.2",
- "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz",
- "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==",
+ "license": "MIT",
"dependencies": {
"define-data-property": "^1.1.4",
"es-errors": "^1.3.0",
@@ -36359,6 +42812,19 @@
"node": ">= 0.4"
}
},
+ "node_modules/set-function-name": {
+ "version": "2.0.2",
+ "license": "MIT",
+ "dependencies": {
+ "define-data-property": "^1.1.4",
+ "es-errors": "^1.3.0",
+ "functions-have-names": "^1.2.3",
+ "has-property-descriptors": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/set-harmonic-interval": {
"version": "1.0.1",
"dev": true,
@@ -36369,7 +42835,6 @@
},
"node_modules/set-value": {
"version": "2.0.1",
- "dev": true,
"license": "MIT",
"dependencies": {
"extend-shallow": "^2.0.1",
@@ -36383,7 +42848,6 @@
},
"node_modules/set-value/node_modules/is-plain-object": {
"version": "2.0.4",
- "dev": true,
"license": "MIT",
"dependencies": {
"isobject": "^3.0.1"
@@ -36419,18 +42883,17 @@
"license": "MIT"
},
"node_modules/sharp": {
- "version": "0.32.0",
- "dev": true,
+ "version": "0.32.6",
"hasInstallScript": true,
"license": "Apache-2.0",
"dependencies": {
"color": "^4.2.3",
- "detect-libc": "^2.0.1",
- "node-addon-api": "^6.0.0",
+ "detect-libc": "^2.0.2",
+ "node-addon-api": "^6.1.0",
"prebuild-install": "^7.1.1",
- "semver": "^7.3.8",
+ "semver": "^7.5.4",
"simple-get": "^4.0.1",
- "tar-fs": "^2.1.1",
+ "tar-fs": "^3.0.4",
"tunnel-agent": "^0.6.0"
},
"engines": {
@@ -36441,36 +42904,19 @@
}
},
"node_modules/sharp/node_modules/detect-libc": {
- "version": "2.0.1",
- "dev": true,
+ "version": "2.0.3",
"license": "Apache-2.0",
"engines": {
"node": ">=8"
}
},
- "node_modules/sharp/node_modules/lru-cache": {
- "version": "6.0.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "yallist": "^4.0.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
"node_modules/sharp/node_modules/node-addon-api": {
"version": "6.1.0",
- "dev": true,
"license": "MIT"
},
"node_modules/sharp/node_modules/semver": {
- "version": "7.5.0",
- "dev": true,
+ "version": "7.6.3",
"license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
"bin": {
"semver": "bin/semver.js"
},
@@ -36478,11 +42924,6 @@
"node": ">=10"
}
},
- "node_modules/sharp/node_modules/yallist": {
- "version": "4.0.0",
- "dev": true,
- "license": "ISC"
- },
"node_modules/shebang-command": {
"version": "2.0.0",
"license": "MIT",
@@ -36501,27 +42942,76 @@
}
},
"node_modules/shell-quote": {
- "version": "1.8.1",
+ "version": "1.8.2",
"license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/shellwords": {
"version": "0.1.1",
- "dev": true,
"license": "MIT",
"optional": true
},
"node_modules/side-channel": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz",
- "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==",
+ "version": "1.1.0",
+ "license": "MIT",
"dependencies": {
- "call-bind": "^1.0.7",
"es-errors": "^1.3.0",
- "get-intrinsic": "^1.2.4",
- "object-inspect": "^1.13.1"
+ "object-inspect": "^1.13.3",
+ "side-channel-list": "^1.0.0",
+ "side-channel-map": "^1.0.1",
+ "side-channel-weakmap": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-list": {
+ "version": "1.0.0",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "object-inspect": "^1.13.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-map": {
+ "version": "1.0.1",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-weakmap": {
+ "version": "1.0.2",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3",
+ "side-channel-map": "^1.0.1"
},
"engines": {
"node": ">= 0.4"
@@ -36547,11 +43037,21 @@
"node": ">=6"
}
},
+ "node_modules/signale/node_modules/ansi-styles": {
+ "version": "3.2.1",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "color-convert": "^1.9.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
"node_modules/signale/node_modules/chalk": {
"version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -36561,6 +43061,27 @@
"node": ">=4"
}
},
+ "node_modules/signale/node_modules/color-convert": {
+ "version": "1.9.3",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "color-name": "1.1.3"
+ }
+ },
+ "node_modules/signale/node_modules/color-name": {
+ "version": "1.1.3",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/signale/node_modules/escape-string-regexp": {
+ "version": "1.0.5",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.8.0"
+ }
+ },
"node_modules/signale/node_modules/figures": {
"version": "2.0.0",
"dev": true,
@@ -36572,6 +43093,25 @@
"node": ">=4"
}
},
+ "node_modules/signale/node_modules/has-flag": {
+ "version": "3.0.0",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/signale/node_modules/supports-color": {
+ "version": "5.5.0",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "has-flag": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
"node_modules/signedsource": {
"version": "1.0.0",
"license": "BSD-3-Clause"
@@ -36629,13 +43169,12 @@
"license": "MIT"
},
"node_modules/sirv": {
- "version": "1.0.19",
- "dev": true,
+ "version": "2.0.4",
"license": "MIT",
"dependencies": {
- "@polka/url": "^1.0.0-next.20",
- "mrmime": "^1.0.0",
- "totalist": "^1.0.0"
+ "@polka/url": "^1.0.0-next.24",
+ "mrmime": "^2.0.0",
+ "totalist": "^3.0.0"
},
"engines": {
"node": ">= 10"
@@ -36653,47 +43192,31 @@
}
},
"node_modules/slice-ansi": {
- "version": "4.0.0",
+ "version": "5.0.0",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.0.0",
- "astral-regex": "^2.0.0",
- "is-fullwidth-code-point": "^3.0.0"
+ "ansi-styles": "^6.0.0",
+ "is-fullwidth-code-point": "^4.0.0"
},
"engines": {
- "node": ">=10"
+ "node": ">=12"
},
"funding": {
"url": "https://github.com/chalk/slice-ansi?sponsor=1"
}
},
"node_modules/slice-ansi/node_modules/ansi-styles": {
- "version": "4.3.0",
+ "version": "6.2.1",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
"engines": {
- "node": ">=8"
+ "node": ">=12"
},
"funding": {
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/slice-ansi/node_modules/color-convert": {
- "version": "2.0.1",
- "license": "MIT",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/slice-ansi/node_modules/color-name": {
- "version": "1.1.4",
- "license": "MIT"
- },
"node_modules/slugify": {
"version": "1.6.6",
"license": "MIT",
@@ -36711,7 +43234,6 @@
},
"node_modules/snapdragon": {
"version": "0.8.2",
- "dev": true,
"license": "MIT",
"dependencies": {
"base": "^0.11.1",
@@ -36729,7 +43251,6 @@
},
"node_modules/snapdragon-node": {
"version": "2.1.1",
- "dev": true,
"license": "MIT",
"dependencies": {
"define-property": "^1.0.0",
@@ -36742,7 +43263,6 @@
},
"node_modules/snapdragon-node/node_modules/define-property": {
"version": "1.0.0",
- "dev": true,
"license": "MIT",
"dependencies": {
"is-descriptor": "^1.0.0"
@@ -36753,7 +43273,6 @@
},
"node_modules/snapdragon-util": {
"version": "3.0.1",
- "dev": true,
"license": "MIT",
"dependencies": {
"kind-of": "^3.2.0"
@@ -36764,12 +43283,10 @@
},
"node_modules/snapdragon-util/node_modules/is-buffer": {
"version": "1.1.6",
- "dev": true,
"license": "MIT"
},
"node_modules/snapdragon-util/node_modules/kind-of": {
"version": "3.2.2",
- "dev": true,
"license": "MIT",
"dependencies": {
"is-buffer": "^1.1.5"
@@ -36780,7 +43297,6 @@
},
"node_modules/snapdragon/node_modules/debug": {
"version": "2.6.9",
- "dev": true,
"license": "MIT",
"dependencies": {
"ms": "2.0.0"
@@ -36788,7 +43304,6 @@
},
"node_modules/snapdragon/node_modules/define-property": {
"version": "0.2.5",
- "dev": true,
"license": "MIT",
"dependencies": {
"is-descriptor": "^0.1.0"
@@ -36797,84 +43312,23 @@
"node": ">=0.10.0"
}
},
- "node_modules/snapdragon/node_modules/is-accessor-descriptor": {
- "version": "0.1.6",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/snapdragon/node_modules/is-accessor-descriptor/node_modules/kind-of": {
- "version": "3.2.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/snapdragon/node_modules/is-buffer": {
- "version": "1.1.6",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/snapdragon/node_modules/is-data-descriptor": {
- "version": "0.1.4",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/snapdragon/node_modules/is-data-descriptor/node_modules/kind-of": {
- "version": "3.2.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/snapdragon/node_modules/is-descriptor": {
- "version": "0.1.6",
- "dev": true,
+ "version": "0.1.7",
"license": "MIT",
"dependencies": {
- "is-accessor-descriptor": "^0.1.6",
- "is-data-descriptor": "^0.1.4",
- "kind-of": "^5.0.0"
+ "is-accessor-descriptor": "^1.0.1",
+ "is-data-descriptor": "^1.0.1"
},
"engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/snapdragon/node_modules/kind-of": {
- "version": "5.1.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "node": ">= 0.4"
}
},
"node_modules/snapdragon/node_modules/ms": {
"version": "2.0.0",
- "dev": true,
"license": "MIT"
},
"node_modules/snapdragon/node_modules/source-map": {
"version": "0.5.7",
- "dev": true,
"license": "BSD-3-Clause",
"engines": {
"node": ">=0.10.0"
@@ -36882,7 +43336,6 @@
},
"node_modules/snapdragon/node_modules/source-map-resolve": {
"version": "0.5.3",
- "dev": true,
"license": "MIT",
"dependencies": {
"atob": "^2.1.2",
@@ -36893,41 +43346,94 @@
}
},
"node_modules/socket.io": {
- "version": "4.5.4",
+ "version": "4.7.1",
"license": "MIT",
"dependencies": {
"accepts": "~1.3.4",
"base64id": "~2.0.0",
+ "cors": "~2.8.5",
"debug": "~4.3.2",
- "engine.io": "~6.2.1",
- "socket.io-adapter": "~2.4.0",
- "socket.io-parser": "~4.2.1"
+ "engine.io": "~6.5.0",
+ "socket.io-adapter": "~2.5.2",
+ "socket.io-parser": "~4.2.4"
},
"engines": {
"node": ">=10.0.0"
}
},
"node_modules/socket.io-adapter": {
- "version": "2.4.0",
- "license": "MIT"
+ "version": "2.5.5",
+ "license": "MIT",
+ "dependencies": {
+ "debug": "~4.3.4",
+ "ws": "~8.17.1"
+ }
+ },
+ "node_modules/socket.io-adapter/node_modules/debug": {
+ "version": "4.3.7",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/socket.io-adapter/node_modules/ws": {
+ "version": "8.17.1",
+ "license": "MIT",
+ "engines": {
+ "node": ">=10.0.0"
+ },
+ "peerDependencies": {
+ "bufferutil": "^4.0.1",
+ "utf-8-validate": ">=5.0.2"
+ },
+ "peerDependenciesMeta": {
+ "bufferutil": {
+ "optional": true
+ },
+ "utf-8-validate": {
+ "optional": true
+ }
+ }
},
"node_modules/socket.io-client": {
- "version": "4.5.4",
+ "version": "4.7.1",
"license": "MIT",
"dependencies": {
"@socket.io/component-emitter": "~3.1.0",
"debug": "~4.3.2",
- "engine.io-client": "~6.2.3",
- "socket.io-parser": "~4.2.1"
+ "engine.io-client": "~6.5.1",
+ "socket.io-parser": "~4.2.4"
},
"engines": {
"node": ">=10.0.0"
}
},
+ "node_modules/socket.io-client/node_modules/debug": {
+ "version": "4.3.7",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
"node_modules/socket.io-parser": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.2.3.tgz",
- "integrity": "sha512-JMafRntWVO2DCJimKsRTh/wnqVvO4hrfwOqtO7f+uzwsQMuxO6VwImtYxaQ+ieoyshWOTJyV0fA21lccEXRPpQ==",
+ "version": "4.2.4",
+ "license": "MIT",
"dependencies": {
"@socket.io/component-emitter": "~3.1.0",
"debug": "~4.3.1"
@@ -36936,9 +43442,38 @@
"node": ">=10.0.0"
}
},
+ "node_modules/socket.io-parser/node_modules/debug": {
+ "version": "4.3.7",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/socket.io/node_modules/debug": {
+ "version": "4.3.7",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
"node_modules/sockjs": {
"version": "0.3.24",
- "devOptional": true,
"license": "MIT",
"dependencies": {
"faye-websocket": "^0.11.3",
@@ -36948,7 +43483,6 @@
},
"node_modules/sockjs/node_modules/uuid": {
"version": "8.3.2",
- "devOptional": true,
"license": "MIT",
"bin": {
"uuid": "dist/bin/uuid"
@@ -36966,7 +43500,7 @@
}
},
"node_modules/source-map-js": {
- "version": "1.0.2",
+ "version": "1.2.1",
"license": "BSD-3-Clause",
"engines": {
"node": ">=0.10.0"
@@ -36974,7 +43508,6 @@
},
"node_modules/source-map-loader": {
"version": "4.0.1",
- "dev": true,
"license": "MIT",
"dependencies": {
"abab": "^2.0.6",
@@ -36992,6 +43525,16 @@
"webpack": "^5.72.1"
}
},
+ "node_modules/source-map-loader/node_modules/iconv-lite": {
+ "version": "0.6.3",
+ "license": "MIT",
+ "dependencies": {
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
"node_modules/source-map-resolve": {
"version": "0.6.0",
"dev": true,
@@ -37002,8 +43545,7 @@
}
},
"node_modules/source-map-support": {
- "version": "0.5.13",
- "dev": true,
+ "version": "0.5.21",
"license": "MIT",
"dependencies": {
"buffer-from": "^1.0.0",
@@ -37019,7 +43561,7 @@
"license": "MIT"
},
"node_modules/space-separated-tokens": {
- "version": "1.1.5",
+ "version": "2.0.2",
"license": "MIT",
"funding": {
"type": "github",
@@ -37033,7 +43575,6 @@
},
"node_modules/spdx-correct": {
"version": "3.2.0",
- "dev": true,
"license": "Apache-2.0",
"dependencies": {
"spdx-expression-parse": "^3.0.0",
@@ -37041,13 +43582,11 @@
}
},
"node_modules/spdx-exceptions": {
- "version": "2.3.0",
- "dev": true,
+ "version": "2.5.0",
"license": "CC-BY-3.0"
},
"node_modules/spdx-expression-parse": {
"version": "3.0.1",
- "dev": true,
"license": "MIT",
"dependencies": {
"spdx-exceptions": "^2.1.0",
@@ -37055,13 +43594,11 @@
}
},
"node_modules/spdx-license-ids": {
- "version": "3.0.13",
- "dev": true,
+ "version": "3.0.20",
"license": "CC0-1.0"
},
"node_modules/spdy": {
"version": "4.0.2",
- "devOptional": true,
"license": "MIT",
"dependencies": {
"debug": "^4.1.0",
@@ -37076,7 +43613,6 @@
},
"node_modules/spdy-transport": {
"version": "3.0.0",
- "devOptional": true,
"license": "MIT",
"dependencies": {
"debug": "^4.1.0",
@@ -37087,9 +43623,23 @@
"wbuf": "^1.7.3"
}
},
+ "node_modules/spdy-transport/node_modules/debug": {
+ "version": "4.4.0",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
"node_modules/spdy-transport/node_modules/readable-stream": {
"version": "3.6.2",
- "devOptional": true,
"license": "MIT",
"dependencies": {
"inherits": "^2.0.3",
@@ -37100,6 +43650,21 @@
"node": ">= 6"
}
},
+ "node_modules/spdy/node_modules/debug": {
+ "version": "4.4.0",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
"node_modules/split": {
"version": "1.0.1",
"dev": true,
@@ -37120,7 +43685,6 @@
},
"node_modules/split-string": {
"version": "3.1.0",
- "dev": true,
"license": "MIT",
"dependencies": {
"extend-shallow": "^3.0.0"
@@ -37131,7 +43695,6 @@
},
"node_modules/split-string/node_modules/extend-shallow": {
"version": "3.0.2",
- "dev": true,
"license": "MIT",
"dependencies": {
"assign-symbols": "^1.0.0",
@@ -37143,7 +43706,6 @@
},
"node_modules/split-string/node_modules/is-extendable": {
"version": "1.0.1",
- "dev": true,
"license": "MIT",
"dependencies": {
"is-plain-object": "^2.0.4"
@@ -37154,7 +43716,6 @@
},
"node_modules/split-string/node_modules/is-plain-object": {
"version": "2.0.4",
- "dev": true,
"license": "MIT",
"dependencies": {
"isobject": "^3.0.1"
@@ -37195,33 +43756,6 @@
"version": "1.0.3",
"license": "BSD-3-Clause"
},
- "node_modules/st": {
- "version": "2.0.0",
- "license": "ISC",
- "dependencies": {
- "async-cache": "^1.1.0",
- "bl": "^4.0.0",
- "fd": "~0.0.2",
- "mime": "^2.4.4",
- "negotiator": "~0.6.2"
- },
- "bin": {
- "st": "bin/server.js"
- },
- "optionalDependencies": {
- "graceful-fs": "^4.2.3"
- }
- },
- "node_modules/st/node_modules/mime": {
- "version": "2.6.0",
- "license": "MIT",
- "bin": {
- "mime": "cli.js"
- },
- "engines": {
- "node": ">=4.0.0"
- }
- },
"node_modules/stable": {
"version": "0.1.8",
"license": "MIT"
@@ -37243,7 +43777,6 @@
},
"node_modules/stack-utils": {
"version": "2.0.6",
- "dev": true,
"license": "MIT",
"dependencies": {
"escape-string-regexp": "^2.0.0"
@@ -37254,7 +43787,6 @@
},
"node_modules/stack-utils/node_modules/escape-string-regexp": {
"version": "2.0.0",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=8"
@@ -37291,17 +43823,8 @@
"stacktrace-gps": "^3.0.4"
}
},
- "node_modules/state-toggle": {
- "version": "1.0.3",
- "license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
"node_modules/static-extend": {
"version": "0.1.2",
- "dev": true,
"license": "MIT",
"dependencies": {
"define-property": "^0.2.5",
@@ -37313,7 +43836,6 @@
},
"node_modules/static-extend/node_modules/define-property": {
"version": "0.2.5",
- "dev": true,
"license": "MIT",
"dependencies": {
"is-descriptor": "^0.1.0"
@@ -37322,207 +43844,15 @@
"node": ">=0.10.0"
}
},
- "node_modules/static-extend/node_modules/is-accessor-descriptor": {
- "version": "0.1.6",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/static-extend/node_modules/is-accessor-descriptor/node_modules/kind-of": {
- "version": "3.2.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/static-extend/node_modules/is-buffer": {
- "version": "1.1.6",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/static-extend/node_modules/is-data-descriptor": {
- "version": "0.1.4",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/static-extend/node_modules/is-data-descriptor/node_modules/kind-of": {
- "version": "3.2.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/static-extend/node_modules/is-descriptor": {
- "version": "0.1.6",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-accessor-descriptor": "^0.1.6",
- "is-data-descriptor": "^0.1.4",
- "kind-of": "^5.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/static-extend/node_modules/kind-of": {
- "version": "5.1.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/static-site-generator-webpack-plugin": {
- "version": "3.4.2",
- "license": "MIT",
- "dependencies": {
- "bluebird": "^3.0.5",
- "cheerio": "^0.22.0",
- "eval": "^0.1.0",
- "url": "^0.11.0",
- "webpack-sources": "^0.2.0"
- }
- },
- "node_modules/static-site-generator-webpack-plugin/node_modules/cheerio": {
- "version": "0.22.0",
- "license": "MIT",
- "dependencies": {
- "css-select": "~1.2.0",
- "dom-serializer": "~0.1.0",
- "entities": "~1.1.1",
- "htmlparser2": "^3.9.1",
- "lodash.assignin": "^4.0.9",
- "lodash.bind": "^4.1.4",
- "lodash.defaults": "^4.0.1",
- "lodash.filter": "^4.4.0",
- "lodash.flatten": "^4.2.0",
- "lodash.foreach": "^4.3.0",
- "lodash.map": "^4.4.0",
- "lodash.merge": "^4.4.0",
- "lodash.pick": "^4.2.1",
- "lodash.reduce": "^4.4.0",
- "lodash.reject": "^4.4.0",
- "lodash.some": "^4.4.0"
- },
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/static-site-generator-webpack-plugin/node_modules/css-select": {
- "version": "1.2.0",
- "license": "BSD-like",
- "dependencies": {
- "boolbase": "~1.0.0",
- "css-what": "2.1",
- "domutils": "1.5.1",
- "nth-check": "~1.0.1"
- }
- },
- "node_modules/static-site-generator-webpack-plugin/node_modules/css-what": {
- "version": "2.1.3",
- "license": "BSD-2-Clause",
- "engines": {
- "node": "*"
- }
- },
- "node_modules/static-site-generator-webpack-plugin/node_modules/dom-serializer": {
- "version": "0.1.1",
- "license": "MIT",
- "dependencies": {
- "domelementtype": "^1.3.0",
- "entities": "^1.1.1"
- }
- },
- "node_modules/static-site-generator-webpack-plugin/node_modules/domelementtype": {
- "version": "1.3.1",
- "license": "BSD-2-Clause"
- },
- "node_modules/static-site-generator-webpack-plugin/node_modules/domhandler": {
- "version": "2.4.2",
- "license": "BSD-2-Clause",
- "dependencies": {
- "domelementtype": "1"
- }
- },
- "node_modules/static-site-generator-webpack-plugin/node_modules/domutils": {
- "version": "1.5.1",
- "dependencies": {
- "dom-serializer": "0",
- "domelementtype": "1"
- }
- },
- "node_modules/static-site-generator-webpack-plugin/node_modules/entities": {
- "version": "1.1.2",
- "license": "BSD-2-Clause"
- },
- "node_modules/static-site-generator-webpack-plugin/node_modules/htmlparser2": {
- "version": "3.10.1",
- "license": "MIT",
- "dependencies": {
- "domelementtype": "^1.3.1",
- "domhandler": "^2.3.0",
- "domutils": "^1.5.1",
- "entities": "^1.1.1",
- "inherits": "^2.0.1",
- "readable-stream": "^3.1.1"
- }
- },
- "node_modules/static-site-generator-webpack-plugin/node_modules/nth-check": {
- "version": "1.0.2",
- "license": "BSD-2-Clause",
- "dependencies": {
- "boolbase": "~1.0.0"
- }
- },
- "node_modules/static-site-generator-webpack-plugin/node_modules/readable-stream": {
- "version": "3.6.2",
+ "version": "0.1.7",
"license": "MIT",
"dependencies": {
- "inherits": "^2.0.3",
- "string_decoder": "^1.1.1",
- "util-deprecate": "^1.0.1"
+ "is-accessor-descriptor": "^1.0.1",
+ "is-data-descriptor": "^1.0.1"
},
"engines": {
- "node": ">= 6"
- }
- },
- "node_modules/static-site-generator-webpack-plugin/node_modules/source-list-map": {
- "version": "1.1.2",
- "license": "MIT"
- },
- "node_modules/static-site-generator-webpack-plugin/node_modules/source-map": {
- "version": "0.5.7",
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/static-site-generator-webpack-plugin/node_modules/webpack-sources": {
- "version": "0.2.3",
- "license": "MIT",
- "dependencies": {
- "source-list-map": "^1.1.1",
- "source-map": "~0.5.3"
+ "node": ">= 0.4"
}
},
"node_modules/statuses": {
@@ -37546,6 +43876,7 @@
"version": "0.0.3",
"resolved": "https://registry.npmjs.org/stream/-/stream-0.0.3.tgz",
"integrity": "sha512-aMsbn7VKrl4A2T7QAQQbzgN7NVc70vgF5INQrBXqn4dCXN1zy3L9HGgLO5s7PExmdrzTJ8uR/27aviW8or8/+A==",
+ "license": "MIT",
"dependencies": {
"component-emitter": "^2.0.0"
}
@@ -37563,6 +43894,7 @@
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-2.0.0.tgz",
"integrity": "sha512-4m5s3Me2xxlVKG9PkZpQqHQR7bgpnN7joDMJ4yvVkVXngjoITG76IaZmzmywSeRTeTpc6N6r3H3+KyUurV8OYw==",
+ "license": "MIT",
"engines": {
"node": ">=18"
},
@@ -37576,6 +43908,18 @@
"node": ">=10.0.0"
}
},
+ "node_modules/streamx": {
+ "version": "2.21.0",
+ "license": "MIT",
+ "dependencies": {
+ "fast-fifo": "^1.3.2",
+ "queue-tick": "^1.0.1",
+ "text-decoder": "^1.1.0"
+ },
+ "optionalDependencies": {
+ "bare-events": "^2.2.0"
+ }
+ },
"node_modules/strict-uri-encode": {
"version": "2.0.0",
"license": "MIT",
@@ -37590,18 +43934,20 @@
"safe-buffer": "~5.1.0"
}
},
+ "node_modules/string_decoder/node_modules/safe-buffer": {
+ "version": "5.1.2",
+ "license": "MIT"
+ },
"node_modules/string-argv": {
"version": "0.3.2",
- "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz",
- "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=0.6.19"
}
},
"node_modules/string-length": {
"version": "4.0.2",
- "dev": true,
"license": "MIT",
"dependencies": {
"char-regex": "^1.0.2",
@@ -37643,6 +43989,7 @@
"version": "4.2.3",
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "license": "MIT",
"dependencies": {
"emoji-regex": "^8.0.0",
"is-fullwidth-code-point": "^3.0.0",
@@ -37655,36 +44002,84 @@
"node_modules/string-width-cjs/node_modules/emoji-regex": {
"version": "8.0.0",
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+ "license": "MIT"
+ },
+ "node_modules/string-width-cjs/node_modules/is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
},
"node_modules/string-width/node_modules/emoji-regex": {
"version": "8.0.0",
"license": "MIT"
},
+ "node_modules/string-width/node_modules/is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/string.prototype.includes": {
+ "version": "2.0.1",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/string.prototype.matchall": {
- "version": "4.0.8",
+ "version": "4.0.11",
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4",
- "get-intrinsic": "^1.1.3",
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
+ "get-intrinsic": "^1.2.4",
+ "gopd": "^1.0.1",
"has-symbols": "^1.0.3",
- "internal-slot": "^1.0.3",
- "regexp.prototype.flags": "^1.4.3",
- "side-channel": "^1.0.4"
+ "internal-slot": "^1.0.7",
+ "regexp.prototype.flags": "^1.5.2",
+ "set-function-name": "^2.0.2",
+ "side-channel": "^1.0.6"
+ },
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
+ "node_modules/string.prototype.repeat": {
+ "version": "1.0.0",
+ "license": "MIT",
+ "dependencies": {
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.17.5"
+ }
+ },
"node_modules/string.prototype.trim": {
- "version": "1.2.7",
+ "version": "1.2.10",
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.2",
+ "define-data-property": "^1.1.4",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.5",
+ "es-object-atoms": "^1.0.0",
+ "has-property-descriptors": "^1.0.2"
},
"engines": {
"node": ">= 0.4"
@@ -37694,37 +44089,46 @@
}
},
"node_modules/string.prototype.trimend": {
- "version": "1.0.6",
+ "version": "1.0.9",
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.2",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/string.prototype.trimstart": {
- "version": "1.0.6",
+ "version": "1.0.8",
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/stringify-entities": {
- "version": "1.3.2",
+ "version": "4.0.4",
"license": "MIT",
"dependencies": {
- "character-entities-html4": "^1.0.0",
- "character-entities-legacy": "^1.0.0",
- "is-alphanumerical": "^1.0.0",
- "is-hexadecimal": "^1.0.0"
+ "character-entities-html4": "^2.0.0",
+ "character-entities-legacy": "^3.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/strip-ansi": {
@@ -37742,6 +44146,7 @@
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "license": "MIT",
"dependencies": {
"ansi-regex": "^5.0.1"
},
@@ -37751,7 +44156,6 @@
},
"node_modules/strip-bom": {
"version": "4.0.0",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=8"
@@ -37814,10 +44218,11 @@
}
},
"node_modules/style-dictionary": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/style-dictionary/-/style-dictionary-4.0.1.tgz",
- "integrity": "sha512-aZ2iouI0i0DIXk3QhCkwOeo5rQeuk5Ja0PhHo32/EXCNuay4jK4CZ+hQJW0Er0J74VWniR+qaeoWgjklcULxOQ==",
+ "version": "4.3.2",
+ "resolved": "https://registry.npmjs.org/style-dictionary/-/style-dictionary-4.3.2.tgz",
+ "integrity": "sha512-kBDUWWWpaubHsMsA0pRegKA1+ocYFTACj+Y5o/FeMGGhTPBXigH/hVr3ZVwKVx2ITiuNGJY3SrbrW1cOJIsutA==",
"hasInstallScript": true,
+ "license": "Apache-2.0",
"dependencies": {
"@bundled-es-modules/deepmerge": "^4.3.1",
"@bundled-es-modules/glob": "^10.4.2",
@@ -37825,11 +44230,12 @@
"@zip.js/zip.js": "^2.7.44",
"chalk": "^5.3.0",
"change-case": "^5.3.0",
- "commander": "^8.3.0",
+ "commander": "^12.1.0",
"is-plain-obj": "^4.1.0",
"json5": "^2.2.2",
"patch-package": "^8.0.0",
- "path-unified": "^0.1.0",
+ "path-unified": "^0.2.0",
+ "prettier": "^3.3.3",
"tinycolor2": "^1.6.0"
},
"bin": {
@@ -37840,9 +44246,10 @@
}
},
"node_modules/style-dictionary/node_modules/chalk": {
- "version": "5.3.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz",
- "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==",
+ "version": "5.4.1",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz",
+ "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==",
+ "license": "MIT",
"engines": {
"node": "^12.17.0 || ^14.13 || >=16.0.0"
},
@@ -37853,20 +44260,23 @@
"node_modules/style-dictionary/node_modules/change-case": {
"version": "5.4.4",
"resolved": "https://registry.npmjs.org/change-case/-/change-case-5.4.4.tgz",
- "integrity": "sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w=="
+ "integrity": "sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==",
+ "license": "MIT"
},
"node_modules/style-dictionary/node_modules/commander": {
- "version": "8.3.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz",
- "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==",
+ "version": "12.1.0",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz",
+ "integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==",
+ "license": "MIT",
"engines": {
- "node": ">= 12"
+ "node": ">=18"
}
},
"node_modules/style-dictionary/node_modules/is-plain-obj": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
"integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==",
+ "license": "MIT",
"engines": {
"node": ">=12"
},
@@ -37874,9 +44284,23 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/style-dictionary/node_modules/prettier": {
+ "version": "3.4.2",
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.4.2.tgz",
+ "integrity": "sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==",
+ "license": "MIT",
+ "bin": {
+ "prettier": "bin/prettier.cjs"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/prettier/prettier?sponsor=1"
+ }
+ },
"node_modules/style-loader": {
- "version": "3.3.2",
- "dev": true,
+ "version": "3.3.3",
"license": "MIT",
"engines": {
"node": ">= 12.13.0"
@@ -37894,306 +44318,443 @@
"dev": true,
"license": "ISC"
},
+ "node_modules/style-to-js": {
+ "version": "1.1.16",
+ "license": "MIT",
+ "dependencies": {
+ "style-to-object": "1.0.8"
+ }
+ },
+ "node_modules/style-to-js/node_modules/inline-style-parser": {
+ "version": "0.2.4",
+ "license": "MIT"
+ },
+ "node_modules/style-to-js/node_modules/style-to-object": {
+ "version": "1.0.8",
+ "license": "MIT",
+ "dependencies": {
+ "inline-style-parser": "0.2.4"
+ }
+ },
"node_modules/style-to-object": {
- "version": "0.3.0",
+ "version": "0.4.4",
"license": "MIT",
"dependencies": {
"inline-style-parser": "0.1.1"
}
},
"node_modules/stylehacks": {
- "version": "5.1.1",
+ "version": "6.1.1",
"license": "MIT",
"dependencies": {
- "browserslist": "^4.21.4",
- "postcss-selector-parser": "^6.0.4"
+ "browserslist": "^4.23.0",
+ "postcss-selector-parser": "^6.0.16"
},
"engines": {
- "node": "^10 || ^12 || >=14.0"
+ "node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
- "postcss": "^8.2.15"
+ "postcss": "^8.4.31"
}
},
"node_modules/stylelint": {
- "version": "14.16.1",
+ "version": "15.11.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "@csstools/selector-specificity": "^2.0.2",
+ "@csstools/css-parser-algorithms": "^2.3.1",
+ "@csstools/css-tokenizer": "^2.2.0",
+ "@csstools/media-query-list-parser": "^2.1.4",
+ "@csstools/selector-specificity": "^3.0.0",
"balanced-match": "^2.0.0",
"colord": "^2.9.3",
- "cosmiconfig": "^7.1.0",
- "css-functions-list": "^3.1.0",
+ "cosmiconfig": "^8.2.0",
+ "css-functions-list": "^3.2.1",
+ "css-tree": "^2.3.1",
"debug": "^4.3.4",
- "fast-glob": "^3.2.12",
+ "fast-glob": "^3.3.1",
"fastest-levenshtein": "^1.0.16",
- "file-entry-cache": "^6.0.1",
+ "file-entry-cache": "^7.0.0",
"global-modules": "^2.0.0",
"globby": "^11.1.0",
"globjoin": "^0.1.4",
- "html-tags": "^3.2.0",
- "ignore": "^5.2.1",
+ "html-tags": "^3.3.1",
+ "ignore": "^5.2.4",
"import-lazy": "^4.0.0",
"imurmurhash": "^0.1.4",
"is-plain-object": "^5.0.0",
- "known-css-properties": "^0.26.0",
+ "known-css-properties": "^0.29.0",
"mathml-tag-names": "^2.1.3",
- "meow": "^9.0.0",
+ "meow": "^10.1.5",
"micromatch": "^4.0.5",
"normalize-path": "^3.0.0",
"picocolors": "^1.0.0",
- "postcss": "^8.4.19",
- "postcss-media-query-parser": "^0.2.3",
+ "postcss": "^8.4.28",
"postcss-resolve-nested-selector": "^0.1.1",
"postcss-safe-parser": "^6.0.0",
- "postcss-selector-parser": "^6.0.11",
+ "postcss-selector-parser": "^6.0.13",
"postcss-value-parser": "^4.2.0",
"resolve-from": "^5.0.0",
"string-width": "^4.2.3",
"strip-ansi": "^6.0.1",
"style-search": "^0.1.0",
- "supports-hyperlinks": "^2.3.0",
+ "supports-hyperlinks": "^3.0.0",
"svg-tags": "^1.0.0",
"table": "^6.8.1",
- "v8-compile-cache": "^2.3.0",
- "write-file-atomic": "^4.0.2"
+ "write-file-atomic": "^5.0.1"
},
"bin": {
- "stylelint": "bin/stylelint.js"
+ "stylelint": "bin/stylelint.mjs"
},
"engines": {
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ "node": "^14.13.1 || >=16.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/stylelint"
}
},
- "node_modules/stylelint-config-recommended": {
- "version": "6.0.0",
+ "node_modules/stylelint/node_modules/balanced-match": {
+ "version": "2.0.0",
"dev": true,
- "license": "MIT",
- "peerDependencies": {
- "stylelint": "^14.0.0"
- }
+ "license": "MIT"
},
- "node_modules/stylelint-config-recommended-scss": {
- "version": "5.0.2",
+ "node_modules/stylelint/node_modules/camelcase-keys": {
+ "version": "7.0.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "postcss-scss": "^4.0.2",
- "stylelint-config-recommended": "^6.0.0",
- "stylelint-scss": "^4.0.0"
+ "camelcase": "^6.3.0",
+ "map-obj": "^4.1.0",
+ "quick-lru": "^5.1.1",
+ "type-fest": "^1.2.1"
},
- "peerDependencies": {
- "stylelint": "^14.0.0"
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/stylelint-config-standard": {
- "version": "25.0.0",
+ "node_modules/stylelint/node_modules/css-tree": {
+ "version": "2.3.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "stylelint-config-recommended": "^7.0.0"
+ "mdn-data": "2.0.30",
+ "source-map-js": "^1.0.1"
},
- "peerDependencies": {
- "stylelint": "^14.4.0"
+ "engines": {
+ "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
}
},
- "node_modules/stylelint-config-standard-scss": {
- "version": "4.0.0",
+ "node_modules/stylelint/node_modules/debug": {
+ "version": "4.4.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "stylelint-config-recommended-scss": "^6.0.0",
- "stylelint-config-standard": "^25.0.0"
+ "ms": "^2.1.3"
},
- "peerDependencies": {
- "stylelint": "^14.4.0"
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
}
},
- "node_modules/stylelint-config-standard-scss/node_modules/stylelint-config-recommended": {
- "version": "7.0.0",
+ "node_modules/stylelint/node_modules/decamelize": {
+ "version": "5.0.1",
"dev": true,
"license": "MIT",
- "peerDependencies": {
- "stylelint": "^14.4.0"
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/stylelint-config-standard-scss/node_modules/stylelint-config-recommended-scss": {
- "version": "6.0.0",
+ "node_modules/stylelint/node_modules/file-entry-cache": {
+ "version": "7.0.2",
"dev": true,
"license": "MIT",
"dependencies": {
- "postcss-scss": "^4.0.2",
- "stylelint-config-recommended": "^7.0.0",
- "stylelint-scss": "^4.0.0"
+ "flat-cache": "^3.2.0"
},
- "peerDependencies": {
- "stylelint": "^14.4.0"
+ "engines": {
+ "node": ">=12.0.0"
}
},
- "node_modules/stylelint-config-standard/node_modules/stylelint-config-recommended": {
- "version": "7.0.0",
+ "node_modules/stylelint/node_modules/hosted-git-info": {
+ "version": "4.1.0",
"dev": true,
- "license": "MIT",
- "peerDependencies": {
- "stylelint": "^14.4.0"
+ "license": "ISC",
+ "dependencies": {
+ "lru-cache": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/stylelint-scss": {
- "version": "4.5.0",
+ "node_modules/stylelint/node_modules/indent-string": {
+ "version": "5.0.0",
"dev": true,
"license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/stylelint/node_modules/lru-cache": {
+ "version": "6.0.0",
+ "dev": true,
+ "license": "ISC",
"dependencies": {
- "lodash": "^4.17.21",
- "postcss-media-query-parser": "^0.2.3",
- "postcss-resolve-nested-selector": "^0.1.1",
- "postcss-selector-parser": "^6.0.6",
- "postcss-value-parser": "^4.1.0"
+ "yallist": "^4.0.0"
},
- "peerDependencies": {
- "stylelint": "^14.5.1 || ^15.0.0"
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/stylelint/node_modules/balanced-match": {
- "version": "2.0.0",
+ "node_modules/stylelint/node_modules/mdn-data": {
+ "version": "2.0.30",
"dev": true,
- "license": "MIT"
+ "license": "CC0-1.0"
},
"node_modules/stylelint/node_modules/meow": {
- "version": "9.0.0",
+ "version": "10.1.5",
"dev": true,
"license": "MIT",
"dependencies": {
- "@types/minimist": "^1.2.0",
- "camelcase-keys": "^6.2.2",
- "decamelize": "^1.2.0",
+ "@types/minimist": "^1.2.2",
+ "camelcase-keys": "^7.0.0",
+ "decamelize": "^5.0.0",
"decamelize-keys": "^1.1.0",
"hard-rejection": "^2.1.0",
"minimist-options": "4.1.0",
- "normalize-package-data": "^3.0.0",
- "read-pkg-up": "^7.0.1",
- "redent": "^3.0.0",
- "trim-newlines": "^3.0.0",
- "type-fest": "^0.18.0",
- "yargs-parser": "^20.2.3"
+ "normalize-package-data": "^3.0.2",
+ "read-pkg-up": "^8.0.0",
+ "redent": "^4.0.0",
+ "trim-newlines": "^4.0.2",
+ "type-fest": "^1.2.2",
+ "yargs-parser": "^20.2.9"
},
"engines": {
- "node": ">=10"
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/stylelint/node_modules/type-fest": {
- "version": "0.18.1",
+ "node_modules/stylelint/node_modules/normalize-package-data": {
+ "version": "3.0.3",
"dev": true,
- "license": "(MIT OR CC0-1.0)",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "hosted-git-info": "^4.0.1",
+ "is-core-module": "^2.5.0",
+ "semver": "^7.3.4",
+ "validate-npm-package-license": "^3.0.1"
+ },
"engines": {
"node": ">=10"
+ }
+ },
+ "node_modules/stylelint/node_modules/read-pkg": {
+ "version": "6.0.0",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/normalize-package-data": "^2.4.0",
+ "normalize-package-data": "^3.0.2",
+ "parse-json": "^5.2.0",
+ "type-fest": "^1.0.1"
+ },
+ "engines": {
+ "node": ">=12"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/stylis": {
- "version": "4.2.0",
+ "node_modules/stylelint/node_modules/read-pkg-up": {
+ "version": "8.0.0",
"dev": true,
- "license": "MIT"
- },
- "node_modules/sudo-prompt": {
- "version": "8.2.5",
- "license": "MIT"
+ "license": "MIT",
+ "dependencies": {
+ "find-up": "^5.0.0",
+ "read-pkg": "^6.0.0",
+ "type-fest": "^1.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
},
- "node_modules/superagent": {
- "version": "3.8.3",
+ "node_modules/stylelint/node_modules/redent": {
+ "version": "4.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "component-emitter": "^1.2.0",
- "cookiejar": "^2.1.0",
- "debug": "^3.1.0",
- "extend": "^3.0.0",
- "form-data": "^2.3.1",
- "formidable": "^1.2.0",
- "methods": "^1.1.1",
- "mime": "^1.4.1",
- "qs": "^6.5.1",
- "readable-stream": "^2.3.5"
+ "indent-string": "^5.0.0",
+ "strip-indent": "^4.0.0"
},
"engines": {
- "node": ">= 4.0"
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/superagent/node_modules/debug": {
- "version": "3.2.7",
+ "node_modules/stylelint/node_modules/semver": {
+ "version": "7.6.3",
+ "dev": true,
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/stylelint/node_modules/signal-exit": {
+ "version": "4.1.0",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/stylelint/node_modules/strip-indent": {
+ "version": "4.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "ms": "^2.1.1"
+ "min-indent": "^1.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/superagent/node_modules/form-data": {
- "version": "2.5.1",
+ "node_modules/stylelint/node_modules/supports-hyperlinks": {
+ "version": "3.1.0",
"dev": true,
"license": "MIT",
"dependencies": {
- "asynckit": "^0.4.0",
- "combined-stream": "^1.0.6",
- "mime-types": "^2.1.12"
+ "has-flag": "^4.0.0",
+ "supports-color": "^7.0.0"
},
"engines": {
- "node": ">= 0.12"
+ "node": ">=14.18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/superagent/node_modules/mime": {
- "version": "1.6.0",
+ "node_modules/stylelint/node_modules/trim-newlines": {
+ "version": "4.1.1",
"dev": true,
"license": "MIT",
- "bin": {
- "mime": "cli.js"
+ "engines": {
+ "node": ">=12"
},
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/stylelint/node_modules/type-fest": {
+ "version": "1.4.0",
+ "dev": true,
+ "license": "(MIT OR CC0-1.0)",
"engines": {
- "node": ">=4"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/supports-color": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "node_modules/stylelint/node_modules/write-file-atomic": {
+ "version": "5.0.1",
+ "dev": true,
+ "license": "ISC",
"dependencies": {
- "has-flag": "^3.0.0"
+ "imurmurhash": "^0.1.4",
+ "signal-exit": "^4.0.1"
},
"engines": {
- "node": ">=4"
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
}
},
- "node_modules/supports-hyperlinks": {
- "version": "2.3.0",
+ "node_modules/stylelint/node_modules/yallist": {
+ "version": "4.0.0",
"dev": true,
+ "license": "ISC"
+ },
+ "node_modules/stylis": {
+ "version": "4.3.4",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/sudo-prompt": {
+ "version": "8.2.5",
+ "license": "MIT"
+ },
+ "node_modules/superagent": {
+ "version": "10.1.1",
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0",
- "supports-color": "^7.0.0"
+ "component-emitter": "^1.3.0",
+ "cookiejar": "^2.1.4",
+ "debug": "^4.3.4",
+ "fast-safe-stringify": "^2.1.1",
+ "form-data": "^4.0.0",
+ "formidable": "^3.5.2",
+ "methods": "^1.1.2",
+ "mime": "2.6.0",
+ "qs": "^6.11.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=14.18.0"
}
},
- "node_modules/supports-hyperlinks/node_modules/has-flag": {
- "version": "4.0.0",
- "dev": true,
+ "node_modules/superagent/node_modules/debug": {
+ "version": "4.4.0",
"license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
"engines": {
- "node": ">=8"
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/superagent/node_modules/mime": {
+ "version": "2.6.0",
+ "license": "MIT",
+ "bin": {
+ "mime": "cli.js"
+ },
+ "engines": {
+ "node": ">=4.0.0"
}
},
- "node_modules/supports-hyperlinks/node_modules/supports-color": {
+ "node_modules/supports-color": {
"version": "7.2.0",
- "dev": true,
"license": "MIT",
"dependencies": {
"has-flag": "^4.0.0"
@@ -38202,6 +44763,17 @@
"node": ">=8"
}
},
+ "node_modules/supports-hyperlinks": {
+ "version": "2.3.0",
+ "license": "MIT",
+ "dependencies": {
+ "has-flag": "^4.0.0",
+ "supports-color": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
"node_modules/supports-preserve-symlinks-flag": {
"version": "1.0.0",
"license": "MIT",
@@ -38214,7 +44786,6 @@
},
"node_modules/svg-parser": {
"version": "2.0.4",
- "dev": true,
"license": "MIT"
},
"node_modules/svg-tags": {
@@ -38222,67 +44793,77 @@
"dev": true
},
"node_modules/svgo": {
- "version": "2.8.0",
- "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz",
- "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==",
+ "version": "3.3.2",
+ "license": "MIT",
"dependencies": {
"@trysound/sax": "0.2.0",
"commander": "^7.2.0",
- "css-select": "^4.1.3",
- "css-tree": "^1.1.3",
- "csso": "^4.2.0",
- "picocolors": "^1.0.0",
- "stable": "^0.1.8"
+ "css-select": "^5.1.0",
+ "css-tree": "^2.3.1",
+ "css-what": "^6.1.0",
+ "csso": "^5.0.5",
+ "picocolors": "^1.0.0"
},
"bin": {
"svgo": "bin/svgo"
},
"engines": {
- "node": ">=10.13.0"
+ "node": ">=14.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/svgo"
}
},
"node_modules/svgo/node_modules/commander": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
- "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
+ "license": "MIT",
"engines": {
"node": ">= 10"
}
},
"node_modules/svgo/node_modules/css-select": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz",
- "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==",
+ "version": "5.1.0",
+ "license": "BSD-2-Clause",
"dependencies": {
"boolbase": "^1.0.0",
- "css-what": "^6.0.1",
- "domhandler": "^4.3.1",
- "domutils": "^2.8.0",
+ "css-what": "^6.1.0",
+ "domhandler": "^5.0.2",
+ "domutils": "^3.0.1",
"nth-check": "^2.0.1"
},
"funding": {
"url": "https://github.com/sponsors/fb55"
}
},
+ "node_modules/svgo/node_modules/css-tree": {
+ "version": "2.3.1",
+ "license": "MIT",
+ "dependencies": {
+ "mdn-data": "2.0.30",
+ "source-map-js": "^1.0.1"
+ },
+ "engines": {
+ "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
+ }
+ },
"node_modules/svgo/node_modules/dom-serializer": {
- "version": "1.4.1",
- "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz",
- "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==",
+ "version": "2.0.0",
+ "license": "MIT",
"dependencies": {
- "domelementtype": "^2.0.1",
- "domhandler": "^4.2.0",
- "entities": "^2.0.0"
+ "domelementtype": "^2.3.0",
+ "domhandler": "^5.0.2",
+ "entities": "^4.2.0"
},
"funding": {
"url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
}
},
"node_modules/svgo/node_modules/domhandler": {
- "version": "4.3.1",
- "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz",
- "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==",
+ "version": "5.0.3",
+ "license": "BSD-2-Clause",
"dependencies": {
- "domelementtype": "^2.2.0"
+ "domelementtype": "^2.3.0"
},
"engines": {
"node": ">= 4"
@@ -38292,25 +44873,20 @@
}
},
"node_modules/svgo/node_modules/domutils": {
- "version": "2.8.0",
- "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz",
- "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==",
+ "version": "3.1.0",
+ "license": "BSD-2-Clause",
"dependencies": {
- "dom-serializer": "^1.0.1",
- "domelementtype": "^2.2.0",
- "domhandler": "^4.2.0"
+ "dom-serializer": "^2.0.0",
+ "domelementtype": "^2.3.0",
+ "domhandler": "^5.0.3"
},
"funding": {
"url": "https://github.com/fb55/domutils?sponsor=1"
}
},
- "node_modules/svgo/node_modules/entities": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz",
- "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==",
- "funding": {
- "url": "https://github.com/fb55/entities?sponsor=1"
- }
+ "node_modules/svgo/node_modules/mdn-data": {
+ "version": "2.0.30",
+ "license": "CC0-1.0"
},
"node_modules/swap-case": {
"version": "2.0.2",
@@ -38321,17 +44897,25 @@
},
"node_modules/symbol-tree": {
"version": "3.2.4",
- "dev": true,
"license": "MIT"
},
+ "node_modules/system-architecture": {
+ "version": "0.1.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
"node_modules/tabbable": {
"version": "5.3.3",
"license": "MIT"
},
"node_modules/table": {
- "version": "6.8.1",
- "resolved": "https://registry.npmjs.org/table/-/table-6.8.1.tgz",
- "integrity": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==",
+ "version": "6.9.0",
+ "license": "BSD-3-Clause",
"dependencies": {
"ajv": "^8.0.1",
"lodash.truncate": "^4.4.2",
@@ -38374,23 +44958,45 @@
}
},
"node_modules/table/node_modules/ajv": {
- "version": "8.12.0",
+ "version": "8.17.1",
"license": "MIT",
"dependencies": {
- "fast-deep-equal": "^3.1.1",
+ "fast-deep-equal": "^3.1.3",
+ "fast-uri": "^3.0.1",
"json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
+ "require-from-string": "^2.0.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/epoberezkin"
}
},
+ "node_modules/table/node_modules/is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
"node_modules/table/node_modules/json-schema-traverse": {
"version": "1.0.0",
"license": "MIT"
},
+ "node_modules/table/node_modules/slice-ansi": {
+ "version": "4.0.0",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^4.0.0",
+ "astral-regex": "^2.0.0",
+ "is-fullwidth-code-point": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/slice-ansi?sponsor=1"
+ }
+ },
"node_modules/tapable": {
"version": "2.2.1",
"license": "MIT",
@@ -38399,39 +45005,24 @@
}
},
"node_modules/tar-fs": {
- "version": "2.1.1",
+ "version": "3.0.6",
"license": "MIT",
"dependencies": {
- "chownr": "^1.1.1",
- "mkdirp-classic": "^0.5.2",
"pump": "^3.0.0",
- "tar-stream": "^2.1.4"
- }
- },
- "node_modules/tar-stream": {
- "version": "2.2.0",
- "license": "MIT",
- "dependencies": {
- "bl": "^4.0.3",
- "end-of-stream": "^1.4.1",
- "fs-constants": "^1.0.0",
- "inherits": "^2.0.3",
- "readable-stream": "^3.1.1"
+ "tar-stream": "^3.1.5"
},
- "engines": {
- "node": ">=6"
+ "optionalDependencies": {
+ "bare-fs": "^2.1.1",
+ "bare-path": "^2.1.0"
}
},
- "node_modules/tar-stream/node_modules/readable-stream": {
- "version": "3.6.2",
+ "node_modules/tar-stream": {
+ "version": "3.1.7",
"license": "MIT",
"dependencies": {
- "inherits": "^2.0.3",
- "string_decoder": "^1.1.1",
- "util-deprecate": "^1.0.1"
- },
- "engines": {
- "node": ">= 6"
+ "b4a": "^1.6.4",
+ "fast-fifo": "^1.2.0",
+ "streamx": "^2.15.0"
}
},
"node_modules/temp-dir": {
@@ -38460,10 +45051,20 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/tempy/node_modules/type-fest": {
- "version": "0.16.0",
+ "node_modules/tempy/node_modules/del": {
+ "version": "6.1.1",
"dev": true,
- "license": "(MIT OR CC0-1.0)",
+ "license": "MIT",
+ "dependencies": {
+ "globby": "^11.0.1",
+ "graceful-fs": "^4.2.4",
+ "is-glob": "^4.0.1",
+ "is-path-cwd": "^2.2.0",
+ "is-path-inside": "^3.0.2",
+ "p-map": "^4.0.0",
+ "rimraf": "^3.0.2",
+ "slash": "^3.0.0"
+ },
"engines": {
"node": ">=10"
},
@@ -38471,11 +45072,34 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/term-size": {
- "version": "2.2.1",
+ "node_modules/tempy/node_modules/p-map": {
+ "version": "4.0.0",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "aggregate-error": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/tempy/node_modules/slash": {
+ "version": "3.0.0",
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=8"
+ }
+ },
+ "node_modules/tempy/node_modules/type-fest": {
+ "version": "0.16.0",
+ "dev": true,
+ "license": "(MIT OR CC0-1.0)",
+ "engines": {
+ "node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
@@ -38483,7 +45107,6 @@
},
"node_modules/terminal-link": {
"version": "2.1.1",
- "dev": true,
"license": "MIT",
"dependencies": {
"ansi-escapes": "^4.2.1",
@@ -38497,11 +45120,11 @@
}
},
"node_modules/terser": {
- "version": "5.16.6",
+ "version": "5.37.0",
"license": "BSD-2-Clause",
"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"
},
@@ -38513,14 +45136,14 @@
}
},
"node_modules/terser-webpack-plugin": {
- "version": "5.3.7",
+ "version": "5.3.10",
"license": "MIT",
"dependencies": {
- "@jridgewell/trace-mapping": "^0.3.17",
+ "@jridgewell/trace-mapping": "^0.3.20",
"jest-worker": "^27.4.5",
"schema-utils": "^3.1.1",
"serialize-javascript": "^6.0.1",
- "terser": "^5.16.5"
+ "terser": "^5.26.0"
},
"engines": {
"node": ">= 10.13.0"
@@ -38544,13 +45167,6 @@
}
}
},
- "node_modules/terser-webpack-plugin/node_modules/has-flag": {
- "version": "4.0.0",
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/terser-webpack-plugin/node_modules/jest-worker": {
"version": "27.5.1",
"license": "MIT",
@@ -38564,7 +45180,7 @@
}
},
"node_modules/terser-webpack-plugin/node_modules/schema-utils": {
- "version": "3.1.1",
+ "version": "3.3.0",
"license": "MIT",
"dependencies": {
"@types/json-schema": "^7.0.8",
@@ -38579,6 +45195,13 @@
"url": "https://opencollective.com/webpack"
}
},
+ "node_modules/terser-webpack-plugin/node_modules/serialize-javascript": {
+ "version": "6.0.2",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "randombytes": "^2.1.0"
+ }
+ },
"node_modules/terser-webpack-plugin/node_modules/supports-color": {
"version": "8.1.1",
"license": "MIT",
@@ -38596,14 +45219,6 @@
"version": "2.20.3",
"license": "MIT"
},
- "node_modules/terser/node_modules/source-map-support": {
- "version": "0.5.21",
- "license": "MIT",
- "dependencies": {
- "buffer-from": "^1.0.0",
- "source-map": "^0.6.0"
- }
- },
"node_modules/test-exclude": {
"version": "6.0.0",
"license": "ISC",
@@ -38634,6 +45249,13 @@
"url": "https://github.com/sponsors/isaacs"
}
},
+ "node_modules/text-decoder": {
+ "version": "1.2.2",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "b4a": "^1.6.4"
+ }
+ },
"node_modules/text-extensions": {
"version": "1.9.0",
"dev": true,
@@ -38650,6 +45272,7 @@
"version": "1.21.0",
"resolved": "https://registry.npmjs.org/thingies/-/thingies-1.21.0.tgz",
"integrity": "sha512-hsqsJsFMsV+aD4s3CWKk85ep/3I9XzYV/IXaSouJMYIoDlgyi11cBhsqYe9/geRfB0YIikBQg6raRaM+nIMP9g==",
+ "license": "Unlicense",
"engines": {
"node": ">=10.18"
},
@@ -38659,7 +45282,6 @@
},
"node_modules/throat": {
"version": "5.0.0",
- "dev": true,
"license": "MIT"
},
"node_modules/throttle-debounce": {
@@ -38697,19 +45319,21 @@
},
"node_modules/thunky": {
"version": "1.1.0",
- "devOptional": true,
"license": "MIT"
},
"node_modules/timers-ext": {
- "version": "0.1.7",
+ "version": "0.1.8",
"license": "ISC",
"dependencies": {
- "es5-ext": "~0.10.46",
- "next-tick": "1"
+ "es5-ext": "^0.10.64",
+ "next-tick": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=0.12"
}
},
"node_modules/tiny-invariant": {
- "version": "1.3.1",
+ "version": "1.3.3",
"license": "MIT"
},
"node_modules/tiny-warning": {
@@ -38719,7 +45343,8 @@
"node_modules/tinycolor2": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz",
- "integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw=="
+ "integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==",
+ "license": "MIT"
},
"node_modules/title-case": {
"version": "3.0.3",
@@ -38729,30 +45354,18 @@
}
},
"node_modules/tmp": {
- "version": "0.2.1",
+ "version": "0.2.3",
"license": "MIT",
- "dependencies": {
- "rimraf": "^3.0.0"
- },
"engines": {
- "node": ">=8.17.0"
+ "node": ">=14.14"
}
},
"node_modules/tmpl": {
"version": "1.0.5",
- "dev": true,
"license": "BSD-3-Clause"
},
- "node_modules/to-fast-properties": {
- "version": "2.0.0",
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/to-object-path": {
"version": "0.3.0",
- "dev": true,
"license": "MIT",
"dependencies": {
"kind-of": "^3.0.2"
@@ -38763,12 +45376,10 @@
},
"node_modules/to-object-path/node_modules/is-buffer": {
"version": "1.1.6",
- "dev": true,
"license": "MIT"
},
"node_modules/to-object-path/node_modules/kind-of": {
"version": "3.2.2",
- "dev": true,
"license": "MIT",
"dependencies": {
"is-buffer": "^1.1.5"
@@ -38777,16 +45388,8 @@
"node": ">=0.10.0"
}
},
- "node_modules/to-readable-stream": {
- "version": "1.0.0",
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
"node_modules/to-regex": {
"version": "3.0.2",
- "dev": true,
"license": "MIT",
"dependencies": {
"define-property": "^2.0.2",
@@ -38800,8 +45403,7 @@
},
"node_modules/to-regex-range": {
"version": "5.0.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+ "license": "MIT",
"dependencies": {
"is-number": "^7.0.0"
},
@@ -38811,7 +45413,6 @@
},
"node_modules/to-regex/node_modules/extend-shallow": {
"version": "3.0.2",
- "dev": true,
"license": "MIT",
"dependencies": {
"assign-symbols": "^1.0.0",
@@ -38823,7 +45424,6 @@
},
"node_modules/to-regex/node_modules/is-extendable": {
"version": "1.0.1",
- "dev": true,
"license": "MIT",
"dependencies": {
"is-plain-object": "^2.0.4"
@@ -38834,7 +45434,6 @@
},
"node_modules/to-regex/node_modules/is-plain-object": {
"version": "2.0.4",
- "dev": true,
"license": "MIT",
"dependencies": {
"isobject": "^3.0.1"
@@ -38871,16 +45470,14 @@
}
},
"node_modules/totalist": {
- "version": "1.1.0",
- "dev": true,
+ "version": "3.0.1",
"license": "MIT",
"engines": {
"node": ">=6"
}
},
"node_modules/tough-cookie": {
- "version": "4.1.2",
- "dev": true,
+ "version": "4.1.4",
"license": "BSD-3-Clause",
"dependencies": {
"psl": "^1.1.33",
@@ -38894,7 +45491,6 @@
},
"node_modules/tough-cookie/node_modules/universalify": {
"version": "0.2.0",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">= 4.0.0"
@@ -38902,9 +45498,7 @@
},
"node_modules/tr46": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz",
- "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==",
- "dev": true,
+ "license": "MIT",
"dependencies": {
"punycode": "^2.1.1"
},
@@ -38913,9 +45507,12 @@
}
},
"node_modules/traverse": {
- "version": "0.6.7",
+ "version": "0.6.8",
"dev": true,
"license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
@@ -38924,6 +45521,7 @@
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/tree-dump/-/tree-dump-1.0.2.tgz",
"integrity": "sha512-dpev9ABuLWdEubk+cIaI9cHwRNNDjkBBLXTwI4UCUFdQ5xXKqNXoK4FEciw/vxf+NQ7Cb7sGUyeUtORvHIdRXQ==",
+ "license": "Apache-2.0",
"engines": {
"node": ">=10.0"
},
@@ -38935,8 +45533,13 @@
"tslib": "2"
}
},
- "node_modules/trim": {
- "version": "0.0.1"
+ "node_modules/trim-lines": {
+ "version": "3.0.1",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
},
"node_modules/trim-newlines": {
"version": "3.0.1",
@@ -38946,16 +45549,8 @@
"node": ">=8"
}
},
- "node_modules/trim-trailing-lines": {
- "version": "1.1.4",
- "license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
"node_modules/trough": {
- "version": "1.0.5",
+ "version": "2.2.0",
"license": "MIT",
"funding": {
"type": "github",
@@ -38966,34 +45561,46 @@
"version": "2.2.1",
"license": "Apache-2.0"
},
+ "node_modules/ts-api-utils": {
+ "version": "1.4.3",
+ "license": "MIT",
+ "peer": true,
+ "engines": {
+ "node": ">=16"
+ },
+ "peerDependencies": {
+ "typescript": ">=4.2.0"
+ }
+ },
"node_modules/ts-easing": {
"version": "0.2.0",
"dev": true,
"license": "Unlicense"
},
"node_modules/ts-jest": {
- "version": "29.1.2",
- "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.2.tgz",
- "integrity": "sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g==",
- "dev": true,
+ "version": "29.2.5",
+ "devOptional": true,
+ "license": "MIT",
"dependencies": {
- "bs-logger": "0.x",
- "fast-json-stable-stringify": "2.x",
+ "bs-logger": "^0.2.6",
+ "ejs": "^3.1.10",
+ "fast-json-stable-stringify": "^2.1.0",
"jest-util": "^29.0.0",
"json5": "^2.2.3",
- "lodash.memoize": "4.x",
- "make-error": "1.x",
- "semver": "^7.5.3",
- "yargs-parser": "^21.0.1"
+ "lodash.memoize": "^4.1.2",
+ "make-error": "^1.3.6",
+ "semver": "^7.6.3",
+ "yargs-parser": "^21.1.1"
},
"bin": {
"ts-jest": "cli.js"
},
"engines": {
- "node": "^16.10.0 || ^18.0.0 || >=20.0.0"
+ "node": "^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0"
},
"peerDependencies": {
"@babel/core": ">=7.0.0-beta.0 <8",
+ "@jest/transform": "^29.0.0",
"@jest/types": "^29.0.0",
"babel-jest": "^29.0.0",
"jest": "^29.0.0",
@@ -39003,6 +45610,9 @@
"@babel/core": {
"optional": true
},
+ "@jest/transform": {
+ "optional": true
+ },
"@jest/types": {
"optional": true
},
@@ -39014,11 +45624,40 @@
}
}
},
+ "node_modules/ts-jest/node_modules/ci-info": {
+ "version": "3.9.0",
+ "devOptional": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/sibiraj-s"
+ }
+ ],
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/ts-jest/node_modules/jest-util": {
+ "version": "29.7.0",
+ "devOptional": true,
+ "license": "MIT",
+ "dependencies": {
+ "@jest/types": "^29.6.3",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.9",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
"node_modules/ts-jest/node_modules/semver": {
- "version": "7.6.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.1.tgz",
- "integrity": "sha512-f/vbBsu+fOiYt+lmwZV0rVwJScl46HppnOA1ZvIuBWKOTlllpyJ3bfVax76/OrhCH38dyxoDIA8K7uB963IYgA==",
- "dev": true,
+ "version": "7.6.3",
+ "devOptional": true,
+ "license": "ISC",
"bin": {
"semver": "bin/semver.js"
},
@@ -39028,14 +45667,14 @@
},
"node_modules/ts-jest/node_modules/yargs-parser": {
"version": "21.1.1",
- "dev": true,
+ "devOptional": true,
"license": "ISC",
"engines": {
"node": ">=12"
}
},
"node_modules/tsconfig-paths": {
- "version": "3.14.2",
+ "version": "3.15.0",
"license": "MIT",
"dependencies": {
"@types/json5": "^0.0.29",
@@ -39062,7 +45701,7 @@
}
},
"node_modules/tslib": {
- "version": "2.5.0",
+ "version": "2.8.1",
"license": "0BSD"
},
"node_modules/tsutils": {
@@ -39093,7 +45732,7 @@
}
},
"node_modules/type": {
- "version": "1.2.0",
+ "version": "2.7.3",
"license": "ISC"
},
"node_modules/type-check": {
@@ -39108,7 +45747,6 @@
},
"node_modules/type-detect": {
"version": "4.0.8",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=4"
@@ -39139,13 +45777,67 @@
"version": "2.0.1",
"license": "MIT"
},
+ "node_modules/typed-array-buffer": {
+ "version": "1.0.2",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "es-errors": "^1.3.0",
+ "is-typed-array": "^1.1.13"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/typed-array-byte-length": {
+ "version": "1.0.1",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "for-each": "^0.3.3",
+ "gopd": "^1.0.1",
+ "has-proto": "^1.0.3",
+ "is-typed-array": "^1.1.13"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/typed-array-byte-offset": {
+ "version": "1.0.3",
+ "license": "MIT",
+ "dependencies": {
+ "available-typed-arrays": "^1.0.7",
+ "call-bind": "^1.0.7",
+ "for-each": "^0.3.3",
+ "gopd": "^1.0.1",
+ "has-proto": "^1.0.3",
+ "is-typed-array": "^1.1.13",
+ "reflect.getprototypeof": "^1.0.6"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/typed-array-length": {
- "version": "1.0.4",
+ "version": "1.0.7",
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
+ "call-bind": "^1.0.7",
"for-each": "^0.3.3",
- "is-typed-array": "^1.1.9"
+ "gopd": "^1.0.1",
+ "is-typed-array": "^1.1.13",
+ "possible-typed-array-names": "^1.0.0",
+ "reflect.getprototypeof": "^1.0.6"
+ },
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
@@ -39182,7 +45874,7 @@
}
},
"node_modules/ua-parser-js": {
- "version": "0.7.35",
+ "version": "1.0.39",
"funding": [
{
"type": "opencollective",
@@ -39191,9 +45883,16 @@
{
"type": "paypal",
"url": "https://paypal.me/faisalman"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/faisalman"
}
],
"license": "MIT",
+ "bin": {
+ "ua-parser-js": "script/cli.js"
+ },
"engines": {
"node": "*"
}
@@ -39251,20 +45950,9 @@
"react": ">=15.0.0"
}
},
- "node_modules/underscore.string": {
- "version": "3.3.6",
- "license": "MIT",
- "dependencies": {
- "sprintf-js": "^1.1.1",
- "util-deprecate": "^1.0.2"
- },
- "engines": {
- "node": "*"
- }
- },
- "node_modules/underscore.string/node_modules/sprintf-js": {
- "version": "1.1.2",
- "license": "BSD-3-Clause"
+ "node_modules/undici-types": {
+ "version": "6.20.0",
+ "license": "MIT"
},
"node_modules/unescape": {
"version": "1.0.1",
@@ -39276,25 +45964,26 @@
"node": ">=0.10.0"
}
},
- "node_modules/unherit": {
- "version": "1.1.3",
- "license": "MIT",
- "dependencies": {
- "inherits": "^2.0.0",
- "xtend": "^4.0.0"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
"node_modules/unicode-canonical-property-names-ecmascript": {
- "version": "2.0.0",
+ "version": "2.0.1",
"license": "MIT",
"engines": {
"node": ">=4"
}
},
+ "node_modules/unicode-emoji-utils": {
+ "version": "1.2.0",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "emoji-regex": "10.3.0"
+ }
+ },
+ "node_modules/unicode-emoji-utils/node_modules/emoji-regex": {
+ "version": "10.3.0",
+ "license": "MIT",
+ "peer": true
+ },
"node_modules/unicode-match-property-ecmascript": {
"version": "2.0.0",
"license": "MIT",
@@ -39307,7 +45996,7 @@
}
},
"node_modules/unicode-match-property-value-ecmascript": {
- "version": "2.1.0",
+ "version": "2.2.0",
"license": "MIT",
"engines": {
"node": ">=4"
@@ -39321,15 +46010,16 @@
}
},
"node_modules/unified": {
- "version": "9.2.0",
+ "version": "10.1.2",
"license": "MIT",
"dependencies": {
- "bail": "^1.0.0",
+ "@types/unist": "^2.0.0",
+ "bail": "^2.0.0",
"extend": "^3.0.0",
"is-buffer": "^2.0.0",
- "is-plain-obj": "^2.0.0",
- "trough": "^1.0.0",
- "vfile": "^4.0.0"
+ "is-plain-obj": "^4.0.0",
+ "trough": "^2.0.0",
+ "vfile": "^5.0.0"
},
"funding": {
"type": "opencollective",
@@ -39337,15 +46027,17 @@
}
},
"node_modules/unified/node_modules/is-plain-obj": {
- "version": "2.1.0",
+ "version": "4.1.0",
"license": "MIT",
"engines": {
- "node": ">=8"
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/union-value": {
"version": "1.0.1",
- "dev": true,
"license": "MIT",
"dependencies": {
"arr-union": "^3.1.0",
@@ -39375,34 +46067,31 @@
"url": "https://opencollective.com/unified"
}
},
- "node_modules/unist-util-generated": {
- "version": "1.1.6",
+ "node_modules/unist-util-find-after": {
+ "version": "4.0.1",
"license": "MIT",
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^5.0.0"
+ },
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
- "node_modules/unist-util-is": {
- "version": "4.1.0",
+ "node_modules/unist-util-generated": {
+ "version": "1.1.6",
"license": "MIT",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
- "node_modules/unist-util-map": {
- "version": "1.0.5",
- "license": "MIT",
- "dependencies": {
- "object-assign": "^4.0.1"
- }
- },
- "node_modules/unist-util-modify-children": {
- "version": "2.0.0",
+ "node_modules/unist-util-is": {
+ "version": "5.2.1",
"license": "MIT",
"dependencies": {
- "array-iterate": "^1.0.0"
+ "@types/unist": "^2.0.0"
},
"funding": {
"type": "opencollective",
@@ -39410,40 +46099,44 @@
}
},
"node_modules/unist-util-position": {
- "version": "3.1.0",
+ "version": "4.0.4",
"license": "MIT",
+ "dependencies": {
+ "@types/unist": "^2.0.0"
+ },
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
- "node_modules/unist-util-remove": {
- "version": "1.0.3",
+ "node_modules/unist-util-position-from-estree": {
+ "version": "1.1.2",
"license": "MIT",
"dependencies": {
- "unist-util-is": "^3.0.0"
+ "@types/unist": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
"node_modules/unist-util-remove-position": {
- "version": "2.0.1",
+ "version": "4.0.2",
"license": "MIT",
"dependencies": {
- "unist-util-visit": "^2.0.0"
+ "@types/unist": "^2.0.0",
+ "unist-util-visit": "^4.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
- "node_modules/unist-util-remove/node_modules/unist-util-is": {
- "version": "3.0.0",
- "license": "MIT"
- },
"node_modules/unist-util-stringify-position": {
- "version": "2.0.3",
+ "version": "3.0.3",
"license": "MIT",
"dependencies": {
- "@types/unist": "^2.0.2"
+ "@types/unist": "^2.0.0"
},
"funding": {
"type": "opencollective",
@@ -39451,32 +46144,24 @@
}
},
"node_modules/unist-util-visit": {
- "version": "2.0.3",
+ "version": "4.1.2",
"license": "MIT",
"dependencies": {
"@types/unist": "^2.0.0",
- "unist-util-is": "^4.0.0",
- "unist-util-visit-parents": "^3.0.0"
+ "unist-util-is": "^5.0.0",
+ "unist-util-visit-parents": "^5.1.1"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
- "node_modules/unist-util-visit-children": {
- "version": "1.1.4",
- "license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
"node_modules/unist-util-visit-parents": {
- "version": "3.1.1",
+ "version": "5.1.3",
"license": "MIT",
"dependencies": {
"@types/unist": "^2.0.0",
- "unist-util-is": "^4.0.0"
+ "unist-util-is": "^5.0.0"
},
"funding": {
"type": "opencollective",
@@ -39495,13 +46180,20 @@
"version": "0.3.3",
"license": "MIT"
},
+ "node_modules/universal-cookie/node_modules/cookie": {
+ "version": "0.4.2",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
"node_modules/universal-user-agent": {
- "version": "6.0.0",
+ "version": "6.0.1",
"dev": true,
"license": "ISC"
},
"node_modules/universalify": {
- "version": "2.0.0",
+ "version": "2.0.1",
"license": "MIT",
"engines": {
"node": ">= 10.0.0"
@@ -39536,7 +46228,6 @@
},
"node_modules/unset-value": {
"version": "1.0.0",
- "dev": true,
"license": "MIT",
"dependencies": {
"has-value": "^0.3.1",
@@ -39548,7 +46239,6 @@
},
"node_modules/unset-value/node_modules/has-value": {
"version": "0.3.1",
- "dev": true,
"license": "MIT",
"dependencies": {
"get-value": "^2.0.3",
@@ -39561,7 +46251,6 @@
},
"node_modules/unset-value/node_modules/has-value/node_modules/isobject": {
"version": "2.1.0",
- "dev": true,
"license": "MIT",
"dependencies": {
"isarray": "1.0.0"
@@ -39572,7 +46261,6 @@
},
"node_modules/unset-value/node_modules/has-values": {
"version": "0.1.4",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -39580,13 +46268,10 @@
},
"node_modules/unset-value/node_modules/isarray": {
"version": "1.0.0",
- "dev": true,
"license": "MIT"
},
"node_modules/update-browserslist-db": {
- "version": "1.0.13",
- "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz",
- "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==",
+ "version": "1.1.1",
"funding": [
{
"type": "opencollective",
@@ -39601,9 +46286,10 @@
"url": "https://github.com/sponsors/ai"
}
],
+ "license": "MIT",
"dependencies": {
- "escalade": "^3.1.1",
- "picocolors": "^1.0.0"
+ "escalade": "^3.2.0",
+ "picocolors": "^1.1.0"
},
"bin": {
"update-browserslist-db": "cli.js"
@@ -39612,70 +46298,13 @@
"browserslist": ">= 4.21.0"
}
},
- "node_modules/update-notifier": {
- "version": "5.1.0",
- "license": "BSD-2-Clause",
- "dependencies": {
- "boxen": "^5.0.0",
- "chalk": "^4.1.0",
- "configstore": "^5.0.1",
- "has-yarn": "^2.1.0",
- "import-lazy": "^2.1.0",
- "is-ci": "^2.0.0",
- "is-installed-globally": "^0.4.0",
- "is-npm": "^5.0.0",
- "is-yarn-global": "^0.3.0",
- "latest-version": "^5.1.0",
- "pupa": "^2.1.1",
- "semver": "^7.3.4",
- "semver-diff": "^3.1.1",
- "xdg-basedir": "^4.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/yeoman/update-notifier?sponsor=1"
- }
- },
- "node_modules/update-notifier/node_modules/import-lazy": {
- "version": "2.1.0",
+ "node_modules/upper-case": {
+ "version": "2.0.2",
"license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/update-notifier/node_modules/lru-cache": {
- "version": "6.0.0",
- "license": "ISC",
- "dependencies": {
- "yallist": "^4.0.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/update-notifier/node_modules/semver": {
- "version": "7.5.0",
- "license": "ISC",
"dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
+ "tslib": "^2.0.3"
}
},
- "node_modules/update-notifier/node_modules/yallist": {
- "version": "4.0.0",
- "license": "ISC"
- },
- "node_modules/upper-case": {
- "version": "1.1.3",
- "license": "MIT"
- },
"node_modules/upper-case-first": {
"version": "2.0.2",
"license": "MIT",
@@ -39698,6 +46327,7 @@
"version": "0.11.4",
"resolved": "https://registry.npmjs.org/url/-/url-0.11.4.tgz",
"integrity": "sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==",
+ "license": "MIT",
"dependencies": {
"punycode": "^1.4.1",
"qs": "^6.12.3"
@@ -39737,7 +46367,7 @@
}
},
"node_modules/url-loader/node_modules/schema-utils": {
- "version": "3.1.2",
+ "version": "3.3.0",
"license": "MIT",
"dependencies": {
"@types/json-schema": "^7.0.8",
@@ -39754,34 +46384,25 @@
},
"node_modules/url-parse": {
"version": "1.5.10",
- "dev": true,
"license": "MIT",
"dependencies": {
"querystringify": "^2.1.1",
"requires-port": "^1.0.0"
}
},
- "node_modules/url-parse-lax": {
- "version": "3.0.0",
- "license": "MIT",
- "dependencies": {
- "prepend-http": "^2.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/url/node_modules/punycode": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz",
- "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ=="
+ "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==",
+ "license": "MIT"
},
"node_modules/url/node_modules/qs": {
- "version": "6.13.0",
- "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz",
- "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==",
+ "version": "6.14.0",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.0.tgz",
+ "integrity": "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==",
+ "license": "BSD-3-Clause",
"dependencies": {
- "side-channel": "^1.0.6"
+ "side-channel": "^1.1.0"
},
"engines": {
"node": ">=0.6"
@@ -39792,14 +46413,13 @@
},
"node_modules/use": {
"version": "3.1.1",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/use-callback-ref": {
- "version": "1.3.0",
+ "version": "1.3.2",
"license": "MIT",
"dependencies": {
"tslib": "^2.0.0"
@@ -39852,6 +46472,7 @@
"version": "0.12.5",
"resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz",
"integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==",
+ "license": "MIT",
"dependencies": {
"inherits": "^2.0.3",
"is-arguments": "^1.0.4",
@@ -39869,7 +46490,7 @@
"license": "MIT"
},
"node_modules/utility-types": {
- "version": "3.10.0",
+ "version": "3.11.0",
"license": "MIT",
"engines": {
"node": ">= 4"
@@ -39883,26 +46504,60 @@
}
},
"node_modules/uuid": {
- "version": "9.0.0",
+ "version": "9.0.1",
+ "funding": [
+ "https://github.com/sponsors/broofa",
+ "https://github.com/sponsors/ctavan"
+ ],
"license": "MIT",
"bin": {
"uuid": "dist/bin/uuid"
}
},
+ "node_modules/uvu": {
+ "version": "0.5.6",
+ "license": "MIT",
+ "dependencies": {
+ "dequal": "^2.0.0",
+ "diff": "^5.0.0",
+ "kleur": "^4.0.3",
+ "sade": "^1.7.3"
+ },
+ "bin": {
+ "uvu": "bin.js"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/uvu/node_modules/kleur": {
+ "version": "4.1.5",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
"node_modules/v8-compile-cache": {
- "version": "2.3.0",
+ "version": "2.4.0",
"license": "MIT"
},
"node_modules/v8-to-istanbul": {
- "version": "9.1.0",
+ "version": "7.1.2",
"license": "ISC",
"dependencies": {
- "@jridgewell/trace-mapping": "^0.3.12",
"@types/istanbul-lib-coverage": "^2.0.1",
- "convert-source-map": "^1.6.0"
+ "convert-source-map": "^1.6.0",
+ "source-map": "^0.7.3"
},
"engines": {
- "node": ">=10.12.0"
+ "node": ">=10.10.0"
+ }
+ },
+ "node_modules/v8-to-istanbul/node_modules/source-map": {
+ "version": "0.7.4",
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">= 8"
}
},
"node_modules/valid-url": {
@@ -39910,7 +46565,6 @@
},
"node_modules/validate-npm-package-license": {
"version": "3.0.4",
- "dev": true,
"license": "Apache-2.0",
"dependencies": {
"spdx-correct": "^3.0.0",
@@ -39936,33 +46590,25 @@
}
},
"node_modules/vfile": {
- "version": "4.2.1",
+ "version": "5.3.7",
"license": "MIT",
"dependencies": {
"@types/unist": "^2.0.0",
"is-buffer": "^2.0.0",
- "unist-util-stringify-position": "^2.0.0",
- "vfile-message": "^2.0.0"
+ "unist-util-stringify-position": "^3.0.0",
+ "vfile-message": "^3.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
- "node_modules/vfile-location": {
- "version": "3.2.0",
- "license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
"node_modules/vfile-message": {
- "version": "2.0.4",
+ "version": "3.1.4",
"license": "MIT",
"dependencies": {
"@types/unist": "^2.0.0",
- "unist-util-stringify-position": "^2.0.0"
+ "unist-util-stringify-position": "^3.0.0"
},
"funding": {
"type": "opencollective",
@@ -39975,7 +46621,6 @@
},
"node_modules/w3c-hr-time": {
"version": "1.0.2",
- "dev": true,
"license": "MIT",
"dependencies": {
"browser-process-hrtime": "^1.0.0"
@@ -39983,9 +46628,7 @@
},
"node_modules/w3c-xmlserializer": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz",
- "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==",
- "dev": true,
+ "license": "MIT",
"dependencies": {
"xml-name-validator": "^4.0.0"
},
@@ -39995,7 +46638,6 @@
},
"node_modules/walker": {
"version": "1.0.8",
- "dev": true,
"license": "Apache-2.0",
"dependencies": {
"makeerror": "1.0.12"
@@ -40009,7 +46651,7 @@
}
},
"node_modules/watchpack": {
- "version": "2.4.0",
+ "version": "2.4.2",
"license": "MIT",
"dependencies": {
"glob-to-regexp": "^0.4.1",
@@ -40021,7 +46663,6 @@
},
"node_modules/wbuf": {
"version": "1.7.3",
- "devOptional": true,
"license": "MIT",
"dependencies": {
"minimalistic-assert": "^1.0.0"
@@ -40029,8 +46670,7 @@
},
"node_modules/wcwidth": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz",
- "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==",
+ "license": "MIT",
"dependencies": {
"defaults": "^1.0.3"
}
@@ -40039,50 +46679,39 @@
"version": "1.2.2",
"license": "MIT"
},
- "node_modules/web-namespaces": {
- "version": "1.1.4",
- "license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
"node_modules/webidl-conversions": {
"version": "7.0.0",
- "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz",
- "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==",
- "dev": true,
+ "license": "BSD-2-Clause",
"engines": {
"node": ">=12"
}
},
"node_modules/webpack": {
- "version": "5.79.0",
+ "version": "5.97.1",
"license": "MIT",
"dependencies": {
- "@types/eslint-scope": "^3.7.3",
- "@types/estree": "^1.0.0",
- "@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",
+ "@types/eslint-scope": "^3.7.7",
+ "@types/estree": "^1.0.6",
+ "@webassemblyjs/ast": "^1.14.1",
+ "@webassemblyjs/wasm-edit": "^1.14.1",
+ "@webassemblyjs/wasm-parser": "^1.14.1",
+ "acorn": "^8.14.0",
+ "browserslist": "^4.24.0",
"chrome-trace-event": "^1.0.2",
- "enhanced-resolve": "^5.10.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.3.7",
- "watchpack": "^2.4.0",
+ "terser-webpack-plugin": "^5.3.10",
+ "watchpack": "^2.4.1",
"webpack-sources": "^3.2.3"
},
"bin": {
@@ -40102,19 +46731,21 @@
}
},
"node_modules/webpack-bundle-analyzer": {
- "version": "4.8.0",
- "dev": true,
+ "version": "4.10.1",
"license": "MIT",
"dependencies": {
"@discoveryjs/json-ext": "0.5.7",
"acorn": "^8.0.4",
"acorn-walk": "^8.0.0",
- "chalk": "^4.1.0",
"commander": "^7.2.0",
+ "debounce": "^1.2.1",
+ "escape-string-regexp": "^4.0.0",
"gzip-size": "^6.0.0",
- "lodash": "^4.17.20",
+ "html-escaper": "^2.0.2",
+ "is-plain-object": "^5.0.0",
"opener": "^1.5.2",
- "sirv": "^1.0.7",
+ "picocolors": "^1.0.0",
+ "sirv": "^2.0.3",
"ws": "^7.3.1"
},
"bin": {
@@ -40124,17 +46755,8 @@
"node": ">= 10.13.0"
}
},
- "node_modules/webpack-bundle-analyzer/node_modules/acorn-walk": {
- "version": "8.2.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.4.0"
- }
- },
"node_modules/webpack-bundle-analyzer/node_modules/commander": {
"version": "7.2.0",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">= 10"
@@ -40142,9 +46764,7 @@
},
"node_modules/webpack-bundle-analyzer/node_modules/ws": {
"version": "7.5.10",
- "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz",
- "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==",
- "dev": true,
+ "license": "MIT",
"engines": {
"node": ">=8.3.0"
},
@@ -40162,16 +46782,15 @@
}
},
"node_modules/webpack-cli": {
- "version": "5.0.1",
- "dev": true,
+ "version": "5.1.4",
"license": "MIT",
"dependencies": {
"@discoveryjs/json-ext": "^0.5.0",
- "@webpack-cli/configtest": "^2.0.1",
- "@webpack-cli/info": "^2.0.1",
- "@webpack-cli/serve": "^2.0.1",
+ "@webpack-cli/configtest": "^2.1.1",
+ "@webpack-cli/info": "^2.0.2",
+ "@webpack-cli/serve": "^2.0.5",
"colorette": "^2.0.14",
- "commander": "^9.4.1",
+ "commander": "^10.0.1",
"cross-spawn": "^7.0.3",
"envinfo": "^7.7.3",
"fastest-levenshtein": "^1.0.12",
@@ -40205,27 +46824,32 @@
}
}
},
+ "node_modules/webpack-cli/node_modules/commander": {
+ "version": "10.0.1",
+ "license": "MIT",
+ "engines": {
+ "node": ">=14"
+ }
+ },
"node_modules/webpack-cli/node_modules/interpret": {
"version": "3.1.1",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=10.13.0"
}
},
"node_modules/webpack-dev-middleware": {
- "version": "4.3.0",
+ "version": "5.3.4",
"license": "MIT",
"dependencies": {
- "colorette": "^1.2.2",
- "mem": "^8.1.1",
- "memfs": "^3.2.2",
- "mime-types": "^2.1.30",
+ "colorette": "^2.0.10",
+ "memfs": "^3.4.3",
+ "mime-types": "^2.1.31",
"range-parser": "^1.2.1",
- "schema-utils": "^3.0.0"
+ "schema-utils": "^4.0.0"
},
"engines": {
- "node": ">= v10.23.3"
+ "node": ">= 12.13.0"
},
"funding": {
"type": "opencollective",
@@ -40235,29 +46859,8 @@
"webpack": "^4.0.0 || ^5.0.0"
}
},
- "node_modules/webpack-dev-middleware/node_modules/colorette": {
- "version": "1.4.0",
- "license": "MIT"
- },
- "node_modules/webpack-dev-middleware/node_modules/schema-utils": {
- "version": "3.1.2",
- "license": "MIT",
- "dependencies": {
- "@types/json-schema": "^7.0.8",
- "ajv": "^6.12.5",
- "ajv-keywords": "^3.5.2"
- },
- "engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- }
- },
"node_modules/webpack-dev-server": {
- "version": "4.13.2",
- "devOptional": true,
+ "version": "4.15.1",
"license": "MIT",
"dependencies": {
"@types/bonjour": "^3.5.9",
@@ -40266,7 +46869,7 @@
"@types/serve-index": "^1.9.1",
"@types/serve-static": "^1.13.10",
"@types/sockjs": "^0.3.33",
- "@types/ws": "^8.5.1",
+ "@types/ws": "^8.5.5",
"ansi-html-community": "^0.0.8",
"bonjour-service": "^1.0.11",
"chokidar": "^3.5.3",
@@ -40313,48 +46916,38 @@
}
}
},
- "node_modules/webpack-dev-server/node_modules/ajv": {
- "version": "8.12.0",
- "devOptional": true,
+ "node_modules/webpack-dev-server/node_modules/ipaddr.js": {
+ "version": "2.2.0",
"license": "MIT",
- "dependencies": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
+ "engines": {
+ "node": ">= 10"
}
},
- "node_modules/webpack-dev-server/node_modules/ajv-keywords": {
- "version": "5.1.0",
- "devOptional": true,
+ "node_modules/webpack-dev-server/node_modules/is-docker": {
+ "version": "2.2.1",
"license": "MIT",
- "dependencies": {
- "fast-deep-equal": "^3.1.3"
+ "bin": {
+ "is-docker": "cli.js"
},
- "peerDependencies": {
- "ajv": "^8.8.2"
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/webpack-dev-server/node_modules/ipaddr.js": {
- "version": "2.0.1",
- "devOptional": true,
+ "node_modules/webpack-dev-server/node_modules/is-wsl": {
+ "version": "2.2.0",
"license": "MIT",
+ "dependencies": {
+ "is-docker": "^2.0.0"
+ },
"engines": {
- "node": ">= 10"
+ "node": ">=8"
}
},
- "node_modules/webpack-dev-server/node_modules/json-schema-traverse": {
- "version": "1.0.0",
- "devOptional": true,
- "license": "MIT"
- },
"node_modules/webpack-dev-server/node_modules/open": {
"version": "8.4.2",
- "devOptional": true,
"license": "MIT",
"dependencies": {
"define-lazy-prop": "^2.0.0",
@@ -40368,55 +46961,33 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/webpack-dev-server/node_modules/schema-utils": {
- "version": "4.0.1",
- "devOptional": true,
+ "node_modules/webpack-merge": {
+ "version": "5.9.0",
"license": "MIT",
"dependencies": {
- "@types/json-schema": "^7.0.9",
- "ajv": "^8.9.0",
- "ajv-formats": "^2.1.1",
- "ajv-keywords": "^5.1.0"
+ "clone-deep": "^4.0.1",
+ "wildcard": "^2.0.0"
},
"engines": {
- "node": ">= 12.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
+ "node": ">=10.0.0"
}
},
- "node_modules/webpack-dev-server/node_modules/webpack-dev-middleware": {
- "version": "5.3.3",
- "devOptional": true,
- "license": "MIT",
+ "node_modules/webpack-remove-empty-scripts": {
+ "version": "1.0.4",
+ "license": "ISC",
+ "peer": true,
"dependencies": {
- "colorette": "^2.0.10",
- "memfs": "^3.4.3",
- "mime-types": "^2.1.31",
- "range-parser": "^1.2.1",
- "schema-utils": "^4.0.0"
+ "ansis": "1.5.2"
},
"engines": {
- "node": ">= 12.13.0"
+ "node": ">=12.14"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
+ "type": "patreon",
+ "url": "https://patreon.com/biodiscus"
},
"peerDependencies": {
- "webpack": "^4.0.0 || ^5.0.0"
- }
- },
- "node_modules/webpack-merge": {
- "version": "5.8.0",
- "license": "MIT",
- "dependencies": {
- "clone-deep": "^4.0.1",
- "wildcard": "^2.0.0"
- },
- "engines": {
- "node": ">=10.0.0"
+ "webpack": ">=5.32.0"
}
},
"node_modules/webpack-sources": {
@@ -40427,25 +46998,33 @@
}
},
"node_modules/webpack-stats-plugin": {
- "version": "1.1.1",
+ "version": "1.1.3",
"license": "MIT"
},
"node_modules/webpack-virtual-modules": {
- "version": "0.3.2",
- "license": "MIT",
+ "version": "0.5.0",
+ "license": "MIT"
+ },
+ "node_modules/webpack/node_modules/eslint-scope": {
+ "version": "5.1.1",
+ "license": "BSD-2-Clause",
"dependencies": {
- "debug": "^3.0.0"
+ "esrecurse": "^4.3.0",
+ "estraverse": "^4.1.1"
+ },
+ "engines": {
+ "node": ">=8.0.0"
}
},
- "node_modules/webpack-virtual-modules/node_modules/debug": {
- "version": "3.2.7",
- "license": "MIT",
- "dependencies": {
- "ms": "^2.1.1"
+ "node_modules/webpack/node_modules/estraverse": {
+ "version": "4.3.0",
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=4.0"
}
},
"node_modules/webpack/node_modules/schema-utils": {
- "version": "3.1.1",
+ "version": "3.3.0",
"license": "MIT",
"dependencies": {
"@types/json-schema": "^7.0.8",
@@ -40462,7 +47041,6 @@
},
"node_modules/websocket-driver": {
"version": "0.7.4",
- "devOptional": true,
"license": "Apache-2.0",
"dependencies": {
"http-parser-js": ">=0.5.1",
@@ -40475,7 +47053,6 @@
},
"node_modules/websocket-extensions": {
"version": "0.1.4",
- "devOptional": true,
"license": "Apache-2.0",
"engines": {
"node": ">=0.8.0"
@@ -40483,9 +47060,7 @@
},
"node_modules/whatwg-encoding": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz",
- "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==",
- "dev": true,
+ "license": "MIT",
"dependencies": {
"iconv-lite": "0.6.3"
},
@@ -40493,20 +47068,26 @@
"node": ">=12"
}
},
+ "node_modules/whatwg-encoding/node_modules/iconv-lite": {
+ "version": "0.6.3",
+ "license": "MIT",
+ "dependencies": {
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
"node_modules/whatwg-mimetype": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz",
- "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==",
- "dev": true,
+ "license": "MIT",
"engines": {
"node": ">=12"
}
},
"node_modules/whatwg-url": {
"version": "11.0.0",
- "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz",
- "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==",
- "dev": true,
+ "license": "MIT",
"dependencies": {
"tr46": "^3.0.0",
"webidl-conversions": "^7.0.0"
@@ -40529,27 +47110,58 @@
}
},
"node_modules/which-boxed-primitive": {
- "version": "1.0.2",
+ "version": "1.1.0",
"license": "MIT",
"dependencies": {
- "is-bigint": "^1.0.1",
- "is-boolean-object": "^1.1.0",
- "is-number-object": "^1.0.4",
- "is-string": "^1.0.5",
- "is-symbol": "^1.0.3"
+ "is-bigint": "^1.1.0",
+ "is-boolean-object": "^1.2.0",
+ "is-number-object": "^1.1.0",
+ "is-string": "^1.1.0",
+ "is-symbol": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/which-builtin-type": {
+ "version": "1.2.0",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "function.prototype.name": "^1.1.6",
+ "has-tostringtag": "^1.0.2",
+ "is-async-function": "^2.0.0",
+ "is-date-object": "^1.0.5",
+ "is-finalizationregistry": "^1.1.0",
+ "is-generator-function": "^1.0.10",
+ "is-regex": "^1.1.4",
+ "is-weakref": "^1.0.2",
+ "isarray": "^2.0.5",
+ "which-boxed-primitive": "^1.0.2",
+ "which-collection": "^1.0.2",
+ "which-typed-array": "^1.1.15"
+ },
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/which-collection": {
- "version": "1.0.1",
+ "version": "1.0.2",
"license": "MIT",
"dependencies": {
- "is-map": "^2.0.1",
- "is-set": "^2.0.1",
- "is-weakmap": "^2.0.1",
- "is-weakset": "^2.0.1"
+ "is-map": "^2.0.3",
+ "is-set": "^2.0.3",
+ "is-weakmap": "^2.0.2",
+ "is-weakset": "^2.0.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
@@ -40560,15 +47172,14 @@
"license": "ISC"
},
"node_modules/which-typed-array": {
- "version": "1.1.9",
+ "version": "1.1.16",
"license": "MIT",
"dependencies": {
- "available-typed-arrays": "^1.0.5",
- "call-bind": "^1.0.2",
+ "available-typed-arrays": "^1.0.7",
+ "call-bind": "^1.0.7",
"for-each": "^0.3.3",
"gopd": "^1.0.1",
- "has-tostringtag": "^1.0.0",
- "is-typed-array": "^1.1.10"
+ "has-tostringtag": "^1.0.2"
},
"engines": {
"node": ">= 0.4"
@@ -40592,7 +47203,7 @@
"license": "MIT"
},
"node_modules/word-wrap": {
- "version": "1.2.3",
+ "version": "1.2.5",
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -40643,6 +47254,7 @@
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+ "license": "MIT",
"dependencies": {
"ansi-styles": "^4.0.0",
"string-width": "^4.1.0",
@@ -40655,84 +47267,23 @@
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
}
},
- "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/wrap-ansi-cjs/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/wrap-ansi-cjs/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
- },
- "node_modules/wrap-ansi/node_modules/ansi-styles": {
- "version": "4.3.0",
- "license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/wrap-ansi/node_modules/color-convert": {
- "version": "2.0.1",
- "license": "MIT",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/wrap-ansi/node_modules/color-name": {
- "version": "1.1.4",
- "license": "MIT"
- },
"node_modules/wrappy": {
"version": "1.0.2",
"license": "ISC"
},
"node_modules/write-file-atomic": {
- "version": "4.0.2",
- "dev": true,
+ "version": "3.0.3",
"license": "ISC",
"dependencies": {
"imurmurhash": "^0.1.4",
- "signal-exit": "^3.0.7"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "is-typedarray": "^1.0.0",
+ "signal-exit": "^3.0.2",
+ "typedarray-to-buffer": "^3.1.5"
}
},
"node_modules/ws": {
- "version": "8.17.1",
- "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz",
- "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==",
- "devOptional": true,
+ "version": "8.18.0",
+ "license": "MIT",
"engines": {
"node": ">=10.0.0"
},
@@ -40749,9 +47300,6 @@
}
}
},
- "node_modules/x-is-string": {
- "version": "0.1.0"
- },
"node_modules/xdg-basedir": {
"version": "4.0.0",
"license": "MIT",
@@ -40761,16 +47309,13 @@
},
"node_modules/xml-name-validator": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz",
- "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==",
- "dev": true,
+ "license": "Apache-2.0",
"engines": {
"node": ">=12"
}
},
"node_modules/xmlchars": {
"version": "2.2.0",
- "dev": true,
"license": "MIT"
},
"node_modules/xmlhttprequest-ssl": {
@@ -40783,30 +47328,13 @@
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/xregexp/-/xregexp-5.1.1.tgz",
"integrity": "sha512-fKXeVorD+CzWvFs7VBuKTYIW63YD1e1osxwQ8caZ6o1jg6pDAbABDG54LCIq0j5cy7PjRvGIq6sef9DYPXpncg==",
- "dependencies": {
- "@babel/runtime-corejs3": "^7.16.5"
- }
- },
- "node_modules/xss": {
- "version": "1.0.14",
"license": "MIT",
"dependencies": {
- "commander": "^2.20.3",
- "cssfilter": "0.0.10"
- },
- "bin": {
- "xss": "bin/xss"
- },
- "engines": {
- "node": ">= 0.10.0"
+ "@babel/runtime-corejs3": "^7.16.5"
}
},
- "node_modules/xss/node_modules/commander": {
- "version": "2.20.3",
- "license": "MIT"
- },
"node_modules/xstate": {
- "version": "4.32.1",
+ "version": "4.38.3",
"license": "MIT",
"funding": {
"type": "opencollective",
@@ -40825,57 +47353,53 @@
"license": "MIT"
},
"node_modules/y18n": {
- "version": "5.0.8",
- "license": "ISC",
- "engines": {
- "node": ">=10"
- }
+ "version": "4.0.3",
+ "license": "ISC"
},
"node_modules/yallist": {
"version": "3.1.1",
"license": "ISC"
},
"node_modules/yaml": {
- "version": "1.10.2",
+ "version": "2.6.1",
"license": "ISC",
+ "bin": {
+ "yaml": "bin.mjs"
+ },
"engines": {
- "node": ">= 6"
+ "node": ">= 14"
}
},
"node_modules/yaml-loader": {
- "version": "0.8.0",
+ "version": "0.8.1",
"license": "MIT",
"dependencies": {
"javascript-stringify": "^2.0.1",
"loader-utils": "^2.0.0",
"yaml": "^2.0.0"
},
- "engines": {
- "node": ">= 12.13"
- }
- },
- "node_modules/yaml-loader/node_modules/yaml": {
- "version": "2.2.2",
- "license": "ISC",
"engines": {
"node": ">= 14"
}
},
"node_modules/yargs": {
- "version": "17.7.1",
- "dev": true,
+ "version": "15.4.1",
"license": "MIT",
"dependencies": {
- "cliui": "^8.0.1",
- "escalade": "^3.1.1",
- "get-caller-file": "^2.0.5",
+ "cliui": "^6.0.0",
+ "decamelize": "^1.2.0",
+ "find-up": "^4.1.0",
+ "get-caller-file": "^2.0.1",
"require-directory": "^2.1.1",
- "string-width": "^4.2.3",
- "y18n": "^5.0.5",
- "yargs-parser": "^21.1.1"
+ "require-main-filename": "^2.0.0",
+ "set-blocking": "^2.0.0",
+ "string-width": "^4.2.0",
+ "which-module": "^2.0.0",
+ "y18n": "^4.0.0",
+ "yargs-parser": "^18.1.2"
},
"engines": {
- "node": ">=12"
+ "node": ">=8"
}
},
"node_modules/yargs-parser": {
@@ -40885,12 +47409,66 @@
"node": ">=10"
}
},
+ "node_modules/yargs/node_modules/camelcase": {
+ "version": "5.3.1",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/yargs/node_modules/find-up": {
+ "version": "4.1.0",
+ "license": "MIT",
+ "dependencies": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/yargs/node_modules/locate-path": {
+ "version": "5.0.0",
+ "license": "MIT",
+ "dependencies": {
+ "p-locate": "^4.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/yargs/node_modules/p-limit": {
+ "version": "2.3.0",
+ "license": "MIT",
+ "dependencies": {
+ "p-try": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/yargs/node_modules/p-locate": {
+ "version": "4.1.0",
+ "license": "MIT",
+ "dependencies": {
+ "p-limit": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
"node_modules/yargs/node_modules/yargs-parser": {
- "version": "21.1.1",
- "dev": true,
+ "version": "18.1.3",
"license": "ISC",
+ "dependencies": {
+ "camelcase": "^5.0.0",
+ "decamelize": "^1.2.0"
+ },
"engines": {
- "node": ">=12"
+ "node": ">=6"
}
},
"node_modules/yocto-queue": {
@@ -40927,17 +47505,19 @@
"node": ">=4.0.0"
}
},
- "node_modules/yurnalist/node_modules/ansi-regex": {
- "version": "4.1.1",
+ "node_modules/yurnalist/node_modules/ansi-styles": {
+ "version": "3.2.1",
"license": "MIT",
+ "dependencies": {
+ "color-convert": "^1.9.0"
+ },
"engines": {
- "node": ">=6"
+ "node": ">=4"
}
},
"node_modules/yurnalist/node_modules/chalk": {
"version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "license": "MIT",
"dependencies": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -40948,33 +47528,33 @@
}
},
"node_modules/yurnalist/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "version": "1.9.3",
+ "license": "MIT",
"dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
+ "color-name": "1.1.3"
}
},
"node_modules/yurnalist/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
+ "version": "1.1.3",
+ "license": "MIT"
+ },
+ "node_modules/yurnalist/node_modules/escape-string-regexp": {
+ "version": "1.0.5",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.8.0"
+ }
},
"node_modules/yurnalist/node_modules/has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "version": "3.0.0",
+ "license": "MIT",
"engines": {
- "node": ">=8"
+ "node": ">=4"
}
},
"node_modules/yurnalist/node_modules/inquirer": {
"version": "7.3.3",
- "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz",
- "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==",
+ "license": "MIT",
"dependencies": {
"ansi-escapes": "^4.2.1",
"chalk": "^4.1.0",
@@ -40994,18 +47574,9 @@
"node": ">=8.0.0"
}
},
- "node_modules/yurnalist/node_modules/inquirer/node_modules/ansi-regex": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/yurnalist/node_modules/inquirer/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "license": "MIT",
"dependencies": {
"color-convert": "^2.0.1"
},
@@ -41018,8 +47589,7 @@
},
"node_modules/yurnalist/node_modules/inquirer/node_modules/chalk": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "license": "MIT",
"dependencies": {
"ansi-styles": "^4.1.0",
"supports-color": "^7.1.0"
@@ -41031,10 +47601,30 @@
"url": "https://github.com/chalk/chalk?sponsor=1"
}
},
+ "node_modules/yurnalist/node_modules/inquirer/node_modules/color-convert": {
+ "version": "2.0.1",
+ "license": "MIT",
+ "dependencies": {
+ "color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
+ }
+ },
+ "node_modules/yurnalist/node_modules/inquirer/node_modules/color-name": {
+ "version": "1.1.4",
+ "license": "MIT"
+ },
+ "node_modules/yurnalist/node_modules/inquirer/node_modules/has-flag": {
+ "version": "4.0.0",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
"node_modules/yurnalist/node_modules/inquirer/node_modules/strip-ansi": {
"version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "license": "MIT",
"dependencies": {
"ansi-regex": "^5.0.1"
},
@@ -41044,8 +47634,7 @@
},
"node_modules/yurnalist/node_modules/inquirer/node_modules/supports-color": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "license": "MIT",
"dependencies": {
"has-flag": "^4.0.0"
},
@@ -41055,8 +47644,7 @@
},
"node_modules/yurnalist/node_modules/rxjs": {
"version": "6.6.7",
- "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz",
- "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==",
+ "license": "Apache-2.0",
"dependencies": {
"tslib": "^1.9.0"
},
@@ -41074,13 +47662,29 @@
"node": ">=6"
}
},
+ "node_modules/yurnalist/node_modules/strip-ansi/node_modules/ansi-regex": {
+ "version": "4.1.1",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/yurnalist/node_modules/supports-color": {
+ "version": "5.5.0",
+ "license": "MIT",
+ "dependencies": {
+ "has-flag": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
"node_modules/yurnalist/node_modules/tslib": {
"version": "1.14.1",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
- "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
+ "license": "0BSD"
},
"node_modules/zwitch": {
- "version": "1.0.5",
+ "version": "2.0.4",
"license": "MIT",
"funding": {
"type": "github",
@@ -41092,37 +47696,40 @@
"version": "1.0.0",
"license": "MIT",
"dependencies": {
- "@docsearch/react": "^3.1.0",
+ "@docsearch/react": "^3.8",
"@edx/brand-edx.org": "^2.1.2",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
- "@mdx-js/mdx": "^1.6.22",
- "@mdx-js/react": "^1.6.22",
+ "@mdx-js/mdx": "^2",
+ "@mdx-js/react": "^2",
"@openedx/brand-openedx": "^1.2.2",
"analytics-node": "^6.0.0",
"axios": "^0.28.0",
"classnames": "^2.3.1",
- "gatsby": "^4.23.1",
- "gatsby-plugin-manifest": "^4.17.0",
- "gatsby-plugin-mdx": "^3.17.0",
+ "gatsby": "^5.14",
+ "gatsby-plugin-manifest": "^5.14",
+ "gatsby-plugin-mdx": "^5.14",
+ "gatsby-plugin-mdx-source-name": "^1.0.1",
"gatsby-plugin-react-axe": "^0.5.0",
- "gatsby-plugin-react-helmet": "^5.17.0",
- "gatsby-plugin-sass": "^5.17.0",
+ "gatsby-plugin-react-helmet": "^6.14",
+ "gatsby-plugin-sass": "^6.14",
"gatsby-plugin-segment-js": "^3.7.1",
- "gatsby-source-filesystem": "^4.17.0",
- "gatsby-transformer-react-docgen": "^7.17.0",
+ "gatsby-source-filesystem": "^5.14",
+ "gatsby-transformer-react-docgen": "^8.14",
"localforage": "^1.10.0",
"lodash.debounce": "^4.0.8",
"prism-react-renderer": "^1.3.3",
"prop-types": "^15.8.1",
"query-string": "^8.1.0",
- "react": "^17.0.2",
+ "react": "^18",
"react-docgen": "^5.4.2",
- "react-dom": "^17.0.2",
+ "react-dom": "^18",
"react-focus-on": "^3.6.0",
"react-helmet": "^6.1.0",
- "react-intl": "^5.25.1",
+ "react-intl": "^6.4",
"react-live": "^2.4.1",
+ "react-markdown": "^9.0.1",
"rehype-autolink-headings": "^5.1.0",
+ "rehype-mdx-code-props": "^3.0.1",
"rehype-slug": "^4.0.1",
"sass": "^1.53.0",
"sass-loader": "12.6.0",
@@ -41151,9 +47758,8 @@
},
"www/node_modules/@edx/eslint-config": {
"version": "3.2.0",
- "resolved": "https://registry.npmjs.org/@edx/eslint-config/-/eslint-config-3.2.0.tgz",
- "integrity": "sha512-X2o34xr3KqmQSV/vJVv6k4FxUKYwbBATHTtTHLTYQvM9PVoM3WbKQP9tl6Z057pRErKzshJcks+4ENzDyhr11Q==",
"dev": true,
+ "license": "MIT",
"peerDependencies": {
"eslint": "^6.8.0 || ^7.0.0 || ^8.0.0",
"eslint-config-airbnb": "^18.0.1 || ^19.0.0",
diff --git a/package.json b/package.json
index bffbca60ba..ffa6b1ac6d 100644
--- a/package.json
+++ b/package.json
@@ -102,8 +102,8 @@
"uuid": "^9.0.0"
},
"peerDependencies": {
- "react": "^16.8.6 || ^17.0.0",
- "react-dom": "^16.8.6 || ^17.0.0",
+ "react": "^16.8.6 || ^17 || ^18",
+ "react-dom": "^16.8.6 || ^17 || ^18",
"react-intl": "^5.25.1 || ^6.4.0"
},
"devDependencies": {
@@ -115,19 +115,19 @@
"@babel/preset-env": "^7.16.8",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
+ "@edx/browserslist-config": "^1.5.0",
"@edx/eslint-config": "^4.3.0",
"@edx/stylelint-config-edx": "^2.3.0",
"@edx/typescript-config": "^1.1.0",
"@formatjs/cli": "^5.0.2",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
- "@testing-library/jest-dom": "^6.1.4",
- "@testing-library/react": "^12.1.4",
- "@testing-library/react-hooks": "^8.0.1",
- "@testing-library/user-event": "^13.5.0",
+ "@testing-library/jest-dom": "^6.6",
+ "@testing-library/react": "^16.1",
+ "@testing-library/user-event": "^14.5",
"@types/jest": "^29.5.10",
- "@types/react": "^17.0.80",
- "@types/react-dom": "^17.0.11",
+ "@types/react": "^18",
+ "@types/react-dom": "^18",
"@types/react-responsive": "^8.0.8",
"@types/react-table": "^7.7.19",
"@types/react-test-renderer": "^18.0.0",
@@ -140,12 +140,7 @@
"babel-loader": "^8.2.4",
"commander": "^9.3.0",
"eslint": "8.18.0",
- "eslint-config-airbnb": "19.0.4",
- "eslint-config-airbnb-typescript": "^17.0.0",
- "eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
- "eslint-plugin-react": "7.32.2",
- "eslint-plugin-react-hooks": "4.6.0",
"husky": "^9.0.11",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
@@ -153,13 +148,11 @@
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.0",
"markdown-loader-jest": "^0.1.1",
- "react": "^17.0.0",
- "react-dom": "^17.0.0",
- "react-test-renderer": "^17.0.0",
+ "react": "^18",
+ "react-test-renderer": "^18",
"regenerator-runtime": "^0.13.9",
"semantic-release": "^20.1.3",
- "stylelint": "^14.7.1",
- "stylelint-config-standard-scss": "^4.0.0",
+ "stylelint": "^15.11.0",
"ts-jest": "^29.1.2",
"typescript": "^4.7.4"
},
diff --git a/src/Breadcrumb/Breadcrumb.test.jsx b/src/Breadcrumb/Breadcrumb.test.jsx
index 2b8c93b8f8..3b402d971e 100644
--- a/src/Breadcrumb/Breadcrumb.test.jsx
+++ b/src/Breadcrumb/Breadcrumb.test.jsx
@@ -48,7 +48,8 @@ describe('', () => {
expect(screen.getAllByRole('presentation').length).toBe(2);
});
- it('fires the passed in click handler', () => {
+ it('fires the passed in click handler', async () => {
+ const user = userEvent.setup();
const clickHandler = jest.fn();
render();
@@ -56,7 +57,7 @@ describe('', () => {
const links = screen.queryAllByRole('link');
expect(listItems.length).toBe(baseProps.links.length);
- userEvent.click(links[0]);
+ await user.click(links[0]);
expect(clickHandler).toHaveBeenCalled();
});
diff --git a/src/Bubble/index.tsx b/src/Bubble/index.tsx
index a1de32cc03..4c21f7bf9e 100644
--- a/src/Bubble/index.tsx
+++ b/src/Bubble/index.tsx
@@ -38,6 +38,7 @@ const Bubble = React.forwardRef(({
Bubble.propTypes = {
/** Specifies contents of the component. */
+ // @ts-ignore
children: PropTypes.node,
/** The `Bubble` style variant to use. */
variant: PropTypes.oneOf(STYLE_VARIANTS),
diff --git a/src/Button/button-group.scss b/src/Button/button-group.scss
index 89b4cd24bb..5e9ff3c6dd 100644
--- a/src/Button/button-group.scss
+++ b/src/Button/button-group.scss
@@ -36,7 +36,7 @@
margin-left: calc(var(--pgn-size-btn-border-width) * -1);
}
- > .btn:not(:last-child):not(.dropdown-toggle),
+ > .btn:not(:last-child, .dropdown-toggle),
> .btn-group:not(:last-child) > .btn {
@include border-right-radius(0);
}
@@ -100,7 +100,7 @@
margin-top: calc(var(--pgn-size-btn-border-width) * -1);
}
- > .btn:not(:last-child):not(.dropdown-toggle),
+ > .btn:not(:last-child, .dropdown-toggle),
> .btn-group:not(:last-child) > .btn {
@include border-bottom-radius(0);
}
diff --git a/src/Button/index.scss b/src/Button/index.scss
index 62e5635271..54a06fd079 100644
--- a/src/Button/index.scss
+++ b/src/Button/index.scss
@@ -23,7 +23,7 @@
var(--pgn-size-btn-border-radius-base)
);
- &:not(:disabled):not(.disabled):not(.btn-link) {
+ &:not(:disabled, .disabled, .btn-link) {
&.focus,
&:focus {
position: relative;
@@ -200,7 +200,7 @@ input[type="button"] {
}
}
-[dir="rtl"] .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
+[dir="rtl"] .btn-group > .btn:not(:last-child, .dropdown-toggle),
[dir="rtl"] .btn-group > .btn-group:not(:last-child) > .btn {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
diff --git a/src/Card/CardCarousel/tests/CardCarouselControls.test.jsx b/src/Card/CardCarousel/tests/CardCarouselControls.test.jsx
index 0a8c63c66c..a711a9e83b 100644
--- a/src/Card/CardCarousel/tests/CardCarouselControls.test.jsx
+++ b/src/Card/CardCarousel/tests/CardCarouselControls.test.jsx
@@ -88,7 +88,8 @@ describe('', () => {
expect(tree).toMatchSnapshot();
});
- it('handles scroll to previous click', () => {
+ it('handles scroll to previous click', async () => {
+ const user = userEvent.setup();
const contextValue = {
...defaultCardCarouselContextValue,
isScrolledToStart: false,
@@ -96,11 +97,12 @@ describe('', () => {
render((
));
- userEvent.click(screen.getByLabelText('Scroll to previous'));
+ await user.click(screen.getByLabelText('Scroll to previous'));
expect(mockScrollToPrevious).toHaveBeenCalledTimes(1);
});
- it('handles scroll to next click', () => {
+ it('handles scroll to next click', async () => {
+ const user = userEvent.setup();
const contextValue = {
...defaultCardCarouselContextValue,
isScrolledToEnd: false,
@@ -108,7 +110,7 @@ describe('', () => {
render((
));
- userEvent.click(screen.getByLabelText('Scroll to next'));
+ await user.click(screen.getByLabelText('Scroll to next'));
expect(mockScrollToNext).toHaveBeenCalledTimes(1);
});
});
diff --git a/src/Card/index.scss b/src/Card/index.scss
index 270238b957..6107495867 100644
--- a/src/Card/index.scss
+++ b/src/Card/index.scss
@@ -1,3 +1,4 @@
+@use "sass:map";
@import "card-bootstrap";
a .pgn__card,
@@ -50,19 +51,19 @@ a.pgn__card {
.pgn__card-carousel {
.pgn__card-carousel-title {
- margin-bottom: map-get($spacers, 2);
+ margin-bottom: map.get($spacers, 2);
}
.pgn__card-carousel-subtitle {
font-size: var(--pgn-typography-font-size-sm);
- margin-bottom: map-get($spacers, 2);
+ margin-bottom: map.get($spacers, 2);
}
.pgn__card-carousel-header {
display: flex;
align-items: center;
justify-content: space-between;
- margin-bottom: map-get($spacers, 1);
+ margin-bottom: map.get($spacers, 1);
}
}
@@ -117,7 +118,7 @@ a.pgn__card {
.pgn__card-header-content {
display: flex;
flex-direction: column;
- margin-top: map_get($spacers, 4\.5);
+ margin-top: map.get($spacers, 4\.5);
overflow: auto;
text-align: start;
width: 100%;
@@ -145,7 +146,7 @@ a.pgn__card {
%header-subtitle {
color: var(--pgn-color-gray-700);
- margin-top: map_get($spacers, 1);
+ margin-top: map.get($spacers, 1);
}
.pgn__card-header-subtitle,
@@ -172,7 +173,7 @@ a.pgn__card {
width: 100%;
.react-loading-skeleton {
- margin-top: map-get($spacers, 4);
+ margin-top: map.get($spacers, 4);
}
}
}
@@ -356,7 +357,7 @@ a.pgn__card {
object-position: center center;
border-radius: var(--pgn-size-card-border-radius-logo);
box-shadow: var(--pgn-elevation-box-shadow-level-1);
- padding: map_get($spacers, 2);
+ padding: map.get($spacers, 2);
background-color: var(--pgn-color-white);
display: none;
@@ -390,7 +391,7 @@ a.pgn__card {
}
.pgn__card-status__actions {
- margin-top: map-get($spacers, 3);
+ margin-top: map.get($spacers, 3);
}
.pgn__card-status__heading {
diff --git a/src/Chip/index.tsx b/src/Chip/index.tsx
index 81be775f78..7cd2c332a3 100644
--- a/src/Chip/index.tsx
+++ b/src/Chip/index.tsx
@@ -94,6 +94,7 @@ const Chip = React.forwardRef(({
Chip.propTypes = {
/** Specifies the content of the `Chip`. */
+ // @ts-ignore
children: PropTypes.node.isRequired,
/** Specifies an additional `className` to add to the base element. */
className: PropTypes.string,
diff --git a/src/CloseButton/index.scss b/src/CloseButton/index.scss
index 750f47d3f3..96bb9519cc 100644
--- a/src/CloseButton/index.scss
+++ b/src/CloseButton/index.scss
@@ -21,7 +21,7 @@
text-decoration: none;
}
- &:not(:disabled):not(.disabled) {
+ &:not(:disabled, .disabled) {
@include hover-focus() {
opacity: .75;
}
diff --git a/src/Collapsible/Collapsible.test.jsx b/src/Collapsible/Collapsible.test.jsx
index f4fbd3634a..d64d9103d2 100644
--- a/src/Collapsible/Collapsible.test.jsx
+++ b/src/Collapsible/Collapsible.test.jsx
@@ -1,5 +1,5 @@
import React from 'react';
-import { render, screen } from '@testing-library/react';
+import { render, screen, waitFor } from '@testing-library/react';
import renderer from 'react-test-renderer';
import userEvent from '@testing-library/user-event';
@@ -75,17 +75,23 @@ describe('', () => {
{collapsibleContent},
);
});
- it('opens on .open()', () => {
+ it('opens on .open()', async () => {
expect(screen.queryByText(EXAMPLE_CONTENT)).not.toBeInTheDocument();
ref.current.open();
- expect(screen.getByText(EXAMPLE_CONTENT)).toBeInTheDocument();
+ await waitFor(() => {
+ expect(screen.getByText(EXAMPLE_CONTENT)).toBeInTheDocument();
+ });
});
- it('closes on .close()', () => {
+ it('closes on .close()', async () => {
ref.current.open();
- expect(screen.getByText(EXAMPLE_CONTENT)).toBeInTheDocument();
+ await waitFor(() => {
+ expect(screen.getByText(EXAMPLE_CONTENT)).toBeInTheDocument();
+ });
ref.current.close();
- expect(screen.queryByText(EXAMPLE_CONTENT)).not.toBeInTheDocument();
+ await waitFor(() => {
+ expect(screen.queryByText(EXAMPLE_CONTENT)).not.toBeInTheDocument();
+ });
});
it('correct behavior with unmountOnExit', () => {
@@ -127,7 +133,9 @@ describe('', () => {
it('closes on trigger click', async () => {
collapsible.open();
- expect(screen.getByText(EXAMPLE_CONTENT)).toBeInTheDocument();
+ await waitFor(() => {
+ expect(screen.getByText(EXAMPLE_CONTENT)).toBeInTheDocument();
+ });
await userEvent.click(screen.getAllByRole('button')[0]); // Close
expect(screen.queryByText(EXAMPLE_CONTENT)).not.toBeInTheDocument();
});
diff --git a/src/ColorPicker/ColorPicker.test.jsx b/src/ColorPicker/ColorPicker.test.jsx
index 7f156f51ea..f5247fe845 100644
--- a/src/ColorPicker/ColorPicker.test.jsx
+++ b/src/ColorPicker/ColorPicker.test.jsx
@@ -1,7 +1,7 @@
import React from 'react';
import renderer from 'react-test-renderer';
import userEvent from '@testing-library/user-event';
-import { render, screen, act } from '@testing-library/react';
+import { render, screen } from '@testing-library/react';
import ColorPicker from '.';
@@ -29,33 +29,26 @@ describe('picker works as expected', () => {
const color = 'wassap';
const setColor = jest.fn();
it('validates hex color', async () => {
+ const user = userEvent.setup();
render();
- await act(async () => {
- await userEvent.click(screen.getByRole('button'));
- });
+ await user.click(screen.getByRole('button'));
expect(screen.queryByTestId('hex-input').value).toEqual('#wassap');
expect(screen.queryByText('Colors must be in hexadecimal format.')).toBeInTheDocument();
- await act(async () => {
- await userEvent.clear(screen.getByTestId('hex-input'));
- await userEvent.paste(screen.getByTestId('hex-input'), '32116c');
- });
+ await user.clear(screen.getByTestId('hex-input')); // clear() will keep focus on the element, so we can paste
+ await user.paste('32116c');
expect(screen.queryByTestId('hex-input').value).toEqual('#32116c');
expect(screen.queryByText('Colors must be in hexadecimal format.')).not.toBeInTheDocument();
- await act(async () => {
- await userEvent.clear(screen.getByTestId('hex-input'));
- await userEvent.paste(screen.getByTestId('hex-input'), 'yuk');
- });
+ await user.clear(screen.getByTestId('hex-input'));
+ await user.paste('yuk');
expect(screen.queryByTestId('hex-input').value).toEqual('#yuk');
expect(screen.queryByText('Colors must be in hexadecimal format.')).toBeInTheDocument();
- await act(async () => {
- await userEvent.clear(screen.getByTestId('hex-input'));
- await userEvent.paste(screen.getByTestId('hex-input'), '#fad');
- });
+ await user.clear(screen.getByTestId('hex-input'));
+ await user.paste('#fad');
expect(screen.queryByTestId('hex-input').value).toEqual('#fad');
expect(screen.queryByText('Colors must be in hexadecimal format.')).not.toBeInTheDocument();
diff --git a/src/ColorPicker/index.jsx b/src/ColorPicker/index.jsx
index 2877ec6f23..235e5ec3ba 100644
--- a/src/ColorPicker/index.jsx
+++ b/src/ColorPicker/index.jsx
@@ -8,7 +8,7 @@ import Form from '../Form';
import ModalPopup from '../Modal/ModalPopup';
import { OverlayTrigger } from '../Overlay';
import Tooltip from '../Tooltip';
-import useToggle from '../hooks/useToggle';
+import useToggle from '../hooks/useToggleHook';
function ColorPicker({
color, setColor, className, size,
diff --git a/src/DataTable/CollapsibleButtonGroup.jsx b/src/DataTable/CollapsibleButtonGroup.jsx
index d983cc72d3..c762445db9 100644
--- a/src/DataTable/CollapsibleButtonGroup.jsx
+++ b/src/DataTable/CollapsibleButtonGroup.jsx
@@ -2,8 +2,8 @@ import React, { useContext, useMemo, useState } from 'react';
import PropTypes from 'prop-types';
import { MoreVert } from '../../icons';
-import useToggle from '../hooks/useToggle';
-import useWindowSize from '../hooks/useWindowSize';
+import useToggle from '../hooks/useToggleHook';
+import useWindowSize from '../hooks/useWindowSizeHook';
import DataTableContext from './DataTableContext';
import Icon from '../Icon';
import IconButton from '../IconButton';
diff --git a/src/DataTable/DropdownFilters.jsx b/src/DataTable/DropdownFilters.jsx
index 5e5d2f9906..fd92602583 100644
--- a/src/DataTable/DropdownFilters.jsx
+++ b/src/DataTable/DropdownFilters.jsx
@@ -1,7 +1,7 @@
import React, { useContext, useMemo } from 'react';
import DataTableContext from './DataTableContext';
import { DropdownButton } from '../Dropdown';
-import useWindowSize from '../hooks/useWindowSize';
+import useWindowSize from '../hooks/useWindowSizeHook';
import breakpoints from '../utils/breakpoints';
/** The first filter will be as an input, additional filters will be available in a dropdown. */
diff --git a/src/DataTable/dataviews.mdx b/src/DataTable/dataviews.mdx
index a1cbe98ab7..d316c0a4cf 100644
--- a/src/DataTable/dataviews.mdx
+++ b/src/DataTable/dataviews.mdx
@@ -110,16 +110,11 @@ It displays the data provided by the `DataTableContext` as an html table.
```
-
-
## Table Subcomponents
Subcomponents of `DataTable.Table` can be used independently of the main component. They are designed for use with a `react-table` instance.
-
-
-
-
+See the available props of ``, ``, ``, and `` below.
## CardView and alternate table components
@@ -337,8 +332,6 @@ a responsive grid of cards.
The `CardComponent` prop on `CardView` represents a table row, and will receive the row that `react-table`
provides as props.
-
-
```jsx
const MiyazakiCard = ({ className, original }) => {
const { title, director, release_date } = original;
diff --git a/src/DataTable/selection/tests/ControlledSelectHeader.test.jsx b/src/DataTable/selection/tests/ControlledSelectHeader.test.jsx
index 2af2b283ba..c2b48bf5d4 100644
--- a/src/DataTable/selection/tests/ControlledSelectHeader.test.jsx
+++ b/src/DataTable/selection/tests/ControlledSelectHeader.test.jsx
@@ -42,7 +42,8 @@ describe('', () => {
jest.resetAllMocks();
});
- it('correctly selects all page rows', () => {
+ it('correctly selects all page rows', async () => {
+ const user = userEvent.setup();
const isChecked = true;
mockToggleAllPageRowsSelectedProps.mockReturnValue({
checked: isChecked,
@@ -53,13 +54,14 @@ describe('', () => {
render();
const checkbox = screen.getByRole('checkbox');
- userEvent.click(checkbox);
+ await user.click(checkbox);
expect(spy).toHaveBeenCalledTimes(1);
expect(spy).toHaveBeenCalledWith(rows, tableProps.itemCount);
});
- it('correctly unselects all page rows', () => {
+ it('correctly unselects all page rows', async () => {
+ const user = userEvent.setup();
const spy = jest.spyOn(selectActions, 'clearPageSelectionAction');
mockToggleAllPageRowsSelectedProps.mockReturnValue({
checked: false,
@@ -78,7 +80,7 @@ describe('', () => {
render();
const checkbox = screen.getByRole('checkbox');
- userEvent.click(checkbox);
+ await user.click(checkbox);
expect(spy).toHaveBeenCalledTimes(1);
const rowIds = getRowIds(rows).map(id => id.toString());
diff --git a/src/DataTable/tests/BulkActions.test.jsx b/src/DataTable/tests/BulkActions.test.jsx
index bb207b22b8..27b3793428 100644
--- a/src/DataTable/tests/BulkActions.test.jsx
+++ b/src/DataTable/tests/BulkActions.test.jsx
@@ -10,9 +10,8 @@ import {
} from '../CollapsibleButtonGroup';
import { useWindowSize, Button } from '../..';
import DataTableContext from '../DataTableContext';
-import { waitForComponentToPaint } from './utils';
-jest.mock('../../hooks/useWindowSize');
+jest.mock('../../hooks/useWindowSizeHook');
useWindowSize.mockReturnValue({ width: 800 });
const FIRST_ACTION = 'First Action';
@@ -199,8 +198,7 @@ describe('', () => {
});
it('displays the user\'s second button as an outline button', () => {
- const { container } = render();
- waitForComponentToPaint(container);
+ render();
const buttons = screen.getAllByTestId('action');
expect(buttons[0].textContent).toBe(SECOND_ACTION);
});
diff --git a/src/DataTable/tests/DataViewToggle.test.jsx b/src/DataTable/tests/DataViewToggle.test.jsx
index 8c10e83ba4..24535e8332 100644
--- a/src/DataTable/tests/DataViewToggle.test.jsx
+++ b/src/DataTable/tests/DataViewToggle.test.jsx
@@ -1,6 +1,5 @@
import React from 'react';
import { render, screen } from '@testing-library/react';
-import { act } from 'react-dom/test-utils';
import userEvent from '@testing-library/user-event';
import DataTableContext from '../DataTableContext';
@@ -78,6 +77,7 @@ describe('data view toggle behavior', () => {
});
test('onDataViewToggle is invoked when clicking on buttons', async () => {
+ const user = userEvent.setup();
const onDataViewToggle = jest.fn();
render(
{
);
expect(screen.queryByRole('group')).toBeInTheDocument();
const cardButton = screen.getByLabelText(DATA_VIEW_TOGGLE_VALUES.card.alt);
- await act(async () => {
- userEvent.click(cardButton);
- });
+ await user.click(cardButton);
expect(onDataViewToggle).toHaveBeenCalledWith(DATA_VIEW_TOGGLE_VALUES.card.value);
const listButton = screen.getByLabelText(DATA_VIEW_TOGGLE_VALUES.list.alt);
- await act(async () => {
- userEvent.click(listButton);
- });
+ await user.click(listButton);
expect(onDataViewToggle).toHaveBeenCalledWith(DATA_VIEW_TOGGLE_VALUES.list.value);
});
});
diff --git a/src/DataTable/tests/DropdownFilters.test.jsx b/src/DataTable/tests/DropdownFilters.test.jsx
index b48e443bba..330bbe66ba 100644
--- a/src/DataTable/tests/DropdownFilters.test.jsx
+++ b/src/DataTable/tests/DropdownFilters.test.jsx
@@ -6,7 +6,7 @@ import DropdownFilters from '../DropdownFilters';
import { useWindowSize } from '../..';
import DataTableContext from '../DataTableContext';
-jest.mock('../../hooks/useWindowSize');
+jest.mock('../../hooks/useWindowSizeHook');
const instance = {
columns: [
diff --git a/src/DataTable/tests/TableActions.test.jsx b/src/DataTable/tests/TableActions.test.jsx
index 2c87632146..25af68b460 100644
--- a/src/DataTable/tests/TableActions.test.jsx
+++ b/src/DataTable/tests/TableActions.test.jsx
@@ -12,7 +12,7 @@ import {
} from '../..';
import DataTableContext from '../DataTableContext';
-jest.mock('../../hooks/useWindowSize');
+jest.mock('../../hooks/useWindowSizeHook');
useWindowSize.mockReturnValue({ width: 800 });
function FirstAction({
diff --git a/src/DataTable/tests/utils.js b/src/DataTable/tests/utils.js
deleted file mode 100644
index a3f3c47aba..0000000000
--- a/src/DataTable/tests/utils.js
+++ /dev/null
@@ -1,9 +0,0 @@
-import { act } from 'react-dom/test-utils';
-
-// eslint-disable-next-line import/prefer-default-export
-export const waitForComponentToPaint = async (wrapper) => {
- await act(async () => {
- await new Promise(resolve => { setTimeout(resolve); });
- wrapper.update();
- });
-};
diff --git a/src/Dropdown/dropdown-bootstrap.scss b/src/Dropdown/dropdown-bootstrap.scss
index 2575d841c5..a877cc3367 100644
--- a/src/Dropdown/dropdown-bootstrap.scss
+++ b/src/Dropdown/dropdown-bootstrap.scss
@@ -1,3 +1,5 @@
+@use "sass:map";
+
:root {
--pgn-spacing-dropdown-padding-header:
var(--pgn-spacing-dropdown-padding-header-y)
@@ -47,7 +49,7 @@
}
}
-@each $breakpoint in map-keys($grid-breakpoints) {
+@each $breakpoint in map.keys($grid-breakpoints) {
@include media-breakpoint-up($breakpoint) {
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
diff --git a/src/Dropzone/README.md b/src/Dropzone/README.md
index c0b1acb542..cd8005566d 100644
--- a/src/Dropzone/README.md
+++ b/src/Dropzone/README.md
@@ -15,9 +15,9 @@ The `Dropzone` allows users to upload files via drag and drop, or by clicking th
You will also need to provide upload logic yourself via `onProcessUpload` prop which accepts function that should take care of uploading the file to the backend (i.e. send HTTP request).
This function accepts an object with following content as its only argument:
-- {object} fileData - Metadata about the uploaded file.
-- {object} requestConfig - Config to pass to `axios` call (this is required to display progress bar and hande cancel action).
-- {function} handleError - Function to communicate to `Dropzone` that file upload resulted in failure, expects `Error` object as its only argument.
+- \{object\} fileData - Metadata about the uploaded file.
+- \{object\} requestConfig - Config to pass to `axios` call (this is required to display progress bar and hande cancel action).
+- \{function\} handleError - Function to communicate to `Dropzone` that file upload resulted in failure, expects `Error` object as its only argument.
Each example below implements such a function.
diff --git a/src/Dropzone/tests/__snapshots__/Dropzone.test.jsx.snap b/src/Dropzone/tests/__snapshots__/Dropzone.test.jsx.snap
index 765473643d..d549afd68c 100644
--- a/src/Dropzone/tests/__snapshots__/Dropzone.test.jsx.snap
+++ b/src/Dropzone/tests/__snapshots__/Dropzone.test.jsx.snap
@@ -21,7 +21,16 @@ exports[` successfully renders 1`] = `
onClick={[Function]}
style={
{
- "display": "none",
+ "border": 0,
+ "clip": "rect(0, 0, 0, 0)",
+ "clipPath": "inset(50%)",
+ "height": "1px",
+ "margin": "0 -1px -1px 0",
+ "overflow": "hidden",
+ "padding": 0,
+ "position": "absolute",
+ "whiteSpace": "nowrap",
+ "width": "1px",
}
}
tabIndex={-1}
diff --git a/src/Form/FormAutosuggest.jsx b/src/Form/FormAutosuggest.jsx
index 9b41b0669b..5c39d6f536 100644
--- a/src/Form/FormAutosuggest.jsx
+++ b/src/Form/FormAutosuggest.jsx
@@ -12,7 +12,7 @@ import FormControl from './FormControl';
import FormControlFeedback from './FormControlFeedback';
import IconButton from '../IconButton';
import Spinner from '../Spinner';
-import useArrowKeyNavigation from '../hooks/useArrowKeyNavigation';
+import useArrowKeyNavigation from '../hooks/useArrowKeyNavigationHook';
import messages from './messages';
const FormAutosuggest = forwardRef(
diff --git a/src/Form/FormGroupContext.tsx b/src/Form/FormGroupContext.tsx
index bbe7051e89..0ff3821d07 100644
--- a/src/Form/FormGroupContext.tsx
+++ b/src/Form/FormGroupContext.tsx
@@ -60,7 +60,7 @@ function FormGroupContextProvider({
const [labelledByIds, registerLabelerId] = useIdList(controlId);
const [isControlGroup, useSetIsControlGroupEffect] = useStateEffect(false);
- const getControlProps = useCallback((controlProps) => {
+ const getControlProps = useCallback((controlProps: Record) => {
// labelledByIds from the list above should only be added to a control
// if it the control is a group. We prefer adding a condition here because:
// - Hooks cannot be called inside conditionals
diff --git a/src/Form/_index.scss b/src/Form/_index.scss
index 1452f8104f..b4d9a34ae3 100644
--- a/src/Form/_index.scss
+++ b/src/Form/_index.scss
@@ -1,3 +1,4 @@
+@use "sass:string";
@import "bootstrap-forms";
@import "input-group";
@import "bootstrap-custom-forms";
@@ -335,7 +336,7 @@
text-align: right;
}
- &:not(:focus):not(.has-value) {
+ &:not(:focus, .has-value) {
color: transparent;
}
@@ -347,17 +348,17 @@
}
}
- .form-control:not(:focus):not(.has-value) {
+ .form-control:not(:focus, .has-value) {
&::placeholder,
&::-webkit-datetime-edit {
opacity: 0;
}
}
- select.form-control:not(.has-value):not(:focus) {
+ select.form-control:not(.has-value, :focus) {
// color: rgba(0,0,0,0); Force the rgba syntax to appear in the output rather
// than transparent. IE11 does not understand color: transparent here.
- color: unquote("rgba(0,0,0,0)");
+ color: string.unquote("rgba(0,0,0,0)");
}
}
@@ -576,7 +577,7 @@ select.form-control {
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text,
.input-group.has-validation > .input-group-append:nth-last-child(n+3) > .btn,
.input-group.has-validation > .input-group-append:nth-last-child(n+3) > .input-group-text,
-.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
+.input-group > .input-group-append:last-child > .btn:not(:last-child, .dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
[dir="rtl"] & {
border-radius: 0 var(--pgn-size-form-input-radius-border-base) var(--pgn-size-form-input-radius-border-base) 0;
diff --git a/src/Form/_input-group.scss b/src/Form/_input-group.scss
index 6f4706286c..c508b9996c 100644
--- a/src/Form/_input-group.scss
+++ b/src/Form/_input-group.scss
@@ -173,7 +173,7 @@
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text,
.input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .btn,
.input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .input-group-text,
-.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
+.input-group > .input-group-append:last-child > .btn:not(:last-child, .dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
@include border-right-radius(0);
}
diff --git a/src/Form/tests/FormAutosuggest.test.jsx b/src/Form/tests/FormAutosuggest.test.jsx
index ead36d88cb..80b40f0041 100644
--- a/src/Form/tests/FormAutosuggest.test.jsx
+++ b/src/Form/tests/FormAutosuggest.test.jsx
@@ -89,59 +89,64 @@ describe('render behavior', () => {
expect(screen.getByDisplayValue('Test Value')).toBeInTheDocument();
});
- it('renders component with options', () => {
+ it('renders component with options', async () => {
+ const user = userEvent.setup();
const { getByTestId, queryAllByTestId } = render();
const input = getByTestId('autosuggest-textbox-input');
- userEvent.click(input);
+ await user.click(input);
const list = queryAllByTestId('autosuggest-optionitem');
expect(list.length).toBe(3);
});
- it('renders with value required error msg', () => {
+ it('renders with value required error msg', async () => {
+ const user = userEvent.setup();
const { getByText, getByTestId } = render();
const input = getByTestId('autosuggest-textbox-input');
// if you click into the input and click outside, you should see the error message
- userEvent.click(input);
- userEvent.click(document.body);
+ await user.click(input);
+ await user.click(document.body);
const formControlFeedback = getByText('Example value required error message');
expect(formControlFeedback).toBeInTheDocument();
});
- it('renders with selection required error msg', () => {
+ it('renders with selection required error msg', async () => {
+ const user = userEvent.setup();
const { getByText, getByTestId } = render();
const input = getByTestId('autosuggest-textbox-input');
// if you click into the input and click outside, you should see the error message
- userEvent.click(input);
- userEvent.type(input, '1');
- userEvent.click(document.body);
+ await user.click(input);
+ await user.type(input, '1');
+ await user.click(document.body);
const formControlFeedback = getByText('Example selection required error message');
expect(formControlFeedback).toBeInTheDocument();
});
- it('renders with custom error msg', () => {
+ it('renders with custom error msg', async () => {
+ const user = userEvent.setup();
const { getByText, getByTestId } = render();
const input = getByTestId('autosuggest-textbox-input');
// if you click into the input and click outside, you should see the error message
- userEvent.click(input);
- userEvent.click(document.body);
+ await user.click(input);
+ await user.click(document.body);
const formControlFeedback = getByText('Example custom error message');
expect(formControlFeedback).toBeInTheDocument();
});
- it('renders component with options that all have IDs', () => {
+ it('renders component with options that all have IDs', async () => {
+ const user = userEvent.setup();
const { getByTestId, getAllByTestId } = render();
const input = getByTestId('autosuggest-textbox-input');
- userEvent.click(input);
+ await user.click(input);
const optionItemIds = getAllByTestId('autosuggest-optionitem').map(item => item.id);
expect(optionItemIds).not.toContain(null);
@@ -154,12 +159,13 @@ describe('render behavior', () => {
expect(getByTestId('autosuggest-screen-reader-options-count').getAttribute('aria-live')).toEqual('assertive');
});
- it('displays correct amount of options found to screen readers', () => {
+ it('displays correct amount of options found to screen readers', async () => {
+ const user = userEvent.setup();
const { getByText, getByTestId } = render();
const input = getByTestId('autosuggest-textbox-input');
expect(getByText('0 options found')).toBeInTheDocument();
- userEvent.click(input);
+ await user.click(input);
expect(getByText('3 options found')).toBeInTheDocument();
});
@@ -172,167 +178,180 @@ describe('render behavior', () => {
});
describe('controlled behavior', () => {
- it('sets input value based on clicked option', () => {
+ it('sets input value based on clicked option', async () => {
+ const user = userEvent.setup();
const { getByText, getByTestId } = render();
const input = getByTestId('autosuggest-textbox-input');
- userEvent.click(input);
+ await user.click(input);
const menuItem = getByText('Option 1');
- userEvent.click(menuItem);
+ await user.click(menuItem);
expect(input.value).toEqual('Option 1');
});
- it('calls onChange based on clicked option', () => {
+ it('calls onChange based on clicked option', async () => {
+ const user = userEvent.setup();
const onChange = jest.fn();
const { getByText, getByTestId } = render();
const input = getByTestId('autosuggest-textbox-input');
- userEvent.click(input);
+ await user.click(input);
const menuItem = getByText('Option 1');
- userEvent.click(menuItem);
+ await user.click(menuItem);
expect(onChange).toHaveBeenCalledWith({ selectionId: 'option-1-id', selectionValue: 'Option 1', userProvidedText: 'Option 1' });
expect(onChange).toHaveBeenCalledTimes(1);
});
- it('calls onChange when the textbox is cleared', () => {
+ it('calls onChange when the textbox is cleared', async () => {
+ const user = userEvent.setup();
const onChange = jest.fn();
const { getByTestId } = render();
const input = getByTestId('autosuggest-textbox-input');
- userEvent.type(input, '1');
- userEvent.type(input, '{backspace}');
+ await user.type(input, '1');
+ await user.type(input, '{backspace}');
expect(onChange).toHaveBeenCalledWith({ selectionId: '', selectionValue: '', userProvidedText: '' });
});
- it('calls the function passed to onClick when an option with it is selected', () => {
+ it('calls the function passed to onClick when an option with it is selected', async () => {
+ const user = userEvent.setup();
const onClick = jest.fn();
const { getByText, getByTestId } = render();
const input = getByTestId('autosuggest-textbox-input');
- userEvent.click(input);
+ await user.click(input);
const menuItem = getByText('Option 2');
- userEvent.click(menuItem);
+ await user.click(menuItem);
expect(onClick).toHaveBeenCalledTimes(1);
});
- it('does not call onClick when an option without it is selected', () => {
+ it('does not call onClick when an option without it is selected', async () => {
+ const user = userEvent.setup();
const onClick = jest.fn();
const { getByText, getByTestId } = render();
const input = getByTestId('autosuggest-textbox-input');
- userEvent.click(input);
+ await user.click(input);
const menuItem = getByText('Option 1');
- userEvent.click(menuItem);
+ await user.click(menuItem);
expect(onClick).toHaveBeenCalledTimes(0);
});
- it('should set the correct activedescendant', () => {
+ it('should set the correct activedescendant', async () => {
+ const user = userEvent.setup();
const { getByTestId, getAllByTestId } = render();
const input = getByTestId('autosuggest-textbox-input');
- userEvent.click(input);
+ await user.click(input);
const expectedOptionId = getAllByTestId('autosuggest-optionitem')[0].id;
- userEvent.keyboard('{arrowdown}');
+ await user.keyboard('{arrowdown}');
expect(input.getAttribute('aria-activedescendant')).toEqual(expectedOptionId);
});
- it('filters dropdown based on typed field value with one match', () => {
+ it('filters dropdown based on typed field value with one match', async () => {
+ const user = userEvent.setup();
const { getByTestId, queryAllByTestId } = render();
const input = getByTestId('autosuggest-textbox-input');
- userEvent.click(input);
- userEvent.type(input, 'Option 1');
+ await user.click(input);
+ await user.type(input, 'Option 1');
const list = queryAllByTestId('autosuggest-optionitem');
expect(list.length).toBe(1);
});
- it('toggles options list', () => {
+ it('toggles options list', async () => {
+ const user = userEvent.setup();
const { getByTestId, queryAllByTestId } = render();
const dropdownBtn = getByTestId('autosuggest-iconbutton');
- userEvent.click(dropdownBtn);
+ await user.click(dropdownBtn);
const list = queryAllByTestId('autosuggest-optionitem');
expect(list.length).toBe(3);
- userEvent.click(dropdownBtn);
+ await user.click(dropdownBtn);
const updatedList = queryAllByTestId('autosuggest-optionitem');
expect(updatedList.length).toBe(0);
- userEvent.click(dropdownBtn);
+ await user.click(dropdownBtn);
const reopenedList = queryAllByTestId('autosuggest-optionitem');
expect(reopenedList.length).toBe(3);
});
- it('filters dropdown based on typed field value with multiple matches', () => {
+ it('filters dropdown based on typed field value with multiple matches', async () => {
+ const user = userEvent.setup();
const { getByTestId, queryAllByTestId } = render();
const input = getByTestId('autosuggest-textbox-input');
- userEvent.click(input);
- userEvent.type(input, '1');
+ await user.click(input);
+ await user.type(input, '1');
const list = queryAllByTestId('autosuggest-optionitem');
expect(list.length).toBe(2);
});
- it('closes options list on click outside', () => {
+ it('closes options list on click outside', async () => {
+ const user = userEvent.setup();
const { getByTestId, queryAllByTestId } = render();
const input = getByTestId('autosuggest-textbox-input');
- userEvent.click(input);
+ await user.click(input);
const list = queryAllByTestId('autosuggest-optionitem');
expect(list.length).toBe(3);
- userEvent.click(document.body);
+ await user.click(document.body);
const updatedList = queryAllByTestId('autosuggest-optionitem');
expect(updatedList.length).toBe(0);
});
- it('updates screen reader option count based on typed field value with multiple matches', () => {
+ it('updates screen reader option count based on typed field value with multiple matches', async () => {
+ const user = userEvent.setup();
const { getByText, getByTestId } = render();
const input = getByTestId('autosuggest-textbox-input');
expect(getByText('0 options found')).toBeInTheDocument();
- userEvent.click(input);
+ await user.click(input);
expect(getByText('3 options found')).toBeInTheDocument();
- userEvent.click(input);
- userEvent.type(input, '1');
+ await user.click(input);
+ await user.type(input, '1');
expect(getByText('2 options found')).toBeInTheDocument();
});
- it('closes options list when tabbed out and the input is no longer active', () => {
+ it('closes options list when tabbed out and the input is no longer active', async () => {
+ const user = userEvent.setup();
const { getByTestId, queryAllByTestId } = render();
const input = getByTestId('autosuggest-textbox-input');
- userEvent.click(input);
+ await user.click(input);
expect(document.activeElement).toBe(getByTestId('autosuggest-textbox-input'));
const list = queryAllByTestId('autosuggest-optionitem');
expect(list.length).toBe(3);
- userEvent.tab();
+ await user.tab();
expect(document.activeElement).not.toBe(getByTestId('autosuggest-textbox-input'));
const updatedList = queryAllByTestId('autosuggest-optionitem');
expect(updatedList.length).toBe(0);
});
- it('check focus on input after esc', () => {
+ it('check focus on input after esc', async () => {
+ const user = userEvent.setup();
const { getByTestId } = render();
const input = getByTestId('autosuggest-textbox-input');
const dropdownBtn = getByTestId('autosuggest-iconbutton');
- userEvent.click(dropdownBtn);
+ await user.click(dropdownBtn);
- userEvent.keyboard('{esc}');
+ await user.keyboard('{Escape}');
expect(input.matches(':focus')).toBe(true);
});
diff --git a/src/Form/tests/FormCheckboxSet.test.jsx b/src/Form/tests/FormCheckboxSet.test.jsx
index 393364f6e3..8409077432 100644
--- a/src/Form/tests/FormCheckboxSet.test.jsx
+++ b/src/Form/tests/FormCheckboxSet.test.jsx
@@ -166,7 +166,8 @@ describe('FormCheckboxSet', () => {
});
});
- it('checks if onClick is called once in FormCheckboxSet', () => {
+ it('checks if onClick is called once in FormCheckboxSet', async () => {
+ const user = userEvent.setup();
const handleChange = jest.fn();
const { getByLabelText } = render(
@@ -181,7 +182,7 @@ describe('FormCheckboxSet', () => {
,
);
- userEvent.click(getByLabelText('Red'));
+ await user.click(getByLabelText('Red'));
expect(handleChange).toHaveBeenCalledTimes(1);
});
});
diff --git a/src/Form/tests/FormControl.test.jsx b/src/Form/tests/FormControl.test.jsx
index 3388013bd6..1e01ab8371 100644
--- a/src/Form/tests/FormControl.test.jsx
+++ b/src/Form/tests/FormControl.test.jsx
@@ -28,7 +28,8 @@ function Component({ isClearValue }) {
}
describe('FormControl', () => {
- it('textarea changes its height with autoResize prop', () => {
+ it('textarea changes its height with autoResize prop', async () => {
+ const user = userEvent.setup();
const useReferenceSpy = jest.spyOn(React, 'useRef').mockReturnValue(ref);
const onChangeFunc = jest.fn();
const inputText = 'new text';
@@ -45,25 +46,27 @@ describe('FormControl', () => {
expect(useReferenceSpy).toHaveBeenCalledTimes(1);
expect(ref.current.style.height).toBe('0px');
- userEvent.type(textarea, inputText);
+ await user.type(textarea, inputText);
expect(onChangeFunc).toHaveBeenCalledTimes(inputText.length);
expect(ref.current.style.height).toEqual(`${ref.current.scrollHeight + ref.current.offsetHeight}px`);
});
- it('should apply and accept input mask for phone numbers', () => {
+ it('should apply and accept input mask for phone numbers', async () => {
+ const user = userEvent.setup();
render();
const input = screen.getByTestId('form-control-with-mask');
- userEvent.type(input, '5555555555');
+ await user.type(input, '5555555555');
expect(input.value).toBe('+1 (555) 555-5555');
});
- it('should be cleared from the mask elements value', () => {
+ it('should be cleared from the mask elements value', async () => {
+ const user = userEvent.setup();
render();
const input = screen.getByTestId('form-control-with-mask');
- userEvent.type(input, '5555555555');
+ await user.type(input, '5555555555');
expect(input.value).toBe('+1 (555) 555-5555');
expect(unmaskedInputValue).toBe('15555555555');
diff --git a/src/Form/tests/FormRadioSet.test.jsx b/src/Form/tests/FormRadioSet.test.jsx
index 23cf96dd23..5f1e269604 100644
--- a/src/Form/tests/FormRadioSet.test.jsx
+++ b/src/Form/tests/FormRadioSet.test.jsx
@@ -109,7 +109,8 @@ describe('FormRadioSet', () => {
expect(deciduousRadio).toHaveAttribute('name', 'trees');
});
- it('checks if onClick is called once in FormRadioSet', () => {
+ it('checks if onClick is called once in FormRadioSet', async () => {
+ const user = userEvent.setup();
const handleChange = jest.fn();
const { getByLabelText } = render(
@@ -124,7 +125,7 @@ describe('FormRadioSet', () => {
,
);
- userEvent.click(getByLabelText('Red'));
+ await user.click(getByLabelText('Red'));
expect(handleChange).toHaveBeenCalledTimes(1);
});
});
diff --git a/src/Hyperlink/index.tsx b/src/Hyperlink/index.tsx
index 5229f73f8f..fe5dfb02ae 100644
--- a/src/Hyperlink/index.tsx
+++ b/src/Hyperlink/index.tsx
@@ -114,6 +114,7 @@ Hyperlink.propTypes = {
/** specifies the URL */
destination: PropTypes.string.isRequired,
/** Content of the hyperlink */
+ // @ts-ignore
children: PropTypes.node.isRequired,
/** Custom class names for the hyperlink */
className: PropTypes.string,
diff --git a/src/IconButtonToggle/IconButtonToggle.test.jsx b/src/IconButtonToggle/IconButtonToggle.test.jsx
index e7ef9fe6d1..1b664e44dc 100644
--- a/src/IconButtonToggle/IconButtonToggle.test.jsx
+++ b/src/IconButtonToggle/IconButtonToggle.test.jsx
@@ -21,7 +21,8 @@ describe('IconButtonToggle tests', () => {
expect(btnAbc).toHaveClass('btn-icon-primary-active');
expect(btnAbc).toHaveAttribute('aria-selected', 'true');
});
- test('switching activeValue works as expected', () => {
+ test('switching activeValue works as expected', async () => {
+ const user = userEvent.setup();
const spyChanger = jest.fn();
render(
@@ -38,7 +39,7 @@ describe('IconButtonToggle tests', () => {
expect(btnAbc).toHaveClass('btn-icon-primary-active');
expect(btnAbc).toHaveAttribute('aria-selected', 'true');
- userEvent.click(btnDef);
+ await user.click(btnDef);
waitFor(() => {
expect(btnDef).toHaveClass('btn-icon-primary-active');
diff --git a/src/Menu/Menu.test.jsx b/src/Menu/Menu.test.jsx
index c2cdad5f98..2f930c2d39 100644
--- a/src/Menu/Menu.test.jsx
+++ b/src/Menu/Menu.test.jsx
@@ -71,48 +71,53 @@ describe('Keyboard Interactions', () => {
expect(defaultItem).toHaveFocus();
});
- it('should focus the next item after ArrowDown keyDown', () => {
+ it('should focus the next item after ArrowDown keyDown', async () => {
+ const user = userEvent.setup();
const defaultItem = screen.getByText('Default');
const cantTouchThisItem = screen.getByText(MENU_ITEM_TEXT).parentElement;
- userEvent.type(defaultItem, '{arrowdown}');
+ await user.type(defaultItem, '{arrowdown}');
expect(cantTouchThisItem).toHaveFocus();
});
- it('should focus the next item after Tab keyDown', () => {
+ it('should focus the next item after Tab keyDown', async () => {
+ const user = userEvent.setup();
const defaultItem = screen.getByText('Default').parentElement;
const cantTouchThisItem = screen.getByText(MENU_ITEM_TEXT).parentElement;
defaultItem.focus();
- userEvent.tab();
+ await user.tab();
expect(cantTouchThisItem).toHaveFocus();
});
- it('should loop focus to the first item after Tab keyDown on last item', () => {
+ it('should loop focus to the first item after Tab keyDown on last item', async () => {
+ const user = userEvent.setup();
const defaultItem = screen.getByText('Default').parentElement;
const iconBeforeItem = screen.getByText('Icon Before');
iconBeforeItem.focus();
- userEvent.tab();
+ await user.tab();
expect(defaultItem).toHaveFocus();
});
- it('should loop focus to the last item after ArrowUp keyDown on first item', () => {
+ it('should loop focus to the last item after ArrowUp keyDown on first item', async () => {
+ const user = userEvent.setup();
const defaultItem = screen.getByText('Default').parentElement;
const iconBeforeItem = screen.getByText('Icon Before').parentElement;
defaultItem.focus();
- userEvent.type(defaultItem, '{arrowup}');
+ await user.type(defaultItem, '{arrowup}');
expect(iconBeforeItem).toHaveFocus();
});
- it('should focus the previous item after Shift + Tab keyDown', () => {
+ it('should focus the previous item after Shift + Tab keyDown', async () => {
+ const user = userEvent.setup();
const button1 = screen.getAllByRole('button')[0];
const button2 = screen.getAllByRole('button')[1];
button2.focus();
- userEvent.tab({ shift: true });
+ await user.tab({ shift: true });
expect(button1).toHaveFocus();
});
diff --git a/src/Menu/SelectMenu.jsx b/src/Menu/SelectMenu.jsx
index 0e6feb9506..ba42ca1a21 100644
--- a/src/Menu/SelectMenu.jsx
+++ b/src/Menu/SelectMenu.jsx
@@ -4,7 +4,7 @@ import classNames from 'classnames';
import { ExpandMore } from '../../icons';
import Button from '../Button';
import ModalPopup from '../Modal/ModalPopup';
-import useToggle from '../hooks/useToggle';
+import useToggle from '../hooks/useToggleHook';
import Menu from '.';
import withDeprecatedProps, { DeprTypes } from '../withDeprecatedProps';
diff --git a/src/Menu/index.jsx b/src/Menu/index.jsx
index 5330588cbc..34522bd42b 100644
--- a/src/Menu/index.jsx
+++ b/src/Menu/index.jsx
@@ -1,7 +1,7 @@
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
-import useArrowKeyNavigation from '../hooks/useArrowKeyNavigation';
+import useArrowKeyNavigation from '../hooks/useArrowKeyNavigationHook';
function Menu({
as,
diff --git a/src/Modal/ModalDialogBody.jsx b/src/Modal/ModalDialogBody.jsx
index 7e31ae7d9e..06a0bdf803 100644
--- a/src/Modal/ModalDialogBody.jsx
+++ b/src/Modal/ModalDialogBody.jsx
@@ -1,7 +1,7 @@
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
-import useIsVisible from '../hooks/useIsVisible';
+import useIsVisible from '../hooks/useIsVisibleHook';
function ModalDialogBody({
as,
diff --git a/src/Modal/tests/ModalLayer.test.tsx b/src/Modal/tests/ModalLayer.test.tsx
index f316086cea..974da3a770 100644
--- a/src/Modal/tests/ModalLayer.test.tsx
+++ b/src/Modal/tests/ModalLayer.test.tsx
@@ -78,7 +78,8 @@ describe('', () => {
});
describe('Dismiss modal', () => {
- it('closes a non-blocking modal layer when backdrop is clicked', () => {
+ it('closes a non-blocking modal layer when backdrop is clicked', async () => {
+ const user = userEvent.setup();
const closeFn = jest.fn();
render(
@@ -86,7 +87,7 @@ describe('', () => {
,
);
const backdrop = screen.getByTestId('modal-backdrop');
- userEvent.click(backdrop);
+ await user.click(backdrop);
expect(closeFn).toHaveBeenCalled();
});
diff --git a/src/Nav/_mixins.scss b/src/Nav/_mixins.scss
index f5593f067d..9288d4001f 100644
--- a/src/Nav/_mixins.scss
+++ b/src/Nav/_mixins.scss
@@ -1,3 +1,5 @@
+@use "sass:map";
+
@mixin nav-tabs-link-focus(
$tabs-border-color,
$radius: var(--pgn-size-nav-tabs-border-radius),
@@ -5,7 +7,7 @@
) {
position: relative;
outline: 0;
- z-index: map-get($map: $indexes, $key: 1);
+ z-index: map.get($map: $indexes, $key: 1);
&::before {
content: "";
diff --git a/src/Navbar/index.scss b/src/Navbar/index.scss
index 5de4ebfd66..1e5b2beeb7 100644
--- a/src/Navbar/index.scss
+++ b/src/Navbar/index.scss
@@ -1,3 +1,5 @@
+@use "sass:map";
+
.navbar {
position: relative;
display: flex;
@@ -99,7 +101,7 @@
}
.navbar-expand {
- @each $breakpoint in map-keys($grid-breakpoints) {
+ @each $breakpoint in map.keys($grid-breakpoints) {
$next: breakpoint-next($breakpoint, $grid-breakpoints);
$infix: breakpoint-infix($next, $grid-breakpoints);
diff --git a/src/OverflowScroll/data/tests/useOverflowScroll.test.jsx b/src/OverflowScroll/data/tests/useOverflowScroll.test.jsx
index 9240f8fcbe..90745690b0 100644
--- a/src/OverflowScroll/data/tests/useOverflowScroll.test.jsx
+++ b/src/OverflowScroll/data/tests/useOverflowScroll.test.jsx
@@ -1,6 +1,5 @@
import React from 'react';
-import { renderHook } from '@testing-library/react-hooks/dom';
-import { act } from '@testing-library/react';
+import { act, renderHook } from '@testing-library/react';
import useOverflowScroll from '../useOverflowScroll';
import useOverflowScrollActions from '../useOverflowScrollActions';
import getChildrenElements from '../getChildrenElements';
diff --git a/src/OverflowScroll/data/tests/useOverflowScrollActions.test.jsx b/src/OverflowScroll/data/tests/useOverflowScrollActions.test.jsx
index 0443428105..c488e77958 100644
--- a/src/OverflowScroll/data/tests/useOverflowScrollActions.test.jsx
+++ b/src/OverflowScroll/data/tests/useOverflowScrollActions.test.jsx
@@ -1,4 +1,4 @@
-import { renderHook } from '@testing-library/react-hooks/dom';
+import { renderHook } from '@testing-library/react';
import { act } from 'react-test-renderer';
import useOverflowScrollActions from '../useOverflowScrollActions';
diff --git a/src/OverflowScroll/data/tests/useOverflowScrollElementAttributes.test.jsx b/src/OverflowScroll/data/tests/useOverflowScrollElementAttributes.test.jsx
index 051b484bb6..9b01c80fb8 100644
--- a/src/OverflowScroll/data/tests/useOverflowScrollElementAttributes.test.jsx
+++ b/src/OverflowScroll/data/tests/useOverflowScrollElementAttributes.test.jsx
@@ -1,4 +1,4 @@
-import { renderHook } from '@testing-library/react-hooks/dom';
+import { renderHook } from '@testing-library/react';
import useOverflowScrollElementAttributes, {
OVERFLOW_SCROLL_OVERFLOW_CONTAINER_CLASS,
OVERFLOW_SCROLL_OVERFLOW_OPACITY_MASK_GRADIENT_START,
diff --git a/src/OverflowScroll/data/tests/useOverflowScrollEventListeners.test.jsx b/src/OverflowScroll/data/tests/useOverflowScrollEventListeners.test.jsx
index ecc6f9dd24..bac8055bd7 100644
--- a/src/OverflowScroll/data/tests/useOverflowScrollEventListeners.test.jsx
+++ b/src/OverflowScroll/data/tests/useOverflowScrollEventListeners.test.jsx
@@ -1,5 +1,4 @@
-import { renderHook } from '@testing-library/react-hooks/dom';
-import { act } from '@testing-library/react';
+import { act, renderHook } from '@testing-library/react';
import useOverflowScrollEventListeners from '../useOverflowScrollEventListeners';
const divElement = document.createElement('div');
diff --git a/src/Pagination/Pagination.test.jsx b/src/Pagination/Pagination.test.jsx
index cfaf6019fc..49c99eb43a 100644
--- a/src/Pagination/Pagination.test.jsx
+++ b/src/Pagination/Pagination.test.jsx
@@ -3,7 +3,6 @@ import { Context as ResponsiveContext } from 'react-responsive';
import renderer from 'react-test-renderer';
import {
render,
- act,
screen,
} from '@testing-library/react';
import userEvent from '@testing-library/user-event';
@@ -66,48 +65,53 @@ describe('', () => {
});
describe('handles controlled and uncontrolled behaviour properly', () => {
- it('does not internally change page on page click if currentPage is provided', () => {
+ it('does not internally change page on page click if currentPage is provided', async () => {
+ const user = userEvent.setup();
render();
expect(screen.getByLabelText(PAGINATION_BUTTON_LABEL_CURRENT_PAGE, { exact: false })).toHaveTextContent('1');
- userEvent.click(screen.getByText(PAGINATION_BUTTON_LABEL_NEXT));
+ await user.click(screen.getByText(PAGINATION_BUTTON_LABEL_NEXT));
expect(screen.getByLabelText(PAGINATION_BUTTON_LABEL_CURRENT_PAGE, { exact: false })).toHaveTextContent('1');
- userEvent.click(screen.getByRole('button', { name: `${PAGINATION_BUTTON_LABEL_PAGE} 3` }));
+ await user.click(screen.getByRole('button', { name: `${PAGINATION_BUTTON_LABEL_PAGE} 3` }));
expect(screen.getByLabelText(PAGINATION_BUTTON_LABEL_CURRENT_PAGE, { exact: false })).toHaveTextContent('1');
});
- it('controls page selection internally if currentPage is not provided', () => {
+ it('controls page selection internally if currentPage is not provided', async () => {
+ const user = userEvent.setup();
render();
expect(screen.getByLabelText(PAGINATION_BUTTON_LABEL_CURRENT_PAGE, { exact: false })).toHaveTextContent('1');
- userEvent.click(screen.getByText(PAGINATION_BUTTON_LABEL_NEXT));
+ await user.click(screen.getByText(PAGINATION_BUTTON_LABEL_NEXT));
expect(screen.getByLabelText(PAGINATION_BUTTON_LABEL_CURRENT_PAGE, { exact: false })).toHaveTextContent('2');
- userEvent.click(screen.getByRole('button', { name: `${PAGINATION_BUTTON_LABEL_PAGE} 3` }));
+ await user.click(screen.getByRole('button', { name: `${PAGINATION_BUTTON_LABEL_PAGE} 3` }));
expect(screen.getByLabelText(PAGINATION_BUTTON_LABEL_CURRENT_PAGE, { exact: false })).toHaveTextContent('3');
- userEvent.click(screen.getByText(PAGINATION_BUTTON_LABEL_PREV));
+ await user.click(screen.getByText(PAGINATION_BUTTON_LABEL_PREV));
expect(screen.getByLabelText(PAGINATION_BUTTON_LABEL_CURRENT_PAGE, { exact: false })).toHaveTextContent('2');
});
- it('does not chang page if you click "next" button while on last page', () => {
+ it('does not chang page if you click "next" button while on last page', async () => {
+ const user = userEvent.setup();
render();
expect(screen.getByLabelText(PAGINATION_BUTTON_LABEL_CURRENT_PAGE, { exact: false })).toHaveTextContent('5');
- userEvent.click(screen.getByText(PAGINATION_BUTTON_LABEL_NEXT));
+ await user.click(screen.getByText(PAGINATION_BUTTON_LABEL_NEXT));
expect(screen.getByLabelText(PAGINATION_BUTTON_LABEL_CURRENT_PAGE, { exact: false })).toHaveTextContent('5');
});
- it('does not chang page if you click "previous" button while on first page', () => {
+ it('does not chang page if you click "previous" button while on first page', async () => {
+ const user = userEvent.setup();
render();
expect(screen.getByLabelText(PAGINATION_BUTTON_LABEL_CURRENT_PAGE, { exact: false })).toHaveTextContent('1');
- userEvent.click(screen.getByText(PAGINATION_BUTTON_LABEL_PREV));
+ await user.click(screen.getByText(PAGINATION_BUTTON_LABEL_PREV));
expect(screen.getByLabelText(PAGINATION_BUTTON_LABEL_CURRENT_PAGE, { exact: false })).toHaveTextContent('1');
});
});
describe('handles focus properly', () => {
- it('should change focus to next button if previous page is first page', () => {
+ it('should change focus to next button if previous page is first page', async () => {
+ const user = userEvent.setup();
const props = {
...baseProps,
currentPage: 2,
@@ -117,11 +121,12 @@ describe('', () => {
},
};
render();
- userEvent.click(screen.getByText(PAGINATION_BUTTON_LABEL_PREV));
+ await user.click(screen.getByText(PAGINATION_BUTTON_LABEL_PREV));
expect(screen.getByText(PAGINATION_BUTTON_LABEL_NEXT)).toHaveFocus();
});
- it('should change focus to previous button if next page is last page', () => {
+ it('should change focus to previous button if next page is last page', async () => {
+ const user = userEvent.setup();
const props = {
...baseProps,
currentPage: baseProps.pageCount - 1,
@@ -131,7 +136,7 @@ describe('', () => {
},
};
render();
- userEvent.click(screen.getByText(props.buttonLabel.next));
+ await user.click(screen.getByText(props.buttonLabel.next));
expect(screen.getByText(props.buttonLabel.previous)).toHaveFocus();
});
});
@@ -191,7 +196,8 @@ describe('', () => {
});
describe('should fire callbacks properly', () => {
- it('should not fire onPageSelect when selecting current page', () => {
+ it('should not fire onPageSelect when selecting current page', async () => {
+ const user = userEvent.setup();
const spy = jest.fn();
const props = {
...baseProps,
@@ -203,11 +209,12 @@ describe('', () => {
));
- userEvent.click(screen.getByLabelText(PAGINATION_BUTTON_LABEL_CURRENT_PAGE, { exact: false }));
+ await user.click(screen.getByLabelText(PAGINATION_BUTTON_LABEL_CURRENT_PAGE, { exact: false }));
expect(spy).toHaveBeenCalledTimes(0);
});
- it('should fire onPageSelect callback when selecting new page', () => {
+ it('should fire onPageSelect callback when selecting new page', async () => {
+ const user = userEvent.setup();
const spy = jest.fn();
const props = {
...baseProps,
@@ -219,17 +226,18 @@ describe('', () => {
));
- userEvent.click(screen.getByLabelText(`${PAGINATION_BUTTON_LABEL_PAGE} 2`));
+ await user.click(screen.getByLabelText(`${PAGINATION_BUTTON_LABEL_PAGE} 2`));
expect(spy).toHaveBeenCalledTimes(1);
- userEvent.click(screen.getByLabelText(`${PAGINATION_BUTTON_LABEL_PAGE} 3`));
+ await user.click(screen.getByLabelText(`${PAGINATION_BUTTON_LABEL_PAGE} 3`));
expect(spy).toHaveBeenCalledTimes(2);
});
});
});
describe('fires previous and next button click handlers', () => {
- it('previous button onClick', () => {
+ it('previous button onClick', async () => {
+ const user = userEvent.setup();
const spy = jest.fn();
const props = {
...baseProps,
@@ -238,11 +246,12 @@ describe('', () => {
};
render();
const expectedPrevButtonAriaLabel = `${PAGINATION_BUTTON_LABEL_PREV}, ${PAGINATION_BUTTON_LABEL_PAGE} 2`;
- userEvent.click(screen.getByRole('button', { name: expectedPrevButtonAriaLabel }));
+ await user.click(screen.getByRole('button', { name: expectedPrevButtonAriaLabel }));
expect(spy).toHaveBeenCalledTimes(1);
});
- it('next button onClick', () => {
+ it('next button onClick', async () => {
+ const user = userEvent.setup();
const spy = jest.fn();
const props = {
...baseProps,
@@ -250,7 +259,7 @@ describe('', () => {
};
render();
const expectedNextButtonAriaLabel = `${PAGINATION_BUTTON_LABEL_NEXT}, ${PAGINATION_BUTTON_LABEL_PAGE} 2`;
- userEvent.click(screen.getByRole('button', { name: expectedNextButtonAriaLabel }));
+ await user.click(screen.getByRole('button', { name: expectedNextButtonAriaLabel }));
expect(spy).toHaveBeenCalledTimes(1);
});
});
@@ -318,13 +327,12 @@ describe('', () => {
});
it('for the reduced variant shows dropdown button with the page count as label', async () => {
+ const user = userEvent.setup();
render();
const dropdownLabel = `${baseProps.currentPage} de ${baseProps.pageCount}`;
- await act(async () => {
- userEvent.click(screen.getByRole('button', { name: dropdownLabel }));
- });
+ await user.click(screen.getByRole('button', { name: dropdownLabel }));
expect(screen.queryAllByRole('button', { name: /^\d+$/ }).length).toEqual(baseProps.pageCount);
});
diff --git a/src/ProductTour/Checkpoint.scss b/src/ProductTour/Checkpoint.scss
index 808b31a54d..3276cb1565 100644
--- a/src/ProductTour/Checkpoint.scss
+++ b/src/ProductTour/Checkpoint.scss
@@ -1,3 +1,5 @@
+@use "sass:map";
+
.pgn__checkpoint {
position: absolute;
background: var(--pgn-color-product-tour-checkpoint-bg);
@@ -57,11 +59,11 @@
}
&:not(:first-child) {
- margin-left: map_get($spacers, 1\.5);
+ margin-left: map.get($spacers, 1\.5);
}
[dir="rtl"] & {
- margin-left: map_get($spacers, 1\.5);
+ margin-left: map.get($spacers, 1\.5);
margin-right: 0;
&:last-child {
@@ -77,19 +79,19 @@
.pgn__checkpoint-body {
color: var(--pgn-color-product-tour-checkpoint-body);
- margin-bottom: map_get($spacers, 3\.5);
+ margin-bottom: map.get($spacers, 3\.5);
text-align: start;
}
.pgn__checkpoint-header {
display: flex;
justify-content: space-between;
- margin-bottom: map_get($spacers, 2\.5);
+ margin-bottom: map.get($spacers, 2\.5);
}
#pgn__checkpoint-title {
font-size: var(--pgn-typography-font-size-h3-base);
- margin-inline-end: map_get($spacers, 2\.5);
+ margin-inline-end: map.get($spacers, 2\.5);
margin-bottom: 0;
}
}
diff --git a/src/ProductTour/Checkpoint.test.jsx b/src/ProductTour/Checkpoint.test.jsx
index 2ea1aabb52..dc3efe6389 100644
--- a/src/ProductTour/Checkpoint.test.jsx
+++ b/src/ProductTour/Checkpoint.test.jsx
@@ -1,6 +1,6 @@
import React from 'react';
import { render, screen } from '@testing-library/react';
-import userEvent from '@testing-library/user-event';
+import userEvent, { PointerEventsCheckLevel } from '@testing-library/user-event';
import { IntlProvider } from 'react-intl';
import * as popper from '@popperjs/core';
@@ -100,8 +100,9 @@ describe('Checkpoint', () => {
});
it('end button onClick calls handleEnd', async () => {
+ const user = userEvent.setup({ pointerEventsCheck: PointerEventsCheckLevel.Never });
const endButton = screen.getByText('End', { selector: 'button' });
- await userEvent.click(endButton, undefined, { skipPointerEventsCheck: true });
+ await user.click(endButton);
expect(handleEnd).toHaveBeenCalledTimes(1);
});
});
diff --git a/src/ProductTour/ProductTour.test.jsx b/src/ProductTour/ProductTour.test.jsx
index d6b514848f..ac8f294bea 100644
--- a/src/ProductTour/ProductTour.test.jsx
+++ b/src/ProductTour/ProductTour.test.jsx
@@ -144,6 +144,7 @@ describe('', () => {
});
it('onClick of end button disables tour', async () => {
+ const user = userEvent.setup();
const { rerender } = render();
// Verify a Checkpoint has rendered
@@ -151,29 +152,21 @@ describe('', () => {
// Advance the Tour to the last Checkpoint
const advanceButton1 = screen.getByRole('button', { name: 'Next' });
- await act(async () => {
- await userEvent.click(advanceButton1);
- });
+ await user.click(advanceButton1);
const advanceButton2 = screen.getByRole('button', { name: 'Next' });
- await act(async () => {
- await userEvent.click(advanceButton2);
- });
+ await user.click(advanceButton2);
rerender();
const advanceButton3 = screen.getByRole('button', { name: 'Override advance' });
- await act(async () => {
- await userEvent.click(advanceButton3);
- });
+ await user.click(advanceButton3);
rerender();
// Click the end button
const endButton = screen.getByRole('button', { name: 'End' });
- await act(async () => {
- await userEvent.click(endButton);
- });
+ await user.click(endButton);
// Verify no Checkpoints have rendered
expect(screen.queryByRole('dialog')).not.toBeInTheDocument();
@@ -188,9 +181,7 @@ describe('', () => {
expect(screen.getByRole('dialog', { name: 'Checkpoint 1' })).toBeInTheDocument();
// Click Escape key
- await act(async () => {
- await userEvent.keyboard('{escape}');
- });
+ await userEvent.keyboard('{Escape}');
// Verify no Checkpoints have been rendered
expect(screen.queryByRole('dialog')).not.toBeInTheDocument();
@@ -271,31 +262,27 @@ describe('', () => {
expect(screen.queryByRole('dialog')).not.toBeInTheDocument();
});
it('calls customHandleOnEnd onClick of end button', async () => {
+ const user = userEvent.setup();
const { rerender } = render();
const advanceButton = screen.getByRole('button', { name: 'Override advance' });
- await act(async () => {
- await userEvent.click(advanceButton);
- });
+ await user.click(advanceButton);
rerender();
expect(screen.getByText('Checkpoint 4')).toBeInTheDocument();
const endButton = screen.getByRole('button', { name: 'Override end' });
- await act(async () => {
- await userEvent.click(endButton);
- });
+ await user.click(endButton);
expect(handleEnd).toBeCalledTimes(1);
expect(customOnEnd).toHaveBeenCalledTimes(1);
expect(screen.queryByText('Checkpoint 4')).not.toBeInTheDocument();
});
it('calls onEscape on escape button key press', async () => {
+ const user = userEvent.setup();
render();
expect(screen.getByText('Checkpoint 3')).toBeInTheDocument();
const container = screen.getByRole('dialog');
container.focus();
- await act(async () => {
- await userEvent.keyboard('{escape}');
- });
+ await user.keyboard('{Escape}');
expect(handleEscape).toHaveBeenCalledTimes(1);
expect(screen.queryByText('Checkpoint 3')).not.toBeInTheDocument();
});
diff --git a/src/ProductTour/index.jsx b/src/ProductTour/index.jsx
index 5b4754f395..75f1e6b150 100644
--- a/src/ProductTour/index.jsx
+++ b/src/ProductTour/index.jsx
@@ -46,7 +46,7 @@ const ProductTour = React.forwardRef(({ tours }, ref) => {
useEffect(() => {
const handleEsc = (event) => {
- if (event.keyCode === 27) {
+ if (event.key === 'Escape') {
setIsTourEnabled(false);
if (onEscape) {
onEscape();
diff --git a/src/Scrollable/Scrollable.test.jsx b/src/Scrollable/Scrollable.test.jsx
index c9c4fc28f6..489596eeeb 100644
--- a/src/Scrollable/Scrollable.test.jsx
+++ b/src/Scrollable/Scrollable.test.jsx
@@ -1,10 +1,10 @@
import React from 'react';
import { render, screen } from '@testing-library/react'; // (or /dom, /vue, ...)
-import useIsVisible from '../hooks/useIsVisible';
+import useIsVisible from '../hooks/useIsVisibleHook';
import Scrollable, { CLASSNAME_SCROLL_BOTTOM, CLASSNAME_SCROLL_TOP } from '.';
-jest.mock('../hooks/useIsVisible');
+jest.mock('../hooks/useIsVisibleHook');
function rangeOfNumbers() {
return Array.from({ length: 50 }, (v, k) => k + 1);
diff --git a/src/Scrollable/index.jsx b/src/Scrollable/index.jsx
index 7b47daa97d..3f3314a891 100644
--- a/src/Scrollable/index.jsx
+++ b/src/Scrollable/index.jsx
@@ -2,7 +2,7 @@ import React, { useState } from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
-import useIsVisible from '../hooks/useIsVisible';
+import useIsVisible from '../hooks/useIsVisibleHook';
export const CLASSNAME_SCROLL_TOP = 'pgn__scrollable-body-scroll-top';
export const CLASSNAME_SCROLL_BOTTOM = 'pgn__scrollable-body-scroll-bottom';
diff --git a/src/SearchField/index.scss b/src/SearchField/index.scss
index 19f0341c42..c204c68c9e 100644
--- a/src/SearchField/index.scss
+++ b/src/SearchField/index.scss
@@ -1,3 +1,5 @@
+@use "sass:map";
+
.pgn__searchfield {
transition: var(--pgn-transition-form-input);
border: var(--pgn-size-search-field-border-width-base) solid var(--pgn-color-search-field-border-base);
@@ -127,5 +129,5 @@
.pgn__searchfield__iconbutton-submit,
.pgn__searchfield__iconbutton-reset {
flex-shrink: 0;
- margin-inline-end: map-get($spacers, 1);
+ margin-inline-end: map.get($spacers, 1);
}
diff --git a/src/SelectableBox/tests/SelectableBox.test.jsx b/src/SelectableBox/tests/SelectableBox.test.jsx
index 57e059f071..f0ee6c2824 100644
--- a/src/SelectableBox/tests/SelectableBox.test.jsx
+++ b/src/SelectableBox/tests/SelectableBox.test.jsx
@@ -123,12 +123,13 @@ describe('', () => {
rerender();
expect(radio.className).toContain('pgn__selectable_box-active');
});
- it('ref is passed to onClick function', () => {
+ it('ref is passed to onClick function', async () => {
+ const user = userEvent.setup();
let inputRef;
const onClick = (ref) => { inputRef = ref; };
render();
const radio = screen.getByRole('button');
- userEvent.click(radio);
+ await user.click(radio);
expect(inputRef).not.toBeFalsy();
});
});
diff --git a/src/Stepper/StepperHeader.jsx b/src/Stepper/StepperHeader.jsx
index fafcb2d9be..433e536b2a 100644
--- a/src/Stepper/StepperHeader.jsx
+++ b/src/Stepper/StepperHeader.jsx
@@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
import classNames from 'classnames';
import StepperHeaderStep from './StepperHeaderStep';
import { StepperContext } from './StepperContext';
-import useWindowSize from '../hooks/useWindowSize';
+import useWindowSize from '../hooks/useWindowSizeHook';
import breakpoints, { Size } from '../utils/breakpoints';
function StepListSeparator() {
diff --git a/src/Stepper/tests/Stepper.test.jsx b/src/Stepper/tests/Stepper.test.jsx
index 4dc061fef6..103df484ab 100644
--- a/src/Stepper/tests/Stepper.test.jsx
+++ b/src/Stepper/tests/Stepper.test.jsx
@@ -7,7 +7,7 @@ import { stepsReducer } from '../StepperContext';
const mockWindowSize = { width: 1000, height: 1000 };
-jest.mock('../../hooks/useWindowSize', () => () => mockWindowSize);
+jest.mock('../../hooks/useWindowSizeHook', () => () => mockWindowSize);
function Example({
// eslint-disable-next-line react/prop-types
diff --git a/src/Tabs/Tabs.test.jsx b/src/Tabs/Tabs.test.jsx
index 44af158cd0..2e829a5321 100644
--- a/src/Tabs/Tabs.test.jsx
+++ b/src/Tabs/Tabs.test.jsx
@@ -6,7 +6,7 @@ import userEvent from '@testing-library/user-event';
import Tabs, { MORE_TAB_TEXT } from '.';
import Tab from './Tab';
-jest.mock('../hooks/useIndexOfLastVisibleChild', () => ({
+jest.mock('../hooks/useIndexOfLastVisibleChildHook', () => ({
__esModule: true,
default: () => 0,
}));
diff --git a/src/Tabs/index.jsx b/src/Tabs/index.jsx
index 56215b4064..98255f4dc4 100644
--- a/src/Tabs/index.jsx
+++ b/src/Tabs/index.jsx
@@ -10,7 +10,7 @@ import PropTypes from 'prop-types';
import BaseTabs from 'react-bootstrap/Tabs';
import Bubble from '../Bubble';
import Dropdown from '../Dropdown';
-import useIndexOfLastVisibleChild from '../hooks/useIndexOfLastVisibleChild';
+import useIndexOfLastVisibleChild from '../hooks/useIndexOfLastVisibleChildHook';
import Tab from './Tab';
export const MORE_TAB_TEXT = 'More...';
diff --git a/src/Truncate/index.jsx b/src/Truncate/index.jsx
index 05ccd57437..292b7e2b7f 100644
--- a/src/Truncate/index.jsx
+++ b/src/Truncate/index.jsx
@@ -3,7 +3,7 @@ import React, {
} from 'react';
import PropTypes from 'prop-types';
import { truncateLines } from './utils';
-import useWindowSize from '../hooks/useWindowSize';
+import useWindowSize from '../hooks/useWindowSizeHook';
const DEFAULT_TRUNCATE_LINES = 1;
const DEFAULT_TRUNCATE_ELLIPSIS = '...';
diff --git a/src/hooks/tests/useToggle.test.tsx b/src/hooks/tests/useToggle.test.tsx
index 0c457617f1..4b5b7083fa 100644
--- a/src/hooks/tests/useToggle.test.tsx
+++ b/src/hooks/tests/useToggle.test.tsx
@@ -4,7 +4,7 @@ import { render, screen } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { useToggle } from '../..';
-import { ToggleHandlers } from '../useToggle';
+import { ToggleHandlers } from '../useToggleHook';
const TOGGLE_IS_ON = 'on';
const TOGGLE_IS_OFF = 'off';
diff --git a/src/hooks/useArrowKeyNavigation.tsx b/src/hooks/useArrowKeyNavigationHook.tsx
similarity index 92%
rename from src/hooks/useArrowKeyNavigation.tsx
rename to src/hooks/useArrowKeyNavigationHook.tsx
index 1700bbafbc..da55c9cb86 100644
--- a/src/hooks/useArrowKeyNavigation.tsx
+++ b/src/hooks/useArrowKeyNavigationHook.tsx
@@ -1,3 +1,7 @@
+// Note: this file was renamed from 'useArrowKeyNavigation.tsx' to 'useArrowKeyNavigationHook.tsx' to fix
+// some bugs in the Gatsby www site, where Webpack was getting the .tsx and .mdx
+// files confused. Renaming this file allows us to keep the URLs of the docs site
+// unchanged.
import { useRef, useEffect } from 'react';
interface HandleEnterArgs {
diff --git a/src/hooks/useIndexOfLastVisibleChild.tsx b/src/hooks/useIndexOfLastVisibleChildHook.tsx
similarity index 88%
rename from src/hooks/useIndexOfLastVisibleChild.tsx
rename to src/hooks/useIndexOfLastVisibleChildHook.tsx
index 2111152981..5278638f40 100644
--- a/src/hooks/useIndexOfLastVisibleChild.tsx
+++ b/src/hooks/useIndexOfLastVisibleChildHook.tsx
@@ -1,3 +1,7 @@
+// Note: this file was renamed from 'useIndexOfLastVisibleChild.tsx' to 'useIndexOfLastVisibleChildHook.tsx' to fix
+// some bugs in the Gatsby www site, where Webpack was getting the .tsx and .mdx
+// files confused. Renaming this file allows us to keep the URLs of the docs site
+// unchanged.
import { useLayoutEffect, useState } from 'react';
/**
diff --git a/src/hooks/useIsVisible.tsx b/src/hooks/useIsVisibleHook.tsx
similarity index 100%
rename from src/hooks/useIsVisible.tsx
rename to src/hooks/useIsVisibleHook.tsx
diff --git a/src/hooks/useToggle.tsx b/src/hooks/useToggleHook.tsx
similarity index 79%
rename from src/hooks/useToggle.tsx
rename to src/hooks/useToggleHook.tsx
index 20614dcf44..70618a3091 100644
--- a/src/hooks/useToggle.tsx
+++ b/src/hooks/useToggleHook.tsx
@@ -1,3 +1,7 @@
+// Note: this file was renamed from 'useToggle.tsx' to 'useToggleHook.tsx' to fix
+// some bugs in the Gatsby www site, where Webpack was getting the .tsx and .mdx
+// files confused. Renaming this file allows us to keep the URLs of the docs site
+// unchanged.
import { useState, useCallback } from 'react';
export type Toggler = [
diff --git a/src/hooks/useWindowSize.tsx b/src/hooks/useWindowSizeHook.tsx
similarity index 100%
rename from src/hooks/useWindowSize.tsx
rename to src/hooks/useWindowSizeHook.tsx
diff --git a/src/index.d.ts b/src/index.d.ts
index a7eb54a9ac..05ddb21c5c 100644
--- a/src/index.d.ts
+++ b/src/index.d.ts
@@ -18,11 +18,11 @@ export { default as ModalLayer } from './Modal/ModalLayer';
export { default as Overlay, OverlayTrigger } from './Overlay';
export { default as Portal } from './Modal/Portal';
export { default as Tooltip } from './Tooltip';
-export { default as useWindowSize, type WindowSizeData } from './hooks/useWindowSize';
-export { default as useToggle, type Toggler, type ToggleHandlers } from './hooks/useToggle';
-export { default as useArrowKeyNavigation, type ArrowKeyNavProps } from './hooks/useArrowKeyNavigation';
-export { default as useIndexOfLastVisibleChild } from './hooks/useIndexOfLastVisibleChild';
-export { default as useIsVisible } from './hooks/useIsVisible';
+export { default as useWindowSize, type WindowSizeData } from './hooks/useWindowSizeHook';
+export { default as useToggle, type Toggler, type ToggleHandlers } from './hooks/useToggleHook';
+export { default as useArrowKeyNavigation, type ArrowKeyNavProps } from './hooks/useArrowKeyNavigationHook';
+export { default as useIndexOfLastVisibleChild } from './hooks/useIndexOfLastVisibleChildHook';
+export { default as useIsVisible } from './hooks/useIsVisibleHook';
// // // // // // // // // // // // // // // // // // // // // // // // // // //
// Things that don't have types
diff --git a/src/index.js b/src/index.js
index c86406c465..90877c0e7a 100644
--- a/src/index.js
+++ b/src/index.js
@@ -18,11 +18,11 @@ export { default as ModalLayer } from './Modal/ModalLayer';
export { default as Overlay, OverlayTrigger } from './Overlay';
export { default as Portal } from './Modal/Portal';
export { default as Tooltip } from './Tooltip';
-export { default as useWindowSize } from './hooks/useWindowSize';
-export { default as useToggle } from './hooks/useToggle';
-export { default as useArrowKeyNavigation } from './hooks/useArrowKeyNavigation';
-export { default as useIndexOfLastVisibleChild } from './hooks/useIndexOfLastVisibleChild';
-export { default as useIsVisible } from './hooks/useIsVisible';
+export { default as useWindowSize } from './hooks/useWindowSizeHook';
+export { default as useToggle } from './hooks/useToggleHook';
+export { default as useArrowKeyNavigation } from './hooks/useArrowKeyNavigationHook';
+export { default as useIndexOfLastVisibleChild } from './hooks/useIndexOfLastVisibleChildHook';
+export { default as useIsVisible } from './hooks/useIsVisibleHook';
// // // // // // // // // // // // // // // // // // // // // // // // // // //
// Things that don't have types
diff --git a/styles/scss/core/_exports.module.scss b/styles/scss/core/_exports.module.scss
index ccb1160dd0..00e3d0b829 100644
--- a/styles/scss/core/_exports.module.scss
+++ b/styles/scss/core/_exports.module.scss
@@ -1,3 +1,4 @@
+@use "sass:map";
// Grid breakpoints
//
// Define the minimum dimensions at which your layout will change,
@@ -13,10 +14,10 @@ $grid-breakpoints: (
) !default;
:export {
- xs: map-get($grid-breakpoints, "xs");
- sm: map-get($grid-breakpoints, "sm");
- md: map-get($grid-breakpoints, "md");
- lg: map-get($grid-breakpoints, "lg");
- xl: map-get($grid-breakpoints, "xl");
- xxl: map-get($grid-breakpoints, "xxl");
+ xs: map.get($grid-breakpoints, "xs");
+ sm: map.get($grid-breakpoints, "sm");
+ md: map.get($grid-breakpoints, "md");
+ lg: map.get($grid-breakpoints, "lg");
+ xl: map.get($grid-breakpoints, "xl");
+ xxl: map.get($grid-breakpoints, "xxl");
}
diff --git a/styles/scss/core/_functions.scss b/styles/scss/core/_functions.scss
index e16ebf8fdb..39f968c698 100644
--- a/styles/scss/core/_functions.scss
+++ b/styles/scss/core/_functions.scss
@@ -1,3 +1,5 @@
+@use "sass:map";
+@use "sass:meta";
@import "./bootstrap-override/functions";
//
@@ -15,20 +17,20 @@
$base-color: #808080 !default;
$color-level: 500 !default;
- @if map-has-key($theme-colors, $color-name) {
- $base-color: map-get($theme-colors, $color-name);
+ @if map.has-key($theme-colors, $color-name) {
+ $base-color: map.get($theme-colors, $color-name);
}
- @if type-of($variant) == "number" {
+ @if meta.type-of($variant) == "number" {
$color-level: $variant;
}
- @else if map-has-key($element-color-levels, $variant) {
- $color-level: map-get($element-color-levels, $variant);
+ @else if map.has-key($element-color-levels, $variant) {
+ $color-level: map.get($element-color-levels, $variant);
}
- @if map-has-key($theme-color-levels, "#{$color-name}-#{$color-level}") {
- @return map-get($theme-color-levels, "#{$color-name}-#{$color-level}");
+ @if map.has-key($theme-color-levels, "#{$color-name}-#{$color-level}") {
+ @return map.get($theme-color-levels, "#{$color-name}-#{$color-level}");
}
@return $base-color;
diff --git a/styles/scss/core/_typography.scss b/styles/scss/core/_typography.scss
index 03a479a002..0c8929aeae 100644
--- a/styles/scss/core/_typography.scss
+++ b/styles/scss/core/_typography.scss
@@ -1,3 +1,4 @@
+@use "sass:map";
@import "~bootstrap/scss/type";
@mixin mobile-type {
@@ -52,7 +53,7 @@
}
}
-@media (max-width: map-get($grid-breakpoints, "sm")) {
+@media (max-width: map.get($grid-breakpoints, "sm")) {
@include mobile-type;
}
diff --git a/styles/scss/core/_utilities.scss b/styles/scss/core/_utilities.scss
index 9fc1f30765..aa92e2ab3d 100644
--- a/styles/scss/core/_utilities.scss
+++ b/styles/scss/core/_utilities.scss
@@ -1,3 +1,4 @@
+@use "sass:map";
// explicitly import bootstrap's utility module to exclude some modules which do not work
// with CSS variables, they are instead overriden by Paragon
@import "~bootstrap/scss/utilities/align";
@@ -91,7 +92,7 @@ $color-levels: 100, 200, 300, 400, 500, 600, 700, 800, 900;
// Define classes for z-index
$indexes: () !default;
-$indexes: map-merge(
+$indexes: map.merge(
(
0: 0,
1: 200,
diff --git a/styles/scss/core/_variables.scss b/styles/scss/core/_variables.scss
index 64b14a253a..ca0bb38c88 100644
--- a/styles/scss/core/_variables.scss
+++ b/styles/scss/core/_variables.scss
@@ -1,3 +1,5 @@
+@use "sass:list";
+@use "sass:map";
// Variables
//
// Variables should follow the `$component-state-property-size` formula for
@@ -18,7 +20,7 @@ $gray-900: var(--pgn-color-gray-900) !default;
$black: var(--pgn-color-black) !default;
$grays: () !default;
-$grays: map-merge(
+$grays: map.merge(
(
"100": $gray-100,
"200": $gray-200,
@@ -40,7 +42,7 @@ $green: var(--pgn-color-green) !default;
$teal: var(--pgn-color-teal) !default;
$colors: () !default;
-$colors: map-merge(
+$colors: map.merge(
(
"blue": $blue,
"green": $green,
@@ -67,7 +69,7 @@ $accent-a: var(--pgn-color-accent-a) !default;
$accent-b: var(--pgn-color-accent-b) !default;
$theme-colors: () !default;
-$theme-colors: map-merge(
+$theme-colors: map.merge(
(
"primary": $primary,
"secondary": $secondary,
@@ -177,7 +179,7 @@ $dark-900: var(--pgn-color-dark-900) !default;
$theme-color-levels: () !default;
-$theme-color-levels: map-merge(
+$theme-color-levels: map.merge(
(
"gray-100": $gray-100,
"gray-200": $gray-200,
@@ -275,7 +277,7 @@ $theme-color-levels: map-merge(
$element-color-levels: () !default;
-$element-color-levels: map-merge(
+$element-color-levels: map.merge(
(
"background": 100,
"disabled-border": 100,
@@ -339,7 +341,7 @@ $enable-deprecation-messages: true !default;
$spacer: var(--pgn-spacing-spacer-base) !default;
$spacers: () !default;
// stylelint-disable-next-line scss/dollar-variable-default
-$spacers: map-merge(
+$spacers: map.merge(
(
0: 0,
1: calc(#{$spacer} * .25),
@@ -360,7 +362,7 @@ $spacers: map-merge(
// This variable affects the `.h-*` and `.w-*` classes.
$sizes: () !default;
// stylelint-disable-next-line scss/dollar-variable-default
-$sizes: map-merge(
+$sizes: map.merge(
(
25: 25%,
50: 50%,
@@ -672,7 +674,7 @@ $transition-collapse-width: var(--pgn-transition-collapse-width) !default;
$embed-responsive-aspect-ratios: () !default;
// stylelint-disable-next-line scss/dollar-variable-default
-$embed-responsive-aspect-ratios: join(
+$embed-responsive-aspect-ratios: list.join(
(
(21 9),
(16 9),
@@ -850,7 +852,7 @@ $user-selects: all, auto, none !default;
// Printing
$print-page-size: var(--pgn-typography-print-page-size) !default;
-$print-body-min-width: map-get($grid-breakpoints, "lg") !default;
+$print-body-min-width: map.get($grid-breakpoints, "lg") !default;
// List group
diff --git a/styles/scss/core/bootstrap-override/_functions.scss b/styles/scss/core/bootstrap-override/_functions.scss
index e853ef586e..cf742209d0 100644
--- a/styles/scss/core/bootstrap-override/_functions.scss
+++ b/styles/scss/core/bootstrap-override/_functions.scss
@@ -1,3 +1,6 @@
+@use "sass:map";
+@use "sass:math";
+@use "sass:string";
// Bootstrap functions
//
// Utility mixins and functions for evaluating source code across our variables, maps, and mixins.
@@ -11,11 +14,11 @@
// @param {String} $replace ('') - New value
// @return {String} - Updated string
@function str-replace($string, $search, $replace: "") {
- $index: str-index($string, $search);
+ $index: string.index($string, $search);
@if $index {
// stylelint-disable-next-line max-line-length
- @return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);
+ @return string.slice($string, 1, $index - 1) + $replace + str-replace(string.slice($string, $index + string.length($search)), $search, $replace);
}
@return $string;
@@ -26,11 +29,11 @@
// Requires the use of quotes around data URIs.
@function escape-svg($string) {
- @if str-index($string, "data:image/svg+xml") {
+ @if string.index($string, "data:image/svg+xml") {
@each $char, $encoded in $escaped-characters {
// Do not escape the url brackets
- @if str-index($string, "url(") == 1 {
- $string: url("#{str-replace(str-slice($string, 6, -3), $char, $encoded)}");
+ @if string.index($string, "url(") == 1 {
+ $string: url("#{str-replace(string.slice($string, 6, -3), $char, $encoded)}");
}
@else {
@@ -44,17 +47,17 @@
// Retrieve color Sass maps
@function color($key: "blue") {
- @return map-get($colors, $key);
+ @return map.get($colors, $key);
}
@function gray($key: "100") {
- @return map-get($grays, $key);
+ @return map.get($grays, $key);
}
@function divide($dividend, $divisor, $precision: 10) {
$sign: if($dividend > 0 and $divisor > 0 or $dividend < 0 and $divisor < 0, 1, -1);
- $dividend: abs($dividend);
- $divisor: abs($divisor);
+ $dividend: math.abs($dividend);
+ $divisor: math.abs($divisor);
@if $dividend == 0 {
@return 0;
@@ -87,8 +90,8 @@
}
$result: $result * $factor * $sign;
- $dividend-unit: unit($dividend);
- $divisor-unit: unit($divisor);
+ $dividend-unit: math.unit($dividend);
+ $divisor-unit: math.unit($divisor);
$unit-map: (
"px": 1px,
"rem": 1rem,
@@ -96,8 +99,8 @@
"%": 1%
);
- @if ($dividend-unit != $divisor-unit and map-has-key($unit-map, $dividend-unit)) {
- $result: $result * map-get($unit-map, $dividend-unit);
+ @if ($dividend-unit != $divisor-unit and map.has-key($unit-map, $dividend-unit)) {
+ $result: $result * map.get($unit-map, $dividend-unit);
}
@return $result;
diff --git a/styles/scss/core/bootstrap-override/mixins/_grid-framework.scss b/styles/scss/core/bootstrap-override/mixins/_grid-framework.scss
index 49dafa3499..423b4c507c 100644
--- a/styles/scss/core/bootstrap-override/mixins/_grid-framework.scss
+++ b/styles/scss/core/bootstrap-override/mixins/_grid-framework.scss
@@ -1,3 +1,4 @@
+@use "sass:map";
// Framework grid generation
//
// Used only by Bootstrap to generate the correct number of grid classes given
@@ -12,7 +13,7 @@
padding-left: calc(#{$gutter} * .5);
}
- @each $breakpoint in map-keys($breakpoints) {
+ @each $breakpoint in map.keys($breakpoints) {
$infix: breakpoint-infix($breakpoint, $breakpoints);
@if $columns > 0 {
diff --git a/styles/scss/core/bootstrap-override/mixins/_grid.scss b/styles/scss/core/bootstrap-override/mixins/_grid.scss
index 50338d0626..ea3f917b2a 100644
--- a/styles/scss/core/bootstrap-override/mixins/_grid.scss
+++ b/styles/scss/core/bootstrap-override/mixins/_grid.scss
@@ -1,3 +1,4 @@
+@use "sass:math";
/// Grid system
//
// Generate semantic grid columns with these mixins.
@@ -38,11 +39,11 @@
}
@mixin make-col($size, $columns: $grid-columns) {
- flex: 0 0 percentage(divide($size, $columns));
+ flex: 0 0 math.percentage(divide($size, $columns));
// Add a `max-width` to ensure content within each column does not blow out
// the width of the column. Applies to IE10+ and Firefox. Chrome and Safari
// do not appear to require this.
- max-width: percentage(divide($size, $columns));
+ max-width: math.percentage(divide($size, $columns));
}
@mixin make-col-auto() {
@@ -53,7 +54,7 @@
@mixin make-col-offset($size, $columns: $grid-columns) {
$num: divide($size, $columns);
- margin-left: if($num == 0, 0, percentage($num));
+ margin-left: if($num == 0, 0, math.percentage($num));
}
// Row columns
diff --git a/styles/scss/core/bootstrap-override/utilities/_spacing.scss b/styles/scss/core/bootstrap-override/utilities/_spacing.scss
index 2759c2b751..42e296a61e 100644
--- a/styles/scss/core/bootstrap-override/utilities/_spacing.scss
+++ b/styles/scss/core/bootstrap-override/utilities/_spacing.scss
@@ -1,5 +1,6 @@
+@use "sass:map";
// Bootstrap overrides for spacing utility classes
-@each $breakpoint in map-keys($grid-breakpoints) {
+@each $breakpoint in map.keys($grid-breakpoints) {
@include media-breakpoint-up($breakpoint) {
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
diff --git a/styles/scss/core/bootstrap-override/utilities/_text.scss b/styles/scss/core/bootstrap-override/utilities/_text.scss
index 4aea8ce71e..480935c924 100644
--- a/styles/scss/core/bootstrap-override/utilities/_text.scss
+++ b/styles/scss/core/bootstrap-override/utilities/_text.scss
@@ -1,3 +1,4 @@
+@use "sass:map";
// stylelint-disable declaration-no-important
//
@@ -15,7 +16,7 @@
// Responsive alignment
-@each $breakpoint in map-keys($grid-breakpoints) {
+@each $breakpoint in map.keys($grid-breakpoints) {
@include media-breakpoint-up($breakpoint) {
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
diff --git a/www/build-themes.js b/www/build-themes.js
index 7d37dbecbe..00422b4151 100644
--- a/www/build-themes.js
+++ b/www/build-themes.js
@@ -29,6 +29,8 @@ THEMES.forEach(theme => {
outputStyle: 'compressed',
importer,
quietDeps: true,
+ // For now we can't resolve these warnings as we need to upgrade our 'bootstrap' dependency to do so:
+ silenceDeprecations: ['abs-percent', 'color-functions', 'import', 'mixed-decls', 'global-builtin'],
});
postCSS([postCSSCustomMedia({ preserve: true })])
diff --git a/www/gatsby-config.js b/www/gatsby-config.mjs
similarity index 60%
rename from www/gatsby-config.js
rename to www/gatsby-config.mjs
index c0ae5209a2..d088ec63d7 100644
--- a/www/gatsby-config.js
+++ b/www/gatsby-config.mjs
@@ -1,8 +1,12 @@
-require('dotenv').config({
- path: `.env.${process.env.NODE_ENV}`,
-});
-const rehypeSlugPlugin = require('rehype-slug');
-const rehypeAutolinkHeadingsPlugin = require('rehype-autolink-headings');
+import { dirname } from 'path';
+import { fileURLToPath } from 'url';
+import dotenv from 'dotenv';
+dotenv.config({ path: `.env.${process.env.NODE_ENV}` });
+import rehypeSlugPlugin from 'rehype-slug';
+import rehypeAutolinkHeadingsPlugin from 'rehype-autolink-headings';
+import rehypeMdxCodeProps from 'rehype-mdx-code-props';
+
+const __dirname = dirname(fileURLToPath(import.meta.url));
const segmentPlugin = {
resolve: 'gatsby-plugin-segment-js',
@@ -31,10 +35,13 @@ const plugins = [
namedExport: false,
},
},
+ sassOptions: {
+ silenceDeprecations: ['abs-percent', 'color-functions', 'import', 'mixed-decls', 'global-builtin'],
+ },
},
},
'gatsby-plugin-react-helmet',
- 'gatsby-plugin-typescript',
+ 'gatsby-plugin-mdx-source-name',
{
resolve: 'gatsby-plugin-manifest',
options: {
@@ -53,6 +60,20 @@ const plugins = [
ignore: ['**/*.d.ts'],
},
},
+ {
+ resolve: 'gatsby-source-filesystem',
+ options: {
+ path: `${__dirname}/src/pages`,
+ name: 'pages',
+ },
+ },
+ {
+ resolve: 'gatsby-source-filesystem',
+ options: {
+ path: `${__dirname}/src/page-fragments`,
+ name: 'page-fragments',
+ },
+ },
{
resolve: 'gatsby-source-filesystem',
options: {
@@ -67,40 +88,35 @@ const plugins = [
resolve: 'gatsby-plugin-mdx',
options: {
extensions: ['.mdx', '.md'],
- defaultLayouts: {
- components: require.resolve(
- './src/templates/component-page-template.tsx',
- ),
- default: require.resolve(
- './src/templates/default-mdx-page-template.tsx',
- ),
- },
- rehypePlugins: [
- rehypeSlugPlugin,
- [
- rehypeAutolinkHeadingsPlugin,
- {
- behavior: 'append',
- content: {
- type: 'element',
- tagName: 'span',
- properties: {
- className: 'pgn-doc__anchor',
+ mdxOptions: {
+ rehypePlugins: [
+ rehypeSlugPlugin,
+ [rehypeMdxCodeProps, { tagName: 'code' }],
+ [
+ rehypeAutolinkHeadingsPlugin,
+ {
+ behavior: 'append',
+ content: {
+ type: 'element',
+ tagName: 'span',
+ properties: {
+ className: 'pgn-doc__anchor',
+ },
+ children: [
+ { type: 'text', value: '#' },
+ ],
},
- children: [
- { type: 'text', value: '#' },
- ],
},
- },
+ ],
],
- ],
+ },
},
},
{
resolve: 'gatsby-plugin-page-creator',
options: {
path: `${__dirname}/src/pages`,
- ignore: ['insights.tsx'],
+ ignore: ['insights.tsx', '**/*.(md|mdx)'],
},
},
];
@@ -113,7 +129,7 @@ if (process.env && process.env.FEATURE_ENABLE_AXE) {
plugins.push(axePlugin);
}
-module.exports = {
+export default {
siteMetadata: {
title: 'Paragon Design System',
description: 'Technical documentation for the Paragon Design System.',
@@ -122,4 +138,7 @@ module.exports = {
// Match the location of the site on github pages if no path prefix is specified
pathPrefix: process.env.PATH_PREFIX || '',
plugins,
+ flags: {
+ FAST_DEV: true,
+ },
};
diff --git a/www/package.json b/www/package.json
index b7aa860290..6bcc179fa2 100644
--- a/www/package.json
+++ b/www/package.json
@@ -3,37 +3,40 @@
"description": "Paragon Pattern Library Documentation",
"version": "1.0.0",
"dependencies": {
- "@docsearch/react": "^3.1.0",
+ "@docsearch/react": "^3.8",
"@edx/brand-edx.org": "^2.1.2",
- "@openedx/brand-openedx": "^1.2.2",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
- "@mdx-js/mdx": "^1.6.22",
- "@mdx-js/react": "^1.6.22",
+ "@mdx-js/mdx": "^2",
+ "@mdx-js/react": "^2",
+ "@openedx/brand-openedx": "^1.2.2",
"analytics-node": "^6.0.0",
"axios": "^0.28.0",
"classnames": "^2.3.1",
- "gatsby": "^4.23.1",
- "gatsby-plugin-manifest": "^4.17.0",
- "gatsby-plugin-mdx": "^3.17.0",
+ "gatsby": "^5.14",
+ "gatsby-plugin-manifest": "^5.14",
+ "gatsby-plugin-mdx": "^5.14",
+ "gatsby-plugin-mdx-source-name": "^1.0.1",
"gatsby-plugin-react-axe": "^0.5.0",
- "gatsby-plugin-react-helmet": "^5.17.0",
- "gatsby-plugin-sass": "^5.17.0",
+ "gatsby-plugin-react-helmet": "^6.14",
+ "gatsby-plugin-sass": "^6.14",
"gatsby-plugin-segment-js": "^3.7.1",
- "gatsby-source-filesystem": "^4.17.0",
- "gatsby-transformer-react-docgen": "^7.17.0",
+ "gatsby-source-filesystem": "^5.14",
+ "gatsby-transformer-react-docgen": "^8.14",
"localforage": "^1.10.0",
"lodash.debounce": "^4.0.8",
"prism-react-renderer": "^1.3.3",
"prop-types": "^15.8.1",
"query-string": "^8.1.0",
- "react": "^17.0.2",
+ "react": "^18",
"react-docgen": "^5.4.2",
- "react-dom": "^17.0.2",
+ "react-dom": "^18",
"react-focus-on": "^3.6.0",
"react-helmet": "^6.1.0",
- "react-intl": "^5.25.1",
+ "react-intl": "^6.4",
"react-live": "^2.4.1",
+ "react-markdown": "^9.0.1",
"rehype-autolink-headings": "^5.1.0",
+ "rehype-mdx-code-props": "^3.0.1",
"rehype-slug": "^4.0.1",
"sass": "^1.53.0",
"sass-loader": "12.6.0",
diff --git a/www/src/components/CodeBlock.tsx b/www/src/components/CodeBlock.tsx
index 02064d25f3..41e852ed36 100644
--- a/www/src/components/CodeBlock.tsx
+++ b/www/src/components/CodeBlock.tsx
@@ -8,7 +8,6 @@ import React, {
useMemo,
useRef,
} from 'react';
-import PropTypes from 'prop-types';
import { Link } from 'gatsby';
import axios from 'axios';
import classNames from 'classnames';
@@ -121,8 +120,8 @@ export interface ICodeBlock {
function CodeBlock({
children,
- className,
- live,
+ className = '',
+ live = false,
}: ICodeBlock) {
const intl = useIntl();
const language: any = className ? className.replace(/language-/, '') : 'jsx';
@@ -136,6 +135,11 @@ function CodeBlock({
setShowToast(true);
};
+ if (className === '' && typeof children === 'string' && !children.includes('\n')) {
+ // This is an `inline code` node. Don't use syntax highlighting.
+ return {children}
;
+ }
+
if (live) {
return (
@@ -205,15 +209,4 @@ function CodeBlock({
);
}
-CodeBlock.propTypes = {
- children: PropTypes.string.isRequired,
- className: PropTypes.string,
- live: PropTypes.bool,
-};
-
-CodeBlock.defaultProps = {
- live: false,
- className: '',
-};
-
export default CodeBlock;
diff --git a/www/src/components/ComponentsList.tsx b/www/src/components/ComponentsList.tsx
index 113394990d..d90ad04d14 100644
--- a/www/src/components/ComponentsList.tsx
+++ b/www/src/components/ComponentsList.tsx
@@ -11,8 +11,9 @@ const componentsQuery = graphql`
internal: { owner: { nin: "gatsby-transformer-react-docgen" } }
}
frontmatter: { type: {} }
+ fields: { source: { eq: "components" } }
}
- sort: { fields: frontmatter___title }
+ sort: { frontmatter: {title: ASC} }
) {
all: nodes {
...ComponentPage
diff --git a/www/src/components/LinkedHeading.tsx b/www/src/components/LinkedHeading.tsx
index fbb431e5ad..3cc049b058 100644
--- a/www/src/components/LinkedHeading.tsx
+++ b/www/src/components/LinkedHeading.tsx
@@ -1,5 +1,4 @@
import React from 'react';
-import PropTypes from 'prop-types';
export interface ILinkedHeading {
h: string,
@@ -13,7 +12,7 @@ function LinkedHeading({
h,
children,
id,
-}: ILinkedHeading) {
+}: ILinkedHeading & JSX.IntrinsicElements['h2']): JSX.Element {
const H = `h${h}` as HeadingTag;
return (
@@ -23,10 +22,4 @@ function LinkedHeading({
);
}
-LinkedHeading.propTypes = {
- h: PropTypes.string.isRequired,
- children: PropTypes.node.isRequired,
- id: PropTypes.string.isRequired,
-};
-
export default LinkedHeading;
diff --git a/www/src/components/Menu.tsx b/www/src/components/Menu.tsx
index 2e2efdb7fa..89a4121214 100644
--- a/www/src/components/Menu.tsx
+++ b/www/src/components/Menu.tsx
@@ -35,15 +35,15 @@ const menuQuery = graphql`
}
frontmatter: { type: {} }
}
- sort: { fields: frontmatter___title }
+ sort: { frontmatter: {title: ASC} }
) {
- categories: group(field: frontmatter___categories) {
+ categories: group(field: {frontmatter: {categories: SELECT}}) {
nodes {
...ComponentPage
}
fieldValue
}
- types: group(field: frontmatter___type) {
+ types: group(field: {frontmatter: {type: SELECT}}) {
nodes {
...ComponentPage
}
diff --git a/www/src/components/PropsTable.tsx b/www/src/components/PropsTable.tsx
index bc9a87d640..e1355be099 100644
--- a/www/src/components/PropsTable.tsx
+++ b/www/src/components/PropsTable.tsx
@@ -1,6 +1,6 @@
import React from 'react';
import PropTypes from 'prop-types';
-import { MDXRenderer } from 'gatsby-plugin-mdx';
+import Markdown from 'react-markdown';
import { Badge, Card, Hyperlink } from '~paragon-react';
import PropType from './PropType';
@@ -53,10 +53,8 @@ export interface IProp {
required?: boolean,
defaultValue: {},
description: {
- childMdx: {
- body: string,
- },
- },
+ text: string;
+ };
}
function Prop({
@@ -77,7 +75,7 @@ function Prop({
{description ? (
- {description.childMdx.body}
+ {description.text}
) : null}
@@ -93,9 +91,7 @@ Prop.propTypes = {
required: PropTypes.bool,
defaultValue: PropTypes.shape({}),
description: PropTypes.shape({
- childMdx: PropTypes.shape({
- body: PropTypes.string,
- }),
+ text: PropTypes.string,
}),
};
Prop.defaultProps = {
diff --git a/www/src/pages/foundations/css-utilities.mdx b/www/src/page-fragments/css-utilities-content.mdx
similarity index 87%
rename from www/src/pages/foundations/css-utilities.mdx
rename to www/src/page-fragments/css-utilities-content.mdx
index 0ed7ed0dcd..7dc17f0df1 100644
--- a/www/src/pages/foundations/css-utilities.mdx
+++ b/www/src/page-fragments/css-utilities-content.mdx
@@ -2,10 +2,9 @@
title: CSS Utilities
---
-import { graphql } from 'gatsby';
import { Table } from '~paragon-react';
-import getCssSelectors from '../../utils/getCssSelectors.ts';
-import CSSUtilitiesTable from '../../components/css-utilities-table';
+import getCssSelectors from '../utils/getCssSelectors.ts';
+import CSSUtilitiesTable from '../components/css-utilities-table';
# CSS Utilities
@@ -44,17 +43,3 @@ Hover on styles with CSS variables to view computed values.
{ selector: 'w-xl-auto', declarations: ['@media(min-width: 1200px) { width: auto !important; }']},
])}
/>
-
-export const pageQuery = graphql`
-{
- utilities: allCssUtilityClasses(
- filter: {isUtility: {eq: true}},
- sort: {fields: selector, order: ASC}
- ) {
- nodes {
- selector
- declarations
- }
- }
-}
-`;
diff --git a/www/src/pages/foundations/layout.mdx b/www/src/page-fragments/layout-content.mdx
similarity index 72%
rename from www/src/pages/foundations/layout.mdx
rename to www/src/page-fragments/layout-content.mdx
index 439b1aade5..fc486a5c7d 100644
--- a/www/src/pages/foundations/layout.mdx
+++ b/www/src/page-fragments/layout-content.mdx
@@ -2,11 +2,10 @@
title: Layout
---
-import { graphql } from 'gatsby';
import { Table } from '~paragon-react';
-import getCssSelectors from '../../utils/getCssSelectors.ts';
-import CSSUtilitiesTable from '../../components/css-utilities-table';
-import LayoutGenerator from '../../components/LayoutGenerator';
+import getCssSelectors from '../utils/getCssSelectors.ts';
+import CSSUtilitiesTable from '../components/css-utilities-table';
+import LayoutGenerator from '../components/LayoutGenerator';
# Layout
@@ -16,12 +15,8 @@ Paragon's layout is controlled by the Bootstrap grid system. Documentation can b
## Components
-
- These components are pass throughs from React-Bootstrap.
-
- See React-Bootstrap for documentation.
-
-
+These components are pass throughs from React-Bootstrap.
+See React-Bootstrap for documentation.
```jsx live
@@ -176,39 +171,3 @@ the style only at a certain breakpoint and above.
### Misc Layout
-
-
-export const pageQuery = graphql`
-{
- flexUtilities: allCssUtilityClasses(filter: {declarations: {regex: "/flex/"}, isUtility: {eq: true}}) {
- nodes {
- selector
- declarations
- }
- }
- displayUtilities: allCssUtilityClasses(filter: {declarations: {regex: "/display/"}, isUtility: {eq: true}}) {
- nodes {
- selector
- declarations
- }
- }
- positionUtilities: allCssUtilityClasses(filter: {selector: {regex: "/(^fixed-)|(position)/"}}) {
- nodes {
- selector
- declarations
- }
- }
- maxWidthUtilities: allCssUtilityClasses(filter: {selector: {regex: "/(^mw-)/"}}) {
- nodes {
- selector
- declarations
- }
- }
- miscUtilities: allCssUtilityClasses(filter: {declarations: {regex: "/(float)|(overflow)/"}, isUtility: {eq: true}}) {
- nodes {
- selector
- declarations
- }
- }
-}
-`;
diff --git a/www/src/pages/foundations/colors.tsx b/www/src/pages/foundations/colors.tsx
index 5084d56f67..74e1d42ed0 100644
--- a/www/src/pages/foundations/colors.tsx
+++ b/www/src/pages/foundations/colors.tsx
@@ -434,13 +434,13 @@ export const query = graphql`
{
allCssUtilityClasses(
filter: { declarations: { regex: "/color/" }, isUtility: { eq: true } }
- sort: { fields: selector, order: ASC }
+ sort: {selector: ASC}
) {
nodes {
selector
declarations
}
- distinct(field: selector)
+ distinct(field: {selector: SELECT})
}
}
`;
diff --git a/www/src/pages/foundations/css-utilities.tsx b/www/src/pages/foundations/css-utilities.tsx
new file mode 100644
index 0000000000..a3331891aa
--- /dev/null
+++ b/www/src/pages/foundations/css-utilities.tsx
@@ -0,0 +1,35 @@
+import React from 'react';
+import { graphql, type PageProps } from 'gatsby';
+import PageTemplate, { type StandardContext } from '../../templates/default-mdx-page-template';
+
+// Import the MDX file as a React component, which we'll then render with data to form this page
+import CSSUtilitiesMdx from '../../page-fragments/css-utilities-content.mdx';
+
+/** Data from the GraphQL query below */
+interface PageData {
+ utilities: Record;
+}
+
+export default function CSSUtilitiesPage({ data, pageContext }: PageProps) {
+ return (
+
+
+
+ );
+}
+
+// This page is split into two parts, because graphQL pageQueries like this can
+// only be used in .tsx files, not .mdx files.
+export const pageQuery = graphql`
+ {
+ utilities: allCssUtilityClasses(
+ filter: { isUtility: { eq: true } }
+ sort: { selector: ASC }
+ ) {
+ nodes {
+ selector
+ declarations
+ }
+ }
+ }
+`;
diff --git a/www/src/pages/foundations/layout.tsx b/www/src/pages/foundations/layout.tsx
new file mode 100644
index 0000000000..3dc2a5a909
--- /dev/null
+++ b/www/src/pages/foundations/layout.tsx
@@ -0,0 +1,56 @@
+import React from 'react';
+import { graphql, type PageProps } from 'gatsby';
+import PageTemplate, { type StandardContext } from '../../templates/default-mdx-page-template';
+
+// Import the MDX file as a React component, which we'll then render with data to form this page
+import LayoutMdx from '../../page-fragments/layout-content.mdx';
+
+/** Data from the GraphQL query below */
+interface PageData {
+ utilities: Record;
+}
+
+export default function LayoutPage({ data, pageContext }: PageProps) {
+ return (
+
+
+
+ );
+}
+
+// This page is split into two parts, because graphQL pageQueries like this can
+// only be used in .tsx files, not .mdx files.
+export const pageQuery = graphql`
+{
+ flexUtilities: allCssUtilityClasses(filter: {declarations: {regex: "/flex/"}, isUtility: {eq: true}}) {
+ nodes {
+ selector
+ declarations
+ }
+ }
+ displayUtilities: allCssUtilityClasses(filter: {declarations: {regex: "/display/"}, isUtility: {eq: true}}) {
+ nodes {
+ selector
+ declarations
+ }
+ }
+ positionUtilities: allCssUtilityClasses(filter: {selector: {regex: "/(^fixed-)|(position)/"}}) {
+ nodes {
+ selector
+ declarations
+ }
+ }
+ maxWidthUtilities: allCssUtilityClasses(filter: {selector: {regex: "/(^mw-)/"}}) {
+ nodes {
+ selector
+ declarations
+ }
+ }
+ miscUtilities: allCssUtilityClasses(filter: {declarations: {regex: "/(float)|(overflow)/"}, isUtility: {eq: true}}) {
+ nodes {
+ selector
+ declarations
+ }
+ }
+}
+`;
diff --git a/www/src/pages/foundations/responsive.tsx b/www/src/pages/foundations/responsive.tsx
index dd9d26b3fa..4131cf5724 100644
--- a/www/src/pages/foundations/responsive.tsx
+++ b/www/src/pages/foundations/responsive.tsx
@@ -91,13 +91,13 @@ function Responsive({ pageContext }) {
Example when the screen is narrower than md
breakpoint.
- {'@include media-breakpoint-down(map-get($grid-breakpoints, \'md\')) { // styles here }'}
+ {'@include media-breakpoint-down(map.get($grid-breakpoints, \'md\')) { // styles here }'}
Example when the screen is wider than lg
breakpoint.
- {'@include media-breakpoint-up(map-get($grid-breakpoints, \'lg\')) { // styles here }'}
+ {'@include media-breakpoint-up(map.get($grid-breakpoints, \'lg\')) { // styles here }'}
diff --git a/www/src/pages/status.tsx b/www/src/pages/status.tsx
index 3484c81e98..1dc700c4df 100644
--- a/www/src/pages/status.tsx
+++ b/www/src/pages/status.tsx
@@ -25,7 +25,7 @@ export default function StatusPage({ pageContext }) {
Components Status
, , etc.) will always have content (children) and IDs:
+ id: string;
+ children: React.ReactNode;
}
-export type ShortCodesTypes = {
- displayName: string,
+const customMdxComponents = {
+ h2: (props: JSX.IntrinsicElements['h2'] & HProps) => ,
+ h3: (props: JSX.IntrinsicElements['h3'] & HProps) => ,
+ h4: (props: JSX.IntrinsicElements['h4'] & HProps) => ,
+ h5: (props: JSX.IntrinsicElements['h5'] & HProps) => ,
+ h6: (props: JSX.IntrinsicElements['h6'] & HProps) => ,
+ pre: (props: JSX.IntrinsicElements['pre']) =>
,
+ code: CodeBlock,
+ Link,
};
export default function PageTemplate({
data: { mdx, components: componentNodes },
pageContext: { cssVariablesData, componentsUsageInsights, githubEditPath },
+ children,
}: IPageTemplate) {
const isMobile = useMediaQuery({ maxWidth: breakpoints.large.maxWidth });
const [showMinimizedTitle, setShowMinimizedTitle] = useState(false);
@@ -66,29 +78,6 @@ export default function PageTemplate({
return acc;
}, {});
- const shortcodes = React.useMemo(() => {
- function PropsTable({ displayName, ...props }: ShortCodesTypes) { // eslint-disable-line react/prop-types
- if (components[displayName]) {
- return ;
- }
- return null;
- }
- // Provide common components here
- return {
- h2: (props: HTMLElement) => ,
- h3: (props: HTMLElement) => ,
- h4: (props: HTMLElement) => ,
- h5: (props: HTMLElement) => ,
- h6: (props: HTMLElement) => ,
- pre: (props:
- JSX.IntrinsicAttributes & React.ClassAttributes &
- React.HTMLAttributes) => ,
- code: CodeBlock,
- Link,
- PropsTable,
- };
- }, [components]);
-
const cssVariablesTitle = 'Theme Variables';
const cssVariablesUrl = 'theme-variables';
@@ -158,8 +147,8 @@ export default function PageTemplate({
-
- {mdx.body}
+
+ {children}
{!!cssVariablesData?.length && (
@@ -203,39 +192,10 @@ export default function PageTemplate({
);
}
-PageTemplate.propTypes = {
- data: PropTypes.shape({
- mdx: PropTypes.shape({
- frontmatter: PropTypes.shape({
- title: PropTypes.string,
- status: PropTypes.string,
- }),
- body: PropTypes.any, // eslint-disable-line react/forbid-prop-types
- tableOfContents: PropTypes.shape({
- items: PropTypes.arrayOf(PropTypes.object), // eslint-disable-line react/forbid-prop-types
- }),
- }),
- components: PropTypes.shape({
- nodes: PropTypes.arrayOf(PropTypes.shape({})),
- }),
- }).isRequired,
- pageContext: PropTypes.shape({
- scssVariablesData: PropTypes.shape({
- openedx: PropTypes.string,
- edxorg: PropTypes.string,
- }),
- }),
-};
-
-PageTemplate.defaultProps = {
- pageContext: null,
-};
-
export const pageQuery = graphql`
query ComponentPageQuery($id: String, $components: [String]) {
mdx(id: { eq: $id }) {
id
- body
frontmatter {
title
status
@@ -271,9 +231,6 @@ export const pageQuery = graphql`
description {
id
text
- childMdx {
- body
- }
}
}
}
diff --git a/www/src/templates/default-mdx-page-template.tsx b/www/src/templates/default-mdx-page-template.tsx
index 29fa854ac2..8752ffa9df 100644
--- a/www/src/templates/default-mdx-page-template.tsx
+++ b/www/src/templates/default-mdx-page-template.tsx
@@ -9,28 +9,33 @@ import SEO from '../components/SEO';
import LinkedHeading from '../components/LinkedHeading';
import { SettingsContext } from '../context/SettingsContext';
+interface HProps {
+ // We know that our heading elements (
, , etc.) will always have content (children) and IDs:
+ id: string;
+ children: React.ReactNode;
+}
+
const shortcodes = {
- h1: (props: HTMLHeadingElement) => ,
- h2: (props: HTMLHeadingElement) => ,
- h3: (props: HTMLHeadingElement) => ,
- h4: (props: HTMLHeadingElement) => ,
- h5: (props: HTMLHeadingElement) => ,
- h6: (props: HTMLHeadingElement) => ,
- pre: (props:
- JSX.IntrinsicAttributes & React.ClassAttributes &
- React.HTMLAttributes) => ,
+ h1: (props: JSX.IntrinsicElements['h1'] & HProps) => ,
+ h2: (props: JSX.IntrinsicElements['h2'] & HProps) => ,
+ h3: (props: JSX.IntrinsicElements['h3'] & HProps) => ,
+ h4: (props: JSX.IntrinsicElements['h4'] & HProps) => ,
+ h5: (props: JSX.IntrinsicElements['h5'] & HProps) => ,
+ h6: (props: JSX.IntrinsicElements['h6'] & HProps) => ,
+ pre: (props: JSX.IntrinsicElements['pre']) => ,
code: CodeBlock,
Link,
};
+/** context data added to props by createsPages()/onCreatePage() */
+export interface StandardContext {
+ frontmatter: { title: string; };
+ githubEditPath: string;
+}
+
export interface IPageTemplateType {
- children: React.ReactNode,
- pageContext: {
- frontmatter: {
- title: string,
- },
- githubEditPath: string,
- },
+ children: React.ReactNode;
+ pageContext: StandardContext;
}
export default function PageTemplate({ children, pageContext }: IPageTemplateType) {
diff --git a/www/utils/createCssUtilityClassNodes.js b/www/utils/createCssUtilityClassNodes.js
index 57350f37e0..f3266514e5 100644
--- a/www/utils/createCssUtilityClassNodes.js
+++ b/www/utils/createCssUtilityClassNodes.js
@@ -21,6 +21,7 @@ function createCssUtilityClassNodes({
}
return { file: resolvedUrl };
},
+ silenceDeprecations: ['abs-percent', 'color-functions', 'import', 'mixed-decls', 'global-builtin'],
})
.css.toString();
diff --git a/www/utils/createPages.js b/www/utils/createPages.js
index 9145f3a6e0..f75c2a161a 100644
--- a/www/utils/createPages.js
+++ b/www/utils/createPages.js
@@ -3,6 +3,9 @@ const fs = require('fs');
const { INSIGHTS_PAGES } = require('../src/config');
const componentsUsage = require('../src/utils/componentsUsage');
+const componentPageTemplate = path.resolve(__dirname, '../src/templates/component-page-template.tsx');
+const defaultMdxPageTemplate = path.resolve(__dirname, '../src/templates/default-mdx-page-template.tsx');
+
async function createPages(graphql, actions, reporter) {
// Destructure the createPage function from the actions object
const { createPage, createRedirect } = actions;
@@ -23,12 +26,14 @@ async function createPages(graphql, actions, reporter) {
id
fields {
slug
+ source
}
frontmatter {
components
}
- slug
- fileAbsolutePath
+ internal {
+ contentFilePath
+ }
}
}
}
@@ -38,46 +43,62 @@ async function createPages(graphql, actions, reporter) {
reporter.panicOnBuild('🚨 ERROR: Loading createPages query');
}
// Create component detail pages.
- const components = result.data.allMdx.edges;
+ const pages = result.data.allMdx.edges;
// you'll call `createPage` for each result
- // eslint-disable-next-line no-restricted-syntax
- for (const { node } of components) {
- const componentDir = node.slug.split('/')[0];
- const cssVariablesData = [];
- const githubEditPath = `https://github.com/openedx/paragon/edit/master/src${node.fileAbsolutePath.split('src')[1]}`;
+ for (const { node } of pages) {
+ const githubEditPath = `https://github.com/openedx/paragon/edit/master/src${node.internal.contentFilePath.split('src')[1]}`;
- const pathToComponents = fs.readdirSync(`../src/${componentDir}`);
+ if (node.fields.source === 'components') {
+ // Check for a _variables.scss file for this component, e.g. src/Button/_variables.scss.
+ // If it exists, load the data:
+ const cssVariablesData = [];
+ const componentDir = path.dirname(node.internal.contentFilePath);
+ const pathToComponents = fs.readdirSync(componentDir);
+ pathToComponents.forEach(componentFile => {
+ if (componentFile.endsWith('.scss')) {
+ const fileData = fs.readFileSync(`${componentDir}/${componentFile}`, 'utf-8');
+ const customCSSVariables = fileData.match(/var\((\w|-|_)*\)/g);
- pathToComponents.forEach(componentFile => {
- if (componentFile.endsWith('.scss')) {
- const fileData = fs.readFileSync(`../src/${componentDir}/${componentFile}`, 'utf-8');
- const customCSSVariables = fileData.match(/var\((\w|-|_)*\)/g);
+ customCSSVariables?.forEach(variable => {
+ if (!cssVariablesData.includes(variable)) {
+ cssVariablesData.push(variable);
+ }
+ });
+ }
+ });
- customCSSVariables?.forEach(variable => {
- if (!cssVariablesData.includes(variable)) {
- cssVariablesData.push(variable);
- }
- });
- }
- });
+ createPage({
+ // This is the slug you created before
+ // (or `node.frontmatter.slug`)
+ path: node.fields.slug,
+ // This layout will wrap our MDX content
+ component: `${componentPageTemplate}?__contentFilePath=${node.internal.contentFilePath}`,
+ // You can use the values in this context in
+ // our page layout component
+ context: {
+ id: node.id,
+ components: node.frontmatter.components || [],
+ cssVariablesData,
+ componentsUsageInsights: Object.keys(componentsUsage),
+ githubEditPath,
+ },
+ });
+ }
- createPage({
- // This is the slug you created before
- // (or `node.frontmatter.slug`)
- path: node.fields.slug,
- // This component will wrap our MDX content
- component: path.resolve('./src/templates/component-page-template.tsx'),
- // You can use the values in this context in
- // our page layout component
- context: {
- id: node.id,
- components: node.frontmatter.components || [],
- cssVariablesData,
- componentsUsageInsights: Object.keys(componentsUsage),
- githubEditPath,
- },
- });
+ if (node.fields.source === 'pages') {
+ createPage({
+ path: node.fields.slug,
+ component: `${defaultMdxPageTemplate}?__contentFilePath=${node.internal.contentFilePath}`,
+ context: {
+ id: node.id,
+ githubEditPath,
+ frontmatter: {
+ title: node.frontmatter.title,
+ },
+ },
+ });
+ }
}
INSIGHTS_PAGES.forEach(({ path: pagePath, tab }) => {
diff --git a/www/utils/onCreateNode.js b/www/utils/onCreateNode.js
index 5950d05518..a298b275ee 100644
--- a/www/utils/onCreateNode.js
+++ b/www/utils/onCreateNode.js
@@ -10,7 +10,15 @@ function onCreateNode(node, actions, getNode) {
.split('README')[0]
.toLowerCase();
- const isChangelogNode = node.fileAbsolutePath && node.fileAbsolutePath.endsWith('CHANGELOG.md');
+ // Is this node (page) a page about a Paragon component, from src/**/.md(x),
+ // or (when false) is it one of the .mdx/.tsx files in www/src/ ?
+ const isChangelog = node.internal.contentFilePath.endsWith('CHANGELOG.md');
+ const isComponentPageNode = !node.internal.contentFilePath.includes('www/src/');
+ const slug = (/* eslint-disable */
+ isChangelog ? '/changelog/' :
+ isComponentPageNode ? `/components${value}` :
+ value
+ );/* eslint-enable */
createNodeField({
// Name of the field you are adding
@@ -20,7 +28,7 @@ function onCreateNode(node, actions, getNode) {
// Generated value based on filepath with 'components' prefix. you
// don't need a separating '/' before the value because
// createFilePath returns a path with the leading '/'.
- value: isChangelogNode ? 'changelog' : `/components${value}`,
+ value: slug,
});
}
}