├── .eslintignore
├── .gitignore
├── .prettierignore
├── src
├── images
│ ├── review.png
│ ├── rating-empty.svg
│ └── rating.svg
├── styles
│ ├── base
│ │ ├── breakpoints.scss
│ │ ├── colours.scss
│ │ ├── spacing.scss
│ │ ├── function.scss
│ │ ├── base.scss
│ │ ├── mixin.scss
│ │ └── button.scss
│ └── Reviews.scss
├── components
│ ├── index.ts
│ ├── fail-message.tsx
│ ├── success-message.tsx
│ ├── pagination-button.tsx
│ ├── average-rating.tsx
│ ├── cards.tsx
│ ├── pagination.tsx
│ └── form.tsx
├── main.tsx
├── helpers
│ └── helpers.tsx
├── data
│ └── data.tsx
└── Reviews.tsx
├── vite.config.ts
├── .prettierrc.js
├── README.md
├── index.html
├── .github
└── workflows
│ ├── build.yml
│ └── eslint.yml
├── tsconfig.json
├── package.json
├── .eslintrc.js
└── yarn.lock
/.eslintignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | .DS_Store
3 | dist
4 | dist-ssr
5 | *.local
6 | node_modules/*
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | .DS_Store
3 | dist
4 | dist-ssr
5 | *.local
6 | node_modules/*
--------------------------------------------------------------------------------
/.prettierignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | .DS_Store
3 | dist
4 | dist-ssr
5 | *.local
6 | node_modules/*
--------------------------------------------------------------------------------
/src/images/review.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andrey-kudinov/reviews/HEAD/src/images/review.png
--------------------------------------------------------------------------------
/src/styles/base/breakpoints.scss:
--------------------------------------------------------------------------------
1 | $breakpoints:(
2 | xs 480px 432px,
3 | sm 768px 720px,
4 | md 960px 912px,
5 | lg 1140px 1092px,
6 | xl 1920px 1872px
7 | );
8 |
--------------------------------------------------------------------------------
/src/styles/base/colours.scss:
--------------------------------------------------------------------------------
1 | $blue: #009ee0;
2 | $grey: #333333;
3 | $grey-2: #505050;
4 | $light-grey: #757575;
5 | $light-grey-2: #949494;
6 | $light-grey-3: #828282;
7 | $keyline-grey: #dadada;
8 | $red: #de1a00;
9 |
--------------------------------------------------------------------------------
/vite.config.ts:
--------------------------------------------------------------------------------
1 | import reactRefresh from '@vitejs/plugin-react-refresh'
2 | import { defineConfig } from 'vite'
3 |
4 | // https://vitejs.dev/config/
5 | export default defineConfig({
6 | plugins: [reactRefresh()]
7 | })
8 |
--------------------------------------------------------------------------------
/.prettierrc.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | semi: true,
3 | trailingComma: 'none',
4 | singleQuote: true,
5 | printWidth: 90,
6 | tabWidth: 2,
7 | jsxBracketSameLine: true,
8 | endOfLine: 'auto',
9 | semi: false,
10 | jsxSingleQuote: true
11 | }
12 |
--------------------------------------------------------------------------------
/src/styles/base/spacing.scss:
--------------------------------------------------------------------------------
1 | $spacing-map: (
2 | 5xs: 4px,
3 | 4xs: 6px,
4 | 3xs: 8px,
5 | 2xs: 12px,
6 | xs: 16px,
7 | sm: 24px,
8 | md: 32px,
9 | lg: 48px,
10 | xl: 64px,
11 | 2xl: 80px,
12 | 3xl: 96px,
13 | 4xl: 104px,
14 | 5xl: 120px
15 | );
16 |
--------------------------------------------------------------------------------
/src/components/index.ts:
--------------------------------------------------------------------------------
1 | export { AverageRating } from './average-rating'
2 | export { Cards } from './cards'
3 | export { FailMessage } from './fail-message'
4 | export { Form } from './form'
5 | export { Pagination } from './pagination'
6 | export { SuccessMessage } from './success-message'
7 |
--------------------------------------------------------------------------------
/src/components/fail-message.tsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 |
3 | export const FailMessage = () => (
4 |
5 |
Sorry, something went wrong!
6 |
7 | Try again later. Check out the DevTools Console anyway!
8 |
9 |
10 | )
11 |
--------------------------------------------------------------------------------
/src/styles/base/function.scss:
--------------------------------------------------------------------------------
1 | @function spacing($variant: default, $map: $spacing-map) {
2 | $value: map-get($map, $variant);
3 |
4 | @if type-of($value) == number {
5 | @return $value;
6 | } @else {
7 | @error 'Spacing variant `#{$variant}` not found. Available variants: #{available-names($map)}';
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/components/success-message.tsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 |
3 | export const SuccessMessage = () => (
4 |
5 |
Thank you for you review!
6 |
7 | Your review has been submitted. Check out the DevTools Console!
8 |
9 |
10 | )
11 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Reviews
2 |
3 | Form with the Constraint validation API and a star rating system
4 |
5 | ### Commands
6 |
7 | | Command | Description |
8 | | ---------- | --------------------- |
9 | | yarn | install dependencies |
10 | | yarn dev | serve with hot reload |
11 | | yarn build | build the project |
12 | | yarn lint | run eslint |
13 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Reviews
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/main.tsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import ReactDOM from 'react-dom'
3 |
4 | import { cardsData, productData } from './data/data'
5 | import { randomDate, randomRating } from './helpers/helpers'
6 | import Reviews from './Reviews'
7 |
8 | cardsData.forEach((card) => {
9 | card.date = String(randomDate(new Date(2012, 0, 1), new Date()))
10 | card.rating = randomRating(1, 5)
11 | })
12 |
13 | ReactDOM.render(
14 |
15 |
16 | ,
17 | document.getElementById('root')
18 | )
19 |
--------------------------------------------------------------------------------
/.github/workflows/build.yml:
--------------------------------------------------------------------------------
1 | name: Try Build
2 |
3 | on:
4 | workflow_dispatch:
5 |
6 | jobs:
7 | build:
8 | runs-on: ubuntu-latest
9 | steps:
10 |
11 | - uses: actions/setup-node@v3
12 | name: Setup node
13 | with:
14 | node-version: 16.x.x
15 | cache: npm
16 |
17 | - run: node --version
18 | name: Check Node Version
19 |
20 | - uses: actions/checkout@v3
21 | name: Checkout code
22 |
23 | - run: yarn
24 | name: Install NPM Packages
25 |
26 | - run: yarn build
27 | name: Build Project
28 |
29 |
--------------------------------------------------------------------------------
/src/styles/base/base.scss:
--------------------------------------------------------------------------------
1 | @import './colours.scss';
2 | @import './spacing.scss';
3 | @import './breakpoints.scss';
4 | @import './button.scss';
5 | @import './mixin.scss';
6 | @import './function.scss';
7 |
8 | body, textarea {
9 | margin: 0;
10 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu',
11 | 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
12 | -webkit-font-smoothing: antialiased;
13 | -moz-osx-font-smoothing: grayscale;
14 | }
15 |
16 | code {
17 | font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
18 | }
19 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "ESNext",
4 | "lib": ["DOM", "DOM.Iterable", "ESNext"],
5 | "types": ["vite/client"],
6 | "allowJs": false,
7 | "skipLibCheck": false,
8 | "esModuleInterop": false,
9 | "allowSyntheticDefaultImports": true,
10 | "strict": true,
11 | "forceConsistentCasingInFileNames": true,
12 | "module": "ESNext",
13 | "moduleResolution": "Node",
14 | "resolveJsonModule": true,
15 | "isolatedModules": true,
16 | "noEmit": true,
17 | "jsx": "react-jsx"
18 | },
19 | "include": ["./src"],
20 | "exclude": ["node_modules"]
21 | }
22 |
--------------------------------------------------------------------------------
/src/styles/base/mixin.scss:
--------------------------------------------------------------------------------
1 | @mixin breakpoint($point) {
2 | @each $breakpoint in $breakpoints {
3 | $name: nth($breakpoint, 1);
4 | $size: nth($breakpoint, 2);
5 |
6 | @if $point == $name {
7 | @media (min-width: $size) {
8 | @content;
9 | }
10 | }
11 | }
12 | }
13 |
14 | @mixin breakpoint-down($point) {
15 | @each $breakpoint in $breakpoints {
16 | $name: nth($breakpoint, 1);
17 | $size: nth($breakpoint, 2);
18 |
19 | @if $point == $name {
20 | @media (max-width: $size - 1px) {
21 | @content;
22 | }
23 | }
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/src/helpers/helpers.tsx:
--------------------------------------------------------------------------------
1 | export const randomRating = (min: number, max: number) => {
2 | return Number((Math.random() * (max - min + 1) + min).toFixed(1))
3 | }
4 |
5 | export const randomDate = (start: Date, end: Date) => {
6 | return new Date(start.getTime() + Math.random() * (end.getTime() - start.getTime()))
7 | }
8 |
9 | const consoleStyles: any = {
10 | log1: 'font: 2rem/1 Arial; color: crimson;',
11 | log2: 'font: 2rem/1 Arial; color: orangered;',
12 | log3: 'font: 2rem/1 Arial; color: olivedrab;',
13 | log4: 'font: 2rem/1 Arial; color: darkmagenta;',
14 | log5: 'font: 2rem/1 Arial; color: blue;'
15 | }
16 |
17 | export const log = (msg: string, style: string) => {
18 | console.log('%c' + msg, consoleStyles[style])
19 | }
20 |
--------------------------------------------------------------------------------
/src/components/pagination-button.tsx:
--------------------------------------------------------------------------------
1 | import React, { KeyboardEvent } from 'react'
2 |
3 | interface IProps {
4 | // eslint-disable-next-line no-unused-vars
5 | handleChangePage: (page: number) => void
6 | // eslint-disable-next-line no-unused-vars
7 | handleKeyChangePage: (e: KeyboardEvent, page: number) => void
8 | currentPage: number
9 | shift: number
10 | }
11 |
12 | export const PaginationButton = ({
13 | handleChangePage,
14 | handleKeyChangePage,
15 | currentPage,
16 | shift
17 | }: IProps) => (
18 | // eslint-disable-next-line jsx-a11y/no-noninteractive-element-interactions
19 | handleChangePage(currentPage + shift)}
23 | onKeyDown={(e) => handleKeyChangePage(e, currentPage + shift)}>
24 | {currentPage + shift}
25 |
26 | )
27 |
--------------------------------------------------------------------------------
/src/components/average-rating.tsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 |
3 | import type { IProductData } from '../data/data'
4 |
5 | export const AverageRating = ({ averageRating, numberOfReviews }: IProductData) => {
6 | /**
7 | * ratingWidth = card rating * width of one star
8 | */
9 | const ratingWidth = { width: `${averageRating * 2}rem` } as React.CSSProperties
10 |
11 | return (
12 |
13 |
Average ratings
14 |
15 |
{averageRating}
16 |
19 |
20 | {numberOfReviews} {numberOfReviews === 1 ? 'review' : 'reviews'}
21 |
22 |
23 |
24 | )
25 | }
26 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "review",
3 | "version": "1.0.0",
4 | "author": "Andrey Kudinov",
5 | "scripts": {
6 | "dev": "vite",
7 | "build": "tsc && vite build",
8 | "serve": "vite preview",
9 | "lint:fix": "eslint ./src --ext .jsx,.js,.ts,.tsx --quiet --fix --ignore-path ./.gitignore",
10 | "lint:format": "prettier --loglevel warn --write \"./**/*.{js,jsx,ts,tsx,css,md,json}\" ",
11 | "lint": "yarn lint:format && yarn lint:fix ",
12 | "type-check": "tsc"
13 | },
14 | "dependencies": {
15 | "react": "^17.0.2",
16 | "react-dom": "^17.0.2"
17 | },
18 | "devDependencies": {
19 | "@types/react": "^17.0.14",
20 | "@types/react-dom": "^17.0.9",
21 | "@typescript-eslint/eslint-plugin": "^4.28.2",
22 | "@typescript-eslint/parser": "^4.28.2",
23 | "@vitejs/plugin-react-refresh": "^1.3.5",
24 | "eslint": "^7.30.0",
25 | "eslint-config-prettier": "^8.3.0",
26 | "eslint-plugin-import": "^2.23.4",
27 | "eslint-plugin-jsx-a11y": "^6.4.1",
28 | "eslint-plugin-prettier": "^3.4.0",
29 | "eslint-plugin-react": "^7.24.0",
30 | "eslint-plugin-simple-import-sort": "^7.0.0",
31 | "pre-commit": "^1.2.2",
32 | "prettier": "^2.3.2",
33 | "sass": "^1.43.4",
34 | "typescript": "^4.3.5",
35 | "vite": "^2.4.1"
36 | },
37 | "pre-commit": "lint",
38 | "license": "MIT"
39 | }
40 |
--------------------------------------------------------------------------------
/.eslintrc.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | root: true,
3 | parser: '@typescript-eslint/parser',
4 | parserOptions: {
5 | ecmaVersion: 2020,
6 | sourceType: 'module',
7 | ecmaFeatures: {
8 | jsx: true
9 | }
10 | },
11 | settings: {
12 | react: {
13 | version: 'detect'
14 | }
15 | },
16 | env: {
17 | browser: true,
18 | amd: true,
19 | node: true
20 | },
21 | extends: [
22 | 'eslint:recommended',
23 | 'plugin:react/recommended',
24 | 'plugin:jsx-a11y/recommended',
25 | 'plugin:prettier/recommended' // Make sure this is always the last element in the array.
26 | ],
27 | plugins: ['simple-import-sort', 'prettier'],
28 | rules: {
29 | 'prettier/prettier': ['error', {}, { usePrettierrc: true }],
30 | 'react/react-in-jsx-scope': 'off',
31 | 'jsx-a11y/accessible-emoji': 'off',
32 | 'react/prop-types': 'off',
33 | '@typescript-eslint/explicit-function-return-type': 'off',
34 | 'simple-import-sort/imports': 'error',
35 | 'simple-import-sort/exports': 'error',
36 | 'jsx-a11y/anchor-is-valid': [
37 | 'error',
38 | {
39 | components: ['Link'],
40 | specialLink: ['hrefLeft', 'hrefRight'],
41 | aspects: ['invalidHref', 'preferButton']
42 | }
43 | ],
44 | semi: ['error', 'never'],
45 | 'jsx-quotes': ['error', 'prefer-single'],
46 | 'comma-dangle': ['error', 'never']
47 | }
48 | }
49 |
--------------------------------------------------------------------------------
/src/components/cards.tsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 |
3 | import type { ICardsData } from '../data/data'
4 |
5 | interface IProps {
6 | currentCardsOnPage: ICardsData[]
7 | }
8 |
9 | export const Cards = (props: IProps) => {
10 | const { currentCardsOnPage } = props
11 | const cards = currentCardsOnPage.map((card: ICardsData, index: number) => {
12 | /**
13 | * ratingWidth = card rating * width of one star
14 | */
15 | const ratingWidth = { width: `${card.rating * 1}rem` } as React.CSSProperties
16 |
17 | const formatDate = (date: string) => {
18 | const parseDate = Date.parse(date)
19 | const options = {
20 | timeZone: 'Australia/Sydney'
21 | }
22 |
23 | return new Intl.DateTimeFormat('en-AU', options).format(parseDate)
24 | }
25 |
26 | return (
27 |
28 |
{card.author}
29 |
30 |
33 |
{formatDate(card.date)}
34 |
35 |
{card.title}
36 |
{card.body}
37 |
38 | )
39 | })
40 |
41 | return {cards}
42 | }
43 |
--------------------------------------------------------------------------------
/src/styles/base/button.scss:
--------------------------------------------------------------------------------
1 | button {
2 | position: relative;
3 | display: inline-flex;
4 | overflow: hidden;
5 | align-items: center;
6 | justify-content: center;
7 | box-sizing: border-box;
8 | height: 48px;
9 | padding-right: 16px;
10 | padding-left: 16px;
11 | list-style: none;
12 | cursor: pointer;
13 | user-select: none;
14 | transition: box-shadow .15s,transform .15s;
15 | text-align: left;
16 | white-space: nowrap;
17 | text-decoration: none;
18 | color: #fff;
19 | border: 0;
20 | border-radius: 6px;
21 | background-image: radial-gradient(100% 100% at 100% 0, #5adaff 0, $blue 100%);
22 | box-shadow: rgba(45, 35, 66, .4) 0 2px 4px,rgba(45, 35, 66, .3) 0 7px 13px -3px,rgba(58, 65, 111, .5) 0 -3px 0 inset;
23 | font-size: 18px;
24 | line-height: 1;
25 | font-weight: 600;
26 | letter-spacing: 0.05rem;
27 | appearance: none;
28 | touch-action: manipulation;
29 | will-change: box-shadow,transform;
30 | }
31 |
32 | button:focus-visible {
33 | box-shadow: darken($blue, 10%) 0 0 0 1.5px inset, rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, darken($blue, 10%) 0 -3px 0 inset;
34 | }
35 |
36 | button:hover {
37 | transform: translateY(-2px);
38 | box-shadow: rgba(45, 35, 66, .4) 0 4px 8px, rgba(45, 35, 66, .3) 0 7px 13px -3px, darken($blue, 10%) 0 -3px 0 inset;
39 | }
40 |
41 | button:active {
42 | transform: translateY(2px);
43 | box-shadow: darken($blue, 10%) 0 3px 7px inset;
44 | }
45 |
--------------------------------------------------------------------------------
/.github/workflows/eslint.yml:
--------------------------------------------------------------------------------
1 | # This workflow uses actions that are not certified by GitHub.
2 | # They are provided by a third-party and are governed by
3 | # separate terms of service, privacy policy, and support
4 | # documentation.
5 | # ESLint is a tool for identifying and reporting on patterns
6 | # found in ECMAScript/JavaScript code.
7 | # More details at https://github.com/eslint/eslint
8 | # and https://eslint.org
9 |
10 | name: ESLint
11 |
12 | on:
13 | push:
14 | branches: [ "master" ]
15 | pull_request:
16 | # The branches below must be a subset of the branches above
17 | branches: [ "master" ]
18 | schedule:
19 | - cron: '50 23 * * 1'
20 |
21 | jobs:
22 | eslint:
23 | name: Run eslint scanning
24 | runs-on: ubuntu-latest
25 | permissions:
26 | contents: read
27 | security-events: write
28 | actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
29 | steps:
30 | - name: Checkout code
31 | uses: actions/checkout@v3
32 |
33 | - name: Install ESLint
34 | run: |
35 | npm install eslint@8.10.0
36 | npm install @microsoft/eslint-formatter-sarif@2.1.7
37 |
38 | - name: Run ESLint
39 | run: npx eslint .
40 | --config .eslintrc.js
41 | --ext .js,.jsx,.ts,.tsx
42 | --format @microsoft/eslint-formatter-sarif
43 | --output-file eslint-results.sarif
44 | continue-on-error: true
45 |
46 | - name: Upload analysis results to GitHub
47 | uses: github/codeql-action/upload-sarif@v2
48 | with:
49 | sarif_file: eslint-results.sarif
50 | wait-for-processing: true
51 |
--------------------------------------------------------------------------------
/src/components/pagination.tsx:
--------------------------------------------------------------------------------
1 | /* eslint-disable jsx-a11y/no-noninteractive-element-interactions */
2 | /* eslint-disable jsx-a11y/no-noninteractive-tabindex */
3 | import React from 'react'
4 |
5 | import { PaginationButton } from './pagination-button'
6 |
7 | export const Pagination = (props: any) => {
8 | const {
9 | countPages,
10 | currentPage,
11 | currentNumRef,
12 | nextCardsGroup,
13 | prevCardsGroup,
14 | handleKeyNextCardsGroup,
15 | handleKeyPrevCardsGroup,
16 | ...restProps
17 | } = props
18 |
19 | return (
20 |
21 | {currentPage > 1 && (
22 | -
27 | <
28 |
29 | )}
30 |
31 | {currentPage > 2 && countPages > 2 && (
32 |
33 | )}
34 |
35 | {currentPage > 1 && (
36 |
37 | )}
38 |
39 | -
40 | {currentPage}
41 |
42 |
43 | {currentPage !== countPages && (
44 |
45 | )}
46 |
47 | {currentPage === 1 && countPages > 2 && (
48 |
49 | )}
50 |
51 | {currentPage !== countPages && (
52 | -
57 | >
58 |
59 | )}
60 |
61 | )
62 | }
63 |
--------------------------------------------------------------------------------
/src/images/rating-empty.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/src/data/data.tsx:
--------------------------------------------------------------------------------
1 | export interface IProductData {
2 | averageRating: number
3 | numberOfReviews: number
4 | }
5 |
6 | export interface ICardsData {
7 | date: string
8 | rating: number
9 | author: string
10 | title: string
11 | body: string
12 | }
13 |
14 | export const productData: IProductData = {
15 | averageRating: 4.5,
16 | numberOfReviews: 193
17 | }
18 |
19 | export const cardsData: ICardsData[] = [
20 | {
21 | author: 'Ashley N 1',
22 | rating: 1.2,
23 | date: '3 weeks ago',
24 | title: 'Love it!!!',
25 | body: 'Love the glasses. Very durable and solid. Definitely bring out the best of me.'
26 | },
27 | {
28 | author: 'John 1',
29 | rating: 2.5,
30 | date: '3 weeks ago',
31 | title: 'Great quality',
32 | body: 'Parsley shallot courgette tatsoi pea sprouts fava bean collard greens dandelion okra wakame tomato.'
33 | },
34 | {
35 | author: 'Zoe Mitchel 1',
36 | rating: 4.3,
37 | date: '3 weeks ago',
38 | title: 'Amazing glasses',
39 | body: 'Love the glasses. Very durable and solid. Definitely bring out the best of me.'
40 | },
41 | {
42 | author: 'Michael Ho 1',
43 | rating: 4.8,
44 | date: '3 weeks ago',
45 | title: 'Best glasses by far',
46 | body: 'Parsley shallot courgette tatsoi pea sprouts fava bean collard greens dandelion okra wakame tomato.'
47 | },
48 | {
49 | author: 'Ashley N 2',
50 | rating: 1.2,
51 | date: '3 weeks ago',
52 | title: 'Love it!!!',
53 | body: 'Love the glasses. Very durable and solid. Definitely bring out the best of me.'
54 | },
55 | {
56 | author: 'John 2',
57 | rating: 2.5,
58 | date: '3 weeks ago',
59 | title: 'Great quality',
60 | body: 'Parsley shallot courgette tatsoi pea sprouts fava bean collard greens dandelion okra wakame tomato.'
61 | },
62 | {
63 | author: 'Zoe Mitchel 2',
64 | rating: 4.3,
65 | date: '3 weeks ago',
66 | title: 'Amazing glasses',
67 | body: 'Love the glasses. Very durable and solid. Definitely bring out the best of me.'
68 | },
69 | {
70 | author: 'Michael Ho 2',
71 | rating: 4.8,
72 | date: '3 weeks ago',
73 | title: 'Best glasses by far',
74 | body: 'Parsley shallot courgette tatsoi pea sprouts fava bean collard greens dandelion okra wakame tomato.'
75 | },
76 |
77 | {
78 | author: 'Ashley N 3',
79 | rating: 1.2,
80 | date: '3 weeks ago',
81 | title: 'Love it!!!',
82 | body: 'Love the glasses. Very durable and solid. Definitely bring out the best of me.'
83 | },
84 | {
85 | author: 'John 3',
86 | rating: 2.5,
87 | date: '3 weeks ago',
88 | title: 'Great quality',
89 | body: 'Parsley shallot courgette tatsoi pea sprouts fava bean collard greens dandelion okra wakame tomato.'
90 | },
91 | {
92 | author: 'Zoe Mitchel 3',
93 | rating: 4.3,
94 | date: '3 weeks ago',
95 | title: 'Amazing glasses',
96 | body: 'Love the glasses. Very durable and solid. Definitely bring out the best of me.'
97 | },
98 | {
99 | author: 'Michael Ho 3',
100 | rating: 4.8,
101 | date: '3 weeks ago',
102 | title: 'Best glasses by far',
103 | body: 'Parsley shallot courgette tatsoi pea sprouts fava bean collard greens dandelion okra wakame tomato.'
104 | },
105 | {
106 | author: 'Michael Ho 4',
107 | rating: 4.8,
108 | date: '3 weeks ago',
109 | title: 'Best glasses by far',
110 | body: 'Parsley shallot courgette tatsoi pea sprouts fava bean collard greens dandelion okra wakame tomato.'
111 | }
112 | ]
113 |
--------------------------------------------------------------------------------
/src/images/rating.svg:
--------------------------------------------------------------------------------
1 |
16 |
--------------------------------------------------------------------------------
/src/components/form.tsx:
--------------------------------------------------------------------------------
1 | /* eslint-disable no-unused-vars */
2 | import React, { Fragment, SyntheticEvent } from 'react'
3 |
4 | import type { IData } from '../Reviews'
5 |
6 | interface IProps {
7 | data: IData
8 | handleRating: (e: SyntheticEvent) => void
9 | handleName: (e: SyntheticEvent) => void
10 | handleEmail: (e: SyntheticEvent) => void
11 | handleTitle: (e: SyntheticEvent) => void
12 | handleReview: (e: SyntheticEvent) => void
13 | handleCheck: (e: SyntheticEvent) => void
14 | handleSubmit: (e: SyntheticEvent) => void
15 | }
16 |
17 | export const Form = (props: IProps) => {
18 | const {
19 | data,
20 | handleRating,
21 | handleName,
22 | handleEmail,
23 | handleTitle,
24 | handleReview,
25 | handleCheck,
26 | handleSubmit
27 | } = props
28 |
29 | const starSvg = (
30 |
42 | )
43 |
44 | const starsData = [
45 | { ariaLabel: 'Poor' },
46 | { ariaLabel: 'Quite good' },
47 | { ariaLabel: 'Average' },
48 | { ariaLabel: 'Very good' },
49 | { ariaLabel: 'Perfection' }
50 | ]
51 |
52 | const starsRender = starsData.map((star, index) => {
53 | return (
54 |
55 |
65 |
68 |
69 | )
70 | })
71 |
72 | return (
73 |
172 | )
173 | }
174 |
--------------------------------------------------------------------------------
/src/Reviews.tsx:
--------------------------------------------------------------------------------
1 | import './styles/Reviews.scss'
2 |
3 | import React, {
4 | FC,
5 | KeyboardEvent,
6 | SyntheticEvent,
7 | useEffect,
8 | useRef,
9 | useState
10 | } from 'react'
11 |
12 | import {
13 | AverageRating,
14 | Cards,
15 | FailMessage,
16 | Form,
17 | Pagination,
18 | SuccessMessage
19 | } from './components/'
20 | import type { ICardsData, IProductData } from './data/data'
21 | import { log, randomRating } from './helpers/helpers'
22 |
23 | export interface IData {
24 | name: string
25 | email: string
26 | title: string
27 | review: string
28 | rating: string
29 | }
30 |
31 | interface IProps {
32 | cardsData: ICardsData[]
33 | productData: IProductData
34 | }
35 |
36 | const Reviews: FC = (props: IProps) => {
37 | const { cardsData, productData } = props
38 | const [currentBlock, setCurrentBlock] = useState('')
39 | const [currentPage, setCurrentPage] = useState(1)
40 | const [currentCardsOnPage, setCurrentCards] = useState([])
41 | const [countPages, setCountPages] = useState(0)
42 | const [isChecked, setChecked] = useState(false)
43 | const [data, setData] = useState({
44 | name: '',
45 | email: '',
46 | title: '',
47 | review: '',
48 | rating: '5'
49 | })
50 | const currentNumRef = useRef(null)
51 | let cardsOnPage = 4
52 |
53 | useEffect(() => {
54 | if (window.innerWidth < 768) {
55 | cardsOnPage = 2
56 | }
57 |
58 | setCountPages(Math.ceil(cardsData.length / cardsOnPage))
59 | displayCurrentCards((currentPage - 1) * cardsOnPage)
60 | setFocusOnCurrentPage()
61 | }, [currentPage])
62 |
63 | const displayCurrentCards = (step: number) => {
64 | setCurrentCards([...cardsData].slice(0 + step, cardsOnPage + step))
65 | }
66 |
67 | const setFocusOnCurrentPage = () => {
68 | if (currentNumRef.current) {
69 | currentNumRef.current.focus()
70 | }
71 | }
72 |
73 | const setForm = () => {
74 | setCurrentBlock('form')
75 | }
76 |
77 | const handleCancel = () => {
78 | setCurrentBlock('')
79 | }
80 |
81 | const handleRating = (e: SyntheticEvent) => {
82 | e.persist()
83 | const input = e.target as HTMLInputElement
84 | setData((state) => ({ ...state, rating: input.value }))
85 | }
86 |
87 | const handleName = (e: SyntheticEvent) => {
88 | e.persist()
89 | const input = e.target as HTMLInputElement
90 | input.value = cleanUpString(input.value)
91 | setData((state) => ({ ...state, name: input.value }))
92 | }
93 |
94 | const handleEmail = (e: SyntheticEvent) => {
95 | e.persist()
96 | const input = e.target as HTMLInputElement
97 | input.value = cleanUpString(input.value, true)
98 | setData((state) => ({ ...state, email: input.value }))
99 | }
100 |
101 | const handleTitle = (e: SyntheticEvent) => {
102 | e.persist()
103 | const input = e.target as HTMLInputElement
104 | input.value = cleanUpString(input.value)
105 | setData((state) => ({ ...state, title: input.value }))
106 | }
107 |
108 | const handleReview = (e: SyntheticEvent) => {
109 | e.persist()
110 | const input = e.target as HTMLInputElement
111 | input.value = cleanUpString(input.value)
112 | setData((state) => ({ ...state, review: input.value }))
113 | }
114 |
115 | const cleanUpString = (str: string, email: boolean = false) => {
116 | if (email) {
117 | // eslint-disable-next-line no-useless-escape
118 | return str.replace(/[^\w\d\.!#$%&'@*+/=?^_`{|}~-]/g, '')
119 | }
120 |
121 | // eslint-disable-next-line no-useless-escape
122 | return str.replace(/[^\w\d\s\.\-,:;_&!'?]+/g, '')
123 | }
124 |
125 | const handleCheck = (e: SyntheticEvent) => {
126 | setChecked((e.target as HTMLInputElement).checked)
127 | }
128 |
129 | const handleSubmit = (e: SyntheticEvent) => {
130 | e.preventDefault()
131 | const { rating, name, email, title, review } = data
132 | if (
133 | rating === '0' ||
134 | !name.length ||
135 | !email.length ||
136 | !title.length ||
137 | !review.length ||
138 | !isChecked
139 | ) {
140 | return
141 | }
142 |
143 | log(`rating - ${rating}`, 'log1')
144 | log(`name - ${name}`, 'log2')
145 | log(`email - ${email}`, 'log3')
146 | log(`title - ${title}`, 'log4')
147 | log(`review - ${review}`, 'log5')
148 |
149 | randomRating(1, 10) < 7
150 | ? setCurrentBlock('success-message')
151 | : setCurrentBlock('fail-message')
152 | }
153 |
154 | const nextCardsGroup = () => {
155 | if (currentPage >= countPages) {
156 | return
157 | }
158 | setCurrentPage((prevState) => prevState + 1)
159 | }
160 |
161 | const prevCardsGroup = () => {
162 | if (currentPage < 2) {
163 | return
164 | }
165 | setCurrentPage((prevState) => prevState - 1)
166 | }
167 |
168 | const handleChangePage = (page: number) => {
169 | setCurrentPage(page)
170 | }
171 |
172 | const handleKeyNextCardsGroup = (e: React.KeyboardEvent) => {
173 | e.stopPropagation()
174 |
175 | if (e.key === 'Enter') {
176 | nextCardsGroup()
177 | }
178 | }
179 |
180 | const handleKeyPrevCardsGroup = (e: KeyboardEvent) => {
181 | e.stopPropagation()
182 |
183 | if (e.key === 'Enter') {
184 | prevCardsGroup()
185 | }
186 | }
187 |
188 | const handleKeyChangePage = (e: KeyboardEvent, page: number) => {
189 | e.stopPropagation()
190 |
191 | if (e.key === 'Enter') {
192 | handleChangePage(page)
193 | }
194 | }
195 |
196 | return (
197 |
198 | Customer reviews
199 |
200 |
204 |
208 |
209 | {currentBlock === 'form' ? (
210 |
213 | ) : (
214 |
217 | )}
218 |
219 |
220 | {currentBlock === 'form' && (
221 |
231 | )}
232 |
233 | {currentBlock === 'success-message' && }
234 | {currentBlock === 'fail-message' && }
235 |
236 | {!!currentCardsOnPage.length && }
237 |
238 | {!!currentCardsOnPage.length && productData.numberOfReviews > cardsOnPage && (
239 |
250 | )}
251 |
252 | )
253 | }
254 |
255 | export default Reviews
256 |
--------------------------------------------------------------------------------
/src/styles/Reviews.scss:
--------------------------------------------------------------------------------
1 | @import './base/base.scss';
2 |
3 | .reviews {
4 | display: flex;
5 | flex-direction: column;
6 | max-width: 50rem;
7 | margin: 0 auto;
8 | padding: spacing(lg) spacing(xs);
9 | border-top: 1px solid $keyline-grey;
10 |
11 | h2 {
12 | margin: 0 0 spacing(md);
13 | text-align: center;
14 | color: $grey;
15 | font-size: 1.5rem;
16 | font-weight: 600;
17 | line-height: 1.5rem;
18 | }
19 |
20 | h3 {
21 | margin: 0 0 spacing(xs);
22 | text-align: center;
23 | color: $grey;
24 | font-size: 1.5rem;
25 | font-weight: 400;
26 | line-height: 1.375rem;
27 |
28 | @include breakpoint(sm) {
29 | text-align: left;
30 | }
31 | }
32 |
33 | h4 {
34 | margin: 0 0 spacing(3xs);
35 | text-align: center;
36 | color: $grey;
37 | font-size: 1.625rem;
38 | font-weight: 500;
39 | line-height: 2rem;
40 | }
41 |
42 | &__top {
43 | display: flex;
44 | align-items: center;
45 | flex-direction: column;
46 | justify-content: space-between;
47 |
48 | @include breakpoint(sm) {
49 | flex-direction: row;
50 | }
51 | }
52 |
53 | &__top-border {
54 | padding-bottom: spacing(md);
55 | border-bottom: 1px solid $keyline-grey;
56 | }
57 |
58 | &__rating-container {
59 | margin: 0 auto spacing(md);
60 |
61 | @include breakpoint(sm) {
62 | margin: 0;
63 | }
64 | }
65 |
66 | &__rating {
67 | display: flex;
68 | align-items: center;
69 | flex-flow: row wrap;
70 | }
71 |
72 | &__grade {
73 | width: 100%;
74 | margin: 0;
75 | text-align: center;
76 | color: $grey;
77 | font-size: 2.1875rem;
78 | font-weight: 500;
79 | line-height: 2.75rem;
80 |
81 | @include breakpoint(sm) {
82 | width: auto;
83 | padding-right: spacing(2xs);
84 | border-right: 1px solid $keyline-grey;
85 | }
86 | }
87 |
88 | &__stars-rating {
89 | position: absolute;
90 | overflow: hidden;
91 | width: 0;
92 | height: 2rem;
93 | background-image: url('../images/rating.svg');
94 | background-repeat: no-repeat;
95 | background-size: 10rem auto;
96 | }
97 |
98 | &__stars-container {
99 | position: relative;
100 | display: inline-block;
101 | width: 10rem;
102 | height: 2rem;
103 | margin-left: auto;
104 | background-image: url('../images/rating-empty.svg');
105 | background-repeat: no-repeat;
106 | background-size: 10rem auto;
107 |
108 | @include breakpoint(sm) {
109 | margin-left: 0;
110 | }
111 | }
112 |
113 | &__info {
114 | display: inline;
115 | margin: 0 auto 0 spacing(3xs);
116 | white-space: nowrap;
117 | color: $light-grey;
118 | font-size: 0.75rem;
119 | line-height: 1rem;
120 |
121 | @include breakpoint(sm) {
122 | margin: 0 0 0 spacing(3xs);
123 | }
124 | }
125 |
126 | &__button {
127 | width: 100%;
128 | height: 4rem;
129 | margin: 0 auto;
130 |
131 | @include breakpoint(sm) {
132 | width: 12rem;
133 | margin-right: 0;
134 | }
135 | }
136 |
137 | &__message {
138 | display: flex;
139 | flex-direction: column;
140 | margin-top: spacing(lg);
141 | }
142 |
143 | &__icon {
144 | margin: spacing(lg) auto 0;
145 | font-size: 4rem;
146 | }
147 |
148 | &__text {
149 | margin-bottom: 0;
150 | text-align: center;
151 | color: $light-grey;
152 | font-size: 1rem;
153 | line-height: 1.5rem;
154 | }
155 |
156 | .form {
157 | display: flex;
158 | flex-direction: column;
159 | margin-top: spacing(sm);
160 |
161 | @include breakpoint(sm) {
162 | margin-top: spacing(md);
163 | }
164 |
165 | &__input-container {
166 | position: relative;
167 | width: 100%;
168 | margin: 0 auto;
169 |
170 | @include breakpoint(sm) {
171 | max-width: 34.875rem;
172 | }
173 |
174 | &:last-of-type {
175 | margin-bottom: spacing(md);
176 | }
177 | }
178 |
179 | h5,
180 | &__name-label,
181 | &__email-label,
182 | &__title-label,
183 | &__textarea-label {
184 | margin: 0;
185 | color: $grey;
186 | font-size: 0.875rem;
187 | font-weight: 400;
188 | line-height: 1.75rem;
189 | }
190 |
191 | &__stars {
192 | display: inline-flex;
193 | align-items: center;
194 | flex-direction: row-reverse;
195 | justify-content: center;
196 | margin-bottom: spacing(sm);
197 | font-size: 2rem;
198 |
199 | .form__star-label {
200 | cursor: pointer;
201 | border-bottom: 1px solid transparent;
202 | transition: box-shadow .15s,transform .15s;
203 | }
204 | }
205 |
206 | &__star-input {
207 | clip: rect(1px, 1px, 1px, 1px);
208 | padding: 0;
209 | margin: 0;
210 | border: 0;
211 | height: 1px;
212 | width: 1px;
213 | overflow: hidden;
214 | border-bottom: 1px solid transparent;
215 | opacity: 0;
216 | }
217 |
218 | &__star-label:hover,
219 | &__star-input:checked ~ .form__star-label svg {
220 | fill: $blue;
221 |
222 | & ~ .form__star-label svg {
223 | fill: $blue;
224 | }
225 | }
226 |
227 | &__star-input:focus + .form__star-label {
228 | border-bottom: 1px solid $blue;
229 | }
230 |
231 | &__star-label:hover{
232 | transform: translateY(-2px);
233 | }
234 |
235 | &__star-label:hover svg {
236 | fill: $blue;
237 | }
238 |
239 | &__name-input,
240 | &__email-input,
241 | &__title-input,
242 | textarea {
243 | margin-top: spacing(3xs);
244 | padding: 0 spacing(sm);
245 | border: 1px solid $light-grey-2;
246 | border-radius: 0.25rem;
247 | box-sizing: border-box;
248 |
249 | &::placeholder {
250 | color: $light-grey-3;
251 | font-size: 0.875rem;
252 | line-height: 1.75rem;
253 | }
254 | }
255 |
256 | &__name-input,
257 | &__email-input,
258 | &__title-input {
259 | width: 100%;
260 | height: 3rem;
261 | margin-bottom: spacing(md);
262 | }
263 |
264 | textarea {
265 | width: 100%;
266 | height: 8.25rem;
267 | margin-bottom: spacing(sm);
268 | padding-top: 1rem;
269 | resize: none;
270 | }
271 |
272 | &__name-input:focus-visible,
273 | &__email-input:focus-visible,
274 | &__title-input:focus-visible,
275 | textarea:focus-visible {
276 | outline: 1px solid $blue;
277 | outline-offset: spacing(5xs);
278 | }
279 |
280 | .reviews__button {
281 | width: 100%;
282 | margin: 0 auto;
283 |
284 | @include breakpoint(sm) {
285 | width: 11.75rem;
286 | }
287 | }
288 |
289 | &__checkbox-label {
290 | padding-left: spacing(3xs);
291 | cursor: pointer;
292 | }
293 |
294 | input[type='checkbox'] {
295 | width: 20px;
296 | height: 20px;
297 | }
298 |
299 | input[type='checkbox']:focus-visible {
300 | outline: 1px solid $blue;
301 | outline-offset: 4px;
302 | }
303 |
304 | &__input-container input:invalid:focus,
305 | &__input-container textarea:invalid:focus {
306 | border: 1px solid $red;
307 | }
308 |
309 | input[type='checkbox']:invalid:focus + .form__checkbox-label::before {
310 | border: 1px solid $red;
311 | }
312 | }
313 |
314 | &__cards {
315 | display: flex;
316 | flex-flow: row wrap;
317 | justify-content: center;
318 | padding-top: spacing(lg);
319 |
320 | @include breakpoint(sm) {
321 | margin: spacing(lg) 0;
322 | border-top: 1px solid $keyline-grey;
323 | }
324 | }
325 |
326 | .card {
327 | display: block;
328 | overflow: hidden;
329 | flex: 0 1 100%;
330 | margin: spacing(4xs);
331 | padding: spacing(xs);
332 | border: 1px solid $keyline-grey;
333 | border-radius: 0.25rem;
334 | box-shadow: 1px 3px 6px rgba(0, 0, 0, 0.15);
335 |
336 | @include breakpoint(xs) {
337 | flex: 0 1 calc(50% - 3rem);
338 | }
339 |
340 | @include breakpoint(md) {
341 | flex: 0 1 calc(25% - 3rem);
342 | }
343 |
344 | &__name {
345 | margin: 0 0 spacing(5xs);
346 | text-align: left;
347 | word-break: break-word;
348 | color: $grey;
349 | font-size: 1.25rem;
350 | font-weight: 400;
351 | line-height: 1.75rem;
352 | }
353 |
354 | .reviews__stars-rating {
355 | width: 0;
356 | height: 1rem;
357 | background-size: 5rem auto;
358 | }
359 |
360 | .reviews__stars-container {
361 | width: 5rem;
362 | height: 1rem;
363 | margin-left: 0;
364 | background-size: 5rem auto;
365 | }
366 |
367 | &__rating-container {
368 | display: flex;
369 | align-items: center;
370 | margin: 0 auto spacing(sm);
371 |
372 | @include breakpoint(sm) {
373 | margin: 0 0 spacing(sm);
374 | }
375 | }
376 |
377 | &__title {
378 | margin: 0 0 spacing(3xs);
379 | color: $grey;
380 | font-size: 1rem;
381 | font-weight: 400;
382 | line-height: 1.5rem;
383 | }
384 |
385 | i {
386 | font-style: normal;
387 | }
388 |
389 | &__description {
390 | margin-top: 0;
391 | word-break: break-word;
392 | color: $grey-2;
393 | font-size: 1rem;
394 | font-weight: 300;
395 | line-height: 1.25rem;
396 | }
397 | }
398 |
399 | .pagination {
400 | display: flex;
401 | margin: spacing(sm) 0 0 auto;
402 | padding: 0;
403 | list-style: none;
404 | border: 1px solid $keyline-grey;
405 | border-radius: 0.25rem;
406 |
407 | li {
408 | display: flex;
409 | align-items: center;
410 | justify-content: center;
411 | width: 2.5rem;
412 | padding: spacing(3xs) 0;
413 | cursor: pointer;
414 | border: 1px solid transparent;
415 |
416 | &:not(:last-child) {
417 | border-right: 1px solid $keyline-grey;
418 | }
419 |
420 | &:hover,
421 | &:focus-visible {
422 | border: 1px solid $blue;
423 | }
424 | }
425 |
426 | .active {
427 | font-weight: 700;
428 | }
429 | }
430 | }
431 |
--------------------------------------------------------------------------------
/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/code-frame@^7.14.5":
13 | version "7.14.5"
14 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.14.5.tgz#23b08d740e83f49c5e59945fbf1b43e80bbf4edb"
15 | integrity sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw==
16 | dependencies:
17 | "@babel/highlight" "^7.14.5"
18 |
19 | "@babel/compat-data@^7.14.5":
20 | version "7.14.7"
21 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.14.7.tgz#7b047d7a3a89a67d2258dc61f604f098f1bc7e08"
22 | integrity sha512-nS6dZaISCXJ3+518CWiBfEr//gHyMO02uDxBkXTKZDN5POruCnOZ1N4YBRZDCabwF8nZMWBpRxIicmXtBs+fvw==
23 |
24 | "@babel/core@^7.14.6":
25 | version "7.14.6"
26 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.14.6.tgz#e0814ec1a950032ff16c13a2721de39a8416fcab"
27 | integrity sha512-gJnOEWSqTk96qG5BoIrl5bVtc23DCycmIePPYnamY9RboYdI4nFy5vAQMSl81O5K/W0sLDWfGysnOECC+KUUCA==
28 | dependencies:
29 | "@babel/code-frame" "^7.14.5"
30 | "@babel/generator" "^7.14.5"
31 | "@babel/helper-compilation-targets" "^7.14.5"
32 | "@babel/helper-module-transforms" "^7.14.5"
33 | "@babel/helpers" "^7.14.6"
34 | "@babel/parser" "^7.14.6"
35 | "@babel/template" "^7.14.5"
36 | "@babel/traverse" "^7.14.5"
37 | "@babel/types" "^7.14.5"
38 | convert-source-map "^1.7.0"
39 | debug "^4.1.0"
40 | gensync "^1.0.0-beta.2"
41 | json5 "^2.1.2"
42 | semver "^6.3.0"
43 | source-map "^0.5.0"
44 |
45 | "@babel/generator@^7.14.5":
46 | version "7.14.5"
47 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.5.tgz#848d7b9f031caca9d0cd0af01b063f226f52d785"
48 | integrity sha512-y3rlP+/G25OIX3mYKKIOlQRcqj7YgrvHxOLbVmyLJ9bPmi5ttvUmpydVjcFjZphOktWuA7ovbx91ECloWTfjIA==
49 | dependencies:
50 | "@babel/types" "^7.14.5"
51 | jsesc "^2.5.1"
52 | source-map "^0.5.0"
53 |
54 | "@babel/helper-compilation-targets@^7.14.5":
55 | version "7.14.5"
56 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.14.5.tgz#7a99c5d0967911e972fe2c3411f7d5b498498ecf"
57 | integrity sha512-v+QtZqXEiOnpO6EYvlImB6zCD2Lel06RzOPzmkz/D/XgQiUu3C/Jb1LOqSt/AIA34TYi/Q+KlT8vTQrgdxkbLw==
58 | dependencies:
59 | "@babel/compat-data" "^7.14.5"
60 | "@babel/helper-validator-option" "^7.14.5"
61 | browserslist "^4.16.6"
62 | semver "^6.3.0"
63 |
64 | "@babel/helper-function-name@^7.14.5":
65 | version "7.14.5"
66 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz#89e2c474972f15d8e233b52ee8c480e2cfcd50c4"
67 | integrity sha512-Gjna0AsXWfFvrAuX+VKcN/aNNWonizBj39yGwUzVDVTlMYJMK2Wp6xdpy72mfArFq5uK+NOuexfzZlzI1z9+AQ==
68 | dependencies:
69 | "@babel/helper-get-function-arity" "^7.14.5"
70 | "@babel/template" "^7.14.5"
71 | "@babel/types" "^7.14.5"
72 |
73 | "@babel/helper-get-function-arity@^7.14.5":
74 | version "7.14.5"
75 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz#25fbfa579b0937eee1f3b805ece4ce398c431815"
76 | integrity sha512-I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg==
77 | dependencies:
78 | "@babel/types" "^7.14.5"
79 |
80 | "@babel/helper-hoist-variables@^7.14.5":
81 | version "7.14.5"
82 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz#e0dd27c33a78e577d7c8884916a3e7ef1f7c7f8d"
83 | integrity sha512-R1PXiz31Uc0Vxy4OEOm07x0oSjKAdPPCh3tPivn/Eo8cvz6gveAeuyUUPB21Hoiif0uoPQSSdhIPS3352nvdyQ==
84 | dependencies:
85 | "@babel/types" "^7.14.5"
86 |
87 | "@babel/helper-member-expression-to-functions@^7.14.5":
88 | version "7.14.7"
89 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.14.7.tgz#97e56244beb94211fe277bd818e3a329c66f7970"
90 | integrity sha512-TMUt4xKxJn6ccjcOW7c4hlwyJArizskAhoSTOCkA0uZ+KghIaci0Qg9R043kUMWI9mtQfgny+NQ5QATnZ+paaA==
91 | dependencies:
92 | "@babel/types" "^7.14.5"
93 |
94 | "@babel/helper-module-imports@^7.14.5":
95 | version "7.14.5"
96 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz#6d1a44df6a38c957aa7c312da076429f11b422f3"
97 | integrity sha512-SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ==
98 | dependencies:
99 | "@babel/types" "^7.14.5"
100 |
101 | "@babel/helper-module-transforms@^7.14.5":
102 | version "7.14.5"
103 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.14.5.tgz#7de42f10d789b423eb902ebd24031ca77cb1e10e"
104 | integrity sha512-iXpX4KW8LVODuAieD7MzhNjmM6dzYY5tfRqT+R9HDXWl0jPn/djKmA+G9s/2C2T9zggw5tK1QNqZ70USfedOwA==
105 | dependencies:
106 | "@babel/helper-module-imports" "^7.14.5"
107 | "@babel/helper-replace-supers" "^7.14.5"
108 | "@babel/helper-simple-access" "^7.14.5"
109 | "@babel/helper-split-export-declaration" "^7.14.5"
110 | "@babel/helper-validator-identifier" "^7.14.5"
111 | "@babel/template" "^7.14.5"
112 | "@babel/traverse" "^7.14.5"
113 | "@babel/types" "^7.14.5"
114 |
115 | "@babel/helper-optimise-call-expression@^7.14.5":
116 | version "7.14.5"
117 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz#f27395a8619e0665b3f0364cddb41c25d71b499c"
118 | integrity sha512-IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA==
119 | dependencies:
120 | "@babel/types" "^7.14.5"
121 |
122 | "@babel/helper-plugin-utils@^7.14.5":
123 | version "7.14.5"
124 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz#5ac822ce97eec46741ab70a517971e443a70c5a9"
125 | integrity sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==
126 |
127 | "@babel/helper-replace-supers@^7.14.5":
128 | version "7.14.5"
129 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.14.5.tgz#0ecc0b03c41cd567b4024ea016134c28414abb94"
130 | integrity sha512-3i1Qe9/8x/hCHINujn+iuHy+mMRLoc77b2nI9TB0zjH1hvn9qGlXjWlggdwUcju36PkPCy/lpM7LLUdcTyH4Ow==
131 | dependencies:
132 | "@babel/helper-member-expression-to-functions" "^7.14.5"
133 | "@babel/helper-optimise-call-expression" "^7.14.5"
134 | "@babel/traverse" "^7.14.5"
135 | "@babel/types" "^7.14.5"
136 |
137 | "@babel/helper-simple-access@^7.14.5":
138 | version "7.14.5"
139 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.14.5.tgz#66ea85cf53ba0b4e588ba77fc813f53abcaa41c4"
140 | integrity sha512-nfBN9xvmCt6nrMZjfhkl7i0oTV3yxR4/FztsbOASyTvVcoYd0TRHh7eMLdlEcCqobydC0LAF3LtC92Iwxo0wyw==
141 | dependencies:
142 | "@babel/types" "^7.14.5"
143 |
144 | "@babel/helper-split-export-declaration@^7.14.5":
145 | version "7.14.5"
146 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz#22b23a54ef51c2b7605d851930c1976dd0bc693a"
147 | integrity sha512-hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA==
148 | dependencies:
149 | "@babel/types" "^7.14.5"
150 |
151 | "@babel/helper-validator-identifier@^7.14.5":
152 | version "7.14.5"
153 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.5.tgz#d0f0e277c512e0c938277faa85a3968c9a44c0e8"
154 | integrity sha512-5lsetuxCLilmVGyiLEfoHBRX8UCFD+1m2x3Rj97WrW3V7H3u4RWRXA4evMjImCsin2J2YT0QaVDGf+z8ondbAg==
155 |
156 | "@babel/helper-validator-option@^7.14.5":
157 | version "7.14.5"
158 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz#6e72a1fff18d5dfcb878e1e62f1a021c4b72d5a3"
159 | integrity sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==
160 |
161 | "@babel/helpers@^7.14.6":
162 | version "7.14.6"
163 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.14.6.tgz#5b58306b95f1b47e2a0199434fa8658fa6c21635"
164 | integrity sha512-yesp1ENQBiLI+iYHSJdoZKUtRpfTlL1grDIX9NRlAVppljLw/4tTyYupIB7uIYmC3stW/imAv8EqaKaS/ibmeA==
165 | dependencies:
166 | "@babel/template" "^7.14.5"
167 | "@babel/traverse" "^7.14.5"
168 | "@babel/types" "^7.14.5"
169 |
170 | "@babel/highlight@^7.10.4", "@babel/highlight@^7.14.5":
171 | version "7.14.5"
172 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.5.tgz#6861a52f03966405001f6aa534a01a24d99e8cd9"
173 | integrity sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==
174 | dependencies:
175 | "@babel/helper-validator-identifier" "^7.14.5"
176 | chalk "^2.0.0"
177 | js-tokens "^4.0.0"
178 |
179 | "@babel/parser@^7.14.5", "@babel/parser@^7.14.6", "@babel/parser@^7.14.7":
180 | version "7.14.7"
181 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.7.tgz#6099720c8839ca865a2637e6c85852ead0bdb595"
182 | integrity sha512-X67Z5y+VBJuHB/RjwECp8kSl5uYi0BvRbNeWqkaJCVh+LiTPl19WBUfG627psSgp9rSf6ojuXghQM3ha6qHHdA==
183 |
184 | "@babel/plugin-transform-react-jsx-self@^7.14.5":
185 | version "7.14.5"
186 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.14.5.tgz#703b5d1edccd342179c2a99ee8c7065c2b4403cc"
187 | integrity sha512-M/fmDX6n0cfHK/NLTcPmrfVAORKDhK8tyjDhyxlUjYyPYYO8FRWwuxBA3WBx8kWN/uBUuwGa3s/0+hQ9JIN3Tg==
188 | dependencies:
189 | "@babel/helper-plugin-utils" "^7.14.5"
190 |
191 | "@babel/plugin-transform-react-jsx-source@^7.14.5":
192 | version "7.14.5"
193 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.14.5.tgz#79f728e60e6dbd31a2b860b0bf6c9765918acf1d"
194 | integrity sha512-1TpSDnD9XR/rQ2tzunBVPThF5poaYT9GqP+of8fAtguYuI/dm2RkrMBDemsxtY0XBzvW7nXjYM0hRyKX9QYj7Q==
195 | dependencies:
196 | "@babel/helper-plugin-utils" "^7.14.5"
197 |
198 | "@babel/runtime-corejs3@^7.10.2":
199 | version "7.14.7"
200 | resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.14.7.tgz#0ef292bbce40ca00f874c9724ef175a12476465c"
201 | integrity sha512-Wvzcw4mBYbTagyBVZpAJWI06auSIj033T/yNE0Zn1xcup83MieCddZA7ls3kme17L4NOGBrQ09Q+nKB41RLWBA==
202 | dependencies:
203 | core-js-pure "^3.15.0"
204 | regenerator-runtime "^0.13.4"
205 |
206 | "@babel/runtime@^7.10.2", "@babel/runtime@^7.11.2":
207 | version "7.14.6"
208 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.14.6.tgz#535203bc0892efc7dec60bdc27b2ecf6e409062d"
209 | integrity sha512-/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg==
210 | dependencies:
211 | regenerator-runtime "^0.13.4"
212 |
213 | "@babel/template@^7.14.5":
214 | version "7.14.5"
215 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.14.5.tgz#a9bc9d8b33354ff6e55a9c60d1109200a68974f4"
216 | integrity sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g==
217 | dependencies:
218 | "@babel/code-frame" "^7.14.5"
219 | "@babel/parser" "^7.14.5"
220 | "@babel/types" "^7.14.5"
221 |
222 | "@babel/traverse@^7.14.5":
223 | version "7.14.7"
224 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.7.tgz#64007c9774cfdc3abd23b0780bc18a3ce3631753"
225 | integrity sha512-9vDr5NzHu27wgwejuKL7kIOm4bwEtaPQ4Z6cpCmjSuaRqpH/7xc4qcGEscwMqlkwgcXl6MvqoAjZkQ24uSdIZQ==
226 | dependencies:
227 | "@babel/code-frame" "^7.14.5"
228 | "@babel/generator" "^7.14.5"
229 | "@babel/helper-function-name" "^7.14.5"
230 | "@babel/helper-hoist-variables" "^7.14.5"
231 | "@babel/helper-split-export-declaration" "^7.14.5"
232 | "@babel/parser" "^7.14.7"
233 | "@babel/types" "^7.14.5"
234 | debug "^4.1.0"
235 | globals "^11.1.0"
236 |
237 | "@babel/types@^7.14.5":
238 | version "7.14.5"
239 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.14.5.tgz#3bb997ba829a2104cedb20689c4a5b8121d383ff"
240 | integrity sha512-M/NzBpEL95I5Hh4dwhin5JlE7EzO5PHMAuzjxss3tiOBD46KfQvVedN/3jEPZvdRvtsK2222XfdHogNIttFgcg==
241 | dependencies:
242 | "@babel/helper-validator-identifier" "^7.14.5"
243 | to-fast-properties "^2.0.0"
244 |
245 | "@eslint/eslintrc@^0.4.2":
246 | version "0.4.2"
247 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.2.tgz#f63d0ef06f5c0c57d76c4ab5f63d3835c51b0179"
248 | integrity sha512-8nmGq/4ycLpIwzvhI4tNDmQztZ8sp+hI7cyG8i1nQDhkAbRzHpXPidRAHlNvCZQpJTKw5ItIpMw9RSToGF00mg==
249 | dependencies:
250 | ajv "^6.12.4"
251 | debug "^4.1.1"
252 | espree "^7.3.0"
253 | globals "^13.9.0"
254 | ignore "^4.0.6"
255 | import-fresh "^3.2.1"
256 | js-yaml "^3.13.1"
257 | minimatch "^3.0.4"
258 | strip-json-comments "^3.1.1"
259 |
260 | "@humanwhocodes/config-array@^0.5.0":
261 | version "0.5.0"
262 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.5.0.tgz#1407967d4c6eecd7388f83acf1eaf4d0c6e58ef9"
263 | integrity sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==
264 | dependencies:
265 | "@humanwhocodes/object-schema" "^1.2.0"
266 | debug "^4.1.1"
267 | minimatch "^3.0.4"
268 |
269 | "@humanwhocodes/object-schema@^1.2.0":
270 | version "1.2.0"
271 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz#87de7af9c231826fdd68ac7258f77c429e0e5fcf"
272 | integrity sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w==
273 |
274 | "@nodelib/fs.scandir@2.1.5":
275 | version "2.1.5"
276 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
277 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==
278 | dependencies:
279 | "@nodelib/fs.stat" "2.0.5"
280 | run-parallel "^1.1.9"
281 |
282 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2":
283 | version "2.0.5"
284 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
285 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
286 |
287 | "@nodelib/fs.walk@^1.2.3":
288 | version "1.2.8"
289 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a"
290 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
291 | dependencies:
292 | "@nodelib/fs.scandir" "2.1.5"
293 | fastq "^1.6.0"
294 |
295 | "@rollup/pluginutils@^4.1.0":
296 | version "4.1.0"
297 | resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-4.1.0.tgz#0dcc61c780e39257554feb7f77207dceca13c838"
298 | integrity sha512-TrBhfJkFxA+ER+ew2U2/fHbebhLT/l/2pRk0hfj9KusXUuRXd2v0R58AfaZK9VXDQ4TogOSEmICVrQAA3zFnHQ==
299 | dependencies:
300 | estree-walker "^2.0.1"
301 | picomatch "^2.2.2"
302 |
303 | "@types/json-schema@^7.0.7":
304 | version "7.0.8"
305 | resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.8.tgz#edf1bf1dbf4e04413ca8e5b17b3b7d7d54b59818"
306 | integrity sha512-YSBPTLTVm2e2OoQIDYx8HaeWJ5tTToLH67kXR7zYNGupXMEHa2++G8k+DczX2cFVgalypqtyZIcU19AFcmOpmg==
307 |
308 | "@types/prop-types@*":
309 | version "15.7.4"
310 | resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.4.tgz#fcf7205c25dff795ee79af1e30da2c9790808f11"
311 | integrity sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==
312 |
313 | "@types/react-dom@^17.0.9":
314 | version "17.0.9"
315 | resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-17.0.9.tgz#441a981da9d7be117042e1a6fd3dac4b30f55add"
316 | integrity sha512-wIvGxLfgpVDSAMH5utdL9Ngm5Owu0VsGmldro3ORLXV8CShrL8awVj06NuEXFQ5xyaYfdca7Sgbk/50Ri1GdPg==
317 | dependencies:
318 | "@types/react" "*"
319 |
320 | "@types/react@*", "@types/react@^17.0.14":
321 | version "17.0.14"
322 | resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.14.tgz#f0629761ca02945c4e8fea99b8177f4c5c61fb0f"
323 | integrity sha512-0WwKHUbWuQWOce61UexYuWTGuGY/8JvtUe/dtQ6lR4sZ3UiylHotJeWpf3ArP9+DSGUoLY3wbU59VyMrJps5VQ==
324 | dependencies:
325 | "@types/prop-types" "*"
326 | "@types/scheduler" "*"
327 | csstype "^3.0.2"
328 |
329 | "@types/scheduler@*":
330 | version "0.16.2"
331 | resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39"
332 | integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==
333 |
334 | "@typescript-eslint/eslint-plugin@^4.28.2":
335 | version "4.28.2"
336 | resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.28.2.tgz#7a8320f00141666813d0ae43b49ee8244f7cf92a"
337 | integrity sha512-PGqpLLzHSxq956rzNGasO3GsAPf2lY9lDUBXhS++SKonglUmJypaUtcKzRtUte8CV7nruwnDxtLUKpVxs0wQBw==
338 | dependencies:
339 | "@typescript-eslint/experimental-utils" "4.28.2"
340 | "@typescript-eslint/scope-manager" "4.28.2"
341 | debug "^4.3.1"
342 | functional-red-black-tree "^1.0.1"
343 | regexpp "^3.1.0"
344 | semver "^7.3.5"
345 | tsutils "^3.21.0"
346 |
347 | "@typescript-eslint/experimental-utils@4.28.2":
348 | version "4.28.2"
349 | resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.28.2.tgz#4ebdec06a10888e9326e1d51d81ad52a361bd0b0"
350 | integrity sha512-MwHPsL6qo98RC55IoWWP8/opTykjTp4JzfPu1VfO2Z0MshNP0UZ1GEV5rYSSnZSUI8VD7iHvtIPVGW5Nfh7klQ==
351 | dependencies:
352 | "@types/json-schema" "^7.0.7"
353 | "@typescript-eslint/scope-manager" "4.28.2"
354 | "@typescript-eslint/types" "4.28.2"
355 | "@typescript-eslint/typescript-estree" "4.28.2"
356 | eslint-scope "^5.1.1"
357 | eslint-utils "^3.0.0"
358 |
359 | "@typescript-eslint/parser@^4.28.2":
360 | version "4.28.2"
361 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.28.2.tgz#6aff11bf4b91eb67ca7517962eede951e9e2a15d"
362 | integrity sha512-Q0gSCN51eikAgFGY+gnd5p9bhhCUAl0ERMiDKrTzpSoMYRubdB8MJrTTR/BBii8z+iFwz8oihxd0RAdP4l8w8w==
363 | dependencies:
364 | "@typescript-eslint/scope-manager" "4.28.2"
365 | "@typescript-eslint/types" "4.28.2"
366 | "@typescript-eslint/typescript-estree" "4.28.2"
367 | debug "^4.3.1"
368 |
369 | "@typescript-eslint/scope-manager@4.28.2":
370 | version "4.28.2"
371 | resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.28.2.tgz#451dce90303a3ce283750111495d34c9c204e510"
372 | integrity sha512-MqbypNjIkJFEFuOwPWNDjq0nqXAKZvDNNs9yNseoGBB1wYfz1G0WHC2AVOy4XD7di3KCcW3+nhZyN6zruqmp2A==
373 | dependencies:
374 | "@typescript-eslint/types" "4.28.2"
375 | "@typescript-eslint/visitor-keys" "4.28.2"
376 |
377 | "@typescript-eslint/types@4.28.2":
378 | version "4.28.2"
379 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.28.2.tgz#e6b9e234e0e9a66c4d25bab881661e91478223b5"
380 | integrity sha512-Gr15fuQVd93uD9zzxbApz3wf7ua3yk4ZujABZlZhaxxKY8ojo448u7XTm/+ETpy0V0dlMtj6t4VdDvdc0JmUhA==
381 |
382 | "@typescript-eslint/typescript-estree@4.28.2":
383 | version "4.28.2"
384 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.28.2.tgz#680129b2a285289a15e7c6108c84739adf3a798c"
385 | integrity sha512-86lLstLvK6QjNZjMoYUBMMsULFw0hPHJlk1fzhAVoNjDBuPVxiwvGuPQq3fsBMCxuDJwmX87tM/AXoadhHRljg==
386 | dependencies:
387 | "@typescript-eslint/types" "4.28.2"
388 | "@typescript-eslint/visitor-keys" "4.28.2"
389 | debug "^4.3.1"
390 | globby "^11.0.3"
391 | is-glob "^4.0.1"
392 | semver "^7.3.5"
393 | tsutils "^3.21.0"
394 |
395 | "@typescript-eslint/visitor-keys@4.28.2":
396 | version "4.28.2"
397 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.28.2.tgz#bf56a400857bb68b59b311e6d0a5fbef5c3b5130"
398 | integrity sha512-aT2B4PLyyRDUVUafXzpZFoc0C9t0za4BJAKP5sgWIhG+jHECQZUEjuQSCIwZdiJJ4w4cgu5r3Kh20SOdtEBl0w==
399 | dependencies:
400 | "@typescript-eslint/types" "4.28.2"
401 | eslint-visitor-keys "^2.0.0"
402 |
403 | "@vitejs/plugin-react-refresh@^1.3.5":
404 | version "1.3.5"
405 | resolved "https://registry.yarnpkg.com/@vitejs/plugin-react-refresh/-/plugin-react-refresh-1.3.5.tgz#be47e56d9965423968c8a6b2d62e5014e1e24478"
406 | integrity sha512-7c4ELQMygKw5YFCNMLhDHrt4BOgXmROP65gPax/W43mJPNQaYW8ny1kI/bvCDNuzMqZWSK8uf2tEjPVVBnZ5IQ==
407 | dependencies:
408 | "@babel/core" "^7.14.6"
409 | "@babel/plugin-transform-react-jsx-self" "^7.14.5"
410 | "@babel/plugin-transform-react-jsx-source" "^7.14.5"
411 | "@rollup/pluginutils" "^4.1.0"
412 | react-refresh "^0.10.0"
413 |
414 | acorn-jsx@^5.3.1:
415 | version "5.3.2"
416 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
417 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
418 |
419 | acorn@^7.4.0:
420 | version "7.4.1"
421 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
422 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
423 |
424 | ajv@^6.10.0, ajv@^6.12.4:
425 | version "6.12.6"
426 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
427 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
428 | dependencies:
429 | fast-deep-equal "^3.1.1"
430 | fast-json-stable-stringify "^2.0.0"
431 | json-schema-traverse "^0.4.1"
432 | uri-js "^4.2.2"
433 |
434 | ajv@^8.0.1:
435 | version "8.6.1"
436 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.6.1.tgz#ae65764bf1edde8cd861281cda5057852364a295"
437 | integrity sha512-42VLtQUOLefAvKFAQIxIZDaThq6om/PrfP0CYk3/vn+y4BMNkKnbli8ON2QCiHov4KkzOSJ/xSoBJdayiiYvVQ==
438 | dependencies:
439 | fast-deep-equal "^3.1.1"
440 | json-schema-traverse "^1.0.0"
441 | require-from-string "^2.0.2"
442 | uri-js "^4.2.2"
443 |
444 | ansi-colors@^4.1.1:
445 | version "4.1.1"
446 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348"
447 | integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==
448 |
449 | ansi-regex@^5.0.0:
450 | version "5.0.0"
451 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75"
452 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==
453 |
454 | ansi-styles@^3.2.1:
455 | version "3.2.1"
456 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
457 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
458 | dependencies:
459 | color-convert "^1.9.0"
460 |
461 | ansi-styles@^4.0.0, ansi-styles@^4.1.0:
462 | version "4.3.0"
463 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
464 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
465 | dependencies:
466 | color-convert "^2.0.1"
467 |
468 | anymatch@~3.1.2:
469 | version "3.1.2"
470 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
471 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
472 | dependencies:
473 | normalize-path "^3.0.0"
474 | picomatch "^2.0.4"
475 |
476 | argparse@^1.0.7:
477 | version "1.0.10"
478 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
479 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
480 | dependencies:
481 | sprintf-js "~1.0.2"
482 |
483 | aria-query@^4.2.2:
484 | version "4.2.2"
485 | resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b"
486 | integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==
487 | dependencies:
488 | "@babel/runtime" "^7.10.2"
489 | "@babel/runtime-corejs3" "^7.10.2"
490 |
491 | array-includes@^3.1.1, array-includes@^3.1.2, array-includes@^3.1.3:
492 | version "3.1.3"
493 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.3.tgz#c7f619b382ad2afaf5326cddfdc0afc61af7690a"
494 | integrity sha512-gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A==
495 | dependencies:
496 | call-bind "^1.0.2"
497 | define-properties "^1.1.3"
498 | es-abstract "^1.18.0-next.2"
499 | get-intrinsic "^1.1.1"
500 | is-string "^1.0.5"
501 |
502 | array-union@^2.1.0:
503 | version "2.1.0"
504 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
505 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
506 |
507 | array.prototype.flat@^1.2.4:
508 | version "1.2.4"
509 | resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz#6ef638b43312bd401b4c6199fdec7e2dc9e9a123"
510 | integrity sha512-4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg==
511 | dependencies:
512 | call-bind "^1.0.0"
513 | define-properties "^1.1.3"
514 | es-abstract "^1.18.0-next.1"
515 |
516 | array.prototype.flatmap@^1.2.4:
517 | version "1.2.4"
518 | resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.4.tgz#94cfd47cc1556ec0747d97f7c7738c58122004c9"
519 | integrity sha512-r9Z0zYoxqHz60vvQbWEdXIEtCwHF0yxaWfno9qzXeNHvfyl3BZqygmGzb84dsubyaXLH4husF+NFgMSdpZhk2Q==
520 | dependencies:
521 | call-bind "^1.0.0"
522 | define-properties "^1.1.3"
523 | es-abstract "^1.18.0-next.1"
524 | function-bind "^1.1.1"
525 |
526 | ast-types-flow@^0.0.7:
527 | version "0.0.7"
528 | resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"
529 | integrity sha1-9wtzXGvKGlycItmCw+Oef+ujva0=
530 |
531 | astral-regex@^2.0.0:
532 | version "2.0.0"
533 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31"
534 | integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==
535 |
536 | axe-core@^4.0.2:
537 | version "4.2.3"
538 | resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.2.3.tgz#2a3afc332f0031b42f602f4a3de03c211ca98f72"
539 | integrity sha512-pXnVMfJKSIWU2Ml4JHP7pZEPIrgBO1Fd3WGx+fPBsS+KRGhE4vxooD8XBGWbQOIVSZsVK7pUDBBkCicNu80yzQ==
540 |
541 | axobject-query@^2.2.0:
542 | version "2.2.0"
543 | resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be"
544 | integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==
545 |
546 | balanced-match@^1.0.0:
547 | version "1.0.2"
548 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
549 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
550 |
551 | binary-extensions@^2.0.0:
552 | version "2.2.0"
553 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d"
554 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==
555 |
556 | brace-expansion@^1.1.7:
557 | version "1.1.11"
558 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
559 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
560 | dependencies:
561 | balanced-match "^1.0.0"
562 | concat-map "0.0.1"
563 |
564 | braces@^3.0.1, braces@~3.0.2:
565 | version "3.0.2"
566 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
567 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
568 | dependencies:
569 | fill-range "^7.0.1"
570 |
571 | browserslist@^4.16.6:
572 | version "4.16.6"
573 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.6.tgz#d7901277a5a88e554ed305b183ec9b0c08f66fa2"
574 | integrity sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==
575 | dependencies:
576 | caniuse-lite "^1.0.30001219"
577 | colorette "^1.2.2"
578 | electron-to-chromium "^1.3.723"
579 | escalade "^3.1.1"
580 | node-releases "^1.1.71"
581 |
582 | buffer-from@^1.0.0:
583 | version "1.1.1"
584 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef"
585 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==
586 |
587 | call-bind@^1.0.0, call-bind@^1.0.2:
588 | version "1.0.2"
589 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
590 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
591 | dependencies:
592 | function-bind "^1.1.1"
593 | get-intrinsic "^1.0.2"
594 |
595 | callsites@^3.0.0:
596 | version "3.1.0"
597 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
598 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
599 |
600 | caniuse-lite@^1.0.30001219:
601 | version "1.0.30001243"
602 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001243.tgz#d9250155c91e872186671c523f3ae50cfc94a3aa"
603 | integrity sha512-vNxw9mkTBtkmLFnJRv/2rhs1yufpDfCkBZexG3Y0xdOH2Z/eE/85E4Dl5j1YUN34nZVsSp6vVRFQRrez9wJMRA==
604 |
605 | chalk@^2.0.0:
606 | version "2.4.2"
607 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
608 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
609 | dependencies:
610 | ansi-styles "^3.2.1"
611 | escape-string-regexp "^1.0.5"
612 | supports-color "^5.3.0"
613 |
614 | chalk@^4.0.0:
615 | version "4.1.1"
616 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.1.tgz#c80b3fab28bf6371e6863325eee67e618b77e6ad"
617 | integrity sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==
618 | dependencies:
619 | ansi-styles "^4.1.0"
620 | supports-color "^7.1.0"
621 |
622 | "chokidar@>=3.0.0 <4.0.0":
623 | version "3.5.3"
624 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd"
625 | integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==
626 | dependencies:
627 | anymatch "~3.1.2"
628 | braces "~3.0.2"
629 | glob-parent "~5.1.2"
630 | is-binary-path "~2.1.0"
631 | is-glob "~4.0.1"
632 | normalize-path "~3.0.0"
633 | readdirp "~3.6.0"
634 | optionalDependencies:
635 | fsevents "~2.3.2"
636 |
637 | color-convert@^1.9.0:
638 | version "1.9.3"
639 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
640 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
641 | dependencies:
642 | color-name "1.1.3"
643 |
644 | color-convert@^2.0.1:
645 | version "2.0.1"
646 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
647 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
648 | dependencies:
649 | color-name "~1.1.4"
650 |
651 | color-name@1.1.3:
652 | version "1.1.3"
653 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
654 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
655 |
656 | color-name@~1.1.4:
657 | version "1.1.4"
658 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
659 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
660 |
661 | colorette@^1.2.2:
662 | version "1.2.2"
663 | resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94"
664 | integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==
665 |
666 | concat-map@0.0.1:
667 | version "0.0.1"
668 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
669 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
670 |
671 | concat-stream@^1.4.7:
672 | version "1.6.2"
673 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"
674 | integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==
675 | dependencies:
676 | buffer-from "^1.0.0"
677 | inherits "^2.0.3"
678 | readable-stream "^2.2.2"
679 | typedarray "^0.0.6"
680 |
681 | convert-source-map@^1.7.0:
682 | version "1.8.0"
683 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369"
684 | integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==
685 | dependencies:
686 | safe-buffer "~5.1.1"
687 |
688 | core-js-pure@^3.15.0:
689 | version "3.15.2"
690 | resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.15.2.tgz#c8e0874822705f3385d3197af9348f7c9ae2e3ce"
691 | integrity sha512-D42L7RYh1J2grW8ttxoY1+17Y4wXZeKe7uyplAI3FkNQyI5OgBIAjUfFiTPfL1rs0qLpxaabITNbjKl1Sp82tA==
692 |
693 | core-util-is@~1.0.0:
694 | version "1.0.2"
695 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
696 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
697 |
698 | cross-spawn@^5.0.1:
699 | version "5.1.0"
700 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
701 | integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=
702 | dependencies:
703 | lru-cache "^4.0.1"
704 | shebang-command "^1.2.0"
705 | which "^1.2.9"
706 |
707 | cross-spawn@^7.0.2:
708 | version "7.0.3"
709 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
710 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
711 | dependencies:
712 | path-key "^3.1.0"
713 | shebang-command "^2.0.0"
714 | which "^2.0.1"
715 |
716 | csstype@^3.0.2:
717 | version "3.0.8"
718 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.8.tgz#d2266a792729fb227cd216fb572f43728e1ad340"
719 | integrity sha512-jXKhWqXPmlUeoQnF/EhTtTl4C9SnrxSH/jZUih3jmO6lBKr99rP3/+FmrMj4EFpOXzMtXHAZkd3x0E6h6Fgflw==
720 |
721 | damerau-levenshtein@^1.0.6:
722 | version "1.0.7"
723 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.7.tgz#64368003512a1a6992593741a09a9d31a836f55d"
724 | integrity sha512-VvdQIPGdWP0SqFXghj79Wf/5LArmreyMsGLa6FG6iC4t3j7j5s71TrwWmT/4akbDQIqjfACkLZmjXhA7g2oUZw==
725 |
726 | debug@^2.6.9:
727 | version "2.6.9"
728 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
729 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
730 | dependencies:
731 | ms "2.0.0"
732 |
733 | debug@^3.2.7:
734 | version "3.2.7"
735 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a"
736 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==
737 | dependencies:
738 | ms "^2.1.1"
739 |
740 | debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1:
741 | version "4.3.2"
742 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b"
743 | integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==
744 | dependencies:
745 | ms "2.1.2"
746 |
747 | deep-is@^0.1.3:
748 | version "0.1.3"
749 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
750 | integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=
751 |
752 | define-properties@^1.1.3:
753 | version "1.1.3"
754 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
755 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
756 | dependencies:
757 | object-keys "^1.0.12"
758 |
759 | dir-glob@^3.0.1:
760 | version "3.0.1"
761 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
762 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
763 | dependencies:
764 | path-type "^4.0.0"
765 |
766 | doctrine@^2.1.0:
767 | version "2.1.0"
768 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
769 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==
770 | dependencies:
771 | esutils "^2.0.2"
772 |
773 | doctrine@^3.0.0:
774 | version "3.0.0"
775 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961"
776 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
777 | dependencies:
778 | esutils "^2.0.2"
779 |
780 | electron-to-chromium@^1.3.723:
781 | version "1.3.772"
782 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.772.tgz#fd1ed39f9f3149f62f581734e4f026e600369479"
783 | integrity sha512-X/6VRCXWALzdX+RjCtBU6cyg8WZgoxm9YA02COmDOiNJEZ59WkQggDbWZ4t/giHi/3GS+cvdrP6gbLISANAGYA==
784 |
785 | emoji-regex@^8.0.0:
786 | version "8.0.0"
787 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
788 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
789 |
790 | emoji-regex@^9.0.0:
791 | version "9.2.2"
792 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72"
793 | integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==
794 |
795 | enquirer@^2.3.5:
796 | version "2.3.6"
797 | resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d"
798 | integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==
799 | dependencies:
800 | ansi-colors "^4.1.1"
801 |
802 | error-ex@^1.3.1:
803 | version "1.3.2"
804 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
805 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
806 | dependencies:
807 | is-arrayish "^0.2.1"
808 |
809 | es-abstract@^1.18.0-next.1, es-abstract@^1.18.0-next.2, es-abstract@^1.18.2:
810 | version "1.18.3"
811 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.3.tgz#25c4c3380a27aa203c44b2b685bba94da31b63e0"
812 | integrity sha512-nQIr12dxV7SSxE6r6f1l3DtAeEYdsGpps13dR0TwJg1S8gyp4ZPgy3FZcHBgbiQqnoqSTb+oC+kO4UQ0C/J8vw==
813 | dependencies:
814 | call-bind "^1.0.2"
815 | es-to-primitive "^1.2.1"
816 | function-bind "^1.1.1"
817 | get-intrinsic "^1.1.1"
818 | has "^1.0.3"
819 | has-symbols "^1.0.2"
820 | is-callable "^1.2.3"
821 | is-negative-zero "^2.0.1"
822 | is-regex "^1.1.3"
823 | is-string "^1.0.6"
824 | object-inspect "^1.10.3"
825 | object-keys "^1.1.1"
826 | object.assign "^4.1.2"
827 | string.prototype.trimend "^1.0.4"
828 | string.prototype.trimstart "^1.0.4"
829 | unbox-primitive "^1.0.1"
830 |
831 | es-to-primitive@^1.2.1:
832 | version "1.2.1"
833 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
834 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
835 | dependencies:
836 | is-callable "^1.1.4"
837 | is-date-object "^1.0.1"
838 | is-symbol "^1.0.2"
839 |
840 | esbuild@^0.12.8:
841 | version "0.12.15"
842 | resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.12.15.tgz#9d99cf39aeb2188265c5983e983e236829f08af0"
843 | integrity sha512-72V4JNd2+48eOVCXx49xoSWHgC3/cCy96e7mbXKY+WOWghN00cCmlGnwVLRhRHorvv0dgCyuMYBZlM2xDM5OQw==
844 |
845 | escalade@^3.1.1:
846 | version "3.1.1"
847 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
848 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
849 |
850 | escape-string-regexp@^1.0.5:
851 | version "1.0.5"
852 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
853 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
854 |
855 | escape-string-regexp@^4.0.0:
856 | version "4.0.0"
857 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
858 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
859 |
860 | eslint-config-prettier@^8.3.0:
861 | version "8.3.0"
862 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.3.0.tgz#f7471b20b6fe8a9a9254cc684454202886a2dd7a"
863 | integrity sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==
864 |
865 | eslint-import-resolver-node@^0.3.4:
866 | version "0.3.4"
867 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz#85ffa81942c25012d8231096ddf679c03042c717"
868 | integrity sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==
869 | dependencies:
870 | debug "^2.6.9"
871 | resolve "^1.13.1"
872 |
873 | eslint-module-utils@^2.6.1:
874 | version "2.6.1"
875 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.1.tgz#b51be1e473dd0de1c5ea638e22429c2490ea8233"
876 | integrity sha512-ZXI9B8cxAJIH4nfkhTwcRTEAnrVfobYqwjWy/QMCZ8rHkZHFjf9yO4BzpiF9kCSfNlMG54eKigISHpX0+AaT4A==
877 | dependencies:
878 | debug "^3.2.7"
879 | pkg-dir "^2.0.0"
880 |
881 | eslint-plugin-import@^2.23.4:
882 | version "2.23.4"
883 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.23.4.tgz#8dceb1ed6b73e46e50ec9a5bb2411b645e7d3d97"
884 | integrity sha512-6/wP8zZRsnQFiR3iaPFgh5ImVRM1WN5NUWfTIRqwOdeiGJlBcSk82o1FEVq8yXmy4lkIzTo7YhHCIxlU/2HyEQ==
885 | dependencies:
886 | array-includes "^3.1.3"
887 | array.prototype.flat "^1.2.4"
888 | debug "^2.6.9"
889 | doctrine "^2.1.0"
890 | eslint-import-resolver-node "^0.3.4"
891 | eslint-module-utils "^2.6.1"
892 | find-up "^2.0.0"
893 | has "^1.0.3"
894 | is-core-module "^2.4.0"
895 | minimatch "^3.0.4"
896 | object.values "^1.1.3"
897 | pkg-up "^2.0.0"
898 | read-pkg-up "^3.0.0"
899 | resolve "^1.20.0"
900 | tsconfig-paths "^3.9.0"
901 |
902 | eslint-plugin-jsx-a11y@^6.4.1:
903 | version "6.4.1"
904 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.1.tgz#a2d84caa49756942f42f1ffab9002436391718fd"
905 | integrity sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==
906 | dependencies:
907 | "@babel/runtime" "^7.11.2"
908 | aria-query "^4.2.2"
909 | array-includes "^3.1.1"
910 | ast-types-flow "^0.0.7"
911 | axe-core "^4.0.2"
912 | axobject-query "^2.2.0"
913 | damerau-levenshtein "^1.0.6"
914 | emoji-regex "^9.0.0"
915 | has "^1.0.3"
916 | jsx-ast-utils "^3.1.0"
917 | language-tags "^1.0.5"
918 |
919 | eslint-plugin-prettier@^3.4.0:
920 | version "3.4.0"
921 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.4.0.tgz#cdbad3bf1dbd2b177e9825737fe63b476a08f0c7"
922 | integrity sha512-UDK6rJT6INSfcOo545jiaOwB701uAIt2/dR7WnFQoGCVl1/EMqdANBmwUaqqQ45aXprsTGzSa39LI1PyuRBxxw==
923 | dependencies:
924 | prettier-linter-helpers "^1.0.0"
925 |
926 | eslint-plugin-react@^7.24.0:
927 | version "7.24.0"
928 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.24.0.tgz#eadedfa351a6f36b490aa17f4fa9b14e842b9eb4"
929 | integrity sha512-KJJIx2SYx7PBx3ONe/mEeMz4YE0Lcr7feJTCMyyKb/341NcjuAgim3Acgan89GfPv7nxXK2+0slu0CWXYM4x+Q==
930 | dependencies:
931 | array-includes "^3.1.3"
932 | array.prototype.flatmap "^1.2.4"
933 | doctrine "^2.1.0"
934 | has "^1.0.3"
935 | jsx-ast-utils "^2.4.1 || ^3.0.0"
936 | minimatch "^3.0.4"
937 | object.entries "^1.1.4"
938 | object.fromentries "^2.0.4"
939 | object.values "^1.1.4"
940 | prop-types "^15.7.2"
941 | resolve "^2.0.0-next.3"
942 | string.prototype.matchall "^4.0.5"
943 |
944 | eslint-plugin-simple-import-sort@^7.0.0:
945 | version "7.0.0"
946 | resolved "https://registry.yarnpkg.com/eslint-plugin-simple-import-sort/-/eslint-plugin-simple-import-sort-7.0.0.tgz#a1dad262f46d2184a90095a60c66fef74727f0f8"
947 | integrity sha512-U3vEDB5zhYPNfxT5TYR7u01dboFZp+HNpnGhkDB2g/2E4wZ/g1Q9Ton8UwCLfRV9yAKyYqDh62oHOamvkFxsvw==
948 |
949 | eslint-scope@^5.1.1:
950 | version "5.1.1"
951 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c"
952 | integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==
953 | dependencies:
954 | esrecurse "^4.3.0"
955 | estraverse "^4.1.1"
956 |
957 | eslint-utils@^2.1.0:
958 | version "2.1.0"
959 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27"
960 | integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==
961 | dependencies:
962 | eslint-visitor-keys "^1.1.0"
963 |
964 | eslint-utils@^3.0.0:
965 | version "3.0.0"
966 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672"
967 | integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==
968 | dependencies:
969 | eslint-visitor-keys "^2.0.0"
970 |
971 | eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0:
972 | version "1.3.0"
973 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e"
974 | integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==
975 |
976 | eslint-visitor-keys@^2.0.0:
977 | version "2.1.0"
978 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303"
979 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
980 |
981 | eslint@^7.30.0:
982 | version "7.30.0"
983 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.30.0.tgz#6d34ab51aaa56112fd97166226c9a97f505474f8"
984 | integrity sha512-VLqz80i3as3NdloY44BQSJpFw534L9Oh+6zJOUaViV4JPd+DaHwutqP7tcpkW3YiXbK6s05RZl7yl7cQn+lijg==
985 | dependencies:
986 | "@babel/code-frame" "7.12.11"
987 | "@eslint/eslintrc" "^0.4.2"
988 | "@humanwhocodes/config-array" "^0.5.0"
989 | ajv "^6.10.0"
990 | chalk "^4.0.0"
991 | cross-spawn "^7.0.2"
992 | debug "^4.0.1"
993 | doctrine "^3.0.0"
994 | enquirer "^2.3.5"
995 | escape-string-regexp "^4.0.0"
996 | eslint-scope "^5.1.1"
997 | eslint-utils "^2.1.0"
998 | eslint-visitor-keys "^2.0.0"
999 | espree "^7.3.1"
1000 | esquery "^1.4.0"
1001 | esutils "^2.0.2"
1002 | fast-deep-equal "^3.1.3"
1003 | file-entry-cache "^6.0.1"
1004 | functional-red-black-tree "^1.0.1"
1005 | glob-parent "^5.1.2"
1006 | globals "^13.6.0"
1007 | ignore "^4.0.6"
1008 | import-fresh "^3.0.0"
1009 | imurmurhash "^0.1.4"
1010 | is-glob "^4.0.0"
1011 | js-yaml "^3.13.1"
1012 | json-stable-stringify-without-jsonify "^1.0.1"
1013 | levn "^0.4.1"
1014 | lodash.merge "^4.6.2"
1015 | minimatch "^3.0.4"
1016 | natural-compare "^1.4.0"
1017 | optionator "^0.9.1"
1018 | progress "^2.0.0"
1019 | regexpp "^3.1.0"
1020 | semver "^7.2.1"
1021 | strip-ansi "^6.0.0"
1022 | strip-json-comments "^3.1.0"
1023 | table "^6.0.9"
1024 | text-table "^0.2.0"
1025 | v8-compile-cache "^2.0.3"
1026 |
1027 | espree@^7.3.0, espree@^7.3.1:
1028 | version "7.3.1"
1029 | resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6"
1030 | integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==
1031 | dependencies:
1032 | acorn "^7.4.0"
1033 | acorn-jsx "^5.3.1"
1034 | eslint-visitor-keys "^1.3.0"
1035 |
1036 | esprima@^4.0.0:
1037 | version "4.0.1"
1038 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
1039 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
1040 |
1041 | esquery@^1.4.0:
1042 | version "1.4.0"
1043 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
1044 | integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
1045 | dependencies:
1046 | estraverse "^5.1.0"
1047 |
1048 | esrecurse@^4.3.0:
1049 | version "4.3.0"
1050 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
1051 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
1052 | dependencies:
1053 | estraverse "^5.2.0"
1054 |
1055 | estraverse@^4.1.1:
1056 | version "4.3.0"
1057 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
1058 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
1059 |
1060 | estraverse@^5.1.0, estraverse@^5.2.0:
1061 | version "5.2.0"
1062 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880"
1063 | integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==
1064 |
1065 | estree-walker@^2.0.1:
1066 | version "2.0.2"
1067 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac"
1068 | integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==
1069 |
1070 | esutils@^2.0.2:
1071 | version "2.0.3"
1072 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
1073 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
1074 |
1075 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
1076 | version "3.1.3"
1077 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
1078 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
1079 |
1080 | fast-diff@^1.1.2:
1081 | version "1.2.0"
1082 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03"
1083 | integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==
1084 |
1085 | fast-glob@^3.1.1:
1086 | version "3.2.7"
1087 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.7.tgz#fd6cb7a2d7e9aa7a7846111e85a196d6b2f766a1"
1088 | integrity sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==
1089 | dependencies:
1090 | "@nodelib/fs.stat" "^2.0.2"
1091 | "@nodelib/fs.walk" "^1.2.3"
1092 | glob-parent "^5.1.2"
1093 | merge2 "^1.3.0"
1094 | micromatch "^4.0.4"
1095 |
1096 | fast-json-stable-stringify@^2.0.0:
1097 | version "2.1.0"
1098 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
1099 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
1100 |
1101 | fast-levenshtein@^2.0.6:
1102 | version "2.0.6"
1103 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
1104 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
1105 |
1106 | fastq@^1.6.0:
1107 | version "1.11.1"
1108 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.11.1.tgz#5d8175aae17db61947f8b162cfc7f63264d22807"
1109 | integrity sha512-HOnr8Mc60eNYl1gzwp6r5RoUyAn5/glBolUzP/Ez6IFVPMPirxn/9phgL6zhOtaTy7ISwPvQ+wT+hfcRZh/bzw==
1110 | dependencies:
1111 | reusify "^1.0.4"
1112 |
1113 | file-entry-cache@^6.0.1:
1114 | version "6.0.1"
1115 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027"
1116 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
1117 | dependencies:
1118 | flat-cache "^3.0.4"
1119 |
1120 | fill-range@^7.0.1:
1121 | version "7.0.1"
1122 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
1123 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
1124 | dependencies:
1125 | to-regex-range "^5.0.1"
1126 |
1127 | find-up@^2.0.0, find-up@^2.1.0:
1128 | version "2.1.0"
1129 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
1130 | integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c=
1131 | dependencies:
1132 | locate-path "^2.0.0"
1133 |
1134 | flat-cache@^3.0.4:
1135 | version "3.0.4"
1136 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11"
1137 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==
1138 | dependencies:
1139 | flatted "^3.1.0"
1140 | rimraf "^3.0.2"
1141 |
1142 | flatted@^3.1.0:
1143 | version "3.2.1"
1144 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.1.tgz#bbef080d95fca6709362c73044a1634f7c6e7d05"
1145 | integrity sha512-OMQjaErSFHmHqZe+PSidH5n8j3O0F2DdnVh8JB4j4eUQ2k6KvB0qGfrKIhapvez5JerBbmWkaLYUYWISaESoXg==
1146 |
1147 | fs.realpath@^1.0.0:
1148 | version "1.0.0"
1149 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1150 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
1151 |
1152 | fsevents@~2.3.2:
1153 | version "2.3.2"
1154 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
1155 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
1156 |
1157 | function-bind@^1.1.1:
1158 | version "1.1.1"
1159 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
1160 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
1161 |
1162 | functional-red-black-tree@^1.0.1:
1163 | version "1.0.1"
1164 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
1165 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=
1166 |
1167 | gensync@^1.0.0-beta.2:
1168 | version "1.0.0-beta.2"
1169 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
1170 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
1171 |
1172 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1:
1173 | version "1.1.1"
1174 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6"
1175 | integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==
1176 | dependencies:
1177 | function-bind "^1.1.1"
1178 | has "^1.0.3"
1179 | has-symbols "^1.0.1"
1180 |
1181 | glob-parent@^5.1.2, glob-parent@~5.1.2:
1182 | version "5.1.2"
1183 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
1184 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
1185 | dependencies:
1186 | is-glob "^4.0.1"
1187 |
1188 | glob@^7.1.3:
1189 | version "7.1.7"
1190 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90"
1191 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==
1192 | dependencies:
1193 | fs.realpath "^1.0.0"
1194 | inflight "^1.0.4"
1195 | inherits "2"
1196 | minimatch "^3.0.4"
1197 | once "^1.3.0"
1198 | path-is-absolute "^1.0.0"
1199 |
1200 | globals@^11.1.0:
1201 | version "11.12.0"
1202 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
1203 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
1204 |
1205 | globals@^13.6.0, globals@^13.9.0:
1206 | version "13.10.0"
1207 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.10.0.tgz#60ba56c3ac2ca845cfbf4faeca727ad9dd204676"
1208 | integrity sha512-piHC3blgLGFjvOuMmWZX60f+na1lXFDhQXBf1UYp2fXPXqvEUbOhNwi6BsQ0bQishwedgnjkwv1d9zKf+MWw3g==
1209 | dependencies:
1210 | type-fest "^0.20.2"
1211 |
1212 | globby@^11.0.3:
1213 | version "11.0.4"
1214 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.4.tgz#2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5"
1215 | integrity sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==
1216 | dependencies:
1217 | array-union "^2.1.0"
1218 | dir-glob "^3.0.1"
1219 | fast-glob "^3.1.1"
1220 | ignore "^5.1.4"
1221 | merge2 "^1.3.0"
1222 | slash "^3.0.0"
1223 |
1224 | graceful-fs@^4.1.2:
1225 | version "4.2.6"
1226 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee"
1227 | integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==
1228 |
1229 | has-bigints@^1.0.1:
1230 | version "1.0.1"
1231 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113"
1232 | integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==
1233 |
1234 | has-flag@^3.0.0:
1235 | version "3.0.0"
1236 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
1237 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
1238 |
1239 | has-flag@^4.0.0:
1240 | version "4.0.0"
1241 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
1242 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
1243 |
1244 | has-symbols@^1.0.1, has-symbols@^1.0.2:
1245 | version "1.0.2"
1246 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423"
1247 | integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==
1248 |
1249 | has@^1.0.3:
1250 | version "1.0.3"
1251 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
1252 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
1253 | dependencies:
1254 | function-bind "^1.1.1"
1255 |
1256 | hosted-git-info@^2.1.4:
1257 | version "2.8.9"
1258 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9"
1259 | integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==
1260 |
1261 | ignore@^4.0.6:
1262 | version "4.0.6"
1263 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
1264 | integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==
1265 |
1266 | ignore@^5.1.4:
1267 | version "5.1.8"
1268 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57"
1269 | integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==
1270 |
1271 | immutable@^4.0.0:
1272 | version "4.0.0"
1273 | resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.0.0.tgz#b86f78de6adef3608395efb269a91462797e2c23"
1274 | integrity sha512-zIE9hX70qew5qTUjSS7wi1iwj/l7+m54KWU247nhM3v806UdGj1yDndXj+IOYxxtW9zyLI+xqFNZjTuDaLUqFw==
1275 |
1276 | import-fresh@^3.0.0, import-fresh@^3.2.1:
1277 | version "3.3.0"
1278 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
1279 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
1280 | dependencies:
1281 | parent-module "^1.0.0"
1282 | resolve-from "^4.0.0"
1283 |
1284 | imurmurhash@^0.1.4:
1285 | version "0.1.4"
1286 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
1287 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=
1288 |
1289 | inflight@^1.0.4:
1290 | version "1.0.6"
1291 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1292 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
1293 | dependencies:
1294 | once "^1.3.0"
1295 | wrappy "1"
1296 |
1297 | inherits@2, inherits@^2.0.3, inherits@~2.0.3:
1298 | version "2.0.4"
1299 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
1300 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
1301 |
1302 | internal-slot@^1.0.3:
1303 | version "1.0.3"
1304 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c"
1305 | integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==
1306 | dependencies:
1307 | get-intrinsic "^1.1.0"
1308 | has "^1.0.3"
1309 | side-channel "^1.0.4"
1310 |
1311 | is-arrayish@^0.2.1:
1312 | version "0.2.1"
1313 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
1314 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
1315 |
1316 | is-bigint@^1.0.1:
1317 | version "1.0.2"
1318 | resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.2.tgz#ffb381442503235ad245ea89e45b3dbff040ee5a"
1319 | integrity sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA==
1320 |
1321 | is-binary-path@~2.1.0:
1322 | version "2.1.0"
1323 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
1324 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
1325 | dependencies:
1326 | binary-extensions "^2.0.0"
1327 |
1328 | is-boolean-object@^1.1.0:
1329 | version "1.1.1"
1330 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.1.tgz#3c0878f035cb821228d350d2e1e36719716a3de8"
1331 | integrity sha512-bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng==
1332 | dependencies:
1333 | call-bind "^1.0.2"
1334 |
1335 | is-callable@^1.1.4, is-callable@^1.2.3:
1336 | version "1.2.3"
1337 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.3.tgz#8b1e0500b73a1d76c70487636f368e519de8db8e"
1338 | integrity sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==
1339 |
1340 | is-core-module@^2.2.0, is-core-module@^2.4.0:
1341 | version "2.4.0"
1342 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.4.0.tgz#8e9fc8e15027b011418026e98f0e6f4d86305cc1"
1343 | integrity sha512-6A2fkfq1rfeQZjxrZJGerpLCTHRNEBiSgnu0+obeJpEPZRUooHgsizvzv0ZjJwOz3iWIHdJtVWJ/tmPr3D21/A==
1344 | dependencies:
1345 | has "^1.0.3"
1346 |
1347 | is-date-object@^1.0.1:
1348 | version "1.0.4"
1349 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.4.tgz#550cfcc03afada05eea3dd30981c7b09551f73e5"
1350 | integrity sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A==
1351 |
1352 | is-extglob@^2.1.1:
1353 | version "2.1.1"
1354 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
1355 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
1356 |
1357 | is-fullwidth-code-point@^3.0.0:
1358 | version "3.0.0"
1359 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
1360 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
1361 |
1362 | is-glob@^4.0.0, is-glob@^4.0.1:
1363 | version "4.0.1"
1364 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"
1365 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==
1366 | dependencies:
1367 | is-extglob "^2.1.1"
1368 |
1369 | is-glob@~4.0.1:
1370 | version "4.0.3"
1371 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
1372 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
1373 | dependencies:
1374 | is-extglob "^2.1.1"
1375 |
1376 | is-negative-zero@^2.0.1:
1377 | version "2.0.1"
1378 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24"
1379 | integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==
1380 |
1381 | is-number-object@^1.0.4:
1382 | version "1.0.5"
1383 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.5.tgz#6edfaeed7950cff19afedce9fbfca9ee6dd289eb"
1384 | integrity sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw==
1385 |
1386 | is-number@^7.0.0:
1387 | version "7.0.0"
1388 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
1389 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
1390 |
1391 | is-regex@^1.1.3:
1392 | version "1.1.3"
1393 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.3.tgz#d029f9aff6448b93ebbe3f33dac71511fdcbef9f"
1394 | integrity sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==
1395 | dependencies:
1396 | call-bind "^1.0.2"
1397 | has-symbols "^1.0.2"
1398 |
1399 | is-string@^1.0.5, is-string@^1.0.6:
1400 | version "1.0.6"
1401 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.6.tgz#3fe5d5992fb0d93404f32584d4b0179a71b54a5f"
1402 | integrity sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==
1403 |
1404 | is-symbol@^1.0.2, is-symbol@^1.0.3:
1405 | version "1.0.4"
1406 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c"
1407 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==
1408 | dependencies:
1409 | has-symbols "^1.0.2"
1410 |
1411 | isarray@~1.0.0:
1412 | version "1.0.0"
1413 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
1414 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=
1415 |
1416 | isexe@^2.0.0:
1417 | version "2.0.0"
1418 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
1419 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
1420 |
1421 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
1422 | version "4.0.0"
1423 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
1424 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
1425 |
1426 | js-yaml@^3.13.1:
1427 | version "3.14.1"
1428 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537"
1429 | integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==
1430 | dependencies:
1431 | argparse "^1.0.7"
1432 | esprima "^4.0.0"
1433 |
1434 | jsesc@^2.5.1:
1435 | version "2.5.2"
1436 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
1437 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
1438 |
1439 | json-parse-better-errors@^1.0.1:
1440 | version "1.0.2"
1441 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
1442 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
1443 |
1444 | json-schema-traverse@^0.4.1:
1445 | version "0.4.1"
1446 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
1447 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
1448 |
1449 | json-schema-traverse@^1.0.0:
1450 | version "1.0.0"
1451 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2"
1452 | integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==
1453 |
1454 | json-stable-stringify-without-jsonify@^1.0.1:
1455 | version "1.0.1"
1456 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
1457 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=
1458 |
1459 | json5@^2.1.2, json5@^2.2.0:
1460 | version "2.2.0"
1461 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3"
1462 | integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==
1463 | dependencies:
1464 | minimist "^1.2.5"
1465 |
1466 | "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.1.0:
1467 | version "3.2.0"
1468 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.2.0.tgz#41108d2cec408c3453c1bbe8a4aae9e1e2bd8f82"
1469 | integrity sha512-EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q==
1470 | dependencies:
1471 | array-includes "^3.1.2"
1472 | object.assign "^4.1.2"
1473 |
1474 | language-subtag-registry@~0.3.2:
1475 | version "0.3.21"
1476 | resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz#04ac218bea46f04cb039084602c6da9e788dd45a"
1477 | integrity sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==
1478 |
1479 | language-tags@^1.0.5:
1480 | version "1.0.5"
1481 | resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a"
1482 | integrity sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=
1483 | dependencies:
1484 | language-subtag-registry "~0.3.2"
1485 |
1486 | levn@^0.4.1:
1487 | version "0.4.1"
1488 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade"
1489 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==
1490 | dependencies:
1491 | prelude-ls "^1.2.1"
1492 | type-check "~0.4.0"
1493 |
1494 | load-json-file@^4.0.0:
1495 | version "4.0.0"
1496 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b"
1497 | integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs=
1498 | dependencies:
1499 | graceful-fs "^4.1.2"
1500 | parse-json "^4.0.0"
1501 | pify "^3.0.0"
1502 | strip-bom "^3.0.0"
1503 |
1504 | locate-path@^2.0.0:
1505 | version "2.0.0"
1506 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
1507 | integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=
1508 | dependencies:
1509 | p-locate "^2.0.0"
1510 | path-exists "^3.0.0"
1511 |
1512 | lodash.clonedeep@^4.5.0:
1513 | version "4.5.0"
1514 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef"
1515 | integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=
1516 |
1517 | lodash.merge@^4.6.2:
1518 | version "4.6.2"
1519 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a"
1520 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==
1521 |
1522 | lodash.truncate@^4.4.2:
1523 | version "4.4.2"
1524 | resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193"
1525 | integrity sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=
1526 |
1527 | loose-envify@^1.1.0, loose-envify@^1.4.0:
1528 | version "1.4.0"
1529 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
1530 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
1531 | dependencies:
1532 | js-tokens "^3.0.0 || ^4.0.0"
1533 |
1534 | lru-cache@^4.0.1:
1535 | version "4.1.5"
1536 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd"
1537 | integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==
1538 | dependencies:
1539 | pseudomap "^1.0.2"
1540 | yallist "^2.1.2"
1541 |
1542 | lru-cache@^6.0.0:
1543 | version "6.0.0"
1544 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
1545 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
1546 | dependencies:
1547 | yallist "^4.0.0"
1548 |
1549 | merge2@^1.3.0:
1550 | version "1.4.1"
1551 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
1552 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
1553 |
1554 | micromatch@^4.0.4:
1555 | version "4.0.4"
1556 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9"
1557 | integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==
1558 | dependencies:
1559 | braces "^3.0.1"
1560 | picomatch "^2.2.3"
1561 |
1562 | minimatch@^3.0.4:
1563 | version "3.0.4"
1564 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
1565 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
1566 | dependencies:
1567 | brace-expansion "^1.1.7"
1568 |
1569 | minimist@^1.2.0, minimist@^1.2.5:
1570 | version "1.2.5"
1571 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
1572 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
1573 |
1574 | ms@2.0.0:
1575 | version "2.0.0"
1576 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
1577 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
1578 |
1579 | ms@2.1.2:
1580 | version "2.1.2"
1581 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
1582 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
1583 |
1584 | ms@^2.1.1:
1585 | version "2.1.3"
1586 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
1587 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
1588 |
1589 | nanoid@^3.1.23:
1590 | version "3.1.23"
1591 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.23.tgz#f744086ce7c2bc47ee0a8472574d5c78e4183a81"
1592 | integrity sha512-FiB0kzdP0FFVGDKlRLEQ1BgDzU87dy5NnzjeW9YZNt+/c3+q82EQDUwniSAUxp/F0gFNI1ZhKU1FqYsMuqZVnw==
1593 |
1594 | natural-compare@^1.4.0:
1595 | version "1.4.0"
1596 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
1597 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=
1598 |
1599 | node-releases@^1.1.71:
1600 | version "1.1.73"
1601 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.73.tgz#dd4e81ddd5277ff846b80b52bb40c49edf7a7b20"
1602 | integrity sha512-uW7fodD6pyW2FZNZnp/Z3hvWKeEW1Y8R1+1CnErE8cXFXzl5blBOoVB41CvMer6P6Q0S5FXDwcHgFd1Wj0U9zg==
1603 |
1604 | normalize-package-data@^2.3.2:
1605 | version "2.5.0"
1606 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
1607 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==
1608 | dependencies:
1609 | hosted-git-info "^2.1.4"
1610 | resolve "^1.10.0"
1611 | semver "2 || 3 || 4 || 5"
1612 | validate-npm-package-license "^3.0.1"
1613 |
1614 | normalize-path@^3.0.0, normalize-path@~3.0.0:
1615 | version "3.0.0"
1616 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
1617 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
1618 |
1619 | object-assign@^4.1.1:
1620 | version "4.1.1"
1621 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
1622 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
1623 |
1624 | object-inspect@^1.10.3, object-inspect@^1.9.0:
1625 | version "1.10.3"
1626 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.10.3.tgz#c2aa7d2d09f50c99375704f7a0adf24c5782d369"
1627 | integrity sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw==
1628 |
1629 | object-keys@^1.0.12, object-keys@^1.1.1:
1630 | version "1.1.1"
1631 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
1632 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
1633 |
1634 | object.assign@^4.1.2:
1635 | version "4.1.2"
1636 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940"
1637 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==
1638 | dependencies:
1639 | call-bind "^1.0.0"
1640 | define-properties "^1.1.3"
1641 | has-symbols "^1.0.1"
1642 | object-keys "^1.1.1"
1643 |
1644 | object.entries@^1.1.4:
1645 | version "1.1.4"
1646 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.4.tgz#43ccf9a50bc5fd5b649d45ab1a579f24e088cafd"
1647 | integrity sha512-h4LWKWE+wKQGhtMjZEBud7uLGhqyLwj8fpHOarZhD2uY3C9cRtk57VQ89ke3moByLXMedqs3XCHzyb4AmA2DjA==
1648 | dependencies:
1649 | call-bind "^1.0.2"
1650 | define-properties "^1.1.3"
1651 | es-abstract "^1.18.2"
1652 |
1653 | object.fromentries@^2.0.4:
1654 | version "2.0.4"
1655 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.4.tgz#26e1ba5c4571c5c6f0890cef4473066456a120b8"
1656 | integrity sha512-EsFBshs5RUUpQEY1D4q/m59kMfz4YJvxuNCJcv/jWwOJr34EaVnG11ZrZa0UHB3wnzV1wx8m58T4hQL8IuNXlQ==
1657 | dependencies:
1658 | call-bind "^1.0.2"
1659 | define-properties "^1.1.3"
1660 | es-abstract "^1.18.0-next.2"
1661 | has "^1.0.3"
1662 |
1663 | object.values@^1.1.3, object.values@^1.1.4:
1664 | version "1.1.4"
1665 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.4.tgz#0d273762833e816b693a637d30073e7051535b30"
1666 | integrity sha512-TnGo7j4XSnKQoK3MfvkzqKCi0nVe/D9I9IjwTNYdb/fxYHpjrluHVOgw0AF6jrRFGMPHdfuidR09tIDiIvnaSg==
1667 | dependencies:
1668 | call-bind "^1.0.2"
1669 | define-properties "^1.1.3"
1670 | es-abstract "^1.18.2"
1671 |
1672 | once@^1.3.0:
1673 | version "1.4.0"
1674 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
1675 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
1676 | dependencies:
1677 | wrappy "1"
1678 |
1679 | optionator@^0.9.1:
1680 | version "0.9.1"
1681 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499"
1682 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
1683 | dependencies:
1684 | deep-is "^0.1.3"
1685 | fast-levenshtein "^2.0.6"
1686 | levn "^0.4.1"
1687 | prelude-ls "^1.2.1"
1688 | type-check "^0.4.0"
1689 | word-wrap "^1.2.3"
1690 |
1691 | os-shim@^0.1.2:
1692 | version "0.1.3"
1693 | resolved "https://registry.yarnpkg.com/os-shim/-/os-shim-0.1.3.tgz#6b62c3791cf7909ea35ed46e17658bb417cb3917"
1694 | integrity sha1-a2LDeRz3kJ6jXtRuF2WLtBfLORc=
1695 |
1696 | p-limit@^1.1.0:
1697 | version "1.3.0"
1698 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
1699 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==
1700 | dependencies:
1701 | p-try "^1.0.0"
1702 |
1703 | p-locate@^2.0.0:
1704 | version "2.0.0"
1705 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
1706 | integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=
1707 | dependencies:
1708 | p-limit "^1.1.0"
1709 |
1710 | p-try@^1.0.0:
1711 | version "1.0.0"
1712 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
1713 | integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=
1714 |
1715 | parent-module@^1.0.0:
1716 | version "1.0.1"
1717 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
1718 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
1719 | dependencies:
1720 | callsites "^3.0.0"
1721 |
1722 | parse-json@^4.0.0:
1723 | version "4.0.0"
1724 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
1725 | integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=
1726 | dependencies:
1727 | error-ex "^1.3.1"
1728 | json-parse-better-errors "^1.0.1"
1729 |
1730 | path-exists@^3.0.0:
1731 | version "3.0.0"
1732 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
1733 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
1734 |
1735 | path-is-absolute@^1.0.0:
1736 | version "1.0.1"
1737 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
1738 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
1739 |
1740 | path-key@^3.1.0:
1741 | version "3.1.1"
1742 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
1743 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
1744 |
1745 | path-parse@^1.0.6:
1746 | version "1.0.7"
1747 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
1748 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
1749 |
1750 | path-type@^3.0.0:
1751 | version "3.0.0"
1752 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"
1753 | integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==
1754 | dependencies:
1755 | pify "^3.0.0"
1756 |
1757 | path-type@^4.0.0:
1758 | version "4.0.0"
1759 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
1760 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
1761 |
1762 | picomatch@^2.0.4, picomatch@^2.2.1:
1763 | version "2.3.1"
1764 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
1765 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
1766 |
1767 | picomatch@^2.2.2, picomatch@^2.2.3:
1768 | version "2.3.0"
1769 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972"
1770 | integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==
1771 |
1772 | pify@^3.0.0:
1773 | version "3.0.0"
1774 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
1775 | integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=
1776 |
1777 | pkg-dir@^2.0.0:
1778 | version "2.0.0"
1779 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b"
1780 | integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=
1781 | dependencies:
1782 | find-up "^2.1.0"
1783 |
1784 | pkg-up@^2.0.0:
1785 | version "2.0.0"
1786 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f"
1787 | integrity sha1-yBmscoBZpGHKscOImivjxJoATX8=
1788 | dependencies:
1789 | find-up "^2.1.0"
1790 |
1791 | postcss@^8.3.5:
1792 | version "8.3.5"
1793 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.3.5.tgz#982216b113412bc20a86289e91eb994952a5b709"
1794 | integrity sha512-NxTuJocUhYGsMiMFHDUkmjSKT3EdH4/WbGF6GCi1NDGk+vbcUTun4fpbOqaPtD8IIsztA2ilZm2DhYCuyN58gA==
1795 | dependencies:
1796 | colorette "^1.2.2"
1797 | nanoid "^3.1.23"
1798 | source-map-js "^0.6.2"
1799 |
1800 | pre-commit@^1.2.2:
1801 | version "1.2.2"
1802 | resolved "https://registry.yarnpkg.com/pre-commit/-/pre-commit-1.2.2.tgz#dbcee0ee9de7235e57f79c56d7ce94641a69eec6"
1803 | integrity sha1-287g7p3nI15X95xW186UZBpp7sY=
1804 | dependencies:
1805 | cross-spawn "^5.0.1"
1806 | spawn-sync "^1.0.15"
1807 | which "1.2.x"
1808 |
1809 | prelude-ls@^1.2.1:
1810 | version "1.2.1"
1811 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
1812 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
1813 |
1814 | prettier-linter-helpers@^1.0.0:
1815 | version "1.0.0"
1816 | resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b"
1817 | integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==
1818 | dependencies:
1819 | fast-diff "^1.1.2"
1820 |
1821 | prettier@^2.3.2:
1822 | version "2.3.2"
1823 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.3.2.tgz#ef280a05ec253712e486233db5c6f23441e7342d"
1824 | integrity sha512-lnJzDfJ66zkMy58OL5/NY5zp70S7Nz6KqcKkXYzn2tMVrNxvbqaBpg7H3qHaLxCJ5lNMsGuM8+ohS7cZrthdLQ==
1825 |
1826 | process-nextick-args@~2.0.0:
1827 | version "2.0.1"
1828 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
1829 | integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
1830 |
1831 | progress@^2.0.0:
1832 | version "2.0.3"
1833 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"
1834 | integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==
1835 |
1836 | prop-types@^15.7.2:
1837 | version "15.7.2"
1838 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"
1839 | integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==
1840 | dependencies:
1841 | loose-envify "^1.4.0"
1842 | object-assign "^4.1.1"
1843 | react-is "^16.8.1"
1844 |
1845 | pseudomap@^1.0.2:
1846 | version "1.0.2"
1847 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
1848 | integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM=
1849 |
1850 | punycode@^2.1.0:
1851 | version "2.1.1"
1852 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
1853 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
1854 |
1855 | queue-microtask@^1.2.2:
1856 | version "1.2.3"
1857 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
1858 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
1859 |
1860 | react-dom@^17.0.2:
1861 | version "17.0.2"
1862 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.2.tgz#ecffb6845e3ad8dbfcdc498f0d0a939736502c23"
1863 | integrity sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==
1864 | dependencies:
1865 | loose-envify "^1.1.0"
1866 | object-assign "^4.1.1"
1867 | scheduler "^0.20.2"
1868 |
1869 | react-is@^16.8.1:
1870 | version "16.13.1"
1871 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
1872 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
1873 |
1874 | react-refresh@^0.10.0:
1875 | version "0.10.0"
1876 | resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.10.0.tgz#2f536c9660c0b9b1d500684d9e52a65e7404f7e3"
1877 | integrity sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ==
1878 |
1879 | react@^17.0.2:
1880 | version "17.0.2"
1881 | resolved "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037"
1882 | integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==
1883 | dependencies:
1884 | loose-envify "^1.1.0"
1885 | object-assign "^4.1.1"
1886 |
1887 | read-pkg-up@^3.0.0:
1888 | version "3.0.0"
1889 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07"
1890 | integrity sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=
1891 | dependencies:
1892 | find-up "^2.0.0"
1893 | read-pkg "^3.0.0"
1894 |
1895 | read-pkg@^3.0.0:
1896 | version "3.0.0"
1897 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389"
1898 | integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=
1899 | dependencies:
1900 | load-json-file "^4.0.0"
1901 | normalize-package-data "^2.3.2"
1902 | path-type "^3.0.0"
1903 |
1904 | readable-stream@^2.2.2:
1905 | version "2.3.7"
1906 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
1907 | integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
1908 | dependencies:
1909 | core-util-is "~1.0.0"
1910 | inherits "~2.0.3"
1911 | isarray "~1.0.0"
1912 | process-nextick-args "~2.0.0"
1913 | safe-buffer "~5.1.1"
1914 | string_decoder "~1.1.1"
1915 | util-deprecate "~1.0.1"
1916 |
1917 | readdirp@~3.6.0:
1918 | version "3.6.0"
1919 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7"
1920 | integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==
1921 | dependencies:
1922 | picomatch "^2.2.1"
1923 |
1924 | regenerator-runtime@^0.13.4:
1925 | version "0.13.7"
1926 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55"
1927 | integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==
1928 |
1929 | regexp.prototype.flags@^1.3.1:
1930 | version "1.3.1"
1931 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz#7ef352ae8d159e758c0eadca6f8fcb4eef07be26"
1932 | integrity sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==
1933 | dependencies:
1934 | call-bind "^1.0.2"
1935 | define-properties "^1.1.3"
1936 |
1937 | regexpp@^3.1.0:
1938 | version "3.2.0"
1939 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2"
1940 | integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==
1941 |
1942 | require-from-string@^2.0.2:
1943 | version "2.0.2"
1944 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909"
1945 | integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==
1946 |
1947 | resolve-from@^4.0.0:
1948 | version "4.0.0"
1949 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
1950 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
1951 |
1952 | resolve@^1.10.0, resolve@^1.13.1, resolve@^1.20.0:
1953 | version "1.20.0"
1954 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975"
1955 | integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==
1956 | dependencies:
1957 | is-core-module "^2.2.0"
1958 | path-parse "^1.0.6"
1959 |
1960 | resolve@^2.0.0-next.3:
1961 | version "2.0.0-next.3"
1962 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.3.tgz#d41016293d4a8586a39ca5d9b5f15cbea1f55e46"
1963 | integrity sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==
1964 | dependencies:
1965 | is-core-module "^2.2.0"
1966 | path-parse "^1.0.6"
1967 |
1968 | reusify@^1.0.4:
1969 | version "1.0.4"
1970 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
1971 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
1972 |
1973 | rimraf@^3.0.2:
1974 | version "3.0.2"
1975 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
1976 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
1977 | dependencies:
1978 | glob "^7.1.3"
1979 |
1980 | rollup@^2.38.5:
1981 | version "2.53.0"
1982 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.53.0.tgz#5b6bc7820a03f361d2ae3dcabdc99d269a754709"
1983 | integrity sha512-spgrY78Toh+m0+zaOoeaayJKuzFuWy6o1PdFIBMVwRcuxT0xCOX9A5rChyKe+2ruL4lePKWUMImS4mMW1QAkmQ==
1984 | optionalDependencies:
1985 | fsevents "~2.3.2"
1986 |
1987 | run-parallel@^1.1.9:
1988 | version "1.2.0"
1989 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
1990 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
1991 | dependencies:
1992 | queue-microtask "^1.2.2"
1993 |
1994 | safe-buffer@~5.1.0, safe-buffer@~5.1.1:
1995 | version "5.1.2"
1996 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
1997 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
1998 |
1999 | sass@^1.43.4:
2000 | version "1.49.7"
2001 | resolved "https://registry.yarnpkg.com/sass/-/sass-1.49.7.tgz#22a86a50552b9b11f71404dfad1b9ff44c6b0c49"
2002 | integrity sha512-13dml55EMIR2rS4d/RDHHP0sXMY3+30e1TKsyXaSz3iLWVoDWEoboY8WzJd5JMnxrRHffKO3wq2mpJ0jxRJiEQ==
2003 | dependencies:
2004 | chokidar ">=3.0.0 <4.0.0"
2005 | immutable "^4.0.0"
2006 | source-map-js ">=0.6.2 <2.0.0"
2007 |
2008 | scheduler@^0.20.2:
2009 | version "0.20.2"
2010 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91"
2011 | integrity sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==
2012 | dependencies:
2013 | loose-envify "^1.1.0"
2014 | object-assign "^4.1.1"
2015 |
2016 | "semver@2 || 3 || 4 || 5":
2017 | version "5.7.1"
2018 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
2019 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
2020 |
2021 | semver@^6.3.0:
2022 | version "6.3.0"
2023 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
2024 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
2025 |
2026 | semver@^7.2.1, semver@^7.3.5:
2027 | version "7.3.5"
2028 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7"
2029 | integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==
2030 | dependencies:
2031 | lru-cache "^6.0.0"
2032 |
2033 | shebang-command@^1.2.0:
2034 | version "1.2.0"
2035 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
2036 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=
2037 | dependencies:
2038 | shebang-regex "^1.0.0"
2039 |
2040 | shebang-command@^2.0.0:
2041 | version "2.0.0"
2042 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
2043 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
2044 | dependencies:
2045 | shebang-regex "^3.0.0"
2046 |
2047 | shebang-regex@^1.0.0:
2048 | version "1.0.0"
2049 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
2050 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=
2051 |
2052 | shebang-regex@^3.0.0:
2053 | version "3.0.0"
2054 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
2055 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
2056 |
2057 | side-channel@^1.0.4:
2058 | version "1.0.4"
2059 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf"
2060 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==
2061 | dependencies:
2062 | call-bind "^1.0.0"
2063 | get-intrinsic "^1.0.2"
2064 | object-inspect "^1.9.0"
2065 |
2066 | slash@^3.0.0:
2067 | version "3.0.0"
2068 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
2069 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
2070 |
2071 | slice-ansi@^4.0.0:
2072 | version "4.0.0"
2073 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b"
2074 | integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==
2075 | dependencies:
2076 | ansi-styles "^4.0.0"
2077 | astral-regex "^2.0.0"
2078 | is-fullwidth-code-point "^3.0.0"
2079 |
2080 | "source-map-js@>=0.6.2 <2.0.0":
2081 | version "1.0.2"
2082 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c"
2083 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
2084 |
2085 | source-map-js@^0.6.2:
2086 | version "0.6.2"
2087 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-0.6.2.tgz#0bb5de631b41cfbda6cfba8bd05a80efdfd2385e"
2088 | integrity sha512-/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug==
2089 |
2090 | source-map@^0.5.0:
2091 | version "0.5.7"
2092 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
2093 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
2094 |
2095 | spawn-sync@^1.0.15:
2096 | version "1.0.15"
2097 | resolved "https://registry.yarnpkg.com/spawn-sync/-/spawn-sync-1.0.15.tgz#b00799557eb7fb0c8376c29d44e8a1ea67e57476"
2098 | integrity sha1-sAeZVX63+wyDdsKdROih6mfldHY=
2099 | dependencies:
2100 | concat-stream "^1.4.7"
2101 | os-shim "^0.1.2"
2102 |
2103 | spdx-correct@^3.0.0:
2104 | version "3.1.1"
2105 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9"
2106 | integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==
2107 | dependencies:
2108 | spdx-expression-parse "^3.0.0"
2109 | spdx-license-ids "^3.0.0"
2110 |
2111 | spdx-exceptions@^2.1.0:
2112 | version "2.3.0"
2113 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d"
2114 | integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==
2115 |
2116 | spdx-expression-parse@^3.0.0:
2117 | version "3.0.1"
2118 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679"
2119 | integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==
2120 | dependencies:
2121 | spdx-exceptions "^2.1.0"
2122 | spdx-license-ids "^3.0.0"
2123 |
2124 | spdx-license-ids@^3.0.0:
2125 | version "3.0.9"
2126 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.9.tgz#8a595135def9592bda69709474f1cbeea7c2467f"
2127 | integrity sha512-Ki212dKK4ogX+xDo4CtOZBVIwhsKBEfsEEcwmJfLQzirgc2jIWdzg40Unxz/HzEUqM1WFzVlQSMF9kZZ2HboLQ==
2128 |
2129 | sprintf-js@~1.0.2:
2130 | version "1.0.3"
2131 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
2132 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
2133 |
2134 | string-width@^4.2.0:
2135 | version "4.2.2"
2136 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5"
2137 | integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==
2138 | dependencies:
2139 | emoji-regex "^8.0.0"
2140 | is-fullwidth-code-point "^3.0.0"
2141 | strip-ansi "^6.0.0"
2142 |
2143 | string.prototype.matchall@^4.0.5:
2144 | version "4.0.5"
2145 | resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.5.tgz#59370644e1db7e4c0c045277690cf7b01203c4da"
2146 | integrity sha512-Z5ZaXO0svs0M2xd/6By3qpeKpLKd9mO4v4q3oMEQrk8Ck4xOD5d5XeBOOjGrmVZZ/AHB1S0CgG4N5r1G9N3E2Q==
2147 | dependencies:
2148 | call-bind "^1.0.2"
2149 | define-properties "^1.1.3"
2150 | es-abstract "^1.18.2"
2151 | get-intrinsic "^1.1.1"
2152 | has-symbols "^1.0.2"
2153 | internal-slot "^1.0.3"
2154 | regexp.prototype.flags "^1.3.1"
2155 | side-channel "^1.0.4"
2156 |
2157 | string.prototype.trimend@^1.0.4:
2158 | version "1.0.4"
2159 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80"
2160 | integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==
2161 | dependencies:
2162 | call-bind "^1.0.2"
2163 | define-properties "^1.1.3"
2164 |
2165 | string.prototype.trimstart@^1.0.4:
2166 | version "1.0.4"
2167 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed"
2168 | integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==
2169 | dependencies:
2170 | call-bind "^1.0.2"
2171 | define-properties "^1.1.3"
2172 |
2173 | string_decoder@~1.1.1:
2174 | version "1.1.1"
2175 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
2176 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
2177 | dependencies:
2178 | safe-buffer "~5.1.0"
2179 |
2180 | strip-ansi@^6.0.0:
2181 | version "6.0.0"
2182 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532"
2183 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==
2184 | dependencies:
2185 | ansi-regex "^5.0.0"
2186 |
2187 | strip-bom@^3.0.0:
2188 | version "3.0.0"
2189 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
2190 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=
2191 |
2192 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
2193 | version "3.1.1"
2194 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
2195 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
2196 |
2197 | supports-color@^5.3.0:
2198 | version "5.5.0"
2199 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
2200 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
2201 | dependencies:
2202 | has-flag "^3.0.0"
2203 |
2204 | supports-color@^7.1.0:
2205 | version "7.2.0"
2206 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
2207 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
2208 | dependencies:
2209 | has-flag "^4.0.0"
2210 |
2211 | table@^6.0.9:
2212 | version "6.7.1"
2213 | resolved "https://registry.yarnpkg.com/table/-/table-6.7.1.tgz#ee05592b7143831a8c94f3cee6aae4c1ccef33e2"
2214 | integrity sha512-ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg==
2215 | dependencies:
2216 | ajv "^8.0.1"
2217 | lodash.clonedeep "^4.5.0"
2218 | lodash.truncate "^4.4.2"
2219 | slice-ansi "^4.0.0"
2220 | string-width "^4.2.0"
2221 | strip-ansi "^6.0.0"
2222 |
2223 | text-table@^0.2.0:
2224 | version "0.2.0"
2225 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
2226 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=
2227 |
2228 | to-fast-properties@^2.0.0:
2229 | version "2.0.0"
2230 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
2231 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
2232 |
2233 | to-regex-range@^5.0.1:
2234 | version "5.0.1"
2235 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
2236 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
2237 | dependencies:
2238 | is-number "^7.0.0"
2239 |
2240 | tsconfig-paths@^3.9.0:
2241 | version "3.10.1"
2242 | resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.10.1.tgz#79ae67a68c15289fdf5c51cb74f397522d795ed7"
2243 | integrity sha512-rETidPDgCpltxF7MjBZlAFPUHv5aHH2MymyPvh+vEyWAED4Eb/WeMbsnD/JDr4OKPOA1TssDHgIcpTN5Kh0p6Q==
2244 | dependencies:
2245 | json5 "^2.2.0"
2246 | minimist "^1.2.0"
2247 | strip-bom "^3.0.0"
2248 |
2249 | tslib@^1.8.1:
2250 | version "1.14.1"
2251 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
2252 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
2253 |
2254 | tsutils@^3.21.0:
2255 | version "3.21.0"
2256 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
2257 | integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==
2258 | dependencies:
2259 | tslib "^1.8.1"
2260 |
2261 | type-check@^0.4.0, type-check@~0.4.0:
2262 | version "0.4.0"
2263 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
2264 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
2265 | dependencies:
2266 | prelude-ls "^1.2.1"
2267 |
2268 | type-fest@^0.20.2:
2269 | version "0.20.2"
2270 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4"
2271 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==
2272 |
2273 | typedarray@^0.0.6:
2274 | version "0.0.6"
2275 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
2276 | integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
2277 |
2278 | typescript@^4.3.5:
2279 | version "4.3.5"
2280 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.3.5.tgz#4d1c37cc16e893973c45a06886b7113234f119f4"
2281 | integrity sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==
2282 |
2283 | unbox-primitive@^1.0.1:
2284 | version "1.0.1"
2285 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471"
2286 | integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==
2287 | dependencies:
2288 | function-bind "^1.1.1"
2289 | has-bigints "^1.0.1"
2290 | has-symbols "^1.0.2"
2291 | which-boxed-primitive "^1.0.2"
2292 |
2293 | uri-js@^4.2.2:
2294 | version "4.4.1"
2295 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
2296 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
2297 | dependencies:
2298 | punycode "^2.1.0"
2299 |
2300 | util-deprecate@~1.0.1:
2301 | version "1.0.2"
2302 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
2303 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
2304 |
2305 | v8-compile-cache@^2.0.3:
2306 | version "2.3.0"
2307 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee"
2308 | integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==
2309 |
2310 | validate-npm-package-license@^3.0.1:
2311 | version "3.0.4"
2312 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
2313 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==
2314 | dependencies:
2315 | spdx-correct "^3.0.0"
2316 | spdx-expression-parse "^3.0.0"
2317 |
2318 | vite@^2.4.1:
2319 | version "2.4.1"
2320 | resolved "https://registry.yarnpkg.com/vite/-/vite-2.4.1.tgz#2e48b8dbfc69e4edbf7f4d1c0798d621585cb8da"
2321 | integrity sha512-4BpKRis9uxIqPfIEcJ18LTBsamqnDFxTx45CXwagHjNltHa6PFEvf8Pe6OpgIHb0OyWT30OXOSSQvdOaX4OBiQ==
2322 | dependencies:
2323 | esbuild "^0.12.8"
2324 | postcss "^8.3.5"
2325 | resolve "^1.20.0"
2326 | rollup "^2.38.5"
2327 | optionalDependencies:
2328 | fsevents "~2.3.2"
2329 |
2330 | which-boxed-primitive@^1.0.2:
2331 | version "1.0.2"
2332 | resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
2333 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
2334 | dependencies:
2335 | is-bigint "^1.0.1"
2336 | is-boolean-object "^1.1.0"
2337 | is-number-object "^1.0.4"
2338 | is-string "^1.0.5"
2339 | is-symbol "^1.0.3"
2340 |
2341 | which@1.2.x:
2342 | version "1.2.14"
2343 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5"
2344 | integrity sha1-mofEN48D6CfOyvGs31bHNsAcFOU=
2345 | dependencies:
2346 | isexe "^2.0.0"
2347 |
2348 | which@^1.2.9:
2349 | version "1.3.1"
2350 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
2351 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
2352 | dependencies:
2353 | isexe "^2.0.0"
2354 |
2355 | which@^2.0.1:
2356 | version "2.0.2"
2357 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
2358 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
2359 | dependencies:
2360 | isexe "^2.0.0"
2361 |
2362 | word-wrap@^1.2.3:
2363 | version "1.2.3"
2364 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
2365 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
2366 |
2367 | wrappy@1:
2368 | version "1.0.2"
2369 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
2370 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
2371 |
2372 | yallist@^2.1.2:
2373 | version "2.1.2"
2374 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
2375 | integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=
2376 |
2377 | yallist@^4.0.0:
2378 | version "4.0.0"
2379 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
2380 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
2381 |
--------------------------------------------------------------------------------