├── .eslintrc.js
├── .gitignore
├── .npmignore
├── .prettierrc
├── LICENSE
├── README.md
├── build.js
├── package.json
├── src
└── index.jsx
├── tsconfig.json
└── yarn.lock
/.eslintrc.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | extends: [
3 | "standard",
4 | "plugin:react/recommended",
5 | "plugin:prettier/recommended",
6 | ],
7 | plugins: ["standard", "react", "react-hooks", "prettier"],
8 | rules: {
9 | "react/prop-types": "warn",
10 | "react-hooks/rules-of-hooks": "error",
11 | "react-hooks/exhaustive-deps": "warn",
12 | "no-unused-vars": "warn",
13 | },
14 | settings: {
15 | react: {
16 | version: "detect",
17 | },
18 | },
19 | }
20 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # System files
2 | .DS_Store
3 |
4 | # Project dependencies
5 | node_modules
6 |
7 | # Logs
8 | yarn-error.log
9 |
10 | # Build output
11 | dist/
12 |
--------------------------------------------------------------------------------
/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | yarn-error.log
3 | .eslintrc.js
4 | .prettierrc
5 | build.js
6 | src/
7 | tsconfig.json
8 |
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "proseWrap": "always",
3 | "semi": false
4 | }
5 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2022 Corey Ward
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # React Portable Text
2 |
3 | [](https://www.npmjs.com/package/react-portable-text)
4 | [](https://github.com/coreyward/react-portable-text/issues)
5 |
6 | An easy way to render Portable Text block content in React applications.
7 |
8 | Want to display images from Sanity in your Portable Text content? Check out
9 | [sanity-image](https://github.com/coreyward/sanity-image). No extra fields
10 | required in your GROQ query.
11 |
12 | ## Quick Example
13 |
14 | ```sh
15 | yarn add react-portable-text
16 | ```
17 |
18 | ```jsx
19 | import PortableText from "react-portable-text"
20 |
21 | const YourComponent = ({ portableTextContent }) => (
22 |
23 |
,
30 | li: ({ children }) => {children},
31 | someCustomType: YourComponent,
32 | }}
33 | />
34 |
35 | )
36 | ```
37 |
38 | ## Why not just use @sanity/block-content-to-react directly?
39 |
40 | I found it difficult to create abstractions on top of
41 | [@sanity/block-content-to-react](https://github.com/sanity-io/block-content-to-react).
42 | Remembering whether a serializer needed to be codified as a `type`, a `mark`, or
43 | as something under `block` was challenging, and the special treatment for lists
44 | and list items was confusing. Further, the props being wrapped in an object
45 | under the `node` property, or extraneous props for `mark` types meant I was
46 | creating intermediate component types just to avoid passing invalid props to the
47 | React elements (otherwise they render in the DOM).
48 |
49 | React Portable Text uses `@sanity/block-content-to-react` under the hood, but
50 | maps each of these types to the correct place in the serializers for you and
51 | normalizing props to match the fields supplied by users in your Sanity Studio,
52 | simplifying the cognitive load required to author new ones.
53 |
54 | ## Serializer Documentation
55 |
56 | React Portable Text maps the following types explicitly, and treats all other
57 | properties of the `serializers` object as custom types. Custom types are used
58 | for both `type` and `block` blocks (i.e. custom marks as well as custom
59 | block-level insertion types).
60 |
61 | | Serializer | Notes |
62 | | ----------------- | ---------------------------------------------------------------------------------------- |
63 | | **Marks** |
64 | | `link` | All `link` marks used for anchor links |
65 | | `strong` | Bold/strong text |
66 | | `em` | Emphasized/italic text |
67 | | `underline` | Underlined text |
68 | | `del` | Text with strikethrough styles |
69 | | `code` | Inline text with `code styling` |
70 | | **Lists** |
71 | | `ul` | Unordered lists |
72 | | `ol` | Ordered lists |
73 | | `li` | List items for any type of list |
74 | | **Blocks** |
75 | | `h1` | Heading level 1 |
76 | | `h2` | Heading level 2 |
77 | | `h3` | Heading level 3 |
78 | | `h4` | Heading level 4 |
79 | | `h5` | Heading level 5 |
80 | | `h6` | Heading level 6 |
81 | | `normal` | Paragraph styles |
82 | | `blockquote` | Blockquote styles |
83 | | **Special Types** | |
84 | | `container` | Override the component wrapping the blocks |
85 | | `block` | Override the default block serializer (not recommended) |
86 | | `span` | Override the default span serializer (not recommended) |
87 | | `hardBreak` | Serializer for newlines; defaults to `br`; pass `false` to preserve newlines |
88 | | `unknownType` | Fallback for blocks of unknown type, if `ignoreUnknownTypes` is set to `false` (default) |
89 | | `unknownMark` | Fallback for marks of unknown type; defaults to a plain `span` |
90 |
91 | ### Additional Props
92 |
93 | Additional props are passed through to `@sanity/block-content-to-react`, so if
94 | you want to configure `imageOptions` or set the `projectId` and `dataset`
95 | options you can just pass them directly to React Portable Text:
96 |
97 | ```jsx
98 |
103 | ```
104 |
105 | ## Rendering Plain Text
106 |
107 | As a bonus, `react-portable-text` offers a function that will render your
108 | portable text content to a plaintext string. This is often useful for previews
109 | and such in the Studio and for ancillary uses of content in contexts where
110 | formatting is not supported (e.g. calendar invite descriptions, meta tags,
111 | etc.).
112 |
113 | ```jsx
114 | import { blockContentToPlainText } from "react-portable-text"
115 |
116 | const MetaDescription = ({ content }) => (
117 |
118 | )
119 | ```
120 |
121 | ## Contributing
122 |
123 | Did I miss something? Is something not compatible with your setup?
124 | [Open an issue](https://github.com/coreyward/react-portable-text/issues/new)
125 | with details, and if possible, a CodeSandbox reproduction. Pull requests are
126 | also welcomed!
127 |
128 | ## License
129 |
130 | Copyright ©2022 Corey Ward. Available under the
131 | [MIT License](https://github.com/coreyward/react-portable-text/blob/master/LICENSE).
132 |
--------------------------------------------------------------------------------
/build.js:
--------------------------------------------------------------------------------
1 | const esbuild = require("esbuild")
2 |
3 | esbuild
4 | .build({
5 | entryPoints: ["./src/index.jsx"],
6 | external: ["react", "prop-types", "@sanity/block-content-to-react"],
7 | bundle: true,
8 | minify: true,
9 | outdir: "dist",
10 | target: "es2017",
11 | format: "cjs",
12 | })
13 | .catch((e) => {
14 | console.error(e)
15 | process.exit(1)
16 | })
17 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "react-portable-text",
3 | "version": "0.6.0",
4 | "description": "An easy way to render Portable Text block content in React applications.",
5 | "author": "Corey Ward ",
6 | "repository": "https://github.com/coreyward/react-portable-text",
7 | "license": "MPL-2.0",
8 | "main": "dist/index.js",
9 | "types": "dist/index.d.ts",
10 | "files": [
11 | "dist/index.js",
12 | "dist/index.d.ts"
13 | ],
14 | "dependencies": {
15 | "@sanity/block-content-to-react": "^3.0.0"
16 | },
17 | "peerDependencies": {
18 | "react": ">16.8.0 || ^17.0.0"
19 | },
20 | "devDependencies": {
21 | "@sanity/block-content-to-react": "^3.0.0",
22 | "esbuild": "^0.8.57",
23 | "eslint": "^7.20.0",
24 | "eslint-config-prettier": "^7.2.0",
25 | "eslint-config-standard": "^16.0.2",
26 | "eslint-plugin-import": "^2.22.1",
27 | "eslint-plugin-node": "^11.1.0",
28 | "eslint-plugin-prettier": "^3.3.1",
29 | "eslint-plugin-promise": "^4.3.1",
30 | "eslint-plugin-react": "^7.22.0",
31 | "eslint-plugin-react-hooks": "^4.2.0",
32 | "prettier": "^2.2.1",
33 | "prop-types": "^15.8.1",
34 | "react": "^17.0.1",
35 | "typescript": "^4.5.5"
36 | },
37 | "scripts": {
38 | "prebuild": "tsc",
39 | "build": "node ./build.js"
40 | }
41 | }
42 |
--------------------------------------------------------------------------------
/src/index.jsx:
--------------------------------------------------------------------------------
1 | import React from "react"
2 | import PropTypes from "prop-types"
3 | import SanityBlockContent from "@sanity/block-content-to-react"
4 |
5 | const defaultSerializers = SanityBlockContent.defaultSerializers
6 |
7 | /**
8 | * Renders an array of Portable Text blocks as React components.
9 | *
10 | * @param {object} props
11 | * @param {object[]} props.content Array of portable text blocks
12 | * @param {string} [props.dataset] Dataset for your sanity project
13 | * @param {string} [props.projectId] Project ID of your sanity project
14 | * @param {string} [props.className] Optional className
15 | * @param {object} [props.serializers] Optional serialization overrides
16 | * @param {boolean} [props.ignoreUnknownTypes] Optional flag specifying whether to ignore unknown types
17 | * @returns
18 | */
19 | const PortableText = ({
20 | content,
21 | className,
22 | serializers = {},
23 | dataset,
24 | projectId,
25 | ...additionalOptions
26 | }) => {
27 | if (!content) throw new Error("No `content` provided to PortableText.")
28 |
29 | return (
30 |
39 | )
40 | }
41 |
42 | export default PortableText
43 |
44 | PortableText.propTypes = {
45 | content: PropTypes.array.isRequired,
46 | className: PropTypes.string,
47 | projectId: PropTypes.string,
48 | dataset: PropTypes.string,
49 | ignoreUnknownTypes: PropTypes.bool,
50 | serializers: PropTypes.shape({
51 | // Marks
52 | link: PropTypes.elementType,
53 | strong: PropTypes.elementType,
54 | em: PropTypes.elementType,
55 | underline: PropTypes.elementType,
56 | del: PropTypes.elementType,
57 | code: PropTypes.elementType,
58 |
59 | // Lists
60 | ul: PropTypes.elementType,
61 | ol: PropTypes.elementType,
62 | li: PropTypes.elementType,
63 |
64 | // Blocks
65 | h1: PropTypes.elementType,
66 | h2: PropTypes.elementType,
67 | h3: PropTypes.elementType,
68 | h4: PropTypes.elementType,
69 | h5: PropTypes.elementType,
70 | h6: PropTypes.elementType,
71 | blockquote: PropTypes.elementType,
72 |
73 | // Overrides of default handlers
74 | container: PropTypes.elementType,
75 | block: PropTypes.elementType,
76 | span: PropTypes.elementType,
77 | hardBreak: PropTypes.elementType,
78 | unknownType: PropTypes.elementType,
79 | unknownMark: PropTypes.elementType,
80 | }),
81 | }
82 |
83 | const buildSerializer = (serializers) => {
84 | const {
85 | // Marks
86 | link,
87 | strong,
88 | em,
89 | underline,
90 | del,
91 | code,
92 |
93 | // Lists
94 | ul,
95 | ol,
96 | li,
97 |
98 | // Blocks
99 | h1,
100 | h2,
101 | h3,
102 | h4,
103 | h5,
104 | h6,
105 | blockquote,
106 |
107 | // Top-level serializers to pass through as-is
108 | container = "div",
109 | block = defaultSerializers.BlockSerializer,
110 | span = defaultSerializers.SpanSerializer,
111 | hardBreak = defaultSerializers.HardBreakSerializer,
112 | unknownType = defaultSerializers.DefaultUnknownTypeSerializer,
113 | unknownMark = "span",
114 |
115 | ...customSerializers
116 | } = serializers
117 |
118 | const blockSerializers = {
119 | h1,
120 | h2,
121 | h3,
122 | h4,
123 | h5,
124 | h6,
125 | blockquote,
126 | }
127 |
128 | return {
129 | container,
130 | block,
131 | span,
132 | hardBreak,
133 | unknownType,
134 | unknownMark,
135 | marks: scrubMarkProps({
136 | link,
137 | strong,
138 | em,
139 | underline,
140 | code,
141 | "strike-through": del,
142 | ...customSerializers,
143 | }),
144 | list: (props) => {
145 | const { type, children } = props
146 | const overrideType = type === "bullet" ? ul : ol
147 | return overrideType
148 | ? overrideType({ children })
149 | : SanityBlockContent.defaultSerializers.list(props)
150 | },
151 | listItem: (props) => {
152 | const { children } = props
153 | return li
154 | ? li({ children })
155 | : SanityBlockContent.defaultSerializers.listItem(props)
156 | },
157 | types: {
158 | block: (props) => {
159 | const {
160 | node: { style },
161 | children,
162 | } = props
163 | return blockSerializers[style]
164 | ? blockSerializers[style]({ children })
165 | : customSerializers[style]
166 | ? customSerializers[style]({ children })
167 | : SanityBlockContent.defaultSerializers.types.block(props)
168 | },
169 |
170 | // Expand all custom serializers as `serializers.types` to handle
171 | // inserted types (i.e. not “styles” or “marks”), and parry `node`
172 | // so the recevied props match what would be retrieved normally:
173 | ...Object.entries(customSerializers).reduce(
174 | (output, [name, serializer]) => {
175 | const wrapper = ({ node }) => React.createElement(serializer, node)
176 | wrapper.displayName = `${upperFirst(name)}Wrapper`
177 | output[name] = wrapper
178 |
179 | return output
180 | },
181 | {}
182 | ),
183 | },
184 | }
185 | }
186 |
187 | // Remove extraneous block node data before passing as props to serializer
188 | const scrubMarkProps = (serializers) =>
189 | Object.entries(serializers).reduce((output, [name, serializer]) => {
190 | if (serializer) {
191 | const wrapper = ({ _type, _key, mark, markKey, children, ...props }) => {
192 | // Sometimes the `mark` prop is a string that we want to ignore,
193 | // but other times it is an object with _key, _type, and other
194 | // props that we want to pass through. In that case, we iterate
195 | // through the `mark` object properties and add them to the
196 | // `props` that we pass to the serializer.
197 | if (typeof mark === "object") {
198 | const { _type, _key, ...markProps } = mark
199 | Object.entries(markProps).forEach(([name, value]) => {
200 | props[name] = value
201 | })
202 | }
203 |
204 | return React.createElement(serializer, props, children)
205 | }
206 |
207 | wrapper.displayName = `${upperFirst(name)}Wrapper`
208 | output[name] = wrapper
209 | }
210 |
211 | return output
212 | }, {})
213 |
214 | /**
215 | * Converts portable text block content to a plain text string without formatting.
216 | *
217 | * @param {[Object]} [blocks=[]] Portable text blocks
218 | */
219 | export const blockContentToPlainText = (blocks = []) =>
220 | blocks
221 | .map((block) =>
222 | block._type === "block" && block.children
223 | ? block.children.map((span) => span.text).join("")
224 | : ""
225 | )
226 | .join("\n\n")
227 |
228 | const upperFirst = (str) => str.slice(0, 1).toUpperCase() + str.slice(1)
229 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "files": ["./src/index.jsx"],
3 | "exclude": [],
4 | "compilerOptions": {
5 | "allowJs": true,
6 | "declaration": true,
7 | "emitDeclarationOnly": true,
8 | "outDir": "./dist",
9 | "esModuleInterop": true
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@babel/code-frame@7.12.11":
6 | version "7.12.11"
7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f"
8 | integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==
9 | dependencies:
10 | "@babel/highlight" "^7.10.4"
11 |
12 | "@babel/helper-validator-identifier@^7.16.7":
13 | version "7.16.7"
14 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad"
15 | integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==
16 |
17 | "@babel/highlight@^7.10.4":
18 | version "7.16.10"
19 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.16.10.tgz#744f2eb81579d6eea753c227b0f570ad785aba88"
20 | integrity sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==
21 | dependencies:
22 | "@babel/helper-validator-identifier" "^7.16.7"
23 | chalk "^2.0.0"
24 | js-tokens "^4.0.0"
25 |
26 | "@eslint/eslintrc@^0.4.3":
27 | version "0.4.3"
28 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.3.tgz#9e42981ef035beb3dd49add17acb96e8ff6f394c"
29 | integrity sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==
30 | dependencies:
31 | ajv "^6.12.4"
32 | debug "^4.1.1"
33 | espree "^7.3.0"
34 | globals "^13.9.0"
35 | ignore "^4.0.6"
36 | import-fresh "^3.2.1"
37 | js-yaml "^3.13.1"
38 | minimatch "^3.0.4"
39 | strip-json-comments "^3.1.1"
40 |
41 | "@humanwhocodes/config-array@^0.5.0":
42 | version "0.5.0"
43 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.5.0.tgz#1407967d4c6eecd7388f83acf1eaf4d0c6e58ef9"
44 | integrity sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==
45 | dependencies:
46 | "@humanwhocodes/object-schema" "^1.2.0"
47 | debug "^4.1.1"
48 | minimatch "^3.0.4"
49 |
50 | "@humanwhocodes/object-schema@^1.2.0":
51 | version "1.2.1"
52 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45"
53 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==
54 |
55 | "@sanity/block-content-to-hyperscript@^3.0.0":
56 | version "3.0.0"
57 | resolved "https://registry.yarnpkg.com/@sanity/block-content-to-hyperscript/-/block-content-to-hyperscript-3.0.0.tgz#a8437b608daac9b7cc4124c490d345fa84d4a267"
58 | integrity sha512-uoXWLdFY5LqO8A9sFJqnZWWDCBC+0r3Egeh0bwKQ2EK2Vil5L40iJGNXMZhDB8BnvH+6B4155SU8Q3vY59T6pA==
59 | dependencies:
60 | "@sanity/generate-help-url" "^0.140.0"
61 | "@sanity/image-url" "^0.140.15"
62 | hyperscript "^2.0.2"
63 | object-assign "^4.1.1"
64 |
65 | "@sanity/block-content-to-react@^3.0.0":
66 | version "3.0.0"
67 | resolved "https://registry.yarnpkg.com/@sanity/block-content-to-react/-/block-content-to-react-3.0.0.tgz#1deac74763540fdf61b14ad52fb1a01b35d60453"
68 | integrity sha512-oHPLlIsulsnL3ITs93RIvUPBI6nAeoSFOUf16vX4T7z4wWywxP39N1DF9mAx2tV6Kjr1fJAx5GF7zfiMXYLaqA==
69 | dependencies:
70 | "@sanity/block-content-to-hyperscript" "^3.0.0"
71 | prop-types "^15.6.2"
72 |
73 | "@sanity/generate-help-url@^0.140.0":
74 | version "0.140.0"
75 | resolved "https://registry.yarnpkg.com/@sanity/generate-help-url/-/generate-help-url-0.140.0.tgz#f60ab75be5fdc346b9f0d1c2a0858aa3c2870109"
76 | integrity sha512-H/G/WA9S22TXcXST52CIiTsHx3S2hH0gvK7LnI5w76vfKS0obnDPh8jrPg4xeNRYGPuV9MHYRlyERGpRGoo4Qw==
77 |
78 | "@sanity/image-url@^0.140.15":
79 | version "0.140.22"
80 | resolved "https://registry.yarnpkg.com/@sanity/image-url/-/image-url-0.140.22.tgz#7a65f56bb751f7b1c5dfacfadd34ee10fc4f0fde"
81 | integrity sha512-CAmQZnj+KM7FSEYiWlIGDit072syicYuAw0w7R2ctMzHiZ4p9mE/g6dBnYqrqFUrw2J+GpJgPt+RVspKP8vdqA==
82 |
83 | "@types/json5@^0.0.29":
84 | version "0.0.29"
85 | resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
86 | integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4=
87 |
88 | acorn-jsx@^5.3.1:
89 | version "5.3.2"
90 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
91 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
92 |
93 | acorn@^7.4.0:
94 | version "7.4.1"
95 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
96 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
97 |
98 | ajv@^6.10.0, ajv@^6.12.4:
99 | version "6.12.6"
100 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
101 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
102 | dependencies:
103 | fast-deep-equal "^3.1.1"
104 | fast-json-stable-stringify "^2.0.0"
105 | json-schema-traverse "^0.4.1"
106 | uri-js "^4.2.2"
107 |
108 | ajv@^8.0.1:
109 | version "8.9.0"
110 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.9.0.tgz#738019146638824dea25edcf299dcba1b0e7eb18"
111 | integrity sha512-qOKJyNj/h+OWx7s5DePL6Zu1KeM9jPZhwBqs+7DzP6bGOvqzVCSf0xueYmVuaC/oQ/VtS2zLMLHdQFbkka+XDQ==
112 | dependencies:
113 | fast-deep-equal "^3.1.1"
114 | json-schema-traverse "^1.0.0"
115 | require-from-string "^2.0.2"
116 | uri-js "^4.2.2"
117 |
118 | ansi-colors@^4.1.1:
119 | version "4.1.1"
120 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348"
121 | integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==
122 |
123 | ansi-regex@^5.0.1:
124 | version "5.0.1"
125 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
126 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
127 |
128 | ansi-styles@^3.2.1:
129 | version "3.2.1"
130 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
131 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
132 | dependencies:
133 | color-convert "^1.9.0"
134 |
135 | ansi-styles@^4.0.0, ansi-styles@^4.1.0:
136 | version "4.3.0"
137 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
138 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
139 | dependencies:
140 | color-convert "^2.0.1"
141 |
142 | argparse@^1.0.7:
143 | version "1.0.10"
144 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
145 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
146 | dependencies:
147 | sprintf-js "~1.0.2"
148 |
149 | array-includes@^3.1.3, array-includes@^3.1.4:
150 | version "3.1.4"
151 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.4.tgz#f5b493162c760f3539631f005ba2bb46acb45ba9"
152 | integrity sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==
153 | dependencies:
154 | call-bind "^1.0.2"
155 | define-properties "^1.1.3"
156 | es-abstract "^1.19.1"
157 | get-intrinsic "^1.1.1"
158 | is-string "^1.0.7"
159 |
160 | array.prototype.flat@^1.2.5:
161 | version "1.2.5"
162 | resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.5.tgz#07e0975d84bbc7c48cd1879d609e682598d33e13"
163 | integrity sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==
164 | dependencies:
165 | call-bind "^1.0.2"
166 | define-properties "^1.1.3"
167 | es-abstract "^1.19.0"
168 |
169 | array.prototype.flatmap@^1.2.5:
170 | version "1.2.5"
171 | resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.5.tgz#908dc82d8a406930fdf38598d51e7411d18d4446"
172 | integrity sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==
173 | dependencies:
174 | call-bind "^1.0.0"
175 | define-properties "^1.1.3"
176 | es-abstract "^1.19.0"
177 |
178 | astral-regex@^2.0.0:
179 | version "2.0.0"
180 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31"
181 | integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==
182 |
183 | balanced-match@^1.0.0:
184 | version "1.0.2"
185 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
186 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
187 |
188 | brace-expansion@^1.1.7:
189 | version "1.1.11"
190 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
191 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
192 | dependencies:
193 | balanced-match "^1.0.0"
194 | concat-map "0.0.1"
195 |
196 | browser-split@0.0.0:
197 | version "0.0.0"
198 | resolved "https://registry.yarnpkg.com/browser-split/-/browser-split-0.0.0.tgz#41419caef769755929dd518967d3eec0a6262771"
199 | integrity sha1-QUGcrvdpdVkp3VGJZ9PuwKYmJ3E=
200 |
201 | call-bind@^1.0.0, call-bind@^1.0.2:
202 | version "1.0.2"
203 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
204 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
205 | dependencies:
206 | function-bind "^1.1.1"
207 | get-intrinsic "^1.0.2"
208 |
209 | callsites@^3.0.0:
210 | version "3.1.0"
211 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
212 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
213 |
214 | chalk@^2.0.0:
215 | version "2.4.2"
216 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
217 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
218 | dependencies:
219 | ansi-styles "^3.2.1"
220 | escape-string-regexp "^1.0.5"
221 | supports-color "^5.3.0"
222 |
223 | chalk@^4.0.0:
224 | version "4.1.2"
225 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
226 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
227 | dependencies:
228 | ansi-styles "^4.1.0"
229 | supports-color "^7.1.0"
230 |
231 | class-list@~0.1.0, class-list@~0.1.1:
232 | version "0.1.1"
233 | resolved "https://registry.yarnpkg.com/class-list/-/class-list-0.1.1.tgz#9b9745192c4179b5da0a0d7633658e3c70d796cb"
234 | integrity sha1-m5dFGSxBebXaCg12M2WOPHDXlss=
235 | dependencies:
236 | indexof "0.0.1"
237 |
238 | color-convert@^1.9.0:
239 | version "1.9.3"
240 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
241 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
242 | dependencies:
243 | color-name "1.1.3"
244 |
245 | color-convert@^2.0.1:
246 | version "2.0.1"
247 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
248 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
249 | dependencies:
250 | color-name "~1.1.4"
251 |
252 | color-name@1.1.3:
253 | version "1.1.3"
254 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
255 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
256 |
257 | color-name@~1.1.4:
258 | version "1.1.4"
259 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
260 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
261 |
262 | concat-map@0.0.1:
263 | version "0.0.1"
264 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
265 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
266 |
267 | cross-spawn@^7.0.2:
268 | version "7.0.6"
269 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f"
270 | integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==
271 | dependencies:
272 | path-key "^3.1.0"
273 | shebang-command "^2.0.0"
274 | which "^2.0.1"
275 |
276 | debug@^2.6.9:
277 | version "2.6.9"
278 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
279 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
280 | dependencies:
281 | ms "2.0.0"
282 |
283 | debug@^3.2.7:
284 | version "3.2.7"
285 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a"
286 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==
287 | dependencies:
288 | ms "^2.1.1"
289 |
290 | debug@^4.0.1, debug@^4.1.1:
291 | version "4.3.3"
292 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664"
293 | integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==
294 | dependencies:
295 | ms "2.1.2"
296 |
297 | deep-is@^0.1.3:
298 | version "0.1.4"
299 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831"
300 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
301 |
302 | define-properties@^1.1.3:
303 | version "1.1.3"
304 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
305 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
306 | dependencies:
307 | object-keys "^1.0.12"
308 |
309 | doctrine@^2.1.0:
310 | version "2.1.0"
311 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
312 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==
313 | dependencies:
314 | esutils "^2.0.2"
315 |
316 | doctrine@^3.0.0:
317 | version "3.0.0"
318 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961"
319 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
320 | dependencies:
321 | esutils "^2.0.2"
322 |
323 | emoji-regex@^8.0.0:
324 | version "8.0.0"
325 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
326 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
327 |
328 | enquirer@^2.3.5:
329 | version "2.3.6"
330 | resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d"
331 | integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==
332 | dependencies:
333 | ansi-colors "^4.1.1"
334 |
335 | es-abstract@^1.19.0, es-abstract@^1.19.1:
336 | version "1.19.1"
337 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.19.1.tgz#d4885796876916959de78edaa0df456627115ec3"
338 | integrity sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==
339 | dependencies:
340 | call-bind "^1.0.2"
341 | es-to-primitive "^1.2.1"
342 | function-bind "^1.1.1"
343 | get-intrinsic "^1.1.1"
344 | get-symbol-description "^1.0.0"
345 | has "^1.0.3"
346 | has-symbols "^1.0.2"
347 | internal-slot "^1.0.3"
348 | is-callable "^1.2.4"
349 | is-negative-zero "^2.0.1"
350 | is-regex "^1.1.4"
351 | is-shared-array-buffer "^1.0.1"
352 | is-string "^1.0.7"
353 | is-weakref "^1.0.1"
354 | object-inspect "^1.11.0"
355 | object-keys "^1.1.1"
356 | object.assign "^4.1.2"
357 | string.prototype.trimend "^1.0.4"
358 | string.prototype.trimstart "^1.0.4"
359 | unbox-primitive "^1.0.1"
360 |
361 | es-to-primitive@^1.2.1:
362 | version "1.2.1"
363 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
364 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
365 | dependencies:
366 | is-callable "^1.1.4"
367 | is-date-object "^1.0.1"
368 | is-symbol "^1.0.2"
369 |
370 | esbuild@^0.8.57:
371 | version "0.8.57"
372 | resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.8.57.tgz#a42d02bc2b57c70bcd0ef897fe244766bb6dd926"
373 | integrity sha512-j02SFrUwFTRUqiY0Kjplwjm1psuzO1d6AjaXKuOR9hrY0HuPsT6sV42B6myW34h1q4CRy+Y3g4RU/cGJeI/nNA==
374 |
375 | escape-string-regexp@^1.0.5:
376 | version "1.0.5"
377 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
378 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
379 |
380 | escape-string-regexp@^4.0.0:
381 | version "4.0.0"
382 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
383 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
384 |
385 | eslint-config-prettier@^7.2.0:
386 | version "7.2.0"
387 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-7.2.0.tgz#f4a4bd2832e810e8cc7c1411ec85b3e85c0c53f9"
388 | integrity sha512-rV4Qu0C3nfJKPOAhFujFxB7RMP+URFyQqqOZW9DMRD7ZDTFyjaIlETU3xzHELt++4ugC0+Jm084HQYkkJe+Ivg==
389 |
390 | eslint-config-standard@^16.0.2:
391 | version "16.0.3"
392 | resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-16.0.3.tgz#6c8761e544e96c531ff92642eeb87842b8488516"
393 | integrity sha512-x4fmJL5hGqNJKGHSjnLdgA6U6h1YW/G2dW9fA+cyVur4SK6lyue8+UgNKWlZtUDTXvgKDD/Oa3GQjmB5kjtVvg==
394 |
395 | eslint-import-resolver-node@^0.3.6:
396 | version "0.3.6"
397 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd"
398 | integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==
399 | dependencies:
400 | debug "^3.2.7"
401 | resolve "^1.20.0"
402 |
403 | eslint-module-utils@^2.7.2:
404 | version "2.7.2"
405 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.2.tgz#1d0aa455dcf41052339b63cada8ab5fd57577129"
406 | integrity sha512-zquepFnWCY2ISMFwD/DqzaM++H+7PDzOpUvotJWm/y1BAFt5R4oeULgdrTejKqLkz7MA/tgstsUMNYc7wNdTrg==
407 | dependencies:
408 | debug "^3.2.7"
409 | find-up "^2.1.0"
410 |
411 | eslint-plugin-es@^3.0.0:
412 | version "3.0.1"
413 | resolved "https://registry.yarnpkg.com/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz#75a7cdfdccddc0589934aeeb384175f221c57893"
414 | integrity sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==
415 | dependencies:
416 | eslint-utils "^2.0.0"
417 | regexpp "^3.0.0"
418 |
419 | eslint-plugin-import@^2.22.1:
420 | version "2.25.4"
421 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.25.4.tgz#322f3f916a4e9e991ac7af32032c25ce313209f1"
422 | integrity sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==
423 | dependencies:
424 | array-includes "^3.1.4"
425 | array.prototype.flat "^1.2.5"
426 | debug "^2.6.9"
427 | doctrine "^2.1.0"
428 | eslint-import-resolver-node "^0.3.6"
429 | eslint-module-utils "^2.7.2"
430 | has "^1.0.3"
431 | is-core-module "^2.8.0"
432 | is-glob "^4.0.3"
433 | minimatch "^3.0.4"
434 | object.values "^1.1.5"
435 | resolve "^1.20.0"
436 | tsconfig-paths "^3.12.0"
437 |
438 | eslint-plugin-node@^11.1.0:
439 | version "11.1.0"
440 | resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz#c95544416ee4ada26740a30474eefc5402dc671d"
441 | integrity sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==
442 | dependencies:
443 | eslint-plugin-es "^3.0.0"
444 | eslint-utils "^2.0.0"
445 | ignore "^5.1.1"
446 | minimatch "^3.0.4"
447 | resolve "^1.10.1"
448 | semver "^6.1.0"
449 |
450 | eslint-plugin-prettier@^3.3.1:
451 | version "3.4.1"
452 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.4.1.tgz#e9ddb200efb6f3d05ffe83b1665a716af4a387e5"
453 | integrity sha512-htg25EUYUeIhKHXjOinK4BgCcDwtLHjqaxCDsMy5nbnUMkKFvIhMVCp+5GFUXQ4Nr8lBsPqtGAqBenbpFqAA2g==
454 | dependencies:
455 | prettier-linter-helpers "^1.0.0"
456 |
457 | eslint-plugin-promise@^4.3.1:
458 | version "4.3.1"
459 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-4.3.1.tgz#61485df2a359e03149fdafc0a68b0e030ad2ac45"
460 | integrity sha512-bY2sGqyptzFBDLh/GMbAxfdJC+b0f23ME63FOE4+Jao0oZ3E1LEwFtWJX/1pGMJLiTtrSSern2CRM/g+dfc0eQ==
461 |
462 | eslint-plugin-react-hooks@^4.2.0:
463 | version "4.3.0"
464 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.3.0.tgz#318dbf312e06fab1c835a4abef00121751ac1172"
465 | integrity sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA==
466 |
467 | eslint-plugin-react@^7.22.0:
468 | version "7.28.0"
469 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.28.0.tgz#8f3ff450677571a659ce76efc6d80b6a525adbdf"
470 | integrity sha512-IOlFIRHzWfEQQKcAD4iyYDndHwTQiCMcJVJjxempf203jnNLUnW34AXLrV33+nEXoifJE2ZEGmcjKPL8957eSw==
471 | dependencies:
472 | array-includes "^3.1.4"
473 | array.prototype.flatmap "^1.2.5"
474 | doctrine "^2.1.0"
475 | estraverse "^5.3.0"
476 | jsx-ast-utils "^2.4.1 || ^3.0.0"
477 | minimatch "^3.0.4"
478 | object.entries "^1.1.5"
479 | object.fromentries "^2.0.5"
480 | object.hasown "^1.1.0"
481 | object.values "^1.1.5"
482 | prop-types "^15.7.2"
483 | resolve "^2.0.0-next.3"
484 | semver "^6.3.0"
485 | string.prototype.matchall "^4.0.6"
486 |
487 | eslint-scope@^5.1.1:
488 | version "5.1.1"
489 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c"
490 | integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==
491 | dependencies:
492 | esrecurse "^4.3.0"
493 | estraverse "^4.1.1"
494 |
495 | eslint-utils@^2.0.0, eslint-utils@^2.1.0:
496 | version "2.1.0"
497 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27"
498 | integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==
499 | dependencies:
500 | eslint-visitor-keys "^1.1.0"
501 |
502 | eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0:
503 | version "1.3.0"
504 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e"
505 | integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==
506 |
507 | eslint-visitor-keys@^2.0.0:
508 | version "2.1.0"
509 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303"
510 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
511 |
512 | eslint@^7.20.0:
513 | version "7.32.0"
514 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.32.0.tgz#c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d"
515 | integrity sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==
516 | dependencies:
517 | "@babel/code-frame" "7.12.11"
518 | "@eslint/eslintrc" "^0.4.3"
519 | "@humanwhocodes/config-array" "^0.5.0"
520 | ajv "^6.10.0"
521 | chalk "^4.0.0"
522 | cross-spawn "^7.0.2"
523 | debug "^4.0.1"
524 | doctrine "^3.0.0"
525 | enquirer "^2.3.5"
526 | escape-string-regexp "^4.0.0"
527 | eslint-scope "^5.1.1"
528 | eslint-utils "^2.1.0"
529 | eslint-visitor-keys "^2.0.0"
530 | espree "^7.3.1"
531 | esquery "^1.4.0"
532 | esutils "^2.0.2"
533 | fast-deep-equal "^3.1.3"
534 | file-entry-cache "^6.0.1"
535 | functional-red-black-tree "^1.0.1"
536 | glob-parent "^5.1.2"
537 | globals "^13.6.0"
538 | ignore "^4.0.6"
539 | import-fresh "^3.0.0"
540 | imurmurhash "^0.1.4"
541 | is-glob "^4.0.0"
542 | js-yaml "^3.13.1"
543 | json-stable-stringify-without-jsonify "^1.0.1"
544 | levn "^0.4.1"
545 | lodash.merge "^4.6.2"
546 | minimatch "^3.0.4"
547 | natural-compare "^1.4.0"
548 | optionator "^0.9.1"
549 | progress "^2.0.0"
550 | regexpp "^3.1.0"
551 | semver "^7.2.1"
552 | strip-ansi "^6.0.0"
553 | strip-json-comments "^3.1.0"
554 | table "^6.0.9"
555 | text-table "^0.2.0"
556 | v8-compile-cache "^2.0.3"
557 |
558 | espree@^7.3.0, espree@^7.3.1:
559 | version "7.3.1"
560 | resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6"
561 | integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==
562 | dependencies:
563 | acorn "^7.4.0"
564 | acorn-jsx "^5.3.1"
565 | eslint-visitor-keys "^1.3.0"
566 |
567 | esprima@^4.0.0:
568 | version "4.0.1"
569 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
570 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
571 |
572 | esquery@^1.4.0:
573 | version "1.4.0"
574 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
575 | integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
576 | dependencies:
577 | estraverse "^5.1.0"
578 |
579 | esrecurse@^4.3.0:
580 | version "4.3.0"
581 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
582 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
583 | dependencies:
584 | estraverse "^5.2.0"
585 |
586 | estraverse@^4.1.1:
587 | version "4.3.0"
588 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
589 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
590 |
591 | estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0:
592 | version "5.3.0"
593 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123"
594 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==
595 |
596 | esutils@^2.0.2:
597 | version "2.0.3"
598 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
599 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
600 |
601 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
602 | version "3.1.3"
603 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
604 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
605 |
606 | fast-diff@^1.1.2:
607 | version "1.2.0"
608 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03"
609 | integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==
610 |
611 | fast-json-stable-stringify@^2.0.0:
612 | version "2.1.0"
613 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
614 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
615 |
616 | fast-levenshtein@^2.0.6:
617 | version "2.0.6"
618 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
619 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
620 |
621 | file-entry-cache@^6.0.1:
622 | version "6.0.1"
623 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027"
624 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
625 | dependencies:
626 | flat-cache "^3.0.4"
627 |
628 | find-up@^2.1.0:
629 | version "2.1.0"
630 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
631 | integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c=
632 | dependencies:
633 | locate-path "^2.0.0"
634 |
635 | flat-cache@^3.0.4:
636 | version "3.0.4"
637 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11"
638 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==
639 | dependencies:
640 | flatted "^3.1.0"
641 | rimraf "^3.0.2"
642 |
643 | flatted@^3.1.0:
644 | version "3.2.4"
645 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.4.tgz#28d9969ea90661b5134259f312ab6aa7929ac5e2"
646 | integrity sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw==
647 |
648 | fs.realpath@^1.0.0:
649 | version "1.0.0"
650 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
651 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
652 |
653 | function-bind@^1.1.1:
654 | version "1.1.1"
655 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
656 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
657 |
658 | functional-red-black-tree@^1.0.1:
659 | version "1.0.1"
660 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
661 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=
662 |
663 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1:
664 | version "1.1.1"
665 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6"
666 | integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==
667 | dependencies:
668 | function-bind "^1.1.1"
669 | has "^1.0.3"
670 | has-symbols "^1.0.1"
671 |
672 | get-symbol-description@^1.0.0:
673 | version "1.0.0"
674 | resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6"
675 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==
676 | dependencies:
677 | call-bind "^1.0.2"
678 | get-intrinsic "^1.1.1"
679 |
680 | glob-parent@^5.1.2:
681 | version "5.1.2"
682 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
683 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
684 | dependencies:
685 | is-glob "^4.0.1"
686 |
687 | glob@^7.1.3:
688 | version "7.2.0"
689 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023"
690 | integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==
691 | dependencies:
692 | fs.realpath "^1.0.0"
693 | inflight "^1.0.4"
694 | inherits "2"
695 | minimatch "^3.0.4"
696 | once "^1.3.0"
697 | path-is-absolute "^1.0.0"
698 |
699 | globals@^13.6.0, globals@^13.9.0:
700 | version "13.12.0"
701 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.12.0.tgz#4d733760304230a0082ed96e21e5c565f898089e"
702 | integrity sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg==
703 | dependencies:
704 | type-fest "^0.20.2"
705 |
706 | has-bigints@^1.0.1:
707 | version "1.0.1"
708 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113"
709 | integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==
710 |
711 | has-flag@^3.0.0:
712 | version "3.0.0"
713 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
714 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
715 |
716 | has-flag@^4.0.0:
717 | version "4.0.0"
718 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
719 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
720 |
721 | has-symbols@^1.0.1, has-symbols@^1.0.2:
722 | version "1.0.2"
723 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423"
724 | integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==
725 |
726 | has-tostringtag@^1.0.0:
727 | version "1.0.0"
728 | resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25"
729 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==
730 | dependencies:
731 | has-symbols "^1.0.2"
732 |
733 | has@^1.0.3:
734 | version "1.0.3"
735 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
736 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
737 | dependencies:
738 | function-bind "^1.1.1"
739 |
740 | html-element@^2.0.0:
741 | version "2.3.1"
742 | resolved "https://registry.yarnpkg.com/html-element/-/html-element-2.3.1.tgz#5feb23dd5226467ef8c2faec51a5bf29c4ef5440"
743 | integrity sha512-xnFt2ZkbFcjc+JoAtg3Hl89VeEZDjododu4VCPkRvFmBTHHA9U1Nt6hLUWfW2O+6Sl/rT1hHK/PivleX3PdBJQ==
744 | dependencies:
745 | class-list "~0.1.1"
746 |
747 | hyperscript@^2.0.2:
748 | version "2.0.2"
749 | resolved "https://registry.yarnpkg.com/hyperscript/-/hyperscript-2.0.2.tgz#3839cba45554bdfe27bb81c2142d1684f8135af5"
750 | integrity sha1-ODnLpFVUvf4nu4HCFC0WhPgTWvU=
751 | dependencies:
752 | browser-split "0.0.0"
753 | class-list "~0.1.0"
754 | html-element "^2.0.0"
755 |
756 | ignore@^4.0.6:
757 | version "4.0.6"
758 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
759 | integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==
760 |
761 | ignore@^5.1.1:
762 | version "5.2.0"
763 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a"
764 | integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==
765 |
766 | import-fresh@^3.0.0, import-fresh@^3.2.1:
767 | version "3.3.0"
768 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
769 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
770 | dependencies:
771 | parent-module "^1.0.0"
772 | resolve-from "^4.0.0"
773 |
774 | imurmurhash@^0.1.4:
775 | version "0.1.4"
776 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
777 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=
778 |
779 | indexof@0.0.1:
780 | version "0.0.1"
781 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d"
782 | integrity sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=
783 |
784 | inflight@^1.0.4:
785 | version "1.0.6"
786 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
787 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
788 | dependencies:
789 | once "^1.3.0"
790 | wrappy "1"
791 |
792 | inherits@2:
793 | version "2.0.4"
794 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
795 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
796 |
797 | internal-slot@^1.0.3:
798 | version "1.0.3"
799 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c"
800 | integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==
801 | dependencies:
802 | get-intrinsic "^1.1.0"
803 | has "^1.0.3"
804 | side-channel "^1.0.4"
805 |
806 | is-bigint@^1.0.1:
807 | version "1.0.4"
808 | resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3"
809 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==
810 | dependencies:
811 | has-bigints "^1.0.1"
812 |
813 | is-boolean-object@^1.1.0:
814 | version "1.1.2"
815 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719"
816 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==
817 | dependencies:
818 | call-bind "^1.0.2"
819 | has-tostringtag "^1.0.0"
820 |
821 | is-callable@^1.1.4, is-callable@^1.2.4:
822 | version "1.2.4"
823 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945"
824 | integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==
825 |
826 | is-core-module@^2.2.0, is-core-module@^2.8.0:
827 | version "2.8.1"
828 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.1.tgz#f59fdfca701d5879d0a6b100a40aa1560ce27211"
829 | integrity sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==
830 | dependencies:
831 | has "^1.0.3"
832 |
833 | is-date-object@^1.0.1:
834 | version "1.0.5"
835 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f"
836 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==
837 | dependencies:
838 | has-tostringtag "^1.0.0"
839 |
840 | is-extglob@^2.1.1:
841 | version "2.1.1"
842 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
843 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
844 |
845 | is-fullwidth-code-point@^3.0.0:
846 | version "3.0.0"
847 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
848 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
849 |
850 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3:
851 | version "4.0.3"
852 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
853 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
854 | dependencies:
855 | is-extglob "^2.1.1"
856 |
857 | is-negative-zero@^2.0.1:
858 | version "2.0.2"
859 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150"
860 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==
861 |
862 | is-number-object@^1.0.4:
863 | version "1.0.6"
864 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.6.tgz#6a7aaf838c7f0686a50b4553f7e54a96494e89f0"
865 | integrity sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==
866 | dependencies:
867 | has-tostringtag "^1.0.0"
868 |
869 | is-regex@^1.1.4:
870 | version "1.1.4"
871 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958"
872 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==
873 | dependencies:
874 | call-bind "^1.0.2"
875 | has-tostringtag "^1.0.0"
876 |
877 | is-shared-array-buffer@^1.0.1:
878 | version "1.0.1"
879 | resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz#97b0c85fbdacb59c9c446fe653b82cf2b5b7cfe6"
880 | integrity sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==
881 |
882 | is-string@^1.0.5, is-string@^1.0.7:
883 | version "1.0.7"
884 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd"
885 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==
886 | dependencies:
887 | has-tostringtag "^1.0.0"
888 |
889 | is-symbol@^1.0.2, is-symbol@^1.0.3:
890 | version "1.0.4"
891 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c"
892 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==
893 | dependencies:
894 | has-symbols "^1.0.2"
895 |
896 | is-weakref@^1.0.1:
897 | version "1.0.2"
898 | resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2"
899 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==
900 | dependencies:
901 | call-bind "^1.0.2"
902 |
903 | isexe@^2.0.0:
904 | version "2.0.0"
905 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
906 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
907 |
908 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
909 | version "4.0.0"
910 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
911 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
912 |
913 | js-yaml@^3.13.1:
914 | version "3.14.1"
915 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537"
916 | integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==
917 | dependencies:
918 | argparse "^1.0.7"
919 | esprima "^4.0.0"
920 |
921 | json-schema-traverse@^0.4.1:
922 | version "0.4.1"
923 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
924 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
925 |
926 | json-schema-traverse@^1.0.0:
927 | version "1.0.0"
928 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2"
929 | integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==
930 |
931 | json-stable-stringify-without-jsonify@^1.0.1:
932 | version "1.0.1"
933 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
934 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=
935 |
936 | json5@^1.0.1:
937 | version "1.0.2"
938 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593"
939 | integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==
940 | dependencies:
941 | minimist "^1.2.0"
942 |
943 | "jsx-ast-utils@^2.4.1 || ^3.0.0":
944 | version "3.2.1"
945 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.2.1.tgz#720b97bfe7d901b927d87c3773637ae8ea48781b"
946 | integrity sha512-uP5vu8xfy2F9A6LGC22KO7e2/vGTS1MhP+18f++ZNlf0Ohaxbc9nIEwHAsejlJKyzfZzU5UIhe5ItYkitcZnZA==
947 | dependencies:
948 | array-includes "^3.1.3"
949 | object.assign "^4.1.2"
950 |
951 | levn@^0.4.1:
952 | version "0.4.1"
953 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade"
954 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==
955 | dependencies:
956 | prelude-ls "^1.2.1"
957 | type-check "~0.4.0"
958 |
959 | locate-path@^2.0.0:
960 | version "2.0.0"
961 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
962 | integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=
963 | dependencies:
964 | p-locate "^2.0.0"
965 | path-exists "^3.0.0"
966 |
967 | lodash.merge@^4.6.2:
968 | version "4.6.2"
969 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a"
970 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==
971 |
972 | lodash.truncate@^4.4.2:
973 | version "4.4.2"
974 | resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193"
975 | integrity sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=
976 |
977 | loose-envify@^1.1.0, loose-envify@^1.4.0:
978 | version "1.4.0"
979 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
980 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
981 | dependencies:
982 | js-tokens "^3.0.0 || ^4.0.0"
983 |
984 | lru-cache@^6.0.0:
985 | version "6.0.0"
986 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
987 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
988 | dependencies:
989 | yallist "^4.0.0"
990 |
991 | minimatch@^3.0.4:
992 | version "3.1.2"
993 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
994 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
995 | dependencies:
996 | brace-expansion "^1.1.7"
997 |
998 | minimist@^1.2.0:
999 | version "1.2.7"
1000 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18"
1001 | integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==
1002 |
1003 | ms@2.0.0:
1004 | version "2.0.0"
1005 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
1006 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
1007 |
1008 | ms@2.1.2:
1009 | version "2.1.2"
1010 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
1011 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
1012 |
1013 | ms@^2.1.1:
1014 | version "2.1.3"
1015 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
1016 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
1017 |
1018 | natural-compare@^1.4.0:
1019 | version "1.4.0"
1020 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
1021 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=
1022 |
1023 | object-assign@^4.1.1:
1024 | version "4.1.1"
1025 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
1026 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
1027 |
1028 | object-inspect@^1.11.0, object-inspect@^1.9.0:
1029 | version "1.12.0"
1030 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.0.tgz#6e2c120e868fd1fd18cb4f18c31741d0d6e776f0"
1031 | integrity sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==
1032 |
1033 | object-keys@^1.0.12, object-keys@^1.1.1:
1034 | version "1.1.1"
1035 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
1036 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
1037 |
1038 | object.assign@^4.1.2:
1039 | version "4.1.2"
1040 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940"
1041 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==
1042 | dependencies:
1043 | call-bind "^1.0.0"
1044 | define-properties "^1.1.3"
1045 | has-symbols "^1.0.1"
1046 | object-keys "^1.1.1"
1047 |
1048 | object.entries@^1.1.5:
1049 | version "1.1.5"
1050 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.5.tgz#e1acdd17c4de2cd96d5a08487cfb9db84d881861"
1051 | integrity sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==
1052 | dependencies:
1053 | call-bind "^1.0.2"
1054 | define-properties "^1.1.3"
1055 | es-abstract "^1.19.1"
1056 |
1057 | object.fromentries@^2.0.5:
1058 | version "2.0.5"
1059 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.5.tgz#7b37b205109c21e741e605727fe8b0ad5fa08251"
1060 | integrity sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==
1061 | dependencies:
1062 | call-bind "^1.0.2"
1063 | define-properties "^1.1.3"
1064 | es-abstract "^1.19.1"
1065 |
1066 | object.hasown@^1.1.0:
1067 | version "1.1.0"
1068 | resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.0.tgz#7232ed266f34d197d15cac5880232f7a4790afe5"
1069 | integrity sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg==
1070 | dependencies:
1071 | define-properties "^1.1.3"
1072 | es-abstract "^1.19.1"
1073 |
1074 | object.values@^1.1.5:
1075 | version "1.1.5"
1076 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac"
1077 | integrity sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==
1078 | dependencies:
1079 | call-bind "^1.0.2"
1080 | define-properties "^1.1.3"
1081 | es-abstract "^1.19.1"
1082 |
1083 | once@^1.3.0:
1084 | version "1.4.0"
1085 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
1086 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
1087 | dependencies:
1088 | wrappy "1"
1089 |
1090 | optionator@^0.9.1:
1091 | version "0.9.1"
1092 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499"
1093 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
1094 | dependencies:
1095 | deep-is "^0.1.3"
1096 | fast-levenshtein "^2.0.6"
1097 | levn "^0.4.1"
1098 | prelude-ls "^1.2.1"
1099 | type-check "^0.4.0"
1100 | word-wrap "^1.2.3"
1101 |
1102 | p-limit@^1.1.0:
1103 | version "1.3.0"
1104 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
1105 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==
1106 | dependencies:
1107 | p-try "^1.0.0"
1108 |
1109 | p-locate@^2.0.0:
1110 | version "2.0.0"
1111 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
1112 | integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=
1113 | dependencies:
1114 | p-limit "^1.1.0"
1115 |
1116 | p-try@^1.0.0:
1117 | version "1.0.0"
1118 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
1119 | integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=
1120 |
1121 | parent-module@^1.0.0:
1122 | version "1.0.1"
1123 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
1124 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
1125 | dependencies:
1126 | callsites "^3.0.0"
1127 |
1128 | path-exists@^3.0.0:
1129 | version "3.0.0"
1130 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
1131 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
1132 |
1133 | path-is-absolute@^1.0.0:
1134 | version "1.0.1"
1135 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
1136 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
1137 |
1138 | path-key@^3.1.0:
1139 | version "3.1.1"
1140 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
1141 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
1142 |
1143 | path-parse@^1.0.6, path-parse@^1.0.7:
1144 | version "1.0.7"
1145 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
1146 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
1147 |
1148 | prelude-ls@^1.2.1:
1149 | version "1.2.1"
1150 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
1151 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
1152 |
1153 | prettier-linter-helpers@^1.0.0:
1154 | version "1.0.0"
1155 | resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b"
1156 | integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==
1157 | dependencies:
1158 | fast-diff "^1.1.2"
1159 |
1160 | prettier@^2.2.1:
1161 | version "2.5.1"
1162 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.5.1.tgz#fff75fa9d519c54cf0fce328c1017d94546bc56a"
1163 | integrity sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==
1164 |
1165 | progress@^2.0.0:
1166 | version "2.0.3"
1167 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"
1168 | integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==
1169 |
1170 | prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1:
1171 | version "15.8.1"
1172 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5"
1173 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==
1174 | dependencies:
1175 | loose-envify "^1.4.0"
1176 | object-assign "^4.1.1"
1177 | react-is "^16.13.1"
1178 |
1179 | punycode@^2.1.0:
1180 | version "2.1.1"
1181 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
1182 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
1183 |
1184 | react-is@^16.13.1:
1185 | version "16.13.1"
1186 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
1187 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
1188 |
1189 | react@^17.0.1:
1190 | version "17.0.2"
1191 | resolved "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037"
1192 | integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==
1193 | dependencies:
1194 | loose-envify "^1.1.0"
1195 | object-assign "^4.1.1"
1196 |
1197 | regexp.prototype.flags@^1.3.1:
1198 | version "1.4.1"
1199 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.1.tgz#b3f4c0059af9e47eca9f3f660e51d81307e72307"
1200 | integrity sha512-pMR7hBVUUGI7PMA37m2ofIdQCsomVnas+Jn5UPGAHQ+/LlwKm/aTLJHdasmHRzlfeZwHiAOaRSo2rbBDm3nNUQ==
1201 | dependencies:
1202 | call-bind "^1.0.2"
1203 | define-properties "^1.1.3"
1204 |
1205 | regexpp@^3.0.0, regexpp@^3.1.0:
1206 | version "3.2.0"
1207 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2"
1208 | integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==
1209 |
1210 | require-from-string@^2.0.2:
1211 | version "2.0.2"
1212 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909"
1213 | integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==
1214 |
1215 | resolve-from@^4.0.0:
1216 | version "4.0.0"
1217 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
1218 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
1219 |
1220 | resolve@^1.10.1, resolve@^1.20.0:
1221 | version "1.21.1"
1222 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.21.1.tgz#1a88c73f5ca8ab0aabc8b888c4170de26c92c4cc"
1223 | integrity sha512-lfEImVbnolPuaSZuLQ52cAxPBHeI77sPwCOWRdy12UG/CNa8an7oBHH1R+Fp1/mUqSJi4c8TIP6FOIPSZAUrEQ==
1224 | dependencies:
1225 | is-core-module "^2.8.0"
1226 | path-parse "^1.0.7"
1227 | supports-preserve-symlinks-flag "^1.0.0"
1228 |
1229 | resolve@^2.0.0-next.3:
1230 | version "2.0.0-next.3"
1231 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.3.tgz#d41016293d4a8586a39ca5d9b5f15cbea1f55e46"
1232 | integrity sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==
1233 | dependencies:
1234 | is-core-module "^2.2.0"
1235 | path-parse "^1.0.6"
1236 |
1237 | rimraf@^3.0.2:
1238 | version "3.0.2"
1239 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
1240 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
1241 | dependencies:
1242 | glob "^7.1.3"
1243 |
1244 | semver@^6.1.0, semver@^6.3.0:
1245 | version "6.3.1"
1246 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
1247 | integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
1248 |
1249 | semver@^7.2.1:
1250 | version "7.5.4"
1251 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e"
1252 | integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==
1253 | dependencies:
1254 | lru-cache "^6.0.0"
1255 |
1256 | shebang-command@^2.0.0:
1257 | version "2.0.0"
1258 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
1259 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
1260 | dependencies:
1261 | shebang-regex "^3.0.0"
1262 |
1263 | shebang-regex@^3.0.0:
1264 | version "3.0.0"
1265 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
1266 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
1267 |
1268 | side-channel@^1.0.4:
1269 | version "1.0.4"
1270 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf"
1271 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==
1272 | dependencies:
1273 | call-bind "^1.0.0"
1274 | get-intrinsic "^1.0.2"
1275 | object-inspect "^1.9.0"
1276 |
1277 | slice-ansi@^4.0.0:
1278 | version "4.0.0"
1279 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b"
1280 | integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==
1281 | dependencies:
1282 | ansi-styles "^4.0.0"
1283 | astral-regex "^2.0.0"
1284 | is-fullwidth-code-point "^3.0.0"
1285 |
1286 | sprintf-js@~1.0.2:
1287 | version "1.0.3"
1288 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
1289 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
1290 |
1291 | string-width@^4.2.3:
1292 | version "4.2.3"
1293 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
1294 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
1295 | dependencies:
1296 | emoji-regex "^8.0.0"
1297 | is-fullwidth-code-point "^3.0.0"
1298 | strip-ansi "^6.0.1"
1299 |
1300 | string.prototype.matchall@^4.0.6:
1301 | version "4.0.6"
1302 | resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.6.tgz#5abb5dabc94c7b0ea2380f65ba610b3a544b15fa"
1303 | integrity sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg==
1304 | dependencies:
1305 | call-bind "^1.0.2"
1306 | define-properties "^1.1.3"
1307 | es-abstract "^1.19.1"
1308 | get-intrinsic "^1.1.1"
1309 | has-symbols "^1.0.2"
1310 | internal-slot "^1.0.3"
1311 | regexp.prototype.flags "^1.3.1"
1312 | side-channel "^1.0.4"
1313 |
1314 | string.prototype.trimend@^1.0.4:
1315 | version "1.0.4"
1316 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80"
1317 | integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==
1318 | dependencies:
1319 | call-bind "^1.0.2"
1320 | define-properties "^1.1.3"
1321 |
1322 | string.prototype.trimstart@^1.0.4:
1323 | version "1.0.4"
1324 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed"
1325 | integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==
1326 | dependencies:
1327 | call-bind "^1.0.2"
1328 | define-properties "^1.1.3"
1329 |
1330 | strip-ansi@^6.0.0, strip-ansi@^6.0.1:
1331 | version "6.0.1"
1332 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
1333 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
1334 | dependencies:
1335 | ansi-regex "^5.0.1"
1336 |
1337 | strip-bom@^3.0.0:
1338 | version "3.0.0"
1339 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
1340 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=
1341 |
1342 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
1343 | version "3.1.1"
1344 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
1345 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
1346 |
1347 | supports-color@^5.3.0:
1348 | version "5.5.0"
1349 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
1350 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
1351 | dependencies:
1352 | has-flag "^3.0.0"
1353 |
1354 | supports-color@^7.1.0:
1355 | version "7.2.0"
1356 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
1357 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
1358 | dependencies:
1359 | has-flag "^4.0.0"
1360 |
1361 | supports-preserve-symlinks-flag@^1.0.0:
1362 | version "1.0.0"
1363 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
1364 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
1365 |
1366 | table@^6.0.9:
1367 | version "6.8.0"
1368 | resolved "https://registry.yarnpkg.com/table/-/table-6.8.0.tgz#87e28f14fa4321c3377ba286f07b79b281a3b3ca"
1369 | integrity sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==
1370 | dependencies:
1371 | ajv "^8.0.1"
1372 | lodash.truncate "^4.4.2"
1373 | slice-ansi "^4.0.0"
1374 | string-width "^4.2.3"
1375 | strip-ansi "^6.0.1"
1376 |
1377 | text-table@^0.2.0:
1378 | version "0.2.0"
1379 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
1380 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=
1381 |
1382 | tsconfig-paths@^3.12.0:
1383 | version "3.12.0"
1384 | resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.12.0.tgz#19769aca6ee8f6a1a341e38c8fa45dd9fb18899b"
1385 | integrity sha512-e5adrnOYT6zqVnWqZu7i/BQ3BnhzvGbjEjejFXO20lKIKpwTaupkCPgEfv4GZK1IBciJUEhYs3J3p75FdaTFVg==
1386 | dependencies:
1387 | "@types/json5" "^0.0.29"
1388 | json5 "^1.0.1"
1389 | minimist "^1.2.0"
1390 | strip-bom "^3.0.0"
1391 |
1392 | type-check@^0.4.0, type-check@~0.4.0:
1393 | version "0.4.0"
1394 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
1395 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
1396 | dependencies:
1397 | prelude-ls "^1.2.1"
1398 |
1399 | type-fest@^0.20.2:
1400 | version "0.20.2"
1401 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4"
1402 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==
1403 |
1404 | typescript@^4.5.5:
1405 | version "4.5.5"
1406 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.5.5.tgz#d8c953832d28924a9e3d37c73d729c846c5896f3"
1407 | integrity sha512-TCTIul70LyWe6IJWT8QSYeA54WQe8EjQFU4wY52Fasj5UKx88LNYKCgBEHcOMOrFF1rKGbD8v/xcNWVUq9SymA==
1408 |
1409 | unbox-primitive@^1.0.1:
1410 | version "1.0.1"
1411 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471"
1412 | integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==
1413 | dependencies:
1414 | function-bind "^1.1.1"
1415 | has-bigints "^1.0.1"
1416 | has-symbols "^1.0.2"
1417 | which-boxed-primitive "^1.0.2"
1418 |
1419 | uri-js@^4.2.2:
1420 | version "4.4.1"
1421 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
1422 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
1423 | dependencies:
1424 | punycode "^2.1.0"
1425 |
1426 | v8-compile-cache@^2.0.3:
1427 | version "2.3.0"
1428 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee"
1429 | integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==
1430 |
1431 | which-boxed-primitive@^1.0.2:
1432 | version "1.0.2"
1433 | resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
1434 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
1435 | dependencies:
1436 | is-bigint "^1.0.1"
1437 | is-boolean-object "^1.1.0"
1438 | is-number-object "^1.0.4"
1439 | is-string "^1.0.5"
1440 | is-symbol "^1.0.3"
1441 |
1442 | which@^2.0.1:
1443 | version "2.0.2"
1444 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
1445 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
1446 | dependencies:
1447 | isexe "^2.0.0"
1448 |
1449 | word-wrap@^1.2.3:
1450 | version "1.2.4"
1451 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.4.tgz#cb4b50ec9aca570abd1f52f33cd45b6c61739a9f"
1452 | integrity sha512-2V81OA4ugVo5pRo46hAoD2ivUJx8jXmWXfUkY4KFNw0hEptvN0QfH3K4nHiwzGeKl5rFKedV48QVoqYavy4YpA==
1453 |
1454 | wrappy@1:
1455 | version "1.0.2"
1456 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
1457 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
1458 |
1459 | yallist@^4.0.0:
1460 | version "4.0.0"
1461 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
1462 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
1463 |
--------------------------------------------------------------------------------