├── .gitignore ├── LICENSE ├── README.md ├── callout.js ├── index.js ├── package.json ├── src ├── arrow-right.js ├── callout.js ├── github-icon.js ├── index.js ├── misc │ ├── default.config.js │ └── theme.js ├── search.js ├── styles.css ├── theme-switch.js └── utils │ ├── flatten.js │ └── reorder.js ├── tailwind.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | /style.css 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Shu Ding 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Made https://github.com/shuding/nextra/tree/core a monorepo. 2 | 3 | This repository is now archived. 4 | -------------------------------------------------------------------------------- /callout.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dist/callout') -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dist/nextra-theme-docs') -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nextra-theme-docs", 3 | "version": "0.2.7", 4 | "description": "A Nextra theme for documentation sites.", 5 | "main": "index.js", 6 | "repository": "https://github.com/shuding/nextra-theme-docs.git", 7 | "author": "Shu Ding ", 8 | "license": "MIT", 9 | "files": [ 10 | "dist/*", 11 | "index.js", 12 | "callout.js", 13 | "style.css" 14 | ], 15 | "scripts": { 16 | "build": "yarn run build:clean && yarn run build:tailwind && yarn run build:layout", 17 | "build:clean": "rm -rf dist", 18 | "build:tailwind": "NODE_ENV=production tailwindcss build src/styles.css -o style.css -c tailwind.config.js", 19 | "build:layout": "NODE_ENV=production microbundle src/*.js -f cjs -o dist --no-sourcemap --jsx React.createElement --target node" 20 | }, 21 | "dependencies": { 22 | "@mdx-js/react": "^1.6.16", 23 | "@reach/skip-nav": "^0.11.2", 24 | "@sindresorhus/slugify": "^1.1.0", 25 | "classnames": "^2.2.6", 26 | "focus-visible": "^5.1.0", 27 | "match-sorter": "^4.2.0", 28 | "next-themes": "^0.0.8", 29 | "prism-react-renderer": "^1.1.1", 30 | "tailwindcss": "^1.8.3", 31 | "title": "^3.4.2" 32 | }, 33 | "peerDependencies": { 34 | "next": "^9.5.3", 35 | "react": "^16.13.1", 36 | "react-dom": "^16.13.1" 37 | }, 38 | "devDependencies": { 39 | "microbundle": "^0.12.3" 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /src/arrow-right.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | 3 | export default ({ height = 24, ...props }) => { 4 | return ( 5 | 11 | 18 | 19 | ) 20 | } 21 | -------------------------------------------------------------------------------- /src/callout.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | 3 | // https://www.notion.so/Callout-blocks-5b2638247b54447eb2e21145f97194b0 4 | export default ({ children, background = 'bg-orange-100 dark:text-gray-800', emoji = '💡' }) => { 5 | return
6 |
{emoji}
7 |
{children}
8 |
9 | } 10 | -------------------------------------------------------------------------------- /src/github-icon.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | 3 | export default ({ height = 40 }) => { 4 | return 5 | 6 | 7 | } -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import React, { useState, useEffect, useMemo, useContext, createContext } from 'react' 2 | import ReactDOMServer from 'react-dom/server' 3 | import { useRouter } from 'next/router' 4 | import Head from 'next/head' 5 | import Link from 'next/link' 6 | import slugify from '@sindresorhus/slugify' 7 | import 'focus-visible' 8 | import { SkipNavContent } from '@reach/skip-nav' 9 | import { ThemeProvider } from 'next-themes' 10 | 11 | import flatten from './utils/flatten' 12 | import reorderBasedOnMeta from './utils/reorder' 13 | 14 | import Search from './search' 15 | import GitHubIcon from './github-icon' 16 | import ArrowRight from './arrow-right' 17 | import ThemeSwitch from './theme-switch' 18 | 19 | import Theme from './misc/theme' 20 | import defaultConfig from './misc/default.config' 21 | 22 | const TreeState = new Map() 23 | const titleType = ['h1', 'h2', 'h3', 'h4', 'h5', 'h6'] 24 | const MenuContext = createContext(false) 25 | 26 | function Folder({ item, anchors }) { 27 | const route = useRouter().route + '/' 28 | const active = route.startsWith(item.route + '/') 29 | const open = TreeState[item.route] ?? true 30 | const [_, render] = useState(false) 31 | 32 | useEffect(() => { 33 | if (active) { 34 | TreeState[item.route] = true 35 | } 36 | }, [active]) 37 | 38 | return ( 39 |
  • 40 | 49 |
    54 | 55 |
    56 |
  • 57 | ) 58 | } 59 | 60 | function File({ item, anchors }) { 61 | const { setMenu } = useContext(MenuContext) 62 | const route = useRouter().route + '/' 63 | const active = route.startsWith(item.route + '/') 64 | 65 | const title = item.title 66 | // if (item.title.startsWith('> ')) { 67 | // title = title.substr(2) 68 | if (anchors && anchors.length) { 69 | if (active) { 70 | return ( 71 |
  • 72 | 73 | {title} 74 | 75 | 92 |
  • 93 | ) 94 | } 95 | } 96 | 97 | return ( 98 |
  • 99 | 100 | setMenu(false)}>{title} 101 | 102 |
  • 103 | ) 104 | } 105 | 106 | function Menu({ dir, anchors }) { 107 | return ( 108 | 116 | ) 117 | } 118 | 119 | function Sidebar({ show, directories, anchors }) { 120 | return ( 121 | 134 | ) 135 | } 136 | 137 | const NextLink = ({ config, flatDirectories, currentIndex }) => { 138 | let next = flatDirectories[currentIndex + 1] 139 | 140 | if (!config.nextLinks || !next) { 141 | return null 142 | } 143 | 144 | return ( 145 | 146 | 147 | {next.title} 148 | 149 | 150 | 151 | ) 152 | } 153 | 154 | const PrevLink = ({ config, flatDirectories, currentIndex }) => { 155 | let prev = flatDirectories[currentIndex - 1] 156 | 157 | if (!config.prevLinks || !prev) { 158 | return null 159 | } 160 | 161 | return ( 162 | 163 | 164 | 165 | {prev.title} 166 | 167 | 168 | ) 169 | } 170 | 171 | const Layout = ({ filename, config: _config, pageMap, meta, children }) => { 172 | const [menu, setMenu] = useState(false) 173 | const router = useRouter() 174 | const { route, pathname } = router 175 | 176 | const directories = useMemo(() => reorderBasedOnMeta(pageMap), [pageMap]) 177 | const flatDirectories = useMemo(() => flatten(directories), [directories]) 178 | const config = Object.assign({}, defaultConfig, _config) 179 | 180 | const filepath = route.slice(0, route.lastIndexOf('/') + 1) 181 | const filepathWithName = filepath + filename 182 | const titles = React.Children.toArray(children).filter((child) => 183 | titleType.includes(child.props.mdxType) 184 | ) 185 | const titleEl = 186 | titles.find((child) => child.props.mdxType === 'h1') 187 | const title = meta.title || (titleEl ? titleEl.props.children : 'Untitled') 188 | const anchors = titles 189 | .filter((child) => child.props.mdxType === 'h2') 190 | .map((child) => child.props.children) 191 | 192 | useEffect(() => { 193 | if (menu) { 194 | document.body.classList.add('overflow-hidden') 195 | } else { 196 | document.body.classList.remove('overflow-hidden') 197 | } 198 | }, [menu]) 199 | 200 | const currentIndex = useMemo(() => flatDirectories.findIndex( 201 | (dir) => dir.route === pathname 202 | ), [flatDirectories, pathname]) 203 | 204 | return ( 205 | 206 | 207 | 208 | 209 | {title} 210 | {config.titleSuffix || ''} 211 | 212 | {config.head || null} 213 | 214 |
    215 | 258 |
    259 | 260 | 261 | 262 | 263 | {meta.full ? ( 264 | 265 | {children} 266 | 267 | ) : ( 268 | 269 |
    270 | {children} 271 |
    272 | 281 | 282 |
    283 | 284 | {config.footer ?
    285 | 286 | {config.footerText} 287 | 288 |
    289 | {config.footerEditOnGitHubLink ? Edit this page on GitHub : null} 292 |
    : null} 293 |
    294 |
    295 |
    296 | )} 297 |
    298 |
    299 |
    300 | ) 301 | } 302 | 303 | export default (opts, config) => props => 304 | 305 | 306 | 307 | -------------------------------------------------------------------------------- /src/misc/default.config.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | 3 | export default { 4 | github: 'https://github.com/shuding/nextra', 5 | titleSuffix: ' – Nextra', 6 | nextLinks: true, 7 | prevLinks: true, 8 | search: true, 9 | darkMode: true, 10 | footer: true, 11 | footerText: 'MIT 2020 © Shu Ding.', 12 | footerEditOnGitHubLink: true, 13 | logo: ( 14 | 15 | Nextra 16 | 17 | The Next Docs Builder 18 | 19 | 20 | ), 21 | head: ( 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | ) 35 | } 36 | -------------------------------------------------------------------------------- /src/misc/theme.js: -------------------------------------------------------------------------------- 1 | import { MDXProvider } from '@mdx-js/react' 2 | import slugify from '@sindresorhus/slugify' 3 | import ReactDOMServer from 'react-dom/server' 4 | import Link from 'next/link' 5 | import React from 'react' 6 | import Highlight, { defaultProps } from 'prism-react-renderer' 7 | 8 | const THEME = { 9 | plain: { 10 | color: '#000', 11 | backgroundColor: 'transparent', 12 | }, 13 | styles: [ 14 | { 15 | types: ['keyword'], 16 | style: { 17 | color: '#ff0078', 18 | fontWeight: 'bold', 19 | }, 20 | }, 21 | { 22 | types: ['comment'], 23 | style: { 24 | color: '#999', 25 | fontStyle: 'italic', 26 | }, 27 | }, 28 | { 29 | types: ['string', 'url', 'attr-value'], 30 | style: { 31 | color: '#028265', 32 | }, 33 | }, 34 | { 35 | types: ['variable', 'language-javascript'], 36 | style: { 37 | color: '#0076ff', 38 | }, 39 | }, 40 | { 41 | types: ['builtin', 'char', 'constant'], 42 | style: { 43 | color: '#000', 44 | }, 45 | }, 46 | { 47 | types: ['attr-name'], 48 | style: { 49 | color: '#d9931e', 50 | fontStyle: 'normal', 51 | }, 52 | }, 53 | { 54 | types: ['punctuation', 'operator'], 55 | style: { 56 | color: '#333', 57 | }, 58 | }, 59 | { 60 | types: ['number', 'function', 'tag'], 61 | style: { 62 | color: '#0076ff', 63 | }, 64 | }, 65 | { 66 | types: ['boolean', 'regex'], 67 | style: { 68 | color: '#d9931e', 69 | }, 70 | }, 71 | ], 72 | } 73 | 74 | // Anchor links 75 | 76 | const HeaderLink = ({ tag: Tag, children, ...props }) => { 77 | const slug = slugify(ReactDOMServer.renderToStaticMarkup(children) || '') 78 | return ( 79 | 80 | 81 | 82 | {children} 83 | # 84 | 85 | 86 | ) 87 | } 88 | 89 | const H2 = ({ children, ...props }) => { 90 | return ( 91 | 92 | {children} 93 | 94 | ) 95 | } 96 | 97 | const H3 = ({ children, ...props }) => { 98 | return ( 99 | 100 | {children} 101 | 102 | ) 103 | } 104 | 105 | const H4 = ({ children, ...props }) => { 106 | return ( 107 | 108 | {children} 109 | 110 | ) 111 | } 112 | 113 | const H5 = ({ children, ...props }) => { 114 | return ( 115 | 116 | {children} 117 | 118 | ) 119 | } 120 | 121 | const H6 = ({ children, ...props }) => { 122 | return ( 123 | 124 | {children} 125 | 126 | ) 127 | } 128 | 129 | const A = ({ children, ...props }) => { 130 | const isExternal = props.href && props.href.startsWith('https://') 131 | if (isExternal) { 132 | return ( 133 | 134 | {children} 135 | 136 | ) 137 | } 138 | return ( 139 | 140 | {children} 141 | 142 | ) 143 | } 144 | 145 | const Code = ({ children, className, highlight, ...props }) => { 146 | if (!className) return {children} 147 | 148 | const highlightedLines = highlight ? highlight.split(',').map(Number) : [] 149 | 150 | // https://mdxjs.com/guides/syntax-highlighting#all-together 151 | const language = className.replace(/language-/, '') 152 | return ( 153 | 159 | {({ className, style, tokens, getLineProps, getTokenProps }) => ( 160 | 161 | {tokens.map((line, i) => ( 162 |
    175 | {line.map((token, key) => ( 176 | 177 | ))} 178 |
    179 | ))} 180 |
    181 | )} 182 |
    183 | ) 184 | } 185 | 186 | const components = { 187 | h2: H2, 188 | h3: H3, 189 | h4: H4, 190 | h5: H5, 191 | h6: H6, 192 | a: A, 193 | code: Code, 194 | } 195 | 196 | export default ({ children }) => { 197 | return {children} 198 | } 199 | -------------------------------------------------------------------------------- /src/search.js: -------------------------------------------------------------------------------- 1 | import React, { useMemo, useCallback, useRef, useState, useEffect } from 'react' 2 | import matchSorter from 'match-sorter' 3 | import cn from 'classnames' 4 | import { useRouter } from 'next/router' 5 | import Link from 'next/link' 6 | 7 | const Item = ({ title, active, href, onMouseOver, search }) => { 8 | const highlight = title.toLowerCase().indexOf(search.toLowerCase()) 9 | 10 | return ( 11 | 12 | 13 |
  • 18 | {title.substring(0, highlight)} 19 | 20 | {title.substring(highlight, highlight + search.length)} 21 | 22 | {title.substring(highlight + search.length)} 23 |
  • 24 |
    25 | 26 | ) 27 | } 28 | 29 | const Search = ({ directories }) => { 30 | const router = useRouter() 31 | const [show, setShow] = useState(false) 32 | const [search, setSearch] = useState('') 33 | const [active, setActive] = useState(0) 34 | const input = useRef(null) 35 | 36 | const results = useMemo(() => { 37 | if (!search) return [] 38 | 39 | // Will need to scrape all the headers from each page and search through them here 40 | // (similar to what we already do to render the hash links in sidebar) 41 | // We could also try to search the entire string text from each page 42 | return matchSorter(directories, search, { keys: ['title'] }) 43 | }, [search]) 44 | 45 | const handleKeyDown = useCallback( 46 | (e) => { 47 | switch (e.key) { 48 | case 'ArrowDown': { 49 | e.preventDefault() 50 | if (active + 1 < results.length) { 51 | setActive(active + 1) 52 | } 53 | break 54 | } 55 | case 'ArrowUp': { 56 | e.preventDefault() 57 | if (active - 1 >= 0) { 58 | setActive(active - 1) 59 | } 60 | break 61 | } 62 | case 'Enter': { 63 | router.push(results[active].route) 64 | break 65 | } 66 | } 67 | }, 68 | [active, results, router] 69 | ) 70 | 71 | useEffect(() => { 72 | setActive(0) 73 | }, [search]) 74 | 75 | useEffect(() => { 76 | const inputs = ['input', 'select', 'button', 'textarea'] 77 | 78 | const down = (e) => { 79 | if ( 80 | document.activeElement && 81 | inputs.indexOf(document.activeElement.tagName.toLowerCase() !== -1) 82 | ) { 83 | if (e.key === '/') { 84 | e.preventDefault() 85 | input.current.focus() 86 | } else if (e.key === 'Escape') { 87 | setShow(false) 88 | } 89 | } 90 | } 91 | 92 | window.addEventListener('keydown', down) 93 | return () => window.removeEventListener('keydown', down) 94 | }, []) 95 | 96 | const renderList = show && results.length > 0 97 | 98 | return ( 99 |
    100 | {renderList && ( 101 |
    setShow(false)} /> 102 | )} 103 | { 105 | setSearch(e.target.value) 106 | setShow(true) 107 | }} 108 | className="appearance-none border rounded py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline w-full" 109 | type="search" 110 | placeholder='Search ("/" to focus)' 111 | onKeyDown={handleKeyDown} 112 | onFocus={() => setShow(true)} 113 | ref={input} 114 | /> 115 | {renderList && ( 116 |
      117 | {results.map((res, i) => { 118 | return ( 119 | setActive(i)} 126 | /> 127 | ) 128 | })} 129 |
    130 | )} 131 |
    132 | ) 133 | } 134 | 135 | export default Search 136 | -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | 3 | html { font-family: 'Inter', sans-serif; } 4 | @supports (font-variation-settings: normal) { 5 | html { font-family: 'Inter var', sans-serif; } 6 | } 7 | 8 | html { 9 | @apply subpixel-antialiased; 10 | font-size: 16px; 11 | font-feature-settings: 'rlig' 1, 'calt' 1, 'ss01' 1; 12 | } 13 | body { 14 | @apply bg-white transition-colors duration-200; 15 | } 16 | .dark body { 17 | @apply bg-dark text-gray-100; 18 | } 19 | 20 | h1 { 21 | @apply text-4xl font-bold tracking-tight; 22 | } 23 | h2 { 24 | @apply text-3xl font-semibold tracking-tight mt-10 transition-colors duration-200; 25 | @apply border-b; 26 | } 27 | .dark h2 { 28 | @apply border-gray-800; 29 | } 30 | h3 { 31 | @apply text-2xl font-semibold tracking-tight mt-8; 32 | } 33 | h4 { 34 | @apply text-xl font-semibold tracking-tight mt-8; 35 | } 36 | h5 { 37 | @apply text-lg font-semibold tracking-tight mt-8; 38 | } 39 | h6 { 40 | @apply text-base font-semibold tracking-tight mt-8; 41 | } 42 | a { 43 | @apply text-blue-500 underline; 44 | } 45 | p { 46 | @apply mt-6 leading-7; 47 | } 48 | hr { 49 | @apply my-8 transition-colors duration-200; 50 | } 51 | .dark hr { 52 | @apply border-gray-800; 53 | } 54 | code { 55 | @apply p-1 text-gray-800 bg-gray-500 bg-opacity-25 rounded transition-colors duration-200; 56 | } 57 | .dark code { 58 | @apply text-gray-300 bg-gray-800; 59 | } 60 | pre { 61 | @apply p-4 bg-gray-200 rounded-lg mt-6 mb-4 overflow-x-auto scrolling-touch; 62 | } 63 | code { 64 | @apply text-sm; 65 | } 66 | pre code { 67 | @apply p-0 text-sm text-black bg-transparent rounded-none inline-block min-w-full; 68 | } 69 | .dark pre code { 70 | @apply bg-gray-200 text-gray-800; 71 | } 72 | a code { 73 | @apply text-current no-underline; 74 | } 75 | figure { 76 | @apply mb-8 relative; 77 | } 78 | video { 79 | @apply absolute top-0 left-0; 80 | cursor: pointer; 81 | } 82 | figure figcaption { 83 | @apply text-sm text-gray-600; 84 | } 85 | @media (min-width: 768px) { 86 | figure { 87 | /* allow figures to overflow, but not exceeding the viewport width */ 88 | @apply -mr-56; 89 | max-width: calc(100vw - 20rem); 90 | } 91 | } 92 | 93 | @tailwind components; 94 | @tailwind utilities; 95 | 96 | .main-container { 97 | min-height: 100vh; 98 | } 99 | 100 | .sidebar { 101 | @apply select-none; 102 | } 103 | .sidebar ul ul { 104 | @apply ml-5; 105 | } 106 | .sidebar a:focus-visible, .sidebar button:focus-visible { 107 | @apply shadow-outline; 108 | } 109 | .sidebar li.active > a { 110 | @apply font-semibold text-black bg-gray-200 transition-colors duration-200; 111 | } 112 | .dark .sidebar li.active > a { 113 | @apply text-white bg-gray-800; 114 | } 115 | .sidebar button, .sidebar a { 116 | @apply block w-full text-left text-base no-underline text-gray-600 mt-1 p-2 rounded select-none outline-none transition-colors duration-200; 117 | -webkit-tap-highlight-color: transparent; 118 | -webkit-touch-callout: none; 119 | } 120 | .dark .sidebar button, .dark .sidebar a { 121 | @apply text-gray-500; 122 | } 123 | .sidebar a:hover, .sidebar button:hover { 124 | @apply text-gray-900 bg-gray-100; 125 | } 126 | .dark .sidebar a:hover, .dark .sidebar button:hover { 127 | @apply text-white bg-gray-900; 128 | } 129 | content ul { 130 | @apply list-disc ml-6 mt-6; 131 | } 132 | content li { 133 | @apply mt-2; 134 | } 135 | content ol { 136 | @apply list-decimal; 137 | } 138 | .subheading-anchor { 139 | margin-top: -84px; 140 | display: inline-block; 141 | position: absolute; 142 | width: 1px; 143 | } 144 | 145 | .subheading-anchor + a:hover .anchor-icon { 146 | opacity: 1; 147 | } 148 | .anchor-icon { 149 | opacity: 0; 150 | @apply ml-2 text-gray-500; 151 | } 152 | .dark .anchor-icon { 153 | @apply text-gray-700; 154 | } 155 | 156 | h2 a { 157 | @apply no-underline; 158 | } 159 | input[type='search']::-webkit-search-decoration, 160 | input[type='search']::-webkit-search-cancel-button, 161 | input[type='search']::-webkit-search-results-button, 162 | input[type='search']::-webkit-search-results-decoration { 163 | -webkit-appearance: none; 164 | } 165 | 166 | .search-overlay { 167 | position: fixed; 168 | top: 0; 169 | bottom: 0; 170 | left: 0; 171 | right: 0; 172 | } 173 | -------------------------------------------------------------------------------- /src/theme-switch.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { useTheme } from 'next-themes' 3 | 4 | export default function ThemeSwitch () { 5 | const { theme, setTheme } = useTheme() 6 | return { 7 | setTheme(theme === 'dark' ? 'light' : 'dark') 8 | }}>{ 9 | theme === 'dark' ? 10 | 11 | 12 | 13 | : theme === 'light' ? 14 | 15 | 16 | 17 | : 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/utils/flatten.js: -------------------------------------------------------------------------------- 1 | export default function flatten(list) { 2 | return list.reduce((flat, toFlatten) => { 3 | return flat.concat( 4 | toFlatten.children ? flatten(toFlatten.children) : toFlatten 5 | ) 6 | }, []) 7 | } 8 | -------------------------------------------------------------------------------- /src/utils/reorder.js: -------------------------------------------------------------------------------- 1 | import getTitle from 'title' 2 | 3 | export default function reorderBasedOnMeta (list) { 4 | let meta = list.find(item => item.name === 'meta.json') 5 | if (!meta) { 6 | meta = {} 7 | } else { 8 | meta = meta.meta 9 | } 10 | 11 | const metaKeys = Object.keys(meta) 12 | 13 | return list.filter(a => { 14 | return a.name !== 'meta.json' && !a.name.startsWith('_') 15 | }).sort((a, b) => { 16 | return metaKeys.indexOf(a.name) - metaKeys.indexOf(b.name) 17 | }).map(a => { 18 | return { 19 | ...a, 20 | children: a.children ? reorderBasedOnMeta(a.children) : undefined, 21 | title: meta[a.name] || getTitle(a.name) 22 | } 23 | }) 24 | } 25 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | purge: [ 3 | './src/**/*.js', 4 | './src/**/*.css', 5 | ], 6 | theme: { 7 | screens: { 8 | sm: '640px', 9 | md: '768px', 10 | lg: '1024px', 11 | xl: '1280px', 12 | }, 13 | fontFamily: { 14 | display: ['inter', 'sans-serif'], 15 | }, 16 | letterSpacing: { 17 | tight: '-0.015em' 18 | }, 19 | extend: { 20 | colors: { 21 | dark: '#111' 22 | } 23 | } 24 | }, 25 | experimental: { 26 | darkModeVariant: true 27 | }, 28 | dark: 'class' 29 | } 30 | -------------------------------------------------------------------------------- /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.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.5.5": 6 | version "7.10.4" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a" 8 | integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== 9 | dependencies: 10 | "@babel/highlight" "^7.10.4" 11 | 12 | "@babel/compat-data@^7.12.1": 13 | version "7.12.1" 14 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.12.1.tgz#d7386a689aa0ddf06255005b4b991988021101a0" 15 | integrity sha512-725AQupWJZ8ba0jbKceeFblZTY90McUBWMwHhkFQ9q1zKPJ95GUktljFcgcsIVwRnTnRKlcYzfiNImg5G9m6ZQ== 16 | 17 | "@babel/core@^7.10.2": 18 | version "7.12.3" 19 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.3.tgz#1b436884e1e3bff6fb1328dc02b208759de92ad8" 20 | integrity sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g== 21 | dependencies: 22 | "@babel/code-frame" "^7.10.4" 23 | "@babel/generator" "^7.12.1" 24 | "@babel/helper-module-transforms" "^7.12.1" 25 | "@babel/helpers" "^7.12.1" 26 | "@babel/parser" "^7.12.3" 27 | "@babel/template" "^7.10.4" 28 | "@babel/traverse" "^7.12.1" 29 | "@babel/types" "^7.12.1" 30 | convert-source-map "^1.7.0" 31 | debug "^4.1.0" 32 | gensync "^1.0.0-beta.1" 33 | json5 "^2.1.2" 34 | lodash "^4.17.19" 35 | resolve "^1.3.2" 36 | semver "^5.4.1" 37 | source-map "^0.5.0" 38 | 39 | "@babel/generator@^7.12.1": 40 | version "7.12.1" 41 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.1.tgz#0d70be32bdaa03d7c51c8597dda76e0df1f15468" 42 | integrity sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg== 43 | dependencies: 44 | "@babel/types" "^7.12.1" 45 | jsesc "^2.5.1" 46 | source-map "^0.5.0" 47 | 48 | "@babel/helper-annotate-as-pure@^7.10.4": 49 | version "7.10.4" 50 | resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz#5bf0d495a3f757ac3bda48b5bf3b3ba309c72ba3" 51 | integrity sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA== 52 | dependencies: 53 | "@babel/types" "^7.10.4" 54 | 55 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.10.4": 56 | version "7.10.4" 57 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz#bb0b75f31bf98cbf9ff143c1ae578b87274ae1a3" 58 | integrity sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg== 59 | dependencies: 60 | "@babel/helper-explode-assignable-expression" "^7.10.4" 61 | "@babel/types" "^7.10.4" 62 | 63 | "@babel/helper-builder-react-jsx-experimental@^7.12.1": 64 | version "7.12.4" 65 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.12.4.tgz#55fc1ead5242caa0ca2875dcb8eed6d311e50f48" 66 | integrity sha512-AjEa0jrQqNk7eDQOo0pTfUOwQBMF+xVqrausQwT9/rTKy0g04ggFNaJpaE09IQMn9yExluigWMJcj0WC7bq+Og== 67 | dependencies: 68 | "@babel/helper-annotate-as-pure" "^7.10.4" 69 | "@babel/helper-module-imports" "^7.12.1" 70 | "@babel/types" "^7.12.1" 71 | 72 | "@babel/helper-builder-react-jsx@^7.10.4": 73 | version "7.10.4" 74 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.10.4.tgz#8095cddbff858e6fa9c326daee54a2f2732c1d5d" 75 | integrity sha512-5nPcIZ7+KKDxT1427oBivl9V9YTal7qk0diccnh7RrcgrT/pGFOjgGw1dgryyx1GvHEpXVfoDF6Ak3rTiWh8Rg== 76 | dependencies: 77 | "@babel/helper-annotate-as-pure" "^7.10.4" 78 | "@babel/types" "^7.10.4" 79 | 80 | "@babel/helper-compilation-targets@^7.12.1": 81 | version "7.12.1" 82 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.1.tgz#310e352888fbdbdd8577be8dfdd2afb9e7adcf50" 83 | integrity sha512-jtBEif7jsPwP27GPHs06v4WBV0KrE8a/P7n0N0sSvHn2hwUCYnolP/CLmz51IzAW4NlN+HuoBtb9QcwnRo9F/g== 84 | dependencies: 85 | "@babel/compat-data" "^7.12.1" 86 | "@babel/helper-validator-option" "^7.12.1" 87 | browserslist "^4.12.0" 88 | semver "^5.5.0" 89 | 90 | "@babel/helper-create-class-features-plugin@^7.12.1", "@babel/helper-create-class-features-plugin@^7.7.4": 91 | version "7.12.1" 92 | resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz#3c45998f431edd4a9214c5f1d3ad1448a6137f6e" 93 | integrity sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w== 94 | dependencies: 95 | "@babel/helper-function-name" "^7.10.4" 96 | "@babel/helper-member-expression-to-functions" "^7.12.1" 97 | "@babel/helper-optimise-call-expression" "^7.10.4" 98 | "@babel/helper-replace-supers" "^7.12.1" 99 | "@babel/helper-split-export-declaration" "^7.10.4" 100 | 101 | "@babel/helper-create-regexp-features-plugin@^7.12.1": 102 | version "7.12.1" 103 | resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.1.tgz#18b1302d4677f9dc4740fe8c9ed96680e29d37e8" 104 | integrity sha512-rsZ4LGvFTZnzdNZR5HZdmJVuXK8834R5QkF3WvcnBhrlVtF0HSIUC6zbreL9MgjTywhKokn8RIYRiq99+DLAxA== 105 | dependencies: 106 | "@babel/helper-annotate-as-pure" "^7.10.4" 107 | "@babel/helper-regex" "^7.10.4" 108 | regexpu-core "^4.7.1" 109 | 110 | "@babel/helper-define-map@^7.10.4": 111 | version "7.10.5" 112 | resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz#b53c10db78a640800152692b13393147acb9bb30" 113 | integrity sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ== 114 | dependencies: 115 | "@babel/helper-function-name" "^7.10.4" 116 | "@babel/types" "^7.10.5" 117 | lodash "^4.17.19" 118 | 119 | "@babel/helper-explode-assignable-expression@^7.10.4": 120 | version "7.12.1" 121 | resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.1.tgz#8006a466695c4ad86a2a5f2fb15b5f2c31ad5633" 122 | integrity sha512-dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA== 123 | dependencies: 124 | "@babel/types" "^7.12.1" 125 | 126 | "@babel/helper-function-name@^7.10.4": 127 | version "7.10.4" 128 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz#d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a" 129 | integrity sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ== 130 | dependencies: 131 | "@babel/helper-get-function-arity" "^7.10.4" 132 | "@babel/template" "^7.10.4" 133 | "@babel/types" "^7.10.4" 134 | 135 | "@babel/helper-get-function-arity@^7.10.4": 136 | version "7.10.4" 137 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz#98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2" 138 | integrity sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A== 139 | dependencies: 140 | "@babel/types" "^7.10.4" 141 | 142 | "@babel/helper-hoist-variables@^7.10.4": 143 | version "7.10.4" 144 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz#d49b001d1d5a68ca5e6604dda01a6297f7c9381e" 145 | integrity sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA== 146 | dependencies: 147 | "@babel/types" "^7.10.4" 148 | 149 | "@babel/helper-member-expression-to-functions@^7.12.1": 150 | version "7.12.1" 151 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz#fba0f2fcff3fba00e6ecb664bb5e6e26e2d6165c" 152 | integrity sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ== 153 | dependencies: 154 | "@babel/types" "^7.12.1" 155 | 156 | "@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.12.1": 157 | version "7.12.1" 158 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz#1644c01591a15a2f084dd6d092d9430eb1d1216c" 159 | integrity sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA== 160 | dependencies: 161 | "@babel/types" "^7.12.1" 162 | 163 | "@babel/helper-module-transforms@^7.12.1": 164 | version "7.12.1" 165 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz#7954fec71f5b32c48e4b303b437c34453fd7247c" 166 | integrity sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w== 167 | dependencies: 168 | "@babel/helper-module-imports" "^7.12.1" 169 | "@babel/helper-replace-supers" "^7.12.1" 170 | "@babel/helper-simple-access" "^7.12.1" 171 | "@babel/helper-split-export-declaration" "^7.11.0" 172 | "@babel/helper-validator-identifier" "^7.10.4" 173 | "@babel/template" "^7.10.4" 174 | "@babel/traverse" "^7.12.1" 175 | "@babel/types" "^7.12.1" 176 | lodash "^4.17.19" 177 | 178 | "@babel/helper-optimise-call-expression@^7.10.4": 179 | version "7.10.4" 180 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz#50dc96413d594f995a77905905b05893cd779673" 181 | integrity sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg== 182 | dependencies: 183 | "@babel/types" "^7.10.4" 184 | 185 | "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": 186 | version "7.10.4" 187 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375" 188 | integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg== 189 | 190 | "@babel/helper-regex@^7.10.4": 191 | version "7.10.5" 192 | resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.10.5.tgz#32dfbb79899073c415557053a19bd055aae50ae0" 193 | integrity sha512-68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg== 194 | dependencies: 195 | lodash "^4.17.19" 196 | 197 | "@babel/helper-remap-async-to-generator@^7.12.1": 198 | version "7.12.1" 199 | resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz#8c4dbbf916314f6047dc05e6a2217074238347fd" 200 | integrity sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A== 201 | dependencies: 202 | "@babel/helper-annotate-as-pure" "^7.10.4" 203 | "@babel/helper-wrap-function" "^7.10.4" 204 | "@babel/types" "^7.12.1" 205 | 206 | "@babel/helper-replace-supers@^7.12.1": 207 | version "7.12.1" 208 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz#f15c9cc897439281891e11d5ce12562ac0cf3fa9" 209 | integrity sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw== 210 | dependencies: 211 | "@babel/helper-member-expression-to-functions" "^7.12.1" 212 | "@babel/helper-optimise-call-expression" "^7.10.4" 213 | "@babel/traverse" "^7.12.1" 214 | "@babel/types" "^7.12.1" 215 | 216 | "@babel/helper-simple-access@^7.12.1": 217 | version "7.12.1" 218 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz#32427e5aa61547d38eb1e6eaf5fd1426fdad9136" 219 | integrity sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA== 220 | dependencies: 221 | "@babel/types" "^7.12.1" 222 | 223 | "@babel/helper-skip-transparent-expression-wrappers@^7.12.1": 224 | version "7.12.1" 225 | resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz#462dc63a7e435ade8468385c63d2b84cce4b3cbf" 226 | integrity sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA== 227 | dependencies: 228 | "@babel/types" "^7.12.1" 229 | 230 | "@babel/helper-split-export-declaration@^7.10.4", "@babel/helper-split-export-declaration@^7.11.0": 231 | version "7.11.0" 232 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f" 233 | integrity sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg== 234 | dependencies: 235 | "@babel/types" "^7.11.0" 236 | 237 | "@babel/helper-validator-identifier@^7.10.4": 238 | version "7.10.4" 239 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2" 240 | integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw== 241 | 242 | "@babel/helper-validator-option@^7.12.1": 243 | version "7.12.1" 244 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.1.tgz#175567380c3e77d60ff98a54bb015fe78f2178d9" 245 | integrity sha512-YpJabsXlJVWP0USHjnC/AQDTLlZERbON577YUVO/wLpqyj6HAtVYnWaQaN0iUN+1/tWn3c+uKKXjRut5115Y2A== 246 | 247 | "@babel/helper-wrap-function@^7.10.4": 248 | version "7.12.3" 249 | resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.12.3.tgz#3332339fc4d1fbbf1c27d7958c27d34708e990d9" 250 | integrity sha512-Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow== 251 | dependencies: 252 | "@babel/helper-function-name" "^7.10.4" 253 | "@babel/template" "^7.10.4" 254 | "@babel/traverse" "^7.10.4" 255 | "@babel/types" "^7.10.4" 256 | 257 | "@babel/helpers@^7.12.1": 258 | version "7.12.1" 259 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.12.1.tgz#8a8261c1d438ec18cb890434df4ec768734c1e79" 260 | integrity sha512-9JoDSBGoWtmbay98efmT2+mySkwjzeFeAL9BuWNoVQpkPFQF8SIIFUfY5os9u8wVzglzoiPRSW7cuJmBDUt43g== 261 | dependencies: 262 | "@babel/template" "^7.10.4" 263 | "@babel/traverse" "^7.12.1" 264 | "@babel/types" "^7.12.1" 265 | 266 | "@babel/highlight@^7.10.4": 267 | version "7.10.4" 268 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" 269 | integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== 270 | dependencies: 271 | "@babel/helper-validator-identifier" "^7.10.4" 272 | chalk "^2.0.0" 273 | js-tokens "^4.0.0" 274 | 275 | "@babel/parser@^7.10.4", "@babel/parser@^7.12.1", "@babel/parser@^7.12.3", "@babel/parser@^7.3.3": 276 | version "7.12.3" 277 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.3.tgz#a305415ebe7a6c7023b40b5122a0662d928334cd" 278 | integrity sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw== 279 | 280 | "@babel/plugin-proposal-async-generator-functions@^7.12.1": 281 | version "7.12.1" 282 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz#dc6c1170e27d8aca99ff65f4925bd06b1c90550e" 283 | integrity sha512-d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A== 284 | dependencies: 285 | "@babel/helper-plugin-utils" "^7.10.4" 286 | "@babel/helper-remap-async-to-generator" "^7.12.1" 287 | "@babel/plugin-syntax-async-generators" "^7.8.0" 288 | 289 | "@babel/plugin-proposal-class-properties@7.7.4": 290 | version "7.7.4" 291 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.7.4.tgz#2f964f0cb18b948450362742e33e15211e77c2ba" 292 | integrity sha512-EcuXeV4Hv1X3+Q1TsuOmyyxeTRiSqurGJ26+I/FW1WbymmRRapVORm6x1Zl3iDIHyRxEs+VXWp6qnlcfcJSbbw== 293 | dependencies: 294 | "@babel/helper-create-class-features-plugin" "^7.7.4" 295 | "@babel/helper-plugin-utils" "^7.0.0" 296 | 297 | "@babel/plugin-proposal-class-properties@^7.12.1": 298 | version "7.12.1" 299 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz#a082ff541f2a29a4821065b8add9346c0c16e5de" 300 | integrity sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w== 301 | dependencies: 302 | "@babel/helper-create-class-features-plugin" "^7.12.1" 303 | "@babel/helper-plugin-utils" "^7.10.4" 304 | 305 | "@babel/plugin-proposal-dynamic-import@^7.12.1": 306 | version "7.12.1" 307 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz#43eb5c2a3487ecd98c5c8ea8b5fdb69a2749b2dc" 308 | integrity sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ== 309 | dependencies: 310 | "@babel/helper-plugin-utils" "^7.10.4" 311 | "@babel/plugin-syntax-dynamic-import" "^7.8.0" 312 | 313 | "@babel/plugin-proposal-export-namespace-from@^7.12.1": 314 | version "7.12.1" 315 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.1.tgz#8b9b8f376b2d88f5dd774e4d24a5cc2e3679b6d4" 316 | integrity sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw== 317 | dependencies: 318 | "@babel/helper-plugin-utils" "^7.10.4" 319 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" 320 | 321 | "@babel/plugin-proposal-json-strings@^7.12.1": 322 | version "7.12.1" 323 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz#d45423b517714eedd5621a9dfdc03fa9f4eb241c" 324 | integrity sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw== 325 | dependencies: 326 | "@babel/helper-plugin-utils" "^7.10.4" 327 | "@babel/plugin-syntax-json-strings" "^7.8.0" 328 | 329 | "@babel/plugin-proposal-logical-assignment-operators@^7.12.1": 330 | version "7.12.1" 331 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.1.tgz#f2c490d36e1b3c9659241034a5d2cd50263a2751" 332 | integrity sha512-k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA== 333 | dependencies: 334 | "@babel/helper-plugin-utils" "^7.10.4" 335 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" 336 | 337 | "@babel/plugin-proposal-nullish-coalescing-operator@^7.12.1": 338 | version "7.12.1" 339 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz#3ed4fff31c015e7f3f1467f190dbe545cd7b046c" 340 | integrity sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg== 341 | dependencies: 342 | "@babel/helper-plugin-utils" "^7.10.4" 343 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" 344 | 345 | "@babel/plugin-proposal-numeric-separator@^7.12.1": 346 | version "7.12.1" 347 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.1.tgz#0e2c6774c4ce48be412119b4d693ac777f7685a6" 348 | integrity sha512-MR7Ok+Af3OhNTCxYVjJZHS0t97ydnJZt/DbR4WISO39iDnhiD8XHrY12xuSJ90FFEGjir0Fzyyn7g/zY6hxbxA== 349 | dependencies: 350 | "@babel/helper-plugin-utils" "^7.10.4" 351 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" 352 | 353 | "@babel/plugin-proposal-object-rest-spread@^7.12.1": 354 | version "7.12.1" 355 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz#def9bd03cea0f9b72283dac0ec22d289c7691069" 356 | integrity sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA== 357 | dependencies: 358 | "@babel/helper-plugin-utils" "^7.10.4" 359 | "@babel/plugin-syntax-object-rest-spread" "^7.8.0" 360 | "@babel/plugin-transform-parameters" "^7.12.1" 361 | 362 | "@babel/plugin-proposal-optional-catch-binding@^7.12.1": 363 | version "7.12.1" 364 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz#ccc2421af64d3aae50b558a71cede929a5ab2942" 365 | integrity sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g== 366 | dependencies: 367 | "@babel/helper-plugin-utils" "^7.10.4" 368 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" 369 | 370 | "@babel/plugin-proposal-optional-chaining@^7.12.1": 371 | version "7.12.1" 372 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.1.tgz#cce122203fc8a32794296fc377c6dedaf4363797" 373 | integrity sha512-c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw== 374 | dependencies: 375 | "@babel/helper-plugin-utils" "^7.10.4" 376 | "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" 377 | "@babel/plugin-syntax-optional-chaining" "^7.8.0" 378 | 379 | "@babel/plugin-proposal-private-methods@^7.12.1": 380 | version "7.12.1" 381 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz#86814f6e7a21374c980c10d38b4493e703f4a389" 382 | integrity sha512-mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w== 383 | dependencies: 384 | "@babel/helper-create-class-features-plugin" "^7.12.1" 385 | "@babel/helper-plugin-utils" "^7.10.4" 386 | 387 | "@babel/plugin-proposal-unicode-property-regex@^7.12.1", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": 388 | version "7.12.1" 389 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz#2a183958d417765b9eae334f47758e5d6a82e072" 390 | integrity sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w== 391 | dependencies: 392 | "@babel/helper-create-regexp-features-plugin" "^7.12.1" 393 | "@babel/helper-plugin-utils" "^7.10.4" 394 | 395 | "@babel/plugin-syntax-async-generators@^7.8.0": 396 | version "7.8.4" 397 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" 398 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== 399 | dependencies: 400 | "@babel/helper-plugin-utils" "^7.8.0" 401 | 402 | "@babel/plugin-syntax-class-properties@^7.12.1": 403 | version "7.12.1" 404 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz#bcb297c5366e79bebadef509549cd93b04f19978" 405 | integrity sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA== 406 | dependencies: 407 | "@babel/helper-plugin-utils" "^7.10.4" 408 | 409 | "@babel/plugin-syntax-dynamic-import@^7.8.0": 410 | version "7.8.3" 411 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" 412 | integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== 413 | dependencies: 414 | "@babel/helper-plugin-utils" "^7.8.0" 415 | 416 | "@babel/plugin-syntax-export-namespace-from@^7.8.3": 417 | version "7.8.3" 418 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" 419 | integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== 420 | dependencies: 421 | "@babel/helper-plugin-utils" "^7.8.3" 422 | 423 | "@babel/plugin-syntax-flow@^7.12.1": 424 | version "7.12.1" 425 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.12.1.tgz#a77670d9abe6d63e8acadf4c31bb1eb5a506bbdd" 426 | integrity sha512-1lBLLmtxrwpm4VKmtVFselI/P3pX+G63fAtUUt6b2Nzgao77KNDwyuRt90Mj2/9pKobtt68FdvjfqohZjg/FCA== 427 | dependencies: 428 | "@babel/helper-plugin-utils" "^7.10.4" 429 | 430 | "@babel/plugin-syntax-import-meta@^7.10.1": 431 | version "7.10.4" 432 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" 433 | integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== 434 | dependencies: 435 | "@babel/helper-plugin-utils" "^7.10.4" 436 | 437 | "@babel/plugin-syntax-json-strings@^7.8.0": 438 | version "7.8.3" 439 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" 440 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== 441 | dependencies: 442 | "@babel/helper-plugin-utils" "^7.8.0" 443 | 444 | "@babel/plugin-syntax-jsx@^7.10.1", "@babel/plugin-syntax-jsx@^7.12.1": 445 | version "7.12.1" 446 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz#9d9d357cc818aa7ae7935917c1257f67677a0926" 447 | integrity sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg== 448 | dependencies: 449 | "@babel/helper-plugin-utils" "^7.10.4" 450 | 451 | "@babel/plugin-syntax-logical-assignment-operators@^7.10.4": 452 | version "7.10.4" 453 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" 454 | integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== 455 | dependencies: 456 | "@babel/helper-plugin-utils" "^7.10.4" 457 | 458 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0": 459 | version "7.8.3" 460 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" 461 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== 462 | dependencies: 463 | "@babel/helper-plugin-utils" "^7.8.0" 464 | 465 | "@babel/plugin-syntax-numeric-separator@^7.10.4": 466 | version "7.10.4" 467 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" 468 | integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== 469 | dependencies: 470 | "@babel/helper-plugin-utils" "^7.10.4" 471 | 472 | "@babel/plugin-syntax-object-rest-spread@^7.8.0": 473 | version "7.8.3" 474 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" 475 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== 476 | dependencies: 477 | "@babel/helper-plugin-utils" "^7.8.0" 478 | 479 | "@babel/plugin-syntax-optional-catch-binding@^7.8.0": 480 | version "7.8.3" 481 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" 482 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== 483 | dependencies: 484 | "@babel/helper-plugin-utils" "^7.8.0" 485 | 486 | "@babel/plugin-syntax-optional-chaining@^7.8.0": 487 | version "7.8.3" 488 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" 489 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== 490 | dependencies: 491 | "@babel/helper-plugin-utils" "^7.8.0" 492 | 493 | "@babel/plugin-syntax-top-level-await@^7.12.1": 494 | version "7.12.1" 495 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz#dd6c0b357ac1bb142d98537450a319625d13d2a0" 496 | integrity sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A== 497 | dependencies: 498 | "@babel/helper-plugin-utils" "^7.10.4" 499 | 500 | "@babel/plugin-transform-arrow-functions@^7.12.1": 501 | version "7.12.1" 502 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz#8083ffc86ac8e777fbe24b5967c4b2521f3cb2b3" 503 | integrity sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A== 504 | dependencies: 505 | "@babel/helper-plugin-utils" "^7.10.4" 506 | 507 | "@babel/plugin-transform-async-to-generator@^7.12.1": 508 | version "7.12.1" 509 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz#3849a49cc2a22e9743cbd6b52926d30337229af1" 510 | integrity sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A== 511 | dependencies: 512 | "@babel/helper-module-imports" "^7.12.1" 513 | "@babel/helper-plugin-utils" "^7.10.4" 514 | "@babel/helper-remap-async-to-generator" "^7.12.1" 515 | 516 | "@babel/plugin-transform-block-scoped-functions@^7.12.1": 517 | version "7.12.1" 518 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz#f2a1a365bde2b7112e0a6ded9067fdd7c07905d9" 519 | integrity sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA== 520 | dependencies: 521 | "@babel/helper-plugin-utils" "^7.10.4" 522 | 523 | "@babel/plugin-transform-block-scoping@^7.12.1": 524 | version "7.12.1" 525 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.1.tgz#f0ee727874b42a208a48a586b84c3d222c2bbef1" 526 | integrity sha512-zJyAC9sZdE60r1nVQHblcfCj29Dh2Y0DOvlMkcqSo0ckqjiCwNiUezUKw+RjOCwGfpLRwnAeQ2XlLpsnGkvv9w== 527 | dependencies: 528 | "@babel/helper-plugin-utils" "^7.10.4" 529 | 530 | "@babel/plugin-transform-classes@^7.12.1": 531 | version "7.12.1" 532 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz#65e650fcaddd3d88ddce67c0f834a3d436a32db6" 533 | integrity sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog== 534 | dependencies: 535 | "@babel/helper-annotate-as-pure" "^7.10.4" 536 | "@babel/helper-define-map" "^7.10.4" 537 | "@babel/helper-function-name" "^7.10.4" 538 | "@babel/helper-optimise-call-expression" "^7.10.4" 539 | "@babel/helper-plugin-utils" "^7.10.4" 540 | "@babel/helper-replace-supers" "^7.12.1" 541 | "@babel/helper-split-export-declaration" "^7.10.4" 542 | globals "^11.1.0" 543 | 544 | "@babel/plugin-transform-computed-properties@^7.12.1": 545 | version "7.12.1" 546 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz#d68cf6c9b7f838a8a4144badbe97541ea0904852" 547 | integrity sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg== 548 | dependencies: 549 | "@babel/helper-plugin-utils" "^7.10.4" 550 | 551 | "@babel/plugin-transform-destructuring@^7.12.1": 552 | version "7.12.1" 553 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz#b9a570fe0d0a8d460116413cb4f97e8e08b2f847" 554 | integrity sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw== 555 | dependencies: 556 | "@babel/helper-plugin-utils" "^7.10.4" 557 | 558 | "@babel/plugin-transform-dotall-regex@^7.12.1", "@babel/plugin-transform-dotall-regex@^7.4.4": 559 | version "7.12.1" 560 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz#a1d16c14862817b6409c0a678d6f9373ca9cd975" 561 | integrity sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA== 562 | dependencies: 563 | "@babel/helper-create-regexp-features-plugin" "^7.12.1" 564 | "@babel/helper-plugin-utils" "^7.10.4" 565 | 566 | "@babel/plugin-transform-duplicate-keys@^7.12.1": 567 | version "7.12.1" 568 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz#745661baba295ac06e686822797a69fbaa2ca228" 569 | integrity sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw== 570 | dependencies: 571 | "@babel/helper-plugin-utils" "^7.10.4" 572 | 573 | "@babel/plugin-transform-exponentiation-operator@^7.12.1": 574 | version "7.12.1" 575 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz#b0f2ed356ba1be1428ecaf128ff8a24f02830ae0" 576 | integrity sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug== 577 | dependencies: 578 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.4" 579 | "@babel/helper-plugin-utils" "^7.10.4" 580 | 581 | "@babel/plugin-transform-flow-strip-types@^7.10.1", "@babel/plugin-transform-flow-strip-types@^7.12.1": 582 | version "7.12.1" 583 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.12.1.tgz#8430decfa7eb2aea5414ed4a3fa6e1652b7d77c4" 584 | integrity sha512-8hAtkmsQb36yMmEtk2JZ9JnVyDSnDOdlB+0nEGzIDLuK4yR3JcEjfuFPYkdEPSh8Id+rAMeBEn+X0iVEyho6Hg== 585 | dependencies: 586 | "@babel/helper-plugin-utils" "^7.10.4" 587 | "@babel/plugin-syntax-flow" "^7.12.1" 588 | 589 | "@babel/plugin-transform-for-of@^7.12.1": 590 | version "7.12.1" 591 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz#07640f28867ed16f9511c99c888291f560921cfa" 592 | integrity sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg== 593 | dependencies: 594 | "@babel/helper-plugin-utils" "^7.10.4" 595 | 596 | "@babel/plugin-transform-function-name@^7.12.1": 597 | version "7.12.1" 598 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz#2ec76258c70fe08c6d7da154003a480620eba667" 599 | integrity sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw== 600 | dependencies: 601 | "@babel/helper-function-name" "^7.10.4" 602 | "@babel/helper-plugin-utils" "^7.10.4" 603 | 604 | "@babel/plugin-transform-literals@^7.12.1": 605 | version "7.12.1" 606 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz#d73b803a26b37017ddf9d3bb8f4dc58bfb806f57" 607 | integrity sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ== 608 | dependencies: 609 | "@babel/helper-plugin-utils" "^7.10.4" 610 | 611 | "@babel/plugin-transform-member-expression-literals@^7.12.1": 612 | version "7.12.1" 613 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz#496038602daf1514a64d43d8e17cbb2755e0c3ad" 614 | integrity sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg== 615 | dependencies: 616 | "@babel/helper-plugin-utils" "^7.10.4" 617 | 618 | "@babel/plugin-transform-modules-amd@^7.12.1": 619 | version "7.12.1" 620 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz#3154300b026185666eebb0c0ed7f8415fefcf6f9" 621 | integrity sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ== 622 | dependencies: 623 | "@babel/helper-module-transforms" "^7.12.1" 624 | "@babel/helper-plugin-utils" "^7.10.4" 625 | babel-plugin-dynamic-import-node "^2.3.3" 626 | 627 | "@babel/plugin-transform-modules-commonjs@^7.12.1": 628 | version "7.12.1" 629 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz#fa403124542636c786cf9b460a0ffbb48a86e648" 630 | integrity sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag== 631 | dependencies: 632 | "@babel/helper-module-transforms" "^7.12.1" 633 | "@babel/helper-plugin-utils" "^7.10.4" 634 | "@babel/helper-simple-access" "^7.12.1" 635 | babel-plugin-dynamic-import-node "^2.3.3" 636 | 637 | "@babel/plugin-transform-modules-systemjs@^7.12.1": 638 | version "7.12.1" 639 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz#663fea620d593c93f214a464cd399bf6dc683086" 640 | integrity sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q== 641 | dependencies: 642 | "@babel/helper-hoist-variables" "^7.10.4" 643 | "@babel/helper-module-transforms" "^7.12.1" 644 | "@babel/helper-plugin-utils" "^7.10.4" 645 | "@babel/helper-validator-identifier" "^7.10.4" 646 | babel-plugin-dynamic-import-node "^2.3.3" 647 | 648 | "@babel/plugin-transform-modules-umd@^7.12.1": 649 | version "7.12.1" 650 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz#eb5a218d6b1c68f3d6217b8fa2cc82fec6547902" 651 | integrity sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q== 652 | dependencies: 653 | "@babel/helper-module-transforms" "^7.12.1" 654 | "@babel/helper-plugin-utils" "^7.10.4" 655 | 656 | "@babel/plugin-transform-named-capturing-groups-regex@^7.12.1": 657 | version "7.12.1" 658 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz#b407f5c96be0d9f5f88467497fa82b30ac3e8753" 659 | integrity sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q== 660 | dependencies: 661 | "@babel/helper-create-regexp-features-plugin" "^7.12.1" 662 | 663 | "@babel/plugin-transform-new-target@^7.12.1": 664 | version "7.12.1" 665 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz#80073f02ee1bb2d365c3416490e085c95759dec0" 666 | integrity sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw== 667 | dependencies: 668 | "@babel/helper-plugin-utils" "^7.10.4" 669 | 670 | "@babel/plugin-transform-object-super@^7.12.1": 671 | version "7.12.1" 672 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz#4ea08696b8d2e65841d0c7706482b048bed1066e" 673 | integrity sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw== 674 | dependencies: 675 | "@babel/helper-plugin-utils" "^7.10.4" 676 | "@babel/helper-replace-supers" "^7.12.1" 677 | 678 | "@babel/plugin-transform-parameters@^7.12.1": 679 | version "7.12.1" 680 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz#d2e963b038771650c922eff593799c96d853255d" 681 | integrity sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg== 682 | dependencies: 683 | "@babel/helper-plugin-utils" "^7.10.4" 684 | 685 | "@babel/plugin-transform-property-literals@^7.12.1": 686 | version "7.12.1" 687 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz#41bc81200d730abb4456ab8b3fbd5537b59adecd" 688 | integrity sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ== 689 | dependencies: 690 | "@babel/helper-plugin-utils" "^7.10.4" 691 | 692 | "@babel/plugin-transform-react-display-name@^7.12.1": 693 | version "7.12.1" 694 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.1.tgz#1cbcd0c3b1d6648c55374a22fc9b6b7e5341c00d" 695 | integrity sha512-cAzB+UzBIrekfYxyLlFqf/OagTvHLcVBb5vpouzkYkBclRPraiygVnafvAoipErZLI8ANv8Ecn6E/m5qPXD26w== 696 | dependencies: 697 | "@babel/helper-plugin-utils" "^7.10.4" 698 | 699 | "@babel/plugin-transform-react-jsx-development@^7.12.1": 700 | version "7.12.1" 701 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.1.tgz#0b8f8cd531dcf7991f1e5f2c10a2a4f1cfc78e36" 702 | integrity sha512-IilcGWdN1yNgEGOrB96jbTplRh+V2Pz1EoEwsKsHfX1a/L40cUYuD71Zepa7C+ujv7kJIxnDftWeZbKNEqZjCQ== 703 | dependencies: 704 | "@babel/helper-builder-react-jsx-experimental" "^7.12.1" 705 | "@babel/helper-plugin-utils" "^7.10.4" 706 | "@babel/plugin-syntax-jsx" "^7.12.1" 707 | 708 | "@babel/plugin-transform-react-jsx-self@^7.12.1": 709 | version "7.12.1" 710 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.12.1.tgz#ef43cbca2a14f1bd17807dbe4376ff89d714cf28" 711 | integrity sha512-FbpL0ieNWiiBB5tCldX17EtXgmzeEZjFrix72rQYeq9X6nUK38HCaxexzVQrZWXanxKJPKVVIU37gFjEQYkPkA== 712 | dependencies: 713 | "@babel/helper-plugin-utils" "^7.10.4" 714 | 715 | "@babel/plugin-transform-react-jsx-source@^7.12.1": 716 | version "7.12.1" 717 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.12.1.tgz#d07de6863f468da0809edcf79a1aa8ce2a82a26b" 718 | integrity sha512-keQ5kBfjJNRc6zZN1/nVHCd6LLIHq4aUKcVnvE/2l+ZZROSbqoiGFRtT5t3Is89XJxBQaP7NLZX2jgGHdZvvFQ== 719 | dependencies: 720 | "@babel/helper-plugin-utils" "^7.10.4" 721 | 722 | "@babel/plugin-transform-react-jsx@^7.10.1", "@babel/plugin-transform-react-jsx@^7.12.1": 723 | version "7.12.1" 724 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.1.tgz#c2d96c77c2b0e4362cc4e77a43ce7c2539d478cb" 725 | integrity sha512-RmKejwnT0T0QzQUzcbP5p1VWlpnP8QHtdhEtLG55ZDQnJNalbF3eeDyu3dnGKvGzFIQiBzFhBYTwvv435p9Xpw== 726 | dependencies: 727 | "@babel/helper-builder-react-jsx" "^7.10.4" 728 | "@babel/helper-builder-react-jsx-experimental" "^7.12.1" 729 | "@babel/helper-plugin-utils" "^7.10.4" 730 | "@babel/plugin-syntax-jsx" "^7.12.1" 731 | 732 | "@babel/plugin-transform-react-pure-annotations@^7.12.1": 733 | version "7.12.1" 734 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.12.1.tgz#05d46f0ab4d1339ac59adf20a1462c91b37a1a42" 735 | integrity sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg== 736 | dependencies: 737 | "@babel/helper-annotate-as-pure" "^7.10.4" 738 | "@babel/helper-plugin-utils" "^7.10.4" 739 | 740 | "@babel/plugin-transform-regenerator@^7.10.1", "@babel/plugin-transform-regenerator@^7.12.1": 741 | version "7.12.1" 742 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz#5f0a28d842f6462281f06a964e88ba8d7ab49753" 743 | integrity sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng== 744 | dependencies: 745 | regenerator-transform "^0.14.2" 746 | 747 | "@babel/plugin-transform-reserved-words@^7.12.1": 748 | version "7.12.1" 749 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz#6fdfc8cc7edcc42b36a7c12188c6787c873adcd8" 750 | integrity sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A== 751 | dependencies: 752 | "@babel/helper-plugin-utils" "^7.10.4" 753 | 754 | "@babel/plugin-transform-shorthand-properties@^7.12.1": 755 | version "7.12.1" 756 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz#0bf9cac5550fce0cfdf043420f661d645fdc75e3" 757 | integrity sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw== 758 | dependencies: 759 | "@babel/helper-plugin-utils" "^7.10.4" 760 | 761 | "@babel/plugin-transform-spread@^7.12.1": 762 | version "7.12.1" 763 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz#527f9f311be4ec7fdc2b79bb89f7bf884b3e1e1e" 764 | integrity sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng== 765 | dependencies: 766 | "@babel/helper-plugin-utils" "^7.10.4" 767 | "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" 768 | 769 | "@babel/plugin-transform-sticky-regex@^7.12.1": 770 | version "7.12.1" 771 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.1.tgz#5c24cf50de396d30e99afc8d1c700e8bce0f5caf" 772 | integrity sha512-CiUgKQ3AGVk7kveIaPEET1jNDhZZEl1RPMWdTBE1799bdz++SwqDHStmxfCtDfBhQgCl38YRiSnrMuUMZIWSUQ== 773 | dependencies: 774 | "@babel/helper-plugin-utils" "^7.10.4" 775 | "@babel/helper-regex" "^7.10.4" 776 | 777 | "@babel/plugin-transform-template-literals@^7.12.1": 778 | version "7.12.1" 779 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz#b43ece6ed9a79c0c71119f576d299ef09d942843" 780 | integrity sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw== 781 | dependencies: 782 | "@babel/helper-plugin-utils" "^7.10.4" 783 | 784 | "@babel/plugin-transform-typeof-symbol@^7.12.1": 785 | version "7.12.1" 786 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.1.tgz#9ca6be343d42512fbc2e68236a82ae64bc7af78a" 787 | integrity sha512-EPGgpGy+O5Kg5pJFNDKuxt9RdmTgj5sgrus2XVeMp/ZIbOESadgILUbm50SNpghOh3/6yrbsH+NB5+WJTmsA7Q== 788 | dependencies: 789 | "@babel/helper-plugin-utils" "^7.10.4" 790 | 791 | "@babel/plugin-transform-unicode-escapes@^7.12.1": 792 | version "7.12.1" 793 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz#5232b9f81ccb07070b7c3c36c67a1b78f1845709" 794 | integrity sha512-I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q== 795 | dependencies: 796 | "@babel/helper-plugin-utils" "^7.10.4" 797 | 798 | "@babel/plugin-transform-unicode-regex@^7.12.1": 799 | version "7.12.1" 800 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz#cc9661f61390db5c65e3febaccefd5c6ac3faecb" 801 | integrity sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg== 802 | dependencies: 803 | "@babel/helper-create-regexp-features-plugin" "^7.12.1" 804 | "@babel/helper-plugin-utils" "^7.10.4" 805 | 806 | "@babel/preset-env@^7.11.0": 807 | version "7.12.1" 808 | resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.12.1.tgz#9c7e5ca82a19efc865384bb4989148d2ee5d7ac2" 809 | integrity sha512-H8kxXmtPaAGT7TyBvSSkoSTUK6RHh61So05SyEbpmr0MCZrsNYn7mGMzzeYoOUCdHzww61k8XBft2TaES+xPLg== 810 | dependencies: 811 | "@babel/compat-data" "^7.12.1" 812 | "@babel/helper-compilation-targets" "^7.12.1" 813 | "@babel/helper-module-imports" "^7.12.1" 814 | "@babel/helper-plugin-utils" "^7.10.4" 815 | "@babel/helper-validator-option" "^7.12.1" 816 | "@babel/plugin-proposal-async-generator-functions" "^7.12.1" 817 | "@babel/plugin-proposal-class-properties" "^7.12.1" 818 | "@babel/plugin-proposal-dynamic-import" "^7.12.1" 819 | "@babel/plugin-proposal-export-namespace-from" "^7.12.1" 820 | "@babel/plugin-proposal-json-strings" "^7.12.1" 821 | "@babel/plugin-proposal-logical-assignment-operators" "^7.12.1" 822 | "@babel/plugin-proposal-nullish-coalescing-operator" "^7.12.1" 823 | "@babel/plugin-proposal-numeric-separator" "^7.12.1" 824 | "@babel/plugin-proposal-object-rest-spread" "^7.12.1" 825 | "@babel/plugin-proposal-optional-catch-binding" "^7.12.1" 826 | "@babel/plugin-proposal-optional-chaining" "^7.12.1" 827 | "@babel/plugin-proposal-private-methods" "^7.12.1" 828 | "@babel/plugin-proposal-unicode-property-regex" "^7.12.1" 829 | "@babel/plugin-syntax-async-generators" "^7.8.0" 830 | "@babel/plugin-syntax-class-properties" "^7.12.1" 831 | "@babel/plugin-syntax-dynamic-import" "^7.8.0" 832 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" 833 | "@babel/plugin-syntax-json-strings" "^7.8.0" 834 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" 835 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" 836 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" 837 | "@babel/plugin-syntax-object-rest-spread" "^7.8.0" 838 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" 839 | "@babel/plugin-syntax-optional-chaining" "^7.8.0" 840 | "@babel/plugin-syntax-top-level-await" "^7.12.1" 841 | "@babel/plugin-transform-arrow-functions" "^7.12.1" 842 | "@babel/plugin-transform-async-to-generator" "^7.12.1" 843 | "@babel/plugin-transform-block-scoped-functions" "^7.12.1" 844 | "@babel/plugin-transform-block-scoping" "^7.12.1" 845 | "@babel/plugin-transform-classes" "^7.12.1" 846 | "@babel/plugin-transform-computed-properties" "^7.12.1" 847 | "@babel/plugin-transform-destructuring" "^7.12.1" 848 | "@babel/plugin-transform-dotall-regex" "^7.12.1" 849 | "@babel/plugin-transform-duplicate-keys" "^7.12.1" 850 | "@babel/plugin-transform-exponentiation-operator" "^7.12.1" 851 | "@babel/plugin-transform-for-of" "^7.12.1" 852 | "@babel/plugin-transform-function-name" "^7.12.1" 853 | "@babel/plugin-transform-literals" "^7.12.1" 854 | "@babel/plugin-transform-member-expression-literals" "^7.12.1" 855 | "@babel/plugin-transform-modules-amd" "^7.12.1" 856 | "@babel/plugin-transform-modules-commonjs" "^7.12.1" 857 | "@babel/plugin-transform-modules-systemjs" "^7.12.1" 858 | "@babel/plugin-transform-modules-umd" "^7.12.1" 859 | "@babel/plugin-transform-named-capturing-groups-regex" "^7.12.1" 860 | "@babel/plugin-transform-new-target" "^7.12.1" 861 | "@babel/plugin-transform-object-super" "^7.12.1" 862 | "@babel/plugin-transform-parameters" "^7.12.1" 863 | "@babel/plugin-transform-property-literals" "^7.12.1" 864 | "@babel/plugin-transform-regenerator" "^7.12.1" 865 | "@babel/plugin-transform-reserved-words" "^7.12.1" 866 | "@babel/plugin-transform-shorthand-properties" "^7.12.1" 867 | "@babel/plugin-transform-spread" "^7.12.1" 868 | "@babel/plugin-transform-sticky-regex" "^7.12.1" 869 | "@babel/plugin-transform-template-literals" "^7.12.1" 870 | "@babel/plugin-transform-typeof-symbol" "^7.12.1" 871 | "@babel/plugin-transform-unicode-escapes" "^7.12.1" 872 | "@babel/plugin-transform-unicode-regex" "^7.12.1" 873 | "@babel/preset-modules" "^0.1.3" 874 | "@babel/types" "^7.12.1" 875 | core-js-compat "^3.6.2" 876 | semver "^5.5.0" 877 | 878 | "@babel/preset-flow@^7.10.1": 879 | version "7.12.1" 880 | resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.12.1.tgz#1a81d376c5a9549e75352a3888f8c273455ae940" 881 | integrity sha512-UAoyMdioAhM6H99qPoKvpHMzxmNVXno8GYU/7vZmGaHk6/KqfDYL1W0NxszVbJ2EP271b7e6Ox+Vk2A9QsB3Sw== 882 | dependencies: 883 | "@babel/helper-plugin-utils" "^7.10.4" 884 | "@babel/plugin-transform-flow-strip-types" "^7.12.1" 885 | 886 | "@babel/preset-modules@^0.1.3": 887 | version "0.1.4" 888 | resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.4.tgz#362f2b68c662842970fdb5e254ffc8fc1c2e415e" 889 | integrity sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg== 890 | dependencies: 891 | "@babel/helper-plugin-utils" "^7.0.0" 892 | "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" 893 | "@babel/plugin-transform-dotall-regex" "^7.4.4" 894 | "@babel/types" "^7.4.4" 895 | esutils "^2.0.2" 896 | 897 | "@babel/preset-react@^7.10.4": 898 | version "7.12.1" 899 | resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.12.1.tgz#7f022b13f55b6dd82f00f16d1c599ae62985358c" 900 | integrity sha512-euCExymHCi0qB9u5fKw7rvlw7AZSjw/NaB9h7EkdTt5+yHRrXdiRTh7fkG3uBPpJg82CqLfp1LHLqWGSCrab+g== 901 | dependencies: 902 | "@babel/helper-plugin-utils" "^7.10.4" 903 | "@babel/plugin-transform-react-display-name" "^7.12.1" 904 | "@babel/plugin-transform-react-jsx" "^7.12.1" 905 | "@babel/plugin-transform-react-jsx-development" "^7.12.1" 906 | "@babel/plugin-transform-react-jsx-self" "^7.12.1" 907 | "@babel/plugin-transform-react-jsx-source" "^7.12.1" 908 | "@babel/plugin-transform-react-pure-annotations" "^7.12.1" 909 | 910 | "@babel/runtime@^7.10.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4": 911 | version "7.12.1" 912 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.12.1.tgz#b4116a6b6711d010b2dad3b7b6e43bf1b9954740" 913 | integrity sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA== 914 | dependencies: 915 | regenerator-runtime "^0.13.4" 916 | 917 | "@babel/template@^7.10.4": 918 | version "7.10.4" 919 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.10.4.tgz#3251996c4200ebc71d1a8fc405fba940f36ba278" 920 | integrity sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA== 921 | dependencies: 922 | "@babel/code-frame" "^7.10.4" 923 | "@babel/parser" "^7.10.4" 924 | "@babel/types" "^7.10.4" 925 | 926 | "@babel/traverse@^7.10.4", "@babel/traverse@^7.12.1": 927 | version "7.12.1" 928 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.1.tgz#941395e0c5cc86d5d3e75caa095d3924526f0c1e" 929 | integrity sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw== 930 | dependencies: 931 | "@babel/code-frame" "^7.10.4" 932 | "@babel/generator" "^7.12.1" 933 | "@babel/helper-function-name" "^7.10.4" 934 | "@babel/helper-split-export-declaration" "^7.11.0" 935 | "@babel/parser" "^7.12.1" 936 | "@babel/types" "^7.12.1" 937 | debug "^4.1.0" 938 | globals "^11.1.0" 939 | lodash "^4.17.19" 940 | 941 | "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.12.1", "@babel/types@^7.4.4": 942 | version "7.12.1" 943 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.1.tgz#e109d9ab99a8de735be287ee3d6a9947a190c4ae" 944 | integrity sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA== 945 | dependencies: 946 | "@babel/helper-validator-identifier" "^7.10.4" 947 | lodash "^4.17.19" 948 | to-fast-properties "^2.0.0" 949 | 950 | "@fullhuman/postcss-purgecss@^2.1.2": 951 | version "2.3.0" 952 | resolved "https://registry.yarnpkg.com/@fullhuman/postcss-purgecss/-/postcss-purgecss-2.3.0.tgz#50a954757ec78696615d3e118e3fee2d9291882e" 953 | integrity sha512-qnKm5dIOyPGJ70kPZ5jiz0I9foVOic0j+cOzNDoo8KoCf6HjicIZ99UfO2OmE7vCYSKAAepEwJtNzpiiZAh9xw== 954 | dependencies: 955 | postcss "7.0.32" 956 | purgecss "^2.3.0" 957 | 958 | "@mdx-js/react@^1.6.16": 959 | version "1.6.19" 960 | resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-1.6.19.tgz#fce0f2b802804258b67817550bf3186dde2b1bd6" 961 | integrity sha512-RS37Tagqyp2R0XFPoUZeSbZC5uJQRPhqOHWeT1LEwxESjMWb3VORHz7E827ldeQr3UW6VEQEyq/THegu+bLj6A== 962 | 963 | "@reach/skip-nav@^0.11.2": 964 | version "0.11.2" 965 | resolved "https://registry.yarnpkg.com/@reach/skip-nav/-/skip-nav-0.11.2.tgz#015498b2125ad8ef1e48cb8ab33dca93925fcbc8" 966 | integrity sha512-cXGQJodYcyUBLBv59oxB4ywwgFDHnoyt8+W+ZgdR1LR9eDxx6170shP0yPcwf/5KV2tXJtNF2McRUObkUW90+Q== 967 | dependencies: 968 | "@reach/utils" "0.11.2" 969 | tslib "^2.0.0" 970 | 971 | "@reach/utils@0.11.2": 972 | version "0.11.2" 973 | resolved "https://registry.yarnpkg.com/@reach/utils/-/utils-0.11.2.tgz#be1f03650db56fd67a16d3fc70e5262cdb139cec" 974 | integrity sha512-fBTolYj+rKTROXmf0zHO0rCWSvw7J0ALmYj5QxW4DmITMOH5uyRuWDWOfqohIGFbOtF/sum50WTB3tvx76d+Aw== 975 | dependencies: 976 | "@types/warning" "^3.0.0" 977 | tslib "^2.0.0" 978 | warning "^4.0.3" 979 | 980 | "@rollup/plugin-alias@^3.1.1": 981 | version "3.1.1" 982 | resolved "https://registry.yarnpkg.com/@rollup/plugin-alias/-/plugin-alias-3.1.1.tgz#bb96cf37fefeb0a953a6566c284855c7d1cd290c" 983 | integrity sha512-hNcQY4bpBUIvxekd26DBPgF7BT4mKVNDF5tBG4Zi+3IgwLxGYRY0itHs9D0oLVwXM5pvJDWJlBQro+au8WaUWw== 984 | dependencies: 985 | slash "^3.0.0" 986 | 987 | "@rollup/plugin-babel@^5.0.3": 988 | version "5.2.1" 989 | resolved "https://registry.yarnpkg.com/@rollup/plugin-babel/-/plugin-babel-5.2.1.tgz#20fc8f8864dc0eaa1c5578408459606808f72924" 990 | integrity sha512-Jd7oqFR2dzZJ3NWANDyBjwTtX/lYbZpVcmkHrfQcpvawHs9E4c0nYk5U2mfZ6I/DZcIvy506KZJi54XK/jxH7A== 991 | dependencies: 992 | "@babel/helper-module-imports" "^7.10.4" 993 | "@rollup/pluginutils" "^3.1.0" 994 | 995 | "@rollup/plugin-commonjs@^13.0.0": 996 | version "13.0.2" 997 | resolved "https://registry.yarnpkg.com/@rollup/plugin-commonjs/-/plugin-commonjs-13.0.2.tgz#b7783f0db049450c72d60bc06cf48d4951515e58" 998 | integrity sha512-9JXf2k8xqvMYfqmhgtB6eCgMN9fbxwF1XDF3mGKJc6pkAmt0jnsqurxQ0tC1akQKNSXCm7c3unQxa3zuxtZ7mQ== 999 | dependencies: 1000 | "@rollup/pluginutils" "^3.0.8" 1001 | commondir "^1.0.1" 1002 | estree-walker "^1.0.1" 1003 | glob "^7.1.2" 1004 | is-reference "^1.1.2" 1005 | magic-string "^0.25.2" 1006 | resolve "^1.11.0" 1007 | 1008 | "@rollup/plugin-json@^4.1.0": 1009 | version "4.1.0" 1010 | resolved "https://registry.yarnpkg.com/@rollup/plugin-json/-/plugin-json-4.1.0.tgz#54e09867ae6963c593844d8bd7a9c718294496f3" 1011 | integrity sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw== 1012 | dependencies: 1013 | "@rollup/pluginutils" "^3.0.8" 1014 | 1015 | "@rollup/plugin-node-resolve@^6.1.0": 1016 | version "6.1.0" 1017 | resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-6.1.0.tgz#0d2909f4bf606ae34d43a9bc8be06a9b0c850cf0" 1018 | integrity sha512-Cv7PDIvxdE40SWilY5WgZpqfIUEaDxFxs89zCAHjqyRwlTSuql4M5hjIuc5QYJkOH0/vyiyNXKD72O+LhRipGA== 1019 | dependencies: 1020 | "@rollup/pluginutils" "^3.0.0" 1021 | "@types/resolve" "0.0.8" 1022 | builtin-modules "^3.1.0" 1023 | is-module "^1.0.0" 1024 | resolve "^1.11.1" 1025 | 1026 | "@rollup/pluginutils@^3.0.0", "@rollup/pluginutils@^3.0.8", "@rollup/pluginutils@^3.1.0": 1027 | version "3.1.0" 1028 | resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-3.1.0.tgz#706b4524ee6dc8b103b3c995533e5ad680c02b9b" 1029 | integrity sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg== 1030 | dependencies: 1031 | "@types/estree" "0.0.39" 1032 | estree-walker "^1.0.1" 1033 | picomatch "^2.2.2" 1034 | 1035 | "@sindresorhus/slugify@^1.1.0": 1036 | version "1.1.0" 1037 | resolved "https://registry.yarnpkg.com/@sindresorhus/slugify/-/slugify-1.1.0.tgz#2f195365d9b953384305b62664b44b4036c49430" 1038 | integrity sha512-ujZRbmmizX26yS/HnB3P9QNlNa4+UvHh+rIse3RbOXLp8yl6n1TxB4t7NHggtVgS8QmmOtzXo48kCxZGACpkPw== 1039 | dependencies: 1040 | "@sindresorhus/transliterate" "^0.1.1" 1041 | escape-string-regexp "^4.0.0" 1042 | 1043 | "@sindresorhus/transliterate@^0.1.1": 1044 | version "0.1.1" 1045 | resolved "https://registry.yarnpkg.com/@sindresorhus/transliterate/-/transliterate-0.1.1.tgz#779b31244781d3c898f185b61d58c89e7c782674" 1046 | integrity sha512-QSdIQ5keUFAZ3KLbfbsntW39ox0Ym8183RqTwBq/ZEFoN3NQAtGV+qWaNdzKpIDHgj9J2CQ2iNDRVU11Zyr7MQ== 1047 | dependencies: 1048 | escape-string-regexp "^2.0.0" 1049 | lodash.deburr "^4.1.0" 1050 | 1051 | "@types/estree@*": 1052 | version "0.0.45" 1053 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.45.tgz#e9387572998e5ecdac221950dab3e8c3b16af884" 1054 | integrity sha512-jnqIUKDUqJbDIUxm0Uj7bnlMnRm1T/eZ9N+AVMqhPgzrba2GhGG5o/jCTwmdPK709nEZsGoMzXEDUjcXHa3W0g== 1055 | 1056 | "@types/estree@0.0.39": 1057 | version "0.0.39" 1058 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f" 1059 | integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== 1060 | 1061 | "@types/node@*": 1062 | version "14.14.6" 1063 | resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.6.tgz#146d3da57b3c636cc0d1769396ce1cfa8991147f" 1064 | integrity sha512-6QlRuqsQ/Ox/aJEQWBEJG7A9+u7oSYl3mem/K8IzxXG/kAGbV1YPD9Bg9Zw3vyxC/YP+zONKwy8hGkSt1jxFMw== 1065 | 1066 | "@types/parse-json@^4.0.0": 1067 | version "4.0.0" 1068 | resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" 1069 | integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== 1070 | 1071 | "@types/q@^1.5.1": 1072 | version "1.5.4" 1073 | resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.4.tgz#15925414e0ad2cd765bfef58842f7e26a7accb24" 1074 | integrity sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug== 1075 | 1076 | "@types/resolve@0.0.8": 1077 | version "0.0.8" 1078 | resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-0.0.8.tgz#f26074d238e02659e323ce1a13d041eee280e194" 1079 | integrity sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ== 1080 | dependencies: 1081 | "@types/node" "*" 1082 | 1083 | "@types/warning@^3.0.0": 1084 | version "3.0.0" 1085 | resolved "https://registry.yarnpkg.com/@types/warning/-/warning-3.0.0.tgz#0d2501268ad8f9962b740d387c4654f5f8e23e52" 1086 | integrity sha1-DSUBJorY+ZYrdA04fEZU9fjiPlI= 1087 | 1088 | acorn-node@^1.6.1: 1089 | version "1.8.2" 1090 | resolved "https://registry.yarnpkg.com/acorn-node/-/acorn-node-1.8.2.tgz#114c95d64539e53dede23de8b9d96df7c7ae2af8" 1091 | integrity sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A== 1092 | dependencies: 1093 | acorn "^7.0.0" 1094 | acorn-walk "^7.0.0" 1095 | xtend "^4.0.2" 1096 | 1097 | acorn-walk@^7.0.0: 1098 | version "7.2.0" 1099 | resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" 1100 | integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== 1101 | 1102 | acorn@^7.0.0, acorn@^7.1.0: 1103 | version "7.4.1" 1104 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" 1105 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== 1106 | 1107 | alphanum-sort@^1.0.0: 1108 | version "1.0.2" 1109 | resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" 1110 | integrity sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM= 1111 | 1112 | ansi-regex@^2.0.0: 1113 | version "2.1.1" 1114 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 1115 | integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= 1116 | 1117 | ansi-styles@^2.2.1: 1118 | version "2.2.1" 1119 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 1120 | integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= 1121 | 1122 | ansi-styles@^3.1.0, ansi-styles@^3.2.1: 1123 | version "3.2.1" 1124 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 1125 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 1126 | dependencies: 1127 | color-convert "^1.9.0" 1128 | 1129 | ansi-styles@^4.1.0: 1130 | version "4.3.0" 1131 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 1132 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 1133 | dependencies: 1134 | color-convert "^2.0.1" 1135 | 1136 | arch@^2.1.0: 1137 | version "2.2.0" 1138 | resolved "https://registry.yarnpkg.com/arch/-/arch-2.2.0.tgz#1bc47818f305764f23ab3306b0bfc086c5a29d11" 1139 | integrity sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ== 1140 | 1141 | arg@1.0.0: 1142 | version "1.0.0" 1143 | resolved "https://registry.yarnpkg.com/arg/-/arg-1.0.0.tgz#444d885a4e25b121640b55155ef7cd03975d6050" 1144 | integrity sha512-Wk7TEzl1KqvTGs/uyhmHO/3XLd3t1UeU4IstvPXVzGPM522cTjqjNZ99esCkcL52sjqjo8e8CTBcWhkxvGzoAw== 1145 | 1146 | argparse@^1.0.7: 1147 | version "1.0.10" 1148 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 1149 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 1150 | dependencies: 1151 | sprintf-js "~1.0.2" 1152 | 1153 | asyncro@^3.0.0: 1154 | version "3.0.0" 1155 | resolved "https://registry.yarnpkg.com/asyncro/-/asyncro-3.0.0.tgz#3c7a732e263bc4a42499042f48d7d858e9c0134e" 1156 | integrity sha512-nEnWYfrBmA3taTiuiOoZYmgJ/CNrSoQLeLs29SeLcPu60yaw/mHDBHV0iOZ051fTvsTHxpCY+gXibqT9wbQYfg== 1157 | 1158 | autoprefixer@^9.4.5, autoprefixer@^9.8.0: 1159 | version "9.8.6" 1160 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.8.6.tgz#3b73594ca1bf9266320c5acf1588d74dea74210f" 1161 | integrity sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg== 1162 | dependencies: 1163 | browserslist "^4.12.0" 1164 | caniuse-lite "^1.0.30001109" 1165 | colorette "^1.2.1" 1166 | normalize-range "^0.1.2" 1167 | num2fraction "^1.2.2" 1168 | postcss "^7.0.32" 1169 | postcss-value-parser "^4.1.0" 1170 | 1171 | babel-plugin-dynamic-import-node@^2.3.3: 1172 | version "2.3.3" 1173 | resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3" 1174 | integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== 1175 | dependencies: 1176 | object.assign "^4.1.0" 1177 | 1178 | babel-plugin-macros@^2.8.0: 1179 | version "2.8.0" 1180 | resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz#0f958a7cc6556b1e65344465d99111a1e5e10138" 1181 | integrity sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg== 1182 | dependencies: 1183 | "@babel/runtime" "^7.7.2" 1184 | cosmiconfig "^6.0.0" 1185 | resolve "^1.12.0" 1186 | 1187 | babel-plugin-transform-async-to-promises@^0.8.15: 1188 | version "0.8.15" 1189 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-promises/-/babel-plugin-transform-async-to-promises-0.8.15.tgz#13b6d8ef13676b4e3c576d3600b85344bb1ba346" 1190 | integrity sha512-fDXP68ZqcinZO2WCiimCL9zhGjGXOnn3D33zvbh+yheZ/qOrNVVDDIBtAaM3Faz8TRvQzHiRKsu3hfrBAhEncQ== 1191 | 1192 | babel-plugin-transform-replace-expressions@^0.2.0: 1193 | version "0.2.0" 1194 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-replace-expressions/-/babel-plugin-transform-replace-expressions-0.2.0.tgz#59cba8df4b4a675e7c78cd21548f8e7685bbc30d" 1195 | integrity sha512-Eh1rRd9hWEYgkgoA3D0kGp7xJ/wgVshgsqmq60iC4HVWD+Lux+fNHSHBa2v1Hsv+dHflShC71qKhiH40OiPtDA== 1196 | dependencies: 1197 | "@babel/parser" "^7.3.3" 1198 | 1199 | balanced-match@^1.0.0: 1200 | version "1.0.0" 1201 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 1202 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 1203 | 1204 | big.js@^5.2.2: 1205 | version "5.2.2" 1206 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" 1207 | integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== 1208 | 1209 | boolbase@^1.0.0, boolbase@~1.0.0: 1210 | version "1.0.0" 1211 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" 1212 | integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= 1213 | 1214 | brace-expansion@^1.1.7: 1215 | version "1.1.11" 1216 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 1217 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 1218 | dependencies: 1219 | balanced-match "^1.0.0" 1220 | concat-map "0.0.1" 1221 | 1222 | brotli-size@^4.0.0: 1223 | version "4.0.0" 1224 | resolved "https://registry.yarnpkg.com/brotli-size/-/brotli-size-4.0.0.tgz#a05ee3faad3c0e700a2f2da826ba6b4d76e69e5e" 1225 | integrity sha512-uA9fOtlTRC0iqKfzff1W34DXUA3GyVqbUaeo3Rw3d4gd1eavKVCETXrn3NzO74W+UVkG3UHu8WxUi+XvKI/huA== 1226 | dependencies: 1227 | duplexer "0.1.1" 1228 | 1229 | browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.8.5: 1230 | version "4.14.5" 1231 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.5.tgz#1c751461a102ddc60e40993639b709be7f2c4015" 1232 | integrity sha512-Z+vsCZIvCBvqLoYkBFTwEYH3v5MCQbsAjp50ERycpOjnPmolg1Gjy4+KaWWpm8QOJt9GHkhdqAl14NpCX73CWA== 1233 | dependencies: 1234 | caniuse-lite "^1.0.30001135" 1235 | electron-to-chromium "^1.3.571" 1236 | escalade "^3.1.0" 1237 | node-releases "^1.1.61" 1238 | 1239 | buffer-from@^1.0.0: 1240 | version "1.1.1" 1241 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 1242 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== 1243 | 1244 | builtin-modules@^3.1.0: 1245 | version "3.1.0" 1246 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.1.0.tgz#aad97c15131eb76b65b50ef208e7584cd76a7484" 1247 | integrity sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw== 1248 | 1249 | bytes@^3.0.0: 1250 | version "3.1.0" 1251 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" 1252 | integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== 1253 | 1254 | call-bind@^1.0.0: 1255 | version "1.0.0" 1256 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.0.tgz#24127054bb3f9bdcb4b1fb82418186072f77b8ce" 1257 | integrity sha512-AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w== 1258 | dependencies: 1259 | function-bind "^1.1.1" 1260 | get-intrinsic "^1.0.0" 1261 | 1262 | caller-callsite@^2.0.0: 1263 | version "2.0.0" 1264 | resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" 1265 | integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ= 1266 | dependencies: 1267 | callsites "^2.0.0" 1268 | 1269 | caller-path@^2.0.0: 1270 | version "2.0.0" 1271 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" 1272 | integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ= 1273 | dependencies: 1274 | caller-callsite "^2.0.0" 1275 | 1276 | callsites@^2.0.0: 1277 | version "2.0.0" 1278 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 1279 | integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA= 1280 | 1281 | callsites@^3.0.0: 1282 | version "3.1.0" 1283 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 1284 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 1285 | 1286 | camelcase-css@^2.0.1: 1287 | version "2.0.1" 1288 | resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" 1289 | integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== 1290 | 1291 | camelcase@^5.3.1: 1292 | version "5.3.1" 1293 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 1294 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 1295 | 1296 | caniuse-api@^3.0.0: 1297 | version "3.0.0" 1298 | resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0" 1299 | integrity sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw== 1300 | dependencies: 1301 | browserslist "^4.0.0" 1302 | caniuse-lite "^1.0.0" 1303 | lodash.memoize "^4.1.2" 1304 | lodash.uniq "^4.5.0" 1305 | 1306 | caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001135: 1307 | version "1.0.30001154" 1308 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001154.tgz#f3bbc245ce55e4c1cd20fa731b097880181a7f17" 1309 | integrity sha512-y9DvdSti8NnYB9Be92ddMZQrcOe04kcQtcxtBx4NkB04+qZ+JUWotnXBJTmxlKudhxNTQ3RRknMwNU2YQl/Org== 1310 | 1311 | chalk@2.3.0: 1312 | version "2.3.0" 1313 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 1314 | integrity sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q== 1315 | dependencies: 1316 | ansi-styles "^3.1.0" 1317 | escape-string-regexp "^1.0.5" 1318 | supports-color "^4.0.0" 1319 | 1320 | chalk@^1.0.0, chalk@^1.1.3: 1321 | version "1.1.3" 1322 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 1323 | integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= 1324 | dependencies: 1325 | ansi-styles "^2.2.1" 1326 | escape-string-regexp "^1.0.2" 1327 | has-ansi "^2.0.0" 1328 | strip-ansi "^3.0.0" 1329 | supports-color "^2.0.0" 1330 | 1331 | chalk@^2.0.0, chalk@^2.4.1, chalk@^2.4.2: 1332 | version "2.4.2" 1333 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 1334 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 1335 | dependencies: 1336 | ansi-styles "^3.2.1" 1337 | escape-string-regexp "^1.0.5" 1338 | supports-color "^5.3.0" 1339 | 1340 | "chalk@^3.0.0 || ^4.0.0", chalk@^4.0.0: 1341 | version "4.1.0" 1342 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" 1343 | integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== 1344 | dependencies: 1345 | ansi-styles "^4.1.0" 1346 | supports-color "^7.1.0" 1347 | 1348 | classnames@^2.2.6: 1349 | version "2.2.6" 1350 | resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.2.6.tgz#43935bffdd291f326dad0a205309b38d00f650ce" 1351 | integrity sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q== 1352 | 1353 | clipboardy@1.2.2: 1354 | version "1.2.2" 1355 | resolved "https://registry.yarnpkg.com/clipboardy/-/clipboardy-1.2.2.tgz#2ce320b9ed9be1514f79878b53ff9765420903e2" 1356 | integrity sha512-16KrBOV7bHmHdxcQiCvfUFYVFyEah4FI8vYT1Fr7CGSA4G+xBWMEfUEQJS1hxeHGtI9ju1Bzs9uXSbj5HZKArw== 1357 | dependencies: 1358 | arch "^2.1.0" 1359 | execa "^0.8.0" 1360 | 1361 | coa@^2.0.2: 1362 | version "2.0.2" 1363 | resolved "https://registry.yarnpkg.com/coa/-/coa-2.0.2.tgz#43f6c21151b4ef2bf57187db0d73de229e3e7ec3" 1364 | integrity sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA== 1365 | dependencies: 1366 | "@types/q" "^1.5.1" 1367 | chalk "^2.4.1" 1368 | q "^1.1.2" 1369 | 1370 | color-convert@^1.9.0, color-convert@^1.9.1: 1371 | version "1.9.3" 1372 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 1373 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 1374 | dependencies: 1375 | color-name "1.1.3" 1376 | 1377 | color-convert@^2.0.1: 1378 | version "2.0.1" 1379 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 1380 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 1381 | dependencies: 1382 | color-name "~1.1.4" 1383 | 1384 | color-name@1.1.3: 1385 | version "1.1.3" 1386 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1387 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 1388 | 1389 | color-name@^1.0.0, color-name@~1.1.4: 1390 | version "1.1.4" 1391 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 1392 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 1393 | 1394 | color-string@^1.5.4: 1395 | version "1.5.4" 1396 | resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.4.tgz#dd51cd25cfee953d138fe4002372cc3d0e504cb6" 1397 | integrity sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw== 1398 | dependencies: 1399 | color-name "^1.0.0" 1400 | simple-swizzle "^0.2.2" 1401 | 1402 | color@^3.0.0, color@^3.1.2: 1403 | version "3.1.3" 1404 | resolved "https://registry.yarnpkg.com/color/-/color-3.1.3.tgz#ca67fb4e7b97d611dcde39eceed422067d91596e" 1405 | integrity sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ== 1406 | dependencies: 1407 | color-convert "^1.9.1" 1408 | color-string "^1.5.4" 1409 | 1410 | colorette@^1.2.1: 1411 | version "1.2.1" 1412 | resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b" 1413 | integrity sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw== 1414 | 1415 | commander@^2.20.0: 1416 | version "2.20.3" 1417 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" 1418 | integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== 1419 | 1420 | commander@^5.0.0: 1421 | version "5.1.0" 1422 | resolved "https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz#46abbd1652f8e059bddaef99bbdcb2ad9cf179ae" 1423 | integrity sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg== 1424 | 1425 | commondir@^1.0.1: 1426 | version "1.0.1" 1427 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 1428 | integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= 1429 | 1430 | concat-map@0.0.1: 1431 | version "0.0.1" 1432 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1433 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 1434 | 1435 | concat-with-sourcemaps@^1.1.0: 1436 | version "1.1.0" 1437 | resolved "https://registry.yarnpkg.com/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz#d4ea93f05ae25790951b99e7b3b09e3908a4082e" 1438 | integrity sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg== 1439 | dependencies: 1440 | source-map "^0.6.1" 1441 | 1442 | convert-source-map@^1.7.0: 1443 | version "1.7.0" 1444 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" 1445 | integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== 1446 | dependencies: 1447 | safe-buffer "~5.1.1" 1448 | 1449 | core-js-compat@^3.6.2: 1450 | version "3.6.5" 1451 | resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.6.5.tgz#2a51d9a4e25dfd6e690251aa81f99e3c05481f1c" 1452 | integrity sha512-7ItTKOhOZbznhXAQ2g/slGg1PJV5zDO/WdkTwi7UEOJmkvsE32PWvx6mKtDjiMpjnR2CNf6BAD6sSxIlv7ptng== 1453 | dependencies: 1454 | browserslist "^4.8.5" 1455 | semver "7.0.0" 1456 | 1457 | cosmiconfig@^5.0.0: 1458 | version "5.2.1" 1459 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" 1460 | integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== 1461 | dependencies: 1462 | import-fresh "^2.0.0" 1463 | is-directory "^0.3.1" 1464 | js-yaml "^3.13.1" 1465 | parse-json "^4.0.0" 1466 | 1467 | cosmiconfig@^6.0.0: 1468 | version "6.0.0" 1469 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982" 1470 | integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg== 1471 | dependencies: 1472 | "@types/parse-json" "^4.0.0" 1473 | import-fresh "^3.1.0" 1474 | parse-json "^5.0.0" 1475 | path-type "^4.0.0" 1476 | yaml "^1.7.2" 1477 | 1478 | cross-spawn@^5.0.1: 1479 | version "5.1.0" 1480 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1481 | integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= 1482 | dependencies: 1483 | lru-cache "^4.0.1" 1484 | shebang-command "^1.2.0" 1485 | which "^1.2.9" 1486 | 1487 | css-color-names@0.0.4, css-color-names@^0.0.4: 1488 | version "0.0.4" 1489 | resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" 1490 | integrity sha1-gIrcLnnPhHOAabZGyyDsJ762KeA= 1491 | 1492 | css-declaration-sorter@^4.0.1: 1493 | version "4.0.1" 1494 | resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz#c198940f63a76d7e36c1e71018b001721054cb22" 1495 | integrity sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA== 1496 | dependencies: 1497 | postcss "^7.0.1" 1498 | timsort "^0.3.0" 1499 | 1500 | css-modules-loader-core@^1.1.0: 1501 | version "1.1.0" 1502 | resolved "https://registry.yarnpkg.com/css-modules-loader-core/-/css-modules-loader-core-1.1.0.tgz#5908668294a1becd261ae0a4ce21b0b551f21d16" 1503 | integrity sha1-WQhmgpShvs0mGuCkziGwtVHyHRY= 1504 | dependencies: 1505 | icss-replace-symbols "1.1.0" 1506 | postcss "6.0.1" 1507 | postcss-modules-extract-imports "1.1.0" 1508 | postcss-modules-local-by-default "1.2.0" 1509 | postcss-modules-scope "1.1.0" 1510 | postcss-modules-values "1.3.0" 1511 | 1512 | css-select-base-adapter@^0.1.1: 1513 | version "0.1.1" 1514 | resolved "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz#3b2ff4972cc362ab88561507a95408a1432135d7" 1515 | integrity sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w== 1516 | 1517 | css-select@^2.0.0: 1518 | version "2.1.0" 1519 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.1.0.tgz#6a34653356635934a81baca68d0255432105dbef" 1520 | integrity sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ== 1521 | dependencies: 1522 | boolbase "^1.0.0" 1523 | css-what "^3.2.1" 1524 | domutils "^1.7.0" 1525 | nth-check "^1.0.2" 1526 | 1527 | css-selector-tokenizer@^0.7.0: 1528 | version "0.7.3" 1529 | resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.3.tgz#735f26186e67c749aaf275783405cf0661fae8f1" 1530 | integrity sha512-jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg== 1531 | dependencies: 1532 | cssesc "^3.0.0" 1533 | fastparse "^1.1.2" 1534 | 1535 | css-tree@1.0.0-alpha.37: 1536 | version "1.0.0-alpha.37" 1537 | resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.37.tgz#98bebd62c4c1d9f960ec340cf9f7522e30709a22" 1538 | integrity sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg== 1539 | dependencies: 1540 | mdn-data "2.0.4" 1541 | source-map "^0.6.1" 1542 | 1543 | css-tree@^1.0.0: 1544 | version "1.0.0" 1545 | resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0.tgz#21993fa270d742642a90409a2c0cb3ac0298adf6" 1546 | integrity sha512-CdVYz/Yuqw0VdKhXPBIgi8DO3NicJVYZNWeX9XcIuSp9ZoFT5IcleVRW07O5rMjdcx1mb+MEJPknTTEW7DdsYw== 1547 | dependencies: 1548 | mdn-data "2.0.12" 1549 | source-map "^0.6.1" 1550 | 1551 | css-unit-converter@^1.1.1: 1552 | version "1.1.2" 1553 | resolved "https://registry.yarnpkg.com/css-unit-converter/-/css-unit-converter-1.1.2.tgz#4c77f5a1954e6dbff60695ecb214e3270436ab21" 1554 | integrity sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA== 1555 | 1556 | css-what@^3.2.1: 1557 | version "3.4.2" 1558 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.4.2.tgz#ea7026fcb01777edbde52124e21f327e7ae950e4" 1559 | integrity sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ== 1560 | 1561 | cssesc@^3.0.0: 1562 | version "3.0.0" 1563 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" 1564 | integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== 1565 | 1566 | cssnano-preset-default@^4.0.7: 1567 | version "4.0.7" 1568 | resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz#51ec662ccfca0f88b396dcd9679cdb931be17f76" 1569 | integrity sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA== 1570 | dependencies: 1571 | css-declaration-sorter "^4.0.1" 1572 | cssnano-util-raw-cache "^4.0.1" 1573 | postcss "^7.0.0" 1574 | postcss-calc "^7.0.1" 1575 | postcss-colormin "^4.0.3" 1576 | postcss-convert-values "^4.0.1" 1577 | postcss-discard-comments "^4.0.2" 1578 | postcss-discard-duplicates "^4.0.2" 1579 | postcss-discard-empty "^4.0.1" 1580 | postcss-discard-overridden "^4.0.1" 1581 | postcss-merge-longhand "^4.0.11" 1582 | postcss-merge-rules "^4.0.3" 1583 | postcss-minify-font-values "^4.0.2" 1584 | postcss-minify-gradients "^4.0.2" 1585 | postcss-minify-params "^4.0.2" 1586 | postcss-minify-selectors "^4.0.2" 1587 | postcss-normalize-charset "^4.0.1" 1588 | postcss-normalize-display-values "^4.0.2" 1589 | postcss-normalize-positions "^4.0.2" 1590 | postcss-normalize-repeat-style "^4.0.2" 1591 | postcss-normalize-string "^4.0.2" 1592 | postcss-normalize-timing-functions "^4.0.2" 1593 | postcss-normalize-unicode "^4.0.1" 1594 | postcss-normalize-url "^4.0.1" 1595 | postcss-normalize-whitespace "^4.0.2" 1596 | postcss-ordered-values "^4.1.2" 1597 | postcss-reduce-initial "^4.0.3" 1598 | postcss-reduce-transforms "^4.0.2" 1599 | postcss-svgo "^4.0.2" 1600 | postcss-unique-selectors "^4.0.1" 1601 | 1602 | cssnano-util-get-arguments@^4.0.0: 1603 | version "4.0.0" 1604 | resolved "https://registry.yarnpkg.com/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz#ed3a08299f21d75741b20f3b81f194ed49cc150f" 1605 | integrity sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8= 1606 | 1607 | cssnano-util-get-match@^4.0.0: 1608 | version "4.0.0" 1609 | resolved "https://registry.yarnpkg.com/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz#c0e4ca07f5386bb17ec5e52250b4f5961365156d" 1610 | integrity sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0= 1611 | 1612 | cssnano-util-raw-cache@^4.0.1: 1613 | version "4.0.1" 1614 | resolved "https://registry.yarnpkg.com/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz#b26d5fd5f72a11dfe7a7846fb4c67260f96bf282" 1615 | integrity sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA== 1616 | dependencies: 1617 | postcss "^7.0.0" 1618 | 1619 | cssnano-util-same-parent@^4.0.0: 1620 | version "4.0.1" 1621 | resolved "https://registry.yarnpkg.com/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz#574082fb2859d2db433855835d9a8456ea18bbf3" 1622 | integrity sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q== 1623 | 1624 | cssnano@^4.1.10: 1625 | version "4.1.10" 1626 | resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-4.1.10.tgz#0ac41f0b13d13d465487e111b778d42da631b8b2" 1627 | integrity sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ== 1628 | dependencies: 1629 | cosmiconfig "^5.0.0" 1630 | cssnano-preset-default "^4.0.7" 1631 | is-resolvable "^1.0.0" 1632 | postcss "^7.0.0" 1633 | 1634 | csso@^4.0.2: 1635 | version "4.1.0" 1636 | resolved "https://registry.yarnpkg.com/csso/-/csso-4.1.0.tgz#1d31193efa99b87aa6bad6c0cef155e543d09e8b" 1637 | integrity sha512-h+6w/W1WqXaJA4tb1dk7r5tVbOm97MsKxzwnvOR04UQ6GILroryjMWu3pmCCtL2mLaEStQ0fZgeGiy99mo7iyg== 1638 | dependencies: 1639 | css-tree "^1.0.0" 1640 | 1641 | debug@^4.1.0: 1642 | version "4.2.0" 1643 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.2.0.tgz#7f150f93920e94c58f5574c2fd01a3110effe7f1" 1644 | integrity sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg== 1645 | dependencies: 1646 | ms "2.1.2" 1647 | 1648 | define-properties@^1.1.3: 1649 | version "1.1.3" 1650 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 1651 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 1652 | dependencies: 1653 | object-keys "^1.0.12" 1654 | 1655 | defined@^1.0.0: 1656 | version "1.0.0" 1657 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 1658 | integrity sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM= 1659 | 1660 | detective@^5.2.0: 1661 | version "5.2.0" 1662 | resolved "https://registry.yarnpkg.com/detective/-/detective-5.2.0.tgz#feb2a77e85b904ecdea459ad897cc90a99bd2a7b" 1663 | integrity sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg== 1664 | dependencies: 1665 | acorn-node "^1.6.1" 1666 | defined "^1.0.0" 1667 | minimist "^1.1.1" 1668 | 1669 | dom-serializer@0: 1670 | version "0.2.2" 1671 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" 1672 | integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== 1673 | dependencies: 1674 | domelementtype "^2.0.1" 1675 | entities "^2.0.0" 1676 | 1677 | domelementtype@1: 1678 | version "1.3.1" 1679 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" 1680 | integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== 1681 | 1682 | domelementtype@^2.0.1: 1683 | version "2.0.2" 1684 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.0.2.tgz#f3b6e549201e46f588b59463dd77187131fe6971" 1685 | integrity sha512-wFwTwCVebUrMgGeAwRL/NhZtHAUyT9n9yg4IMDwf10+6iCMxSkVq9MGCVEH+QZWo1nNidy8kNvwmv4zWHDTqvA== 1686 | 1687 | domutils@^1.7.0: 1688 | version "1.7.0" 1689 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" 1690 | integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== 1691 | dependencies: 1692 | dom-serializer "0" 1693 | domelementtype "1" 1694 | 1695 | dot-prop@^5.2.0: 1696 | version "5.3.0" 1697 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" 1698 | integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== 1699 | dependencies: 1700 | is-obj "^2.0.0" 1701 | 1702 | duplexer@0.1.1: 1703 | version "0.1.1" 1704 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 1705 | integrity sha1-rOb/gIwc5mtX0ev5eXessCM0z8E= 1706 | 1707 | duplexer@^0.1.1: 1708 | version "0.1.2" 1709 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" 1710 | integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== 1711 | 1712 | electron-to-chromium@^1.3.571: 1713 | version "1.3.585" 1714 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.585.tgz#71cdb722c73488b9475ad1c572cf43a763ef9081" 1715 | integrity sha512-xoeqjMQhgHDZM7FiglJAb2aeOxHZWFruUc3MbAGTgE7GB8rr5fTn1Sdh5THGuQtndU3GuXlu91ZKqRivxoCZ/A== 1716 | 1717 | emojis-list@^3.0.0: 1718 | version "3.0.0" 1719 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" 1720 | integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== 1721 | 1722 | entities@^2.0.0: 1723 | version "2.1.0" 1724 | resolved "https://registry.yarnpkg.com/entities/-/entities-2.1.0.tgz#992d3129cf7df6870b96c57858c249a120f8b8b5" 1725 | integrity sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w== 1726 | 1727 | error-ex@^1.3.1: 1728 | version "1.3.2" 1729 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 1730 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 1731 | dependencies: 1732 | is-arrayish "^0.2.1" 1733 | 1734 | es-abstract@^1.17.0-next.1, es-abstract@^1.17.2: 1735 | version "1.17.7" 1736 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.7.tgz#a4de61b2f66989fc7421676c1cb9787573ace54c" 1737 | integrity sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g== 1738 | dependencies: 1739 | es-to-primitive "^1.2.1" 1740 | function-bind "^1.1.1" 1741 | has "^1.0.3" 1742 | has-symbols "^1.0.1" 1743 | is-callable "^1.2.2" 1744 | is-regex "^1.1.1" 1745 | object-inspect "^1.8.0" 1746 | object-keys "^1.1.1" 1747 | object.assign "^4.1.1" 1748 | string.prototype.trimend "^1.0.1" 1749 | string.prototype.trimstart "^1.0.1" 1750 | 1751 | es-abstract@^1.18.0-next.1: 1752 | version "1.18.0-next.1" 1753 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.1.tgz#6e3a0a4bda717e5023ab3b8e90bec36108d22c68" 1754 | integrity sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA== 1755 | dependencies: 1756 | es-to-primitive "^1.2.1" 1757 | function-bind "^1.1.1" 1758 | has "^1.0.3" 1759 | has-symbols "^1.0.1" 1760 | is-callable "^1.2.2" 1761 | is-negative-zero "^2.0.0" 1762 | is-regex "^1.1.1" 1763 | object-inspect "^1.8.0" 1764 | object-keys "^1.1.1" 1765 | object.assign "^4.1.1" 1766 | string.prototype.trimend "^1.0.1" 1767 | string.prototype.trimstart "^1.0.1" 1768 | 1769 | es-to-primitive@^1.2.1: 1770 | version "1.2.1" 1771 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 1772 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 1773 | dependencies: 1774 | is-callable "^1.1.4" 1775 | is-date-object "^1.0.1" 1776 | is-symbol "^1.0.2" 1777 | 1778 | es6-promisify@^6.1.1: 1779 | version "6.1.1" 1780 | resolved "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-6.1.1.tgz#46837651b7b06bf6fff893d03f29393668d01621" 1781 | integrity sha512-HBL8I3mIki5C1Cc9QjKUenHtnG0A5/xA8Q/AllRcfiwl2CZFXGK7ddBiCoRwAix4i2KxcQfjtIVcrVbB3vbmwg== 1782 | 1783 | escalade@^3.1.0: 1784 | version "3.1.1" 1785 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 1786 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 1787 | 1788 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1789 | version "1.0.5" 1790 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1791 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 1792 | 1793 | escape-string-regexp@^2.0.0: 1794 | version "2.0.0" 1795 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" 1796 | integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== 1797 | 1798 | escape-string-regexp@^4.0.0: 1799 | version "4.0.0" 1800 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 1801 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 1802 | 1803 | esprima@^4.0.0: 1804 | version "4.0.1" 1805 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1806 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 1807 | 1808 | estree-walker@^0.6.1: 1809 | version "0.6.1" 1810 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362" 1811 | integrity sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w== 1812 | 1813 | estree-walker@^1.0.1: 1814 | version "1.0.1" 1815 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-1.0.1.tgz#31bc5d612c96b704106b477e6dd5d8aa138cb700" 1816 | integrity sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg== 1817 | 1818 | esutils@^2.0.2: 1819 | version "2.0.3" 1820 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 1821 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1822 | 1823 | eventemitter3@^4.0.4: 1824 | version "4.0.7" 1825 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" 1826 | integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== 1827 | 1828 | execa@^0.8.0: 1829 | version "0.8.0" 1830 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.8.0.tgz#d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da" 1831 | integrity sha1-2NdrvBtVIX7RkP1t1J08d07PyNo= 1832 | dependencies: 1833 | cross-spawn "^5.0.1" 1834 | get-stream "^3.0.0" 1835 | is-stream "^1.1.0" 1836 | npm-run-path "^2.0.0" 1837 | p-finally "^1.0.0" 1838 | signal-exit "^3.0.0" 1839 | strip-eof "^1.0.0" 1840 | 1841 | fastparse@^1.1.2: 1842 | version "1.1.2" 1843 | resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.2.tgz#91728c5a5942eced8531283c79441ee4122c35a9" 1844 | integrity sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ== 1845 | 1846 | figures@^1.0.1: 1847 | version "1.7.0" 1848 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1849 | integrity sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4= 1850 | dependencies: 1851 | escape-string-regexp "^1.0.5" 1852 | object-assign "^4.1.0" 1853 | 1854 | filesize@^6.1.0: 1855 | version "6.1.0" 1856 | resolved "https://registry.yarnpkg.com/filesize/-/filesize-6.1.0.tgz#e81bdaa780e2451d714d71c0d7a4f3238d37ad00" 1857 | integrity sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg== 1858 | 1859 | find-cache-dir@^3.0.0: 1860 | version "3.3.1" 1861 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.1.tgz#89b33fad4a4670daa94f855f7fbe31d6d84fe880" 1862 | integrity sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ== 1863 | dependencies: 1864 | commondir "^1.0.1" 1865 | make-dir "^3.0.2" 1866 | pkg-dir "^4.1.0" 1867 | 1868 | find-up@^4.0.0: 1869 | version "4.1.0" 1870 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 1871 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 1872 | dependencies: 1873 | locate-path "^5.0.0" 1874 | path-exists "^4.0.0" 1875 | 1876 | focus-visible@^5.1.0: 1877 | version "5.2.0" 1878 | resolved "https://registry.yarnpkg.com/focus-visible/-/focus-visible-5.2.0.tgz#3a9e41fccf587bd25dcc2ef045508284f0a4d6b3" 1879 | integrity sha512-Rwix9pBtC1Nuy5wysTmKy+UjbDJpIfg8eHjw0rjZ1mX4GNLz1Bmd16uDpI3Gk1i70Fgcs8Csg2lPm8HULFg9DQ== 1880 | 1881 | fs-extra@8.1.0, fs-extra@^8.0.0: 1882 | version "8.1.0" 1883 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" 1884 | integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== 1885 | dependencies: 1886 | graceful-fs "^4.2.0" 1887 | jsonfile "^4.0.0" 1888 | universalify "^0.1.0" 1889 | 1890 | fs.realpath@^1.0.0: 1891 | version "1.0.0" 1892 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1893 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1894 | 1895 | function-bind@^1.1.1: 1896 | version "1.1.1" 1897 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1898 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1899 | 1900 | generic-names@^2.0.1: 1901 | version "2.0.1" 1902 | resolved "https://registry.yarnpkg.com/generic-names/-/generic-names-2.0.1.tgz#f8a378ead2ccaa7a34f0317b05554832ae41b872" 1903 | integrity sha512-kPCHWa1m9wGG/OwQpeweTwM/PYiQLrUIxXbt/P4Nic3LbGjCP0YwrALHW1uNLKZ0LIMg+RF+XRlj2ekT9ZlZAQ== 1904 | dependencies: 1905 | loader-utils "^1.1.0" 1906 | 1907 | gensync@^1.0.0-beta.1: 1908 | version "1.0.0-beta.2" 1909 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" 1910 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== 1911 | 1912 | get-intrinsic@^1.0.0: 1913 | version "1.0.1" 1914 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.0.1.tgz#94a9768fcbdd0595a1c9273aacf4c89d075631be" 1915 | integrity sha512-ZnWP+AmS1VUaLgTRy47+zKtjTxz+0xMpx3I52i+aalBK1QP19ggLF3Db89KJX7kjfOfP2eoa01qc++GwPgufPg== 1916 | dependencies: 1917 | function-bind "^1.1.1" 1918 | has "^1.0.3" 1919 | has-symbols "^1.0.1" 1920 | 1921 | get-stream@^3.0.0: 1922 | version "3.0.0" 1923 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1924 | integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= 1925 | 1926 | glob@^7.0.0, glob@^7.1.2: 1927 | version "7.1.6" 1928 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 1929 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 1930 | dependencies: 1931 | fs.realpath "^1.0.0" 1932 | inflight "^1.0.4" 1933 | inherits "2" 1934 | minimatch "^3.0.4" 1935 | once "^1.3.0" 1936 | path-is-absolute "^1.0.0" 1937 | 1938 | globals@^11.1.0: 1939 | version "11.12.0" 1940 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1941 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1942 | 1943 | globalyzer@^0.1.0: 1944 | version "0.1.4" 1945 | resolved "https://registry.yarnpkg.com/globalyzer/-/globalyzer-0.1.4.tgz#bc8e273afe1ac7c24eea8def5b802340c5cc534f" 1946 | integrity sha512-LeguVWaxgHN0MNbWC6YljNMzHkrCny9fzjmEUdnF1kQ7wATFD1RHFRqA1qxaX2tgxGENlcxjOflopBwj3YZiXA== 1947 | 1948 | globrex@^0.1.1: 1949 | version "0.1.2" 1950 | resolved "https://registry.yarnpkg.com/globrex/-/globrex-0.1.2.tgz#dd5d9ec826232730cd6793a5e33a9302985e6098" 1951 | integrity sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg== 1952 | 1953 | graceful-fs@^4.1.6, graceful-fs@^4.2.0: 1954 | version "4.2.4" 1955 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" 1956 | integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== 1957 | 1958 | gzip-size@^3.0.0: 1959 | version "3.0.0" 1960 | resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-3.0.0.tgz#546188e9bdc337f673772f81660464b389dce520" 1961 | integrity sha1-VGGI6b3DN/Zzdy+BZgRks4nc5SA= 1962 | dependencies: 1963 | duplexer "^0.1.1" 1964 | 1965 | gzip-size@^5.1.1: 1966 | version "5.1.1" 1967 | resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-5.1.1.tgz#cb9bee692f87c0612b232840a873904e4c135274" 1968 | integrity sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA== 1969 | dependencies: 1970 | duplexer "^0.1.1" 1971 | pify "^4.0.1" 1972 | 1973 | has-ansi@^2.0.0: 1974 | version "2.0.0" 1975 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1976 | integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= 1977 | dependencies: 1978 | ansi-regex "^2.0.0" 1979 | 1980 | has-flag@^1.0.0: 1981 | version "1.0.0" 1982 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1983 | integrity sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo= 1984 | 1985 | has-flag@^2.0.0: 1986 | version "2.0.0" 1987 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1988 | integrity sha1-6CB68cx7MNRGzHC3NLXovhj4jVE= 1989 | 1990 | has-flag@^3.0.0: 1991 | version "3.0.0" 1992 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1993 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1994 | 1995 | has-flag@^4.0.0: 1996 | version "4.0.0" 1997 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1998 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1999 | 2000 | has-symbols@^1.0.1: 2001 | version "1.0.1" 2002 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" 2003 | integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== 2004 | 2005 | has@^1.0.0, has@^1.0.3: 2006 | version "1.0.3" 2007 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 2008 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 2009 | dependencies: 2010 | function-bind "^1.1.1" 2011 | 2012 | hex-color-regex@^1.1.0: 2013 | version "1.1.0" 2014 | resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e" 2015 | integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ== 2016 | 2017 | hsl-regex@^1.0.0: 2018 | version "1.0.0" 2019 | resolved "https://registry.yarnpkg.com/hsl-regex/-/hsl-regex-1.0.0.tgz#d49330c789ed819e276a4c0d272dffa30b18fe6e" 2020 | integrity sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4= 2021 | 2022 | hsla-regex@^1.0.0: 2023 | version "1.0.0" 2024 | resolved "https://registry.yarnpkg.com/hsla-regex/-/hsla-regex-1.0.0.tgz#c1ce7a3168c8c6614033a4b5f7877f3b225f9c38" 2025 | integrity sha1-wc56MWjIxmFAM6S194d/OyJfnDg= 2026 | 2027 | html-comment-regex@^1.1.0: 2028 | version "1.1.2" 2029 | resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.2.tgz#97d4688aeb5c81886a364faa0cad1dda14d433a7" 2030 | integrity sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ== 2031 | 2032 | html-tags@^3.1.0: 2033 | version "3.1.0" 2034 | resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-3.1.0.tgz#7b5e6f7e665e9fb41f30007ed9e0d41e97fb2140" 2035 | integrity sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg== 2036 | 2037 | icss-replace-symbols@1.1.0, icss-replace-symbols@^1.1.0: 2038 | version "1.1.0" 2039 | resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" 2040 | integrity sha1-Bupvg2ead0njhs/h/oEq5dsiPe0= 2041 | 2042 | import-cwd@^2.0.0: 2043 | version "2.1.0" 2044 | resolved "https://registry.yarnpkg.com/import-cwd/-/import-cwd-2.1.0.tgz#aa6cf36e722761285cb371ec6519f53e2435b0a9" 2045 | integrity sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk= 2046 | dependencies: 2047 | import-from "^2.1.0" 2048 | 2049 | import-cwd@^3.0.0: 2050 | version "3.0.0" 2051 | resolved "https://registry.yarnpkg.com/import-cwd/-/import-cwd-3.0.0.tgz#20845547718015126ea9b3676b7592fb8bd4cf92" 2052 | integrity sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg== 2053 | dependencies: 2054 | import-from "^3.0.0" 2055 | 2056 | import-fresh@^2.0.0: 2057 | version "2.0.0" 2058 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" 2059 | integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY= 2060 | dependencies: 2061 | caller-path "^2.0.0" 2062 | resolve-from "^3.0.0" 2063 | 2064 | import-fresh@^3.1.0: 2065 | version "3.2.1" 2066 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66" 2067 | integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ== 2068 | dependencies: 2069 | parent-module "^1.0.0" 2070 | resolve-from "^4.0.0" 2071 | 2072 | import-from@^2.1.0: 2073 | version "2.1.0" 2074 | resolved "https://registry.yarnpkg.com/import-from/-/import-from-2.1.0.tgz#335db7f2a7affd53aaa471d4b8021dee36b7f3b1" 2075 | integrity sha1-M1238qev/VOqpHHUuAId7ja387E= 2076 | dependencies: 2077 | resolve-from "^3.0.0" 2078 | 2079 | import-from@^3.0.0: 2080 | version "3.0.0" 2081 | resolved "https://registry.yarnpkg.com/import-from/-/import-from-3.0.0.tgz#055cfec38cd5a27d8057ca51376d7d3bf0891966" 2082 | integrity sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ== 2083 | dependencies: 2084 | resolve-from "^5.0.0" 2085 | 2086 | indexes-of@^1.0.1: 2087 | version "1.0.1" 2088 | resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" 2089 | integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc= 2090 | 2091 | inflight@^1.0.4: 2092 | version "1.0.6" 2093 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 2094 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 2095 | dependencies: 2096 | once "^1.3.0" 2097 | wrappy "1" 2098 | 2099 | inherits@2: 2100 | version "2.0.4" 2101 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 2102 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 2103 | 2104 | is-absolute-url@^2.0.0: 2105 | version "2.1.0" 2106 | resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" 2107 | integrity sha1-UFMN+4T8yap9vnhS6Do3uTufKqY= 2108 | 2109 | is-arrayish@^0.2.1: 2110 | version "0.2.1" 2111 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2112 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 2113 | 2114 | is-arrayish@^0.3.1: 2115 | version "0.3.2" 2116 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" 2117 | integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== 2118 | 2119 | is-callable@^1.1.4, is-callable@^1.2.2: 2120 | version "1.2.2" 2121 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.2.tgz#c7c6715cd22d4ddb48d3e19970223aceabb080d9" 2122 | integrity sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA== 2123 | 2124 | is-color-stop@^1.0.0: 2125 | version "1.1.0" 2126 | resolved "https://registry.yarnpkg.com/is-color-stop/-/is-color-stop-1.1.0.tgz#cfff471aee4dd5c9e158598fbe12967b5cdad345" 2127 | integrity sha1-z/9HGu5N1cnhWFmPvhKWe1za00U= 2128 | dependencies: 2129 | css-color-names "^0.0.4" 2130 | hex-color-regex "^1.1.0" 2131 | hsl-regex "^1.0.0" 2132 | hsla-regex "^1.0.0" 2133 | rgb-regex "^1.0.1" 2134 | rgba-regex "^1.0.0" 2135 | 2136 | is-core-module@^2.0.0: 2137 | version "2.0.0" 2138 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.0.0.tgz#58531b70aed1db7c0e8d4eb1a0a2d1ddd64bd12d" 2139 | integrity sha512-jq1AH6C8MuteOoBPwkxHafmByhL9j5q4OaPGdbuD+ZtQJVzH+i6E3BJDQcBA09k57i2Hh2yQbEG8yObZ0jdlWw== 2140 | dependencies: 2141 | has "^1.0.3" 2142 | 2143 | is-date-object@^1.0.1: 2144 | version "1.0.2" 2145 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" 2146 | integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== 2147 | 2148 | is-directory@^0.3.1: 2149 | version "0.3.1" 2150 | resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" 2151 | integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= 2152 | 2153 | is-module@^1.0.0: 2154 | version "1.0.0" 2155 | resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" 2156 | integrity sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE= 2157 | 2158 | is-negative-zero@^2.0.0: 2159 | version "2.0.0" 2160 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.0.tgz#9553b121b0fac28869da9ed459e20c7543788461" 2161 | integrity sha1-lVOxIbD6wohp2p7UWeIMdUN4hGE= 2162 | 2163 | is-obj@^2.0.0: 2164 | version "2.0.0" 2165 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" 2166 | integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== 2167 | 2168 | is-reference@^1.1.2: 2169 | version "1.2.1" 2170 | resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-1.2.1.tgz#8b2dac0b371f4bc994fdeaba9eb542d03002d0b7" 2171 | integrity sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ== 2172 | dependencies: 2173 | "@types/estree" "*" 2174 | 2175 | is-regex@^1.1.1: 2176 | version "1.1.1" 2177 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.1.tgz#c6f98aacc546f6cec5468a07b7b153ab564a57b9" 2178 | integrity sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg== 2179 | dependencies: 2180 | has-symbols "^1.0.1" 2181 | 2182 | is-resolvable@^1.0.0: 2183 | version "1.1.0" 2184 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" 2185 | integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg== 2186 | 2187 | is-stream@^1.1.0: 2188 | version "1.1.0" 2189 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2190 | integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= 2191 | 2192 | is-svg@^3.0.0: 2193 | version "3.0.0" 2194 | resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-3.0.0.tgz#9321dbd29c212e5ca99c4fa9794c714bcafa2f75" 2195 | integrity sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ== 2196 | dependencies: 2197 | html-comment-regex "^1.1.0" 2198 | 2199 | is-symbol@^1.0.2: 2200 | version "1.0.3" 2201 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" 2202 | integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== 2203 | dependencies: 2204 | has-symbols "^1.0.1" 2205 | 2206 | isexe@^2.0.0: 2207 | version "2.0.0" 2208 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2209 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 2210 | 2211 | jest-worker@^24.9.0: 2212 | version "24.9.0" 2213 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.9.0.tgz#5dbfdb5b2d322e98567898238a9697bcce67b3e5" 2214 | integrity sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw== 2215 | dependencies: 2216 | merge-stream "^2.0.0" 2217 | supports-color "^6.1.0" 2218 | 2219 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 2220 | version "4.0.0" 2221 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 2222 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 2223 | 2224 | js-yaml@^3.13.1: 2225 | version "3.14.0" 2226 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482" 2227 | integrity sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A== 2228 | dependencies: 2229 | argparse "^1.0.7" 2230 | esprima "^4.0.0" 2231 | 2232 | jsesc@^2.5.1: 2233 | version "2.5.2" 2234 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 2235 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 2236 | 2237 | jsesc@~0.5.0: 2238 | version "0.5.0" 2239 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2240 | integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= 2241 | 2242 | json-parse-better-errors@^1.0.1: 2243 | version "1.0.2" 2244 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 2245 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== 2246 | 2247 | json-parse-even-better-errors@^2.3.0: 2248 | version "2.3.1" 2249 | resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" 2250 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 2251 | 2252 | json5@^1.0.1: 2253 | version "1.0.1" 2254 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" 2255 | integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== 2256 | dependencies: 2257 | minimist "^1.2.0" 2258 | 2259 | json5@^2.1.2: 2260 | version "2.1.3" 2261 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43" 2262 | integrity sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA== 2263 | dependencies: 2264 | minimist "^1.2.5" 2265 | 2266 | jsonfile@^4.0.0: 2267 | version "4.0.0" 2268 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 2269 | integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= 2270 | optionalDependencies: 2271 | graceful-fs "^4.1.6" 2272 | 2273 | kleur@^3.0.3: 2274 | version "3.0.3" 2275 | resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" 2276 | integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== 2277 | 2278 | lines-and-columns@^1.1.6: 2279 | version "1.1.6" 2280 | resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" 2281 | integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= 2282 | 2283 | loader-utils@^1.1.0: 2284 | version "1.4.0" 2285 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613" 2286 | integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA== 2287 | dependencies: 2288 | big.js "^5.2.2" 2289 | emojis-list "^3.0.0" 2290 | json5 "^1.0.1" 2291 | 2292 | locate-path@^5.0.0: 2293 | version "5.0.0" 2294 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" 2295 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 2296 | dependencies: 2297 | p-locate "^4.1.0" 2298 | 2299 | lodash.camelcase@^4.3.0: 2300 | version "4.3.0" 2301 | resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" 2302 | integrity sha1-soqmKIorn8ZRA1x3EfZathkDMaY= 2303 | 2304 | lodash.deburr@^4.1.0: 2305 | version "4.1.0" 2306 | resolved "https://registry.yarnpkg.com/lodash.deburr/-/lodash.deburr-4.1.0.tgz#ddb1bbb3ef07458c0177ba07de14422cb033ff9b" 2307 | integrity sha1-3bG7s+8HRYwBd7oH3hRCLLAz/5s= 2308 | 2309 | lodash.memoize@^4.1.2: 2310 | version "4.1.2" 2311 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" 2312 | integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= 2313 | 2314 | lodash.merge@^4.6.2: 2315 | version "4.6.2" 2316 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 2317 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 2318 | 2319 | lodash.toarray@^4.4.0: 2320 | version "4.4.0" 2321 | resolved "https://registry.yarnpkg.com/lodash.toarray/-/lodash.toarray-4.4.0.tgz#24c4bfcd6b2fba38bfd0594db1179d8e9b656561" 2322 | integrity sha1-JMS/zWsvuji/0FlNsRedjptlZWE= 2323 | 2324 | lodash.uniq@^4.5.0: 2325 | version "4.5.0" 2326 | resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" 2327 | integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= 2328 | 2329 | lodash@^4.17.19, lodash@^4.17.20: 2330 | version "4.17.20" 2331 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" 2332 | integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== 2333 | 2334 | loose-envify@^1.0.0: 2335 | version "1.4.0" 2336 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 2337 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 2338 | dependencies: 2339 | js-tokens "^3.0.0 || ^4.0.0" 2340 | 2341 | lru-cache@^4.0.1: 2342 | version "4.1.5" 2343 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" 2344 | integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== 2345 | dependencies: 2346 | pseudomap "^1.0.2" 2347 | yallist "^2.1.2" 2348 | 2349 | magic-string@^0.22.4: 2350 | version "0.22.5" 2351 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.22.5.tgz#8e9cf5afddf44385c1da5bc2a6a0dbd10b03657e" 2352 | integrity sha512-oreip9rJZkzvA8Qzk9HFs8fZGF/u7H/gtrE8EN6RjKJ9kh2HlC+yQ2QezifqTZfGyiuAV0dRv5a+y/8gBb1m9w== 2353 | dependencies: 2354 | vlq "^0.2.2" 2355 | 2356 | magic-string@^0.25.2: 2357 | version "0.25.7" 2358 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.7.tgz#3f497d6fd34c669c6798dcb821f2ef31f5445051" 2359 | integrity sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA== 2360 | dependencies: 2361 | sourcemap-codec "^1.4.4" 2362 | 2363 | make-dir@^3.0.2: 2364 | version "3.1.0" 2365 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" 2366 | integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== 2367 | dependencies: 2368 | semver "^6.0.0" 2369 | 2370 | match-sorter@^4.2.0: 2371 | version "4.2.1" 2372 | resolved "https://registry.yarnpkg.com/match-sorter/-/match-sorter-4.2.1.tgz#575b4b3737185ba9518b67612b66877ea0b37358" 2373 | integrity sha512-s+3h9TiZU9U1pWhIERHf8/f4LmBN6IXaRgo2CI17+XGByGS1GvG5VvXK9pcGyCjGe3WM3mSYRC3ipGrd5UEVgw== 2374 | dependencies: 2375 | "@babel/runtime" "^7.10.5" 2376 | remove-accents "0.4.2" 2377 | 2378 | maxmin@^2.1.0: 2379 | version "2.1.0" 2380 | resolved "https://registry.yarnpkg.com/maxmin/-/maxmin-2.1.0.tgz#4d3b220903d95eee7eb7ac7fa864e72dc09a3166" 2381 | integrity sha1-TTsiCQPZXu5+t6x/qGTnLcCaMWY= 2382 | dependencies: 2383 | chalk "^1.0.0" 2384 | figures "^1.0.1" 2385 | gzip-size "^3.0.0" 2386 | pretty-bytes "^3.0.0" 2387 | 2388 | mdn-data@2.0.12: 2389 | version "2.0.12" 2390 | resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.12.tgz#bbb658d08b38f574bbb88f7b83703defdcc46844" 2391 | integrity sha512-ULbAlgzVb8IqZ0Hsxm6hHSlQl3Jckst2YEQS7fODu9ilNWy2LvcoSY7TRFIktABP2mdppBioc66va90T+NUs8Q== 2392 | 2393 | mdn-data@2.0.4: 2394 | version "2.0.4" 2395 | resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b" 2396 | integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA== 2397 | 2398 | merge-stream@^2.0.0: 2399 | version "2.0.0" 2400 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 2401 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 2402 | 2403 | microbundle@^0.12.3: 2404 | version "0.12.4" 2405 | resolved "https://registry.yarnpkg.com/microbundle/-/microbundle-0.12.4.tgz#b0cf10b7dbcf9424a13b04086aef9cbf416756a4" 2406 | integrity sha512-KskaxaeJc2X/AnohtdYo97L55nZZiNGPIS/ngXuDsIVnPfwHdtZWYJAJLAG+08E9VBr+eLa6N6VX+e2uoj/cNQ== 2407 | dependencies: 2408 | "@babel/core" "^7.10.2" 2409 | "@babel/plugin-proposal-class-properties" "7.7.4" 2410 | "@babel/plugin-syntax-import-meta" "^7.10.1" 2411 | "@babel/plugin-syntax-jsx" "^7.10.1" 2412 | "@babel/plugin-transform-flow-strip-types" "^7.10.1" 2413 | "@babel/plugin-transform-react-jsx" "^7.10.1" 2414 | "@babel/plugin-transform-regenerator" "^7.10.1" 2415 | "@babel/preset-env" "^7.11.0" 2416 | "@babel/preset-flow" "^7.10.1" 2417 | "@babel/preset-react" "^7.10.4" 2418 | "@rollup/plugin-alias" "^3.1.1" 2419 | "@rollup/plugin-babel" "^5.0.3" 2420 | "@rollup/plugin-commonjs" "^13.0.0" 2421 | "@rollup/plugin-json" "^4.1.0" 2422 | "@rollup/plugin-node-resolve" "^6.1.0" 2423 | asyncro "^3.0.0" 2424 | autoprefixer "^9.8.0" 2425 | babel-plugin-macros "^2.8.0" 2426 | babel-plugin-transform-async-to-promises "^0.8.15" 2427 | babel-plugin-transform-replace-expressions "^0.2.0" 2428 | brotli-size "^4.0.0" 2429 | builtin-modules "^3.1.0" 2430 | camelcase "^5.3.1" 2431 | cssnano "^4.1.10" 2432 | es6-promisify "^6.1.1" 2433 | escape-string-regexp "^4.0.0" 2434 | filesize "^6.1.0" 2435 | gzip-size "^5.1.1" 2436 | kleur "^3.0.3" 2437 | lodash.merge "^4.6.2" 2438 | module-details-from-path "^1.0.3" 2439 | pretty-bytes "^5.3.0" 2440 | rollup "^1.32.1" 2441 | rollup-plugin-bundle-size "^1.0.1" 2442 | rollup-plugin-es3 "^1.1.0" 2443 | rollup-plugin-postcss "^2.9.0" 2444 | rollup-plugin-terser "^5.3.0" 2445 | rollup-plugin-typescript2 "^0.25.3" 2446 | sade "^1.7.3" 2447 | tiny-glob "^0.2.6" 2448 | tslib "^1.13.0" 2449 | typescript "^3.9.5" 2450 | 2451 | minimatch@^3.0.4: 2452 | version "3.0.4" 2453 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2454 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 2455 | dependencies: 2456 | brace-expansion "^1.1.7" 2457 | 2458 | minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5: 2459 | version "1.2.5" 2460 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 2461 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 2462 | 2463 | mkdirp@~0.5.1: 2464 | version "0.5.5" 2465 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" 2466 | integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== 2467 | dependencies: 2468 | minimist "^1.2.5" 2469 | 2470 | module-details-from-path@^1.0.3: 2471 | version "1.0.3" 2472 | resolved "https://registry.yarnpkg.com/module-details-from-path/-/module-details-from-path-1.0.3.tgz#114c949673e2a8a35e9d35788527aa37b679da2b" 2473 | integrity sha1-EUyUlnPiqKNenTV4hSeqN7Z52is= 2474 | 2475 | mri@^1.1.0: 2476 | version "1.1.6" 2477 | resolved "https://registry.yarnpkg.com/mri/-/mri-1.1.6.tgz#49952e1044db21dbf90f6cd92bc9c9a777d415a6" 2478 | integrity sha512-oi1b3MfbyGa7FJMP9GmLTttni5JoICpYBRlq+x5V16fZbLsnL9N3wFqqIm/nIG43FjUFkFh9Epzp/kzUGUnJxQ== 2479 | 2480 | ms@2.1.2: 2481 | version "2.1.2" 2482 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 2483 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 2484 | 2485 | next-themes@^0.0.8: 2486 | version "0.0.8" 2487 | resolved "https://registry.yarnpkg.com/next-themes/-/next-themes-0.0.8.tgz#2a1748317085afbc2509e2c32bd04af4f0f6cb7d" 2488 | integrity sha512-dyrh+/bZW4hkecFEg2rfwOLLzU2UnE7KfiwcV0mIwkPrO+1n1WvwkC8nabgKA5Eoi8stkYfjmA72FxTaWEOHtg== 2489 | 2490 | node-emoji@^1.8.1: 2491 | version "1.10.0" 2492 | resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-1.10.0.tgz#8886abd25d9c7bb61802a658523d1f8d2a89b2da" 2493 | integrity sha512-Yt3384If5H6BYGVHiHwTL+99OzJKHhgp82S8/dktEK73T26BazdgZ4JZh92xSVtGNJvz9UbXdNAc5hcrXV42vw== 2494 | dependencies: 2495 | lodash.toarray "^4.4.0" 2496 | 2497 | node-releases@^1.1.61: 2498 | version "1.1.65" 2499 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.65.tgz#52d9579176bd60f23eba05c4438583f341944b81" 2500 | integrity sha512-YpzJOe2WFIW0V4ZkJQd/DGR/zdVwc/pI4Nl1CZrBO19FdRcSTmsuhdttw9rsTzzJLrNcSloLiBbEYx1C4f6gpA== 2501 | 2502 | normalize-range@^0.1.2: 2503 | version "0.1.2" 2504 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" 2505 | integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI= 2506 | 2507 | normalize-url@^3.0.0: 2508 | version "3.3.0" 2509 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559" 2510 | integrity sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg== 2511 | 2512 | normalize.css@^8.0.1: 2513 | version "8.0.1" 2514 | resolved "https://registry.yarnpkg.com/normalize.css/-/normalize.css-8.0.1.tgz#9b98a208738b9cc2634caacbc42d131c97487bf3" 2515 | integrity sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg== 2516 | 2517 | npm-run-path@^2.0.0: 2518 | version "2.0.2" 2519 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2520 | integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= 2521 | dependencies: 2522 | path-key "^2.0.0" 2523 | 2524 | nth-check@^1.0.2: 2525 | version "1.0.2" 2526 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" 2527 | integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== 2528 | dependencies: 2529 | boolbase "~1.0.0" 2530 | 2531 | num2fraction@^1.2.2: 2532 | version "1.2.2" 2533 | resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" 2534 | integrity sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4= 2535 | 2536 | number-is-nan@^1.0.0: 2537 | version "1.0.1" 2538 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2539 | integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= 2540 | 2541 | object-assign@^4.1.0, object-assign@^4.1.1: 2542 | version "4.1.1" 2543 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2544 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 2545 | 2546 | object-hash@^2.0.3: 2547 | version "2.0.3" 2548 | resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-2.0.3.tgz#d12db044e03cd2ca3d77c0570d87225b02e1e6ea" 2549 | integrity sha512-JPKn0GMu+Fa3zt3Bmr66JhokJU5BaNBIh4ZeTlaCBzrBsOeXzwcKKAK1tbLiPKgvwmPXsDvvLHoWh5Bm7ofIYg== 2550 | 2551 | object-inspect@^1.8.0: 2552 | version "1.8.0" 2553 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.8.0.tgz#df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0" 2554 | integrity sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA== 2555 | 2556 | object-keys@^1.0.12, object-keys@^1.1.1: 2557 | version "1.1.1" 2558 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 2559 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 2560 | 2561 | object.assign@^4.1.0, object.assign@^4.1.1: 2562 | version "4.1.2" 2563 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" 2564 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== 2565 | dependencies: 2566 | call-bind "^1.0.0" 2567 | define-properties "^1.1.3" 2568 | has-symbols "^1.0.1" 2569 | object-keys "^1.1.1" 2570 | 2571 | object.getownpropertydescriptors@^2.1.0: 2572 | version "2.1.0" 2573 | resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz#369bf1f9592d8ab89d712dced5cb81c7c5352649" 2574 | integrity sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg== 2575 | dependencies: 2576 | define-properties "^1.1.3" 2577 | es-abstract "^1.17.0-next.1" 2578 | 2579 | object.values@^1.1.0: 2580 | version "1.1.1" 2581 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e" 2582 | integrity sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA== 2583 | dependencies: 2584 | define-properties "^1.1.3" 2585 | es-abstract "^1.17.0-next.1" 2586 | function-bind "^1.1.1" 2587 | has "^1.0.3" 2588 | 2589 | once@^1.3.0: 2590 | version "1.4.0" 2591 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2592 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 2593 | dependencies: 2594 | wrappy "1" 2595 | 2596 | p-finally@^1.0.0: 2597 | version "1.0.0" 2598 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2599 | integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= 2600 | 2601 | p-limit@^2.2.0: 2602 | version "2.3.0" 2603 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" 2604 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== 2605 | dependencies: 2606 | p-try "^2.0.0" 2607 | 2608 | p-locate@^4.1.0: 2609 | version "4.1.0" 2610 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" 2611 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 2612 | dependencies: 2613 | p-limit "^2.2.0" 2614 | 2615 | p-queue@^6.3.0: 2616 | version "6.6.2" 2617 | resolved "https://registry.yarnpkg.com/p-queue/-/p-queue-6.6.2.tgz#2068a9dcf8e67dd0ec3e7a2bcb76810faa85e426" 2618 | integrity sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ== 2619 | dependencies: 2620 | eventemitter3 "^4.0.4" 2621 | p-timeout "^3.2.0" 2622 | 2623 | p-timeout@^3.2.0: 2624 | version "3.2.0" 2625 | resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-3.2.0.tgz#c7e17abc971d2a7962ef83626b35d635acf23dfe" 2626 | integrity sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg== 2627 | dependencies: 2628 | p-finally "^1.0.0" 2629 | 2630 | p-try@^2.0.0: 2631 | version "2.2.0" 2632 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 2633 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 2634 | 2635 | parent-module@^1.0.0: 2636 | version "1.0.1" 2637 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 2638 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 2639 | dependencies: 2640 | callsites "^3.0.0" 2641 | 2642 | parse-json@^4.0.0: 2643 | version "4.0.0" 2644 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 2645 | integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= 2646 | dependencies: 2647 | error-ex "^1.3.1" 2648 | json-parse-better-errors "^1.0.1" 2649 | 2650 | parse-json@^5.0.0: 2651 | version "5.1.0" 2652 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.1.0.tgz#f96088cdf24a8faa9aea9a009f2d9d942c999646" 2653 | integrity sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ== 2654 | dependencies: 2655 | "@babel/code-frame" "^7.0.0" 2656 | error-ex "^1.3.1" 2657 | json-parse-even-better-errors "^2.3.0" 2658 | lines-and-columns "^1.1.6" 2659 | 2660 | path-exists@^4.0.0: 2661 | version "4.0.0" 2662 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 2663 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 2664 | 2665 | path-is-absolute@^1.0.0: 2666 | version "1.0.1" 2667 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2668 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2669 | 2670 | path-key@^2.0.0: 2671 | version "2.0.1" 2672 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2673 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= 2674 | 2675 | path-parse@^1.0.6: 2676 | version "1.0.6" 2677 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 2678 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 2679 | 2680 | path-type@^4.0.0: 2681 | version "4.0.0" 2682 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 2683 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 2684 | 2685 | picomatch@^2.2.2: 2686 | version "2.2.2" 2687 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" 2688 | integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== 2689 | 2690 | pify@^4.0.1: 2691 | version "4.0.1" 2692 | resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" 2693 | integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== 2694 | 2695 | pify@^5.0.0: 2696 | version "5.0.0" 2697 | resolved "https://registry.yarnpkg.com/pify/-/pify-5.0.0.tgz#1f5eca3f5e87ebec28cc6d54a0e4aaf00acc127f" 2698 | integrity sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA== 2699 | 2700 | pkg-dir@^4.1.0: 2701 | version "4.2.0" 2702 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" 2703 | integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== 2704 | dependencies: 2705 | find-up "^4.0.0" 2706 | 2707 | postcss-calc@^7.0.1: 2708 | version "7.0.5" 2709 | resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.5.tgz#f8a6e99f12e619c2ebc23cf6c486fdc15860933e" 2710 | integrity sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg== 2711 | dependencies: 2712 | postcss "^7.0.27" 2713 | postcss-selector-parser "^6.0.2" 2714 | postcss-value-parser "^4.0.2" 2715 | 2716 | postcss-colormin@^4.0.3: 2717 | version "4.0.3" 2718 | resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-4.0.3.tgz#ae060bce93ed794ac71264f08132d550956bd381" 2719 | integrity sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw== 2720 | dependencies: 2721 | browserslist "^4.0.0" 2722 | color "^3.0.0" 2723 | has "^1.0.0" 2724 | postcss "^7.0.0" 2725 | postcss-value-parser "^3.0.0" 2726 | 2727 | postcss-convert-values@^4.0.1: 2728 | version "4.0.1" 2729 | resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz#ca3813ed4da0f812f9d43703584e449ebe189a7f" 2730 | integrity sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ== 2731 | dependencies: 2732 | postcss "^7.0.0" 2733 | postcss-value-parser "^3.0.0" 2734 | 2735 | postcss-discard-comments@^4.0.2: 2736 | version "4.0.2" 2737 | resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz#1fbabd2c246bff6aaad7997b2b0918f4d7af4033" 2738 | integrity sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg== 2739 | dependencies: 2740 | postcss "^7.0.0" 2741 | 2742 | postcss-discard-duplicates@^4.0.2: 2743 | version "4.0.2" 2744 | resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz#3fe133cd3c82282e550fc9b239176a9207b784eb" 2745 | integrity sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ== 2746 | dependencies: 2747 | postcss "^7.0.0" 2748 | 2749 | postcss-discard-empty@^4.0.1: 2750 | version "4.0.1" 2751 | resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz#c8c951e9f73ed9428019458444a02ad90bb9f765" 2752 | integrity sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w== 2753 | dependencies: 2754 | postcss "^7.0.0" 2755 | 2756 | postcss-discard-overridden@^4.0.1: 2757 | version "4.0.1" 2758 | resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz#652aef8a96726f029f5e3e00146ee7a4e755ff57" 2759 | integrity sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg== 2760 | dependencies: 2761 | postcss "^7.0.0" 2762 | 2763 | postcss-functions@^3.0.0: 2764 | version "3.0.0" 2765 | resolved "https://registry.yarnpkg.com/postcss-functions/-/postcss-functions-3.0.0.tgz#0e94d01444700a481de20de4d55fb2640564250e" 2766 | integrity sha1-DpTQFERwCkgd4g3k1V+yZAVkJQ4= 2767 | dependencies: 2768 | glob "^7.1.2" 2769 | object-assign "^4.1.1" 2770 | postcss "^6.0.9" 2771 | postcss-value-parser "^3.3.0" 2772 | 2773 | postcss-js@^2.0.0: 2774 | version "2.0.3" 2775 | resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-2.0.3.tgz#a96f0f23ff3d08cec7dc5b11bf11c5f8077cdab9" 2776 | integrity sha512-zS59pAk3deu6dVHyrGqmC3oDXBdNdajk4k1RyxeVXCrcEDBUBHoIhE4QTsmhxgzXxsaqFDAkUZfmMa5f/N/79w== 2777 | dependencies: 2778 | camelcase-css "^2.0.1" 2779 | postcss "^7.0.18" 2780 | 2781 | postcss-load-config@^2.1.0: 2782 | version "2.1.2" 2783 | resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-2.1.2.tgz#c5ea504f2c4aef33c7359a34de3573772ad7502a" 2784 | integrity sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw== 2785 | dependencies: 2786 | cosmiconfig "^5.0.0" 2787 | import-cwd "^2.0.0" 2788 | 2789 | postcss-merge-longhand@^4.0.11: 2790 | version "4.0.11" 2791 | resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz#62f49a13e4a0ee04e7b98f42bb16062ca2549e24" 2792 | integrity sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw== 2793 | dependencies: 2794 | css-color-names "0.0.4" 2795 | postcss "^7.0.0" 2796 | postcss-value-parser "^3.0.0" 2797 | stylehacks "^4.0.0" 2798 | 2799 | postcss-merge-rules@^4.0.3: 2800 | version "4.0.3" 2801 | resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz#362bea4ff5a1f98e4075a713c6cb25aefef9a650" 2802 | integrity sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ== 2803 | dependencies: 2804 | browserslist "^4.0.0" 2805 | caniuse-api "^3.0.0" 2806 | cssnano-util-same-parent "^4.0.0" 2807 | postcss "^7.0.0" 2808 | postcss-selector-parser "^3.0.0" 2809 | vendors "^1.0.0" 2810 | 2811 | postcss-minify-font-values@^4.0.2: 2812 | version "4.0.2" 2813 | resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz#cd4c344cce474343fac5d82206ab2cbcb8afd5a6" 2814 | integrity sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg== 2815 | dependencies: 2816 | postcss "^7.0.0" 2817 | postcss-value-parser "^3.0.0" 2818 | 2819 | postcss-minify-gradients@^4.0.2: 2820 | version "4.0.2" 2821 | resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz#93b29c2ff5099c535eecda56c4aa6e665a663471" 2822 | integrity sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q== 2823 | dependencies: 2824 | cssnano-util-get-arguments "^4.0.0" 2825 | is-color-stop "^1.0.0" 2826 | postcss "^7.0.0" 2827 | postcss-value-parser "^3.0.0" 2828 | 2829 | postcss-minify-params@^4.0.2: 2830 | version "4.0.2" 2831 | resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz#6b9cef030c11e35261f95f618c90036d680db874" 2832 | integrity sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg== 2833 | dependencies: 2834 | alphanum-sort "^1.0.0" 2835 | browserslist "^4.0.0" 2836 | cssnano-util-get-arguments "^4.0.0" 2837 | postcss "^7.0.0" 2838 | postcss-value-parser "^3.0.0" 2839 | uniqs "^2.0.0" 2840 | 2841 | postcss-minify-selectors@^4.0.2: 2842 | version "4.0.2" 2843 | resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz#e2e5eb40bfee500d0cd9243500f5f8ea4262fbd8" 2844 | integrity sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g== 2845 | dependencies: 2846 | alphanum-sort "^1.0.0" 2847 | has "^1.0.0" 2848 | postcss "^7.0.0" 2849 | postcss-selector-parser "^3.0.0" 2850 | 2851 | postcss-modules-extract-imports@1.1.0: 2852 | version "1.1.0" 2853 | resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.1.0.tgz#b614c9720be6816eaee35fb3a5faa1dba6a05ddb" 2854 | integrity sha1-thTJcgvmgW6u41+zpfqh26agXds= 2855 | dependencies: 2856 | postcss "^6.0.1" 2857 | 2858 | postcss-modules-local-by-default@1.2.0: 2859 | version "1.2.0" 2860 | resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz#f7d80c398c5a393fa7964466bd19500a7d61c069" 2861 | integrity sha1-99gMOYxaOT+nlkRmvRlQCn1hwGk= 2862 | dependencies: 2863 | css-selector-tokenizer "^0.7.0" 2864 | postcss "^6.0.1" 2865 | 2866 | postcss-modules-scope@1.1.0: 2867 | version "1.1.0" 2868 | resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz#d6ea64994c79f97b62a72b426fbe6056a194bb90" 2869 | integrity sha1-1upkmUx5+XtipytCb75gVqGUu5A= 2870 | dependencies: 2871 | css-selector-tokenizer "^0.7.0" 2872 | postcss "^6.0.1" 2873 | 2874 | postcss-modules-values@1.3.0: 2875 | version "1.3.0" 2876 | resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz#ecffa9d7e192518389f42ad0e83f72aec456ea20" 2877 | integrity sha1-7P+p1+GSUYOJ9CrQ6D9yrsRW6iA= 2878 | dependencies: 2879 | icss-replace-symbols "^1.1.0" 2880 | postcss "^6.0.1" 2881 | 2882 | postcss-modules@^2.0.0: 2883 | version "2.0.0" 2884 | resolved "https://registry.yarnpkg.com/postcss-modules/-/postcss-modules-2.0.0.tgz#473d0d7326651d8408585c2a154115d5cb36cce0" 2885 | integrity sha512-eqp+Bva+U2cwQO7dECJ8/V+X+uH1HduNeITB0CPPFAu6d/8LKQ32/j+p9rQ2YL1QytVcrNU0X+fBqgGmQIA1Rw== 2886 | dependencies: 2887 | css-modules-loader-core "^1.1.0" 2888 | generic-names "^2.0.1" 2889 | lodash.camelcase "^4.3.0" 2890 | postcss "^7.0.1" 2891 | string-hash "^1.1.1" 2892 | 2893 | postcss-nested@^4.1.1: 2894 | version "4.2.3" 2895 | resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-4.2.3.tgz#c6f255b0a720549776d220d00c4b70cd244136f6" 2896 | integrity sha512-rOv0W1HquRCamWy2kFl3QazJMMe1ku6rCFoAAH+9AcxdbpDeBr6k968MLWuLjvjMcGEip01ak09hKOEgpK9hvw== 2897 | dependencies: 2898 | postcss "^7.0.32" 2899 | postcss-selector-parser "^6.0.2" 2900 | 2901 | postcss-normalize-charset@^4.0.1: 2902 | version "4.0.1" 2903 | resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz#8b35add3aee83a136b0471e0d59be58a50285dd4" 2904 | integrity sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g== 2905 | dependencies: 2906 | postcss "^7.0.0" 2907 | 2908 | postcss-normalize-display-values@^4.0.2: 2909 | version "4.0.2" 2910 | resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz#0dbe04a4ce9063d4667ed2be476bb830c825935a" 2911 | integrity sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ== 2912 | dependencies: 2913 | cssnano-util-get-match "^4.0.0" 2914 | postcss "^7.0.0" 2915 | postcss-value-parser "^3.0.0" 2916 | 2917 | postcss-normalize-positions@^4.0.2: 2918 | version "4.0.2" 2919 | resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz#05f757f84f260437378368a91f8932d4b102917f" 2920 | integrity sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA== 2921 | dependencies: 2922 | cssnano-util-get-arguments "^4.0.0" 2923 | has "^1.0.0" 2924 | postcss "^7.0.0" 2925 | postcss-value-parser "^3.0.0" 2926 | 2927 | postcss-normalize-repeat-style@^4.0.2: 2928 | version "4.0.2" 2929 | resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz#c4ebbc289f3991a028d44751cbdd11918b17910c" 2930 | integrity sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q== 2931 | dependencies: 2932 | cssnano-util-get-arguments "^4.0.0" 2933 | cssnano-util-get-match "^4.0.0" 2934 | postcss "^7.0.0" 2935 | postcss-value-parser "^3.0.0" 2936 | 2937 | postcss-normalize-string@^4.0.2: 2938 | version "4.0.2" 2939 | resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz#cd44c40ab07a0c7a36dc5e99aace1eca4ec2690c" 2940 | integrity sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA== 2941 | dependencies: 2942 | has "^1.0.0" 2943 | postcss "^7.0.0" 2944 | postcss-value-parser "^3.0.0" 2945 | 2946 | postcss-normalize-timing-functions@^4.0.2: 2947 | version "4.0.2" 2948 | resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz#8e009ca2a3949cdaf8ad23e6b6ab99cb5e7d28d9" 2949 | integrity sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A== 2950 | dependencies: 2951 | cssnano-util-get-match "^4.0.0" 2952 | postcss "^7.0.0" 2953 | postcss-value-parser "^3.0.0" 2954 | 2955 | postcss-normalize-unicode@^4.0.1: 2956 | version "4.0.1" 2957 | resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz#841bd48fdcf3019ad4baa7493a3d363b52ae1cfb" 2958 | integrity sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg== 2959 | dependencies: 2960 | browserslist "^4.0.0" 2961 | postcss "^7.0.0" 2962 | postcss-value-parser "^3.0.0" 2963 | 2964 | postcss-normalize-url@^4.0.1: 2965 | version "4.0.1" 2966 | resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz#10e437f86bc7c7e58f7b9652ed878daaa95faae1" 2967 | integrity sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA== 2968 | dependencies: 2969 | is-absolute-url "^2.0.0" 2970 | normalize-url "^3.0.0" 2971 | postcss "^7.0.0" 2972 | postcss-value-parser "^3.0.0" 2973 | 2974 | postcss-normalize-whitespace@^4.0.2: 2975 | version "4.0.2" 2976 | resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz#bf1d4070fe4fcea87d1348e825d8cc0c5faa7d82" 2977 | integrity sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA== 2978 | dependencies: 2979 | postcss "^7.0.0" 2980 | postcss-value-parser "^3.0.0" 2981 | 2982 | postcss-ordered-values@^4.1.2: 2983 | version "4.1.2" 2984 | resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz#0cf75c820ec7d5c4d280189559e0b571ebac0eee" 2985 | integrity sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw== 2986 | dependencies: 2987 | cssnano-util-get-arguments "^4.0.0" 2988 | postcss "^7.0.0" 2989 | postcss-value-parser "^3.0.0" 2990 | 2991 | postcss-reduce-initial@^4.0.3: 2992 | version "4.0.3" 2993 | resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz#7fd42ebea5e9c814609639e2c2e84ae270ba48df" 2994 | integrity sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA== 2995 | dependencies: 2996 | browserslist "^4.0.0" 2997 | caniuse-api "^3.0.0" 2998 | has "^1.0.0" 2999 | postcss "^7.0.0" 3000 | 3001 | postcss-reduce-transforms@^4.0.2: 3002 | version "4.0.2" 3003 | resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz#17efa405eacc6e07be3414a5ca2d1074681d4e29" 3004 | integrity sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg== 3005 | dependencies: 3006 | cssnano-util-get-match "^4.0.0" 3007 | has "^1.0.0" 3008 | postcss "^7.0.0" 3009 | postcss-value-parser "^3.0.0" 3010 | 3011 | postcss-selector-parser@^3.0.0: 3012 | version "3.1.2" 3013 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz#b310f5c4c0fdaf76f94902bbaa30db6aa84f5270" 3014 | integrity sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA== 3015 | dependencies: 3016 | dot-prop "^5.2.0" 3017 | indexes-of "^1.0.1" 3018 | uniq "^1.0.1" 3019 | 3020 | postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2: 3021 | version "6.0.4" 3022 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz#56075a1380a04604c38b063ea7767a129af5c2b3" 3023 | integrity sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw== 3024 | dependencies: 3025 | cssesc "^3.0.0" 3026 | indexes-of "^1.0.1" 3027 | uniq "^1.0.1" 3028 | util-deprecate "^1.0.2" 3029 | 3030 | postcss-svgo@^4.0.2: 3031 | version "4.0.2" 3032 | resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-4.0.2.tgz#17b997bc711b333bab143aaed3b8d3d6e3d38258" 3033 | integrity sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw== 3034 | dependencies: 3035 | is-svg "^3.0.0" 3036 | postcss "^7.0.0" 3037 | postcss-value-parser "^3.0.0" 3038 | svgo "^1.0.0" 3039 | 3040 | postcss-unique-selectors@^4.0.1: 3041 | version "4.0.1" 3042 | resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz#9446911f3289bfd64c6d680f073c03b1f9ee4bac" 3043 | integrity sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg== 3044 | dependencies: 3045 | alphanum-sort "^1.0.0" 3046 | postcss "^7.0.0" 3047 | uniqs "^2.0.0" 3048 | 3049 | postcss-value-parser@^3.0.0, postcss-value-parser@^3.3.0: 3050 | version "3.3.1" 3051 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" 3052 | integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== 3053 | 3054 | postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0: 3055 | version "4.1.0" 3056 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb" 3057 | integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ== 3058 | 3059 | postcss@6.0.1: 3060 | version "6.0.1" 3061 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.1.tgz#000dbd1f8eef217aa368b9a212c5fc40b2a8f3f2" 3062 | integrity sha1-AA29H47vIXqjaLmiEsX8QLKo8/I= 3063 | dependencies: 3064 | chalk "^1.1.3" 3065 | source-map "^0.5.6" 3066 | supports-color "^3.2.3" 3067 | 3068 | postcss@7.0.32: 3069 | version "7.0.32" 3070 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.32.tgz#4310d6ee347053da3433db2be492883d62cec59d" 3071 | integrity sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw== 3072 | dependencies: 3073 | chalk "^2.4.2" 3074 | source-map "^0.6.1" 3075 | supports-color "^6.1.0" 3076 | 3077 | postcss@^6.0.1, postcss@^6.0.9: 3078 | version "6.0.23" 3079 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324" 3080 | integrity sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag== 3081 | dependencies: 3082 | chalk "^2.4.1" 3083 | source-map "^0.6.1" 3084 | supports-color "^5.4.0" 3085 | 3086 | postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.11, postcss@^7.0.18, postcss@^7.0.27, postcss@^7.0.32: 3087 | version "7.0.35" 3088 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.35.tgz#d2be00b998f7f211d8a276974079f2e92b970e24" 3089 | integrity sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg== 3090 | dependencies: 3091 | chalk "^2.4.2" 3092 | source-map "^0.6.1" 3093 | supports-color "^6.1.0" 3094 | 3095 | pretty-bytes@^3.0.0: 3096 | version "3.0.1" 3097 | resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-3.0.1.tgz#27d0008d778063a0b4811bb35c79f1bd5d5fbccf" 3098 | integrity sha1-J9AAjXeAY6C0gRuzXHnxvV1fvM8= 3099 | dependencies: 3100 | number-is-nan "^1.0.0" 3101 | 3102 | pretty-bytes@^5.3.0: 3103 | version "5.4.1" 3104 | resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.4.1.tgz#cd89f79bbcef21e3d21eb0da68ffe93f803e884b" 3105 | integrity sha512-s1Iam6Gwz3JI5Hweaz4GoCD1WUNUIyzePFy5+Js2hjwGVt2Z79wNN+ZKOZ2vB6C+Xs6njyB84Z1IthQg8d9LxA== 3106 | 3107 | pretty-hrtime@^1.0.3: 3108 | version "1.0.3" 3109 | resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" 3110 | integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE= 3111 | 3112 | prism-react-renderer@^1.1.1: 3113 | version "1.1.1" 3114 | resolved "https://registry.yarnpkg.com/prism-react-renderer/-/prism-react-renderer-1.1.1.tgz#1c1be61b1eb9446a146ca7a50b7bcf36f2a70a44" 3115 | integrity sha512-MgMhSdHuHymNRqD6KM3eGS0PNqgK9q4QF5P0yoQQvpB6jNjeSAi3jcSAz0Sua/t9fa4xDOMar9HJbLa08gl9ug== 3116 | 3117 | promise.series@^0.2.0: 3118 | version "0.2.0" 3119 | resolved "https://registry.yarnpkg.com/promise.series/-/promise.series-0.2.0.tgz#2cc7ebe959fc3a6619c04ab4dbdc9e452d864bbd" 3120 | integrity sha1-LMfr6Vn8OmYZwEq029yeRS2GS70= 3121 | 3122 | pseudomap@^1.0.2: 3123 | version "1.0.2" 3124 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 3125 | integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= 3126 | 3127 | purgecss@^2.3.0: 3128 | version "2.3.0" 3129 | resolved "https://registry.yarnpkg.com/purgecss/-/purgecss-2.3.0.tgz#5327587abf5795e6541517af8b190a6fb5488bb3" 3130 | integrity sha512-BE5CROfVGsx2XIhxGuZAT7rTH9lLeQx/6M0P7DTXQH4IUc3BBzs9JUzt4yzGf3JrH9enkeq6YJBe9CTtkm1WmQ== 3131 | dependencies: 3132 | commander "^5.0.0" 3133 | glob "^7.0.0" 3134 | postcss "7.0.32" 3135 | postcss-selector-parser "^6.0.2" 3136 | 3137 | q@^1.1.2: 3138 | version "1.5.1" 3139 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" 3140 | integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc= 3141 | 3142 | randombytes@^2.1.0: 3143 | version "2.1.0" 3144 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" 3145 | integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== 3146 | dependencies: 3147 | safe-buffer "^5.1.0" 3148 | 3149 | reduce-css-calc@^2.1.6: 3150 | version "2.1.7" 3151 | resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-2.1.7.tgz#1ace2e02c286d78abcd01fd92bfe8097ab0602c2" 3152 | integrity sha512-fDnlZ+AybAS3C7Q9xDq5y8A2z+lT63zLbynew/lur/IR24OQF5x98tfNwf79mzEdfywZ0a2wpM860FhFfMxZlA== 3153 | dependencies: 3154 | css-unit-converter "^1.1.1" 3155 | postcss-value-parser "^3.3.0" 3156 | 3157 | regenerate-unicode-properties@^8.2.0: 3158 | version "8.2.0" 3159 | resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec" 3160 | integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA== 3161 | dependencies: 3162 | regenerate "^1.4.0" 3163 | 3164 | regenerate@^1.4.0: 3165 | version "1.4.2" 3166 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" 3167 | integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== 3168 | 3169 | regenerator-runtime@^0.13.4: 3170 | version "0.13.7" 3171 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55" 3172 | integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew== 3173 | 3174 | regenerator-transform@^0.14.2: 3175 | version "0.14.5" 3176 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4" 3177 | integrity sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw== 3178 | dependencies: 3179 | "@babel/runtime" "^7.8.4" 3180 | 3181 | regexpu-core@^4.7.1: 3182 | version "4.7.1" 3183 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.1.tgz#2dea5a9a07233298fbf0db91fa9abc4c6e0f8ad6" 3184 | integrity sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ== 3185 | dependencies: 3186 | regenerate "^1.4.0" 3187 | regenerate-unicode-properties "^8.2.0" 3188 | regjsgen "^0.5.1" 3189 | regjsparser "^0.6.4" 3190 | unicode-match-property-ecmascript "^1.0.4" 3191 | unicode-match-property-value-ecmascript "^1.2.0" 3192 | 3193 | regjsgen@^0.5.1: 3194 | version "0.5.2" 3195 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733" 3196 | integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A== 3197 | 3198 | regjsparser@^0.6.4: 3199 | version "0.6.4" 3200 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.4.tgz#a769f8684308401a66e9b529d2436ff4d0666272" 3201 | integrity sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw== 3202 | dependencies: 3203 | jsesc "~0.5.0" 3204 | 3205 | remove-accents@0.4.2: 3206 | version "0.4.2" 3207 | resolved "https://registry.yarnpkg.com/remove-accents/-/remove-accents-0.4.2.tgz#0a43d3aaae1e80db919e07ae254b285d9e1c7bb5" 3208 | integrity sha1-CkPTqq4egNuRngeuJUsoXZ4ce7U= 3209 | 3210 | resolve-from@^3.0.0: 3211 | version "3.0.0" 3212 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" 3213 | integrity sha1-six699nWiBvItuZTM17rywoYh0g= 3214 | 3215 | resolve-from@^4.0.0: 3216 | version "4.0.0" 3217 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 3218 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 3219 | 3220 | resolve-from@^5.0.0: 3221 | version "5.0.0" 3222 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" 3223 | integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== 3224 | 3225 | resolve@1.12.0: 3226 | version "1.12.0" 3227 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.12.0.tgz#3fc644a35c84a48554609ff26ec52b66fa577df6" 3228 | integrity sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w== 3229 | dependencies: 3230 | path-parse "^1.0.6" 3231 | 3232 | resolve@^1.11.0, resolve@^1.11.1, resolve@^1.12.0, resolve@^1.14.2, resolve@^1.16.0, resolve@^1.3.2: 3233 | version "1.18.1" 3234 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.18.1.tgz#018fcb2c5b207d2a6424aee361c5a266da8f4130" 3235 | integrity sha512-lDfCPaMKfOJXjy0dPayzPdF1phampNWr3qFCjAu+rw/qbQmr5jWH5xN2hwh9QKfw9E5v4hwV7A+jrCmL8yjjqA== 3236 | dependencies: 3237 | is-core-module "^2.0.0" 3238 | path-parse "^1.0.6" 3239 | 3240 | rgb-regex@^1.0.1: 3241 | version "1.0.1" 3242 | resolved "https://registry.yarnpkg.com/rgb-regex/-/rgb-regex-1.0.1.tgz#c0e0d6882df0e23be254a475e8edd41915feaeb1" 3243 | integrity sha1-wODWiC3w4jviVKR16O3UGRX+rrE= 3244 | 3245 | rgba-regex@^1.0.0: 3246 | version "1.0.0" 3247 | resolved "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3" 3248 | integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM= 3249 | 3250 | rollup-plugin-bundle-size@^1.0.1: 3251 | version "1.0.3" 3252 | resolved "https://registry.yarnpkg.com/rollup-plugin-bundle-size/-/rollup-plugin-bundle-size-1.0.3.tgz#d245cd988486b4040279f9fd33f357f61673e90f" 3253 | integrity sha512-aWj0Pvzq90fqbI5vN1IvUrlf4utOqy+AERYxwWjegH1G8PzheMnrRIgQ5tkwKVtQMDP0bHZEACW/zLDF+XgfXQ== 3254 | dependencies: 3255 | chalk "^1.1.3" 3256 | maxmin "^2.1.0" 3257 | 3258 | rollup-plugin-es3@^1.1.0: 3259 | version "1.1.0" 3260 | resolved "https://registry.yarnpkg.com/rollup-plugin-es3/-/rollup-plugin-es3-1.1.0.tgz#f866f91b4db839e5b475d8e4a7b9d4c77ecade14" 3261 | integrity sha512-jTMqQgMZ/tkjRW4scf4ln5c0OiTSi+Lx/IEyFd41ldgGoLvvg9AQxmVOl93+KaoyB7XRYToYjiHDvO40NPF/fA== 3262 | dependencies: 3263 | magic-string "^0.22.4" 3264 | 3265 | rollup-plugin-postcss@^2.9.0: 3266 | version "2.9.0" 3267 | resolved "https://registry.yarnpkg.com/rollup-plugin-postcss/-/rollup-plugin-postcss-2.9.0.tgz#e6ea0a1b8fdc4a49fc0385da58804e332750c282" 3268 | integrity sha512-Y7qDwlqjZMBexbB1kRJf+jKIQL8HR6C+ay53YzN+nNJ64hn1PNZfBE3c61hFUhD//zrMwmm7uBW30RuTi+CD0w== 3269 | dependencies: 3270 | chalk "^4.0.0" 3271 | concat-with-sourcemaps "^1.1.0" 3272 | cssnano "^4.1.10" 3273 | import-cwd "^3.0.0" 3274 | p-queue "^6.3.0" 3275 | pify "^5.0.0" 3276 | postcss "^7.0.27" 3277 | postcss-load-config "^2.1.0" 3278 | postcss-modules "^2.0.0" 3279 | promise.series "^0.2.0" 3280 | resolve "^1.16.0" 3281 | rollup-pluginutils "^2.8.2" 3282 | safe-identifier "^0.4.1" 3283 | style-inject "^0.3.0" 3284 | 3285 | rollup-plugin-terser@^5.3.0: 3286 | version "5.3.1" 3287 | resolved "https://registry.yarnpkg.com/rollup-plugin-terser/-/rollup-plugin-terser-5.3.1.tgz#8c650062c22a8426c64268548957463bf981b413" 3288 | integrity sha512-1pkwkervMJQGFYvM9nscrUoncPwiKR/K+bHdjv6PFgRo3cgPHoRT83y2Aa3GvINj4539S15t/tpFPb775TDs6w== 3289 | dependencies: 3290 | "@babel/code-frame" "^7.5.5" 3291 | jest-worker "^24.9.0" 3292 | rollup-pluginutils "^2.8.2" 3293 | serialize-javascript "^4.0.0" 3294 | terser "^4.6.2" 3295 | 3296 | rollup-plugin-typescript2@^0.25.3: 3297 | version "0.25.3" 3298 | resolved "https://registry.yarnpkg.com/rollup-plugin-typescript2/-/rollup-plugin-typescript2-0.25.3.tgz#a5fb2f0f85488789334ce540abe6c7011cbdf40f" 3299 | integrity sha512-ADkSaidKBovJmf5VBnZBZe+WzaZwofuvYdzGAKTN/J4hN7QJCFYAq7IrH9caxlru6T5qhX41PNFS1S4HqhsGQg== 3300 | dependencies: 3301 | find-cache-dir "^3.0.0" 3302 | fs-extra "8.1.0" 3303 | resolve "1.12.0" 3304 | rollup-pluginutils "2.8.1" 3305 | tslib "1.10.0" 3306 | 3307 | rollup-pluginutils@2.8.1: 3308 | version "2.8.1" 3309 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.1.tgz#8fa6dd0697344938ef26c2c09d2488ce9e33ce97" 3310 | integrity sha512-J5oAoysWar6GuZo0s+3bZ6sVZAC0pfqKz68De7ZgDi5z63jOVZn1uJL/+z1jeKHNbGII8kAyHF5q8LnxSX5lQg== 3311 | dependencies: 3312 | estree-walker "^0.6.1" 3313 | 3314 | rollup-pluginutils@^2.8.2: 3315 | version "2.8.2" 3316 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz#72f2af0748b592364dbd3389e600e5a9444a351e" 3317 | integrity sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ== 3318 | dependencies: 3319 | estree-walker "^0.6.1" 3320 | 3321 | rollup@^1.32.1: 3322 | version "1.32.1" 3323 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-1.32.1.tgz#4480e52d9d9e2ae4b46ba0d9ddeaf3163940f9c4" 3324 | integrity sha512-/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A== 3325 | dependencies: 3326 | "@types/estree" "*" 3327 | "@types/node" "*" 3328 | acorn "^7.1.0" 3329 | 3330 | sade@^1.7.3: 3331 | version "1.7.4" 3332 | resolved "https://registry.yarnpkg.com/sade/-/sade-1.7.4.tgz#ea681e0c65d248d2095c90578c03ca0bb1b54691" 3333 | integrity sha512-y5yauMD93rX840MwUJr7C1ysLFBgMspsdTo4UVrDg3fXDvtwOyIqykhVAAm6fk/3au77773itJStObgK+LKaiA== 3334 | dependencies: 3335 | mri "^1.1.0" 3336 | 3337 | safe-buffer@^5.1.0: 3338 | version "5.2.1" 3339 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 3340 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 3341 | 3342 | safe-buffer@~5.1.1: 3343 | version "5.1.2" 3344 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 3345 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 3346 | 3347 | safe-identifier@^0.4.1: 3348 | version "0.4.2" 3349 | resolved "https://registry.yarnpkg.com/safe-identifier/-/safe-identifier-0.4.2.tgz#cf6bfca31c2897c588092d1750d30ef501d59fcb" 3350 | integrity sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w== 3351 | 3352 | sax@~1.2.4: 3353 | version "1.2.4" 3354 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 3355 | integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== 3356 | 3357 | semver@7.0.0: 3358 | version "7.0.0" 3359 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" 3360 | integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== 3361 | 3362 | semver@^5.4.1, semver@^5.5.0: 3363 | version "5.7.1" 3364 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 3365 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 3366 | 3367 | semver@^6.0.0: 3368 | version "6.3.0" 3369 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 3370 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 3371 | 3372 | serialize-javascript@^4.0.0: 3373 | version "4.0.0" 3374 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa" 3375 | integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw== 3376 | dependencies: 3377 | randombytes "^2.1.0" 3378 | 3379 | shebang-command@^1.2.0: 3380 | version "1.2.0" 3381 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3382 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 3383 | dependencies: 3384 | shebang-regex "^1.0.0" 3385 | 3386 | shebang-regex@^1.0.0: 3387 | version "1.0.0" 3388 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3389 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 3390 | 3391 | signal-exit@^3.0.0: 3392 | version "3.0.3" 3393 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" 3394 | integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== 3395 | 3396 | simple-swizzle@^0.2.2: 3397 | version "0.2.2" 3398 | resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" 3399 | integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo= 3400 | dependencies: 3401 | is-arrayish "^0.3.1" 3402 | 3403 | slash@^3.0.0: 3404 | version "3.0.0" 3405 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 3406 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 3407 | 3408 | source-map-support@~0.5.12: 3409 | version "0.5.19" 3410 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" 3411 | integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== 3412 | dependencies: 3413 | buffer-from "^1.0.0" 3414 | source-map "^0.6.0" 3415 | 3416 | source-map@^0.5.0, source-map@^0.5.6: 3417 | version "0.5.7" 3418 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3419 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 3420 | 3421 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: 3422 | version "0.6.1" 3423 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3424 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 3425 | 3426 | sourcemap-codec@^1.4.4: 3427 | version "1.4.8" 3428 | resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" 3429 | integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== 3430 | 3431 | sprintf-js@~1.0.2: 3432 | version "1.0.3" 3433 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3434 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 3435 | 3436 | stable@^0.1.8: 3437 | version "0.1.8" 3438 | resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" 3439 | integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== 3440 | 3441 | string-hash@^1.1.1: 3442 | version "1.1.3" 3443 | resolved "https://registry.yarnpkg.com/string-hash/-/string-hash-1.1.3.tgz#e8aafc0ac1855b4666929ed7dd1275df5d6c811b" 3444 | integrity sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs= 3445 | 3446 | string.prototype.trimend@^1.0.1: 3447 | version "1.0.2" 3448 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.2.tgz#6ddd9a8796bc714b489a3ae22246a208f37bfa46" 3449 | integrity sha512-8oAG/hi14Z4nOVP0z6mdiVZ/wqjDtWSLygMigTzAb+7aPEDTleeFf+WrF+alzecxIRkckkJVn+dTlwzJXORATw== 3450 | dependencies: 3451 | define-properties "^1.1.3" 3452 | es-abstract "^1.18.0-next.1" 3453 | 3454 | string.prototype.trimstart@^1.0.1: 3455 | version "1.0.2" 3456 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.2.tgz#22d45da81015309cd0cdd79787e8919fc5c613e7" 3457 | integrity sha512-7F6CdBTl5zyu30BJFdzSTlSlLPwODC23Od+iLoVH8X6+3fvDPPuBVVj9iaB1GOsSTSIgVfsfm27R2FGrAPznWg== 3458 | dependencies: 3459 | define-properties "^1.1.3" 3460 | es-abstract "^1.18.0-next.1" 3461 | 3462 | strip-ansi@^3.0.0: 3463 | version "3.0.1" 3464 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3465 | integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= 3466 | dependencies: 3467 | ansi-regex "^2.0.0" 3468 | 3469 | strip-eof@^1.0.0: 3470 | version "1.0.0" 3471 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3472 | integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= 3473 | 3474 | style-inject@^0.3.0: 3475 | version "0.3.0" 3476 | resolved "https://registry.yarnpkg.com/style-inject/-/style-inject-0.3.0.tgz#d21c477affec91811cc82355832a700d22bf8dd3" 3477 | integrity sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw== 3478 | 3479 | stylehacks@^4.0.0: 3480 | version "4.0.3" 3481 | resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-4.0.3.tgz#6718fcaf4d1e07d8a1318690881e8d96726a71d5" 3482 | integrity sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g== 3483 | dependencies: 3484 | browserslist "^4.0.0" 3485 | postcss "^7.0.0" 3486 | postcss-selector-parser "^3.0.0" 3487 | 3488 | supports-color@^2.0.0: 3489 | version "2.0.0" 3490 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3491 | integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= 3492 | 3493 | supports-color@^3.2.3: 3494 | version "3.2.3" 3495 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3496 | integrity sha1-ZawFBLOVQXHYpklGsq48u4pfVPY= 3497 | dependencies: 3498 | has-flag "^1.0.0" 3499 | 3500 | supports-color@^4.0.0: 3501 | version "4.5.0" 3502 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 3503 | integrity sha1-vnoN5ITexcXN34s9WRJQRJEvY1s= 3504 | dependencies: 3505 | has-flag "^2.0.0" 3506 | 3507 | supports-color@^5.3.0, supports-color@^5.4.0: 3508 | version "5.5.0" 3509 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 3510 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 3511 | dependencies: 3512 | has-flag "^3.0.0" 3513 | 3514 | supports-color@^6.1.0: 3515 | version "6.1.0" 3516 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" 3517 | integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== 3518 | dependencies: 3519 | has-flag "^3.0.0" 3520 | 3521 | supports-color@^7.1.0: 3522 | version "7.2.0" 3523 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 3524 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 3525 | dependencies: 3526 | has-flag "^4.0.0" 3527 | 3528 | svgo@^1.0.0: 3529 | version "1.3.2" 3530 | resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.3.2.tgz#b6dc511c063346c9e415b81e43401145b96d4167" 3531 | integrity sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw== 3532 | dependencies: 3533 | chalk "^2.4.1" 3534 | coa "^2.0.2" 3535 | css-select "^2.0.0" 3536 | css-select-base-adapter "^0.1.1" 3537 | css-tree "1.0.0-alpha.37" 3538 | csso "^4.0.2" 3539 | js-yaml "^3.13.1" 3540 | mkdirp "~0.5.1" 3541 | object.values "^1.1.0" 3542 | sax "~1.2.4" 3543 | stable "^0.1.8" 3544 | unquote "~1.1.1" 3545 | util.promisify "~1.0.0" 3546 | 3547 | tailwindcss@^1.8.3: 3548 | version "1.9.6" 3549 | resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-1.9.6.tgz#0c5089911d24e1e98e592a31bfdb3d8f34ecf1a0" 3550 | integrity sha512-nY8WYM/RLPqGsPEGEV2z63riyQPcHYZUJpAwdyBzVpxQHOHqHE+F/fvbCeXhdF1+TA5l72vSkZrtYCB9hRcwkQ== 3551 | dependencies: 3552 | "@fullhuman/postcss-purgecss" "^2.1.2" 3553 | autoprefixer "^9.4.5" 3554 | browserslist "^4.12.0" 3555 | bytes "^3.0.0" 3556 | chalk "^3.0.0 || ^4.0.0" 3557 | color "^3.1.2" 3558 | detective "^5.2.0" 3559 | fs-extra "^8.0.0" 3560 | html-tags "^3.1.0" 3561 | lodash "^4.17.20" 3562 | node-emoji "^1.8.1" 3563 | normalize.css "^8.0.1" 3564 | object-hash "^2.0.3" 3565 | postcss "^7.0.11" 3566 | postcss-functions "^3.0.0" 3567 | postcss-js "^2.0.0" 3568 | postcss-nested "^4.1.1" 3569 | postcss-selector-parser "^6.0.0" 3570 | postcss-value-parser "^4.1.0" 3571 | pretty-hrtime "^1.0.3" 3572 | reduce-css-calc "^2.1.6" 3573 | resolve "^1.14.2" 3574 | 3575 | terser@^4.6.2: 3576 | version "4.8.0" 3577 | resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.0.tgz#63056343d7c70bb29f3af665865a46fe03a0df17" 3578 | integrity sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw== 3579 | dependencies: 3580 | commander "^2.20.0" 3581 | source-map "~0.6.1" 3582 | source-map-support "~0.5.12" 3583 | 3584 | timsort@^0.3.0: 3585 | version "0.3.0" 3586 | resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4" 3587 | integrity sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q= 3588 | 3589 | tiny-glob@^0.2.6: 3590 | version "0.2.6" 3591 | resolved "https://registry.yarnpkg.com/tiny-glob/-/tiny-glob-0.2.6.tgz#9e056e169d9788fe8a734dfa1ff02e9b92ed7eda" 3592 | integrity sha512-A7ewMqPu1B5PWwC3m7KVgAu96Ch5LA0w4SnEN/LbDREj/gAD0nPWboRbn8YoP9ISZXqeNAlMvKSKoEuhcfK3Pw== 3593 | dependencies: 3594 | globalyzer "^0.1.0" 3595 | globrex "^0.1.1" 3596 | 3597 | title@^3.4.2: 3598 | version "3.4.2" 3599 | resolved "https://registry.yarnpkg.com/title/-/title-3.4.2.tgz#1c0acd159c6437296cc73ec743a4b9f7510c6a6f" 3600 | integrity sha512-cSNFZ/ChKlX2SfF+k9XvvXkjVa1JrzdGt6v/hoxVig5VaDGRmNHANfawcAdW2mfkd7y+uBHH6n9EHAxJmkO5Hw== 3601 | dependencies: 3602 | arg "1.0.0" 3603 | chalk "2.3.0" 3604 | clipboardy "1.2.2" 3605 | titleize "1.0.0" 3606 | 3607 | titleize@1.0.0: 3608 | version "1.0.0" 3609 | resolved "https://registry.yarnpkg.com/titleize/-/titleize-1.0.0.tgz#7d350722061830ba6617631e0cfd3ea08398d95a" 3610 | integrity sha1-fTUHIgYYMLpmF2MeDP0+oIOY2Vo= 3611 | 3612 | to-fast-properties@^2.0.0: 3613 | version "2.0.0" 3614 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 3615 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 3616 | 3617 | tslib@1.10.0: 3618 | version "1.10.0" 3619 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a" 3620 | integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ== 3621 | 3622 | tslib@^1.13.0: 3623 | version "1.14.1" 3624 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" 3625 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== 3626 | 3627 | tslib@^2.0.0: 3628 | version "2.0.3" 3629 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.0.3.tgz#8e0741ac45fc0c226e58a17bfc3e64b9bc6ca61c" 3630 | integrity sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ== 3631 | 3632 | typescript@^3.9.5: 3633 | version "3.9.7" 3634 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.7.tgz#98d600a5ebdc38f40cb277522f12dc800e9e25fa" 3635 | integrity sha512-BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw== 3636 | 3637 | unicode-canonical-property-names-ecmascript@^1.0.4: 3638 | version "1.0.4" 3639 | resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" 3640 | integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ== 3641 | 3642 | unicode-match-property-ecmascript@^1.0.4: 3643 | version "1.0.4" 3644 | resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" 3645 | integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg== 3646 | dependencies: 3647 | unicode-canonical-property-names-ecmascript "^1.0.4" 3648 | unicode-property-aliases-ecmascript "^1.0.4" 3649 | 3650 | unicode-match-property-value-ecmascript@^1.2.0: 3651 | version "1.2.0" 3652 | resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531" 3653 | integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ== 3654 | 3655 | unicode-property-aliases-ecmascript@^1.0.4: 3656 | version "1.1.0" 3657 | resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4" 3658 | integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg== 3659 | 3660 | uniq@^1.0.1: 3661 | version "1.0.1" 3662 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 3663 | integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8= 3664 | 3665 | uniqs@^2.0.0: 3666 | version "2.0.0" 3667 | resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" 3668 | integrity sha1-/+3ks2slKQaW5uFl1KWe25mOawI= 3669 | 3670 | universalify@^0.1.0: 3671 | version "0.1.2" 3672 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" 3673 | integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== 3674 | 3675 | unquote@~1.1.1: 3676 | version "1.1.1" 3677 | resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544" 3678 | integrity sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ= 3679 | 3680 | util-deprecate@^1.0.2: 3681 | version "1.0.2" 3682 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3683 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 3684 | 3685 | util.promisify@~1.0.0: 3686 | version "1.0.1" 3687 | resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.1.tgz#6baf7774b80eeb0f7520d8b81d07982a59abbaee" 3688 | integrity sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA== 3689 | dependencies: 3690 | define-properties "^1.1.3" 3691 | es-abstract "^1.17.2" 3692 | has-symbols "^1.0.1" 3693 | object.getownpropertydescriptors "^2.1.0" 3694 | 3695 | vendors@^1.0.0: 3696 | version "1.0.4" 3697 | resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.4.tgz#e2b800a53e7a29b93506c3cf41100d16c4c4ad8e" 3698 | integrity sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w== 3699 | 3700 | vlq@^0.2.2: 3701 | version "0.2.3" 3702 | resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.3.tgz#8f3e4328cf63b1540c0d67e1b2778386f8975b26" 3703 | integrity sha512-DRibZL6DsNhIgYQ+wNdWDL2SL3bKPlVrRiBqV5yuMm++op8W4kGFtaQfCs4KEJn0wBZcHVHJ3eoywX8983k1ow== 3704 | 3705 | warning@^4.0.3: 3706 | version "4.0.3" 3707 | resolved "https://registry.yarnpkg.com/warning/-/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3" 3708 | integrity sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w== 3709 | dependencies: 3710 | loose-envify "^1.0.0" 3711 | 3712 | which@^1.2.9: 3713 | version "1.3.1" 3714 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 3715 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 3716 | dependencies: 3717 | isexe "^2.0.0" 3718 | 3719 | wrappy@1: 3720 | version "1.0.2" 3721 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3722 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 3723 | 3724 | xtend@^4.0.2: 3725 | version "4.0.2" 3726 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 3727 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 3728 | 3729 | yallist@^2.1.2: 3730 | version "2.1.2" 3731 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3732 | integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= 3733 | 3734 | yaml@^1.7.2: 3735 | version "1.10.0" 3736 | resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e" 3737 | integrity sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg== 3738 | --------------------------------------------------------------------------------