├── .gitignore
├── LICENSE.md
├── README.md
├── components
├── color-switcher.js
└── script.mdx
├── next.config.js
├── package.json
├── pages
├── _app.js
├── _document.js
└── index.js
├── prettier.config.js
├── public
└── moon.png
├── styles
└── crt.css
├── vercel.json
└── yarn.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | .now
2 | .next
3 | node_modules
4 | .DS_Store
5 | .env
6 |
--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
1 | ### MIT License
2 |
3 | Copyright 2022 The Hack Foundation
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6 |
7 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8 |
9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
10 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | The source code for Hack Club's Project Moonbeam website.
4 |
5 | ## How to run locally
6 |
7 | To execute the steps below, you will need the following installed:
8 |
9 | - [Node.js](https://nodejs.org/en/) (and the [Yarn](https://yarn.com) package manager)
10 | - [Git](https://git-scm.com/)
11 |
12 | Clone the repository:
13 |
14 | $ git clone https://github.com/hackclub/moonbeam-site.git
15 |
16 | Install dependencies:
17 |
18 | $ yarn
19 |
20 | Start the dev server:
21 |
22 | $ yarn dev
23 |
24 | Then, open up your web browser and go to http://localhost:3000.
25 |
26 | Powered by [Next.js](https://nextjs.org) with [MDX](https://mdxjs.com), [Theme UI](https://theme-ui.com), & [Hack Club Theme](https://theme.hackclub.com).
27 |
28 | Code under [MIT License](LICENSE.md).
29 |
--------------------------------------------------------------------------------
/components/color-switcher.js:
--------------------------------------------------------------------------------
1 | import { IconButton, useColorMode } from 'theme-ui'
2 |
3 | const ColorSwitcher = props => {
4 | const [mode, setMode] = useColorMode()
5 | return (
6 | setMode(mode === 'dark' ? 'light' : 'dark')}
8 | title={`Switch to ${mode === 'dark' ? 'light' : 'dark'} mode`}
9 | sx={{
10 | position: 'absolute',
11 | top: [2, 3],
12 | right: [2, 3],
13 | color: 'primary',
14 | cursor: 'pointer',
15 | borderRadius: 'circle',
16 | transition: 'box-shadow .125s ease-in-out',
17 | ':hover,:focus': {
18 | boxShadow: '0 0 0 3px',
19 | outline: 'none'
20 | }
21 | }}
22 | {...props}
23 | >
24 |
25 |
33 |
34 |
35 |
36 | )
37 | }
38 |
39 | export default ColorSwitcher
40 |
--------------------------------------------------------------------------------
/components/script.mdx:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | # Project Moonbeam
8 |
9 | We're a team of 50+ high schoolers around the world using mirrors put up by NASA's
10 | Apollo 11 mission to encode data, send it to the moon as a laser, and decode it back.
11 |
12 | We're just getting started and would love for you to be involved! Get in touch through
13 | [our Slack](https://hackclub.com/slack) or [email](mailto:moonbeam-aaaaeyno5c2ppm6gn2xw3cq3ve@hackclub.slack.com).
14 |
15 | An [open source project](https://github.com/hackclub/moonbeam) by [Hack Clubbers](https://hackclub.com).
16 |
--------------------------------------------------------------------------------
/next.config.js:
--------------------------------------------------------------------------------
1 | const withMDX = require('@next/mdx')({ extension: /\.mdx?$/ })
2 | module.exports = withMDX({ pageExtensions: ['js', 'jsx', 'mdx'] })
3 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "@hackclub/moonbeam-site",
3 | "version": "0.0.1",
4 | "license": "MIT",
5 | "private": true,
6 | "scripts": {
7 | "dev": "next",
8 | "build": "next build",
9 | "start": "next start"
10 | },
11 | "dependencies": {
12 | "@emotion/react": "^11.7.1",
13 | "@emotion/styled": "^11.8.1",
14 | "@hackclub/meta": "^1.1.32",
15 | "@hackclub/theme": "^0.3.3",
16 | "@mdx-js/loader": "^1.6.22",
17 | "@next/mdx": "^10.0.4",
18 | "next": "^12.1.4",
19 | "react": "^17.0.2",
20 | "react-dom": "^17.0.2",
21 | "theme-ui": "^0.14.2"
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/pages/_app.js:
--------------------------------------------------------------------------------
1 | import * as React from 'react'
2 | import NextApp from 'next/app'
3 | import '@hackclub/theme/fonts/reg-bold.css'
4 | import theme from '@hackclub/theme'
5 | import { ThemeProvider } from 'theme-ui'
6 | import Meta from '@hackclub/meta'
7 | import Head from 'next/head'
8 | import ColorSwitcher from '../components/color-switcher'
9 | import '../styles/crt.css'
10 |
11 | export default class App extends NextApp {
12 | render() {
13 | const { Component, pageProps } = this.props
14 | return (
15 |
21 |
28 |
29 |
30 | )
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/pages/_document.js:
--------------------------------------------------------------------------------
1 | import Document, { Html, Head, Main, NextScript } from 'next/document'
2 | import { InitializeColorMode } from 'theme-ui'
3 |
4 | export default class extends Document {
5 | static async getInitialProps(ctx) {
6 | const initialProps = await Document.getInitialProps(ctx)
7 | return { ...initialProps }
8 | }
9 |
10 | render() {
11 | return (
12 |
13 |
15 |
16 |
17 |
18 |
19 |
20 | )
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/pages/index.js:
--------------------------------------------------------------------------------
1 | import { Container } from 'theme-ui'
2 | import Script from '../components/script.mdx'
3 |
4 | export default function Home() {
5 | return (
6 |
11 |
12 |
13 | )
14 | }
15 |
--------------------------------------------------------------------------------
/prettier.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | singleQuote: true,
3 | trailingComma: 'none',
4 | arrowParens: 'avoid',
5 | printWidth: 80,
6 | semi: false
7 | }
8 |
--------------------------------------------------------------------------------
/public/moon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hackclub/moonbeam-site/1c1a66cc326c04333d36a37d06681b287b69ce99/public/moon.png
--------------------------------------------------------------------------------
/styles/crt.css:
--------------------------------------------------------------------------------
1 | /* sourced from http://aleclownes.com/2017/02/01/crt-display.html */
2 |
3 | .crt {
4 | min-height: 100vh;
5 | color: var(--theme-ui-colors-green) !important;
6 | }
7 | a {
8 | color: var(--theme-ui-colors-green) !important;
9 | }
10 | p {
11 | color: var(--theme-ui-colors-green) !important;
12 | }
13 | @keyframes flicker {
14 | 0% {
15 | opacity: 0.27861;
16 | }
17 | 5% {
18 | opacity: 0.34769;
19 | }
20 | 10% {
21 | opacity: 0.23604;
22 | }
23 | 15% {
24 | opacity: 0.90626;
25 | }
26 | 20% {
27 | opacity: 0.18128;
28 | }
29 | 25% {
30 | opacity: 0.83891;
31 | }
32 | 30% {
33 | opacity: 0.65583;
34 | }
35 | 35% {
36 | opacity: 0.67807;
37 | }
38 | 40% {
39 | opacity: 0.26559;
40 | }
41 | 45% {
42 | opacity: 0.84693;
43 | }
44 | 50% {
45 | opacity: 0.96019;
46 | }
47 | 55% {
48 | opacity: 0.08594;
49 | }
50 | 60% {
51 | opacity: 0.20313;
52 | }
53 | 65% {
54 | opacity: 0.71988;
55 | }
56 | 70% {
57 | opacity: 0.53455;
58 | }
59 | 75% {
60 | opacity: 0.37288;
61 | }
62 | 80% {
63 | opacity: 0.71428;
64 | }
65 | 85% {
66 | opacity: 0.70419;
67 | }
68 | 90% {
69 | opacity: 0.7003;
70 | }
71 | 95% {
72 | opacity: 0.36108;
73 | }
74 | 100% {
75 | opacity: 0.24387;
76 | }
77 | }
78 | @keyframes textShadow {
79 | 0% {
80 | text-shadow: 0.4389924193300864px 0 1px rgba(0, 30, 255, 0.5),
81 | -0.4389924193300864px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
82 | }
83 | 5% {
84 | text-shadow: 2.7928974010788217px 0 1px rgba(0, 30, 255, 0.5),
85 | -2.7928974010788217px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
86 | }
87 | 10% {
88 | text-shadow: 0.02956275843481219px 0 1px rgba(0, 30, 255, 0.5),
89 | -0.02956275843481219px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
90 | }
91 | 15% {
92 | text-shadow: 0.40218538552878136px 0 1px rgba(0, 30, 255, 0.5),
93 | -0.40218538552878136px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
94 | }
95 | 20% {
96 | text-shadow: 3.4794037899852017px 0 1px rgba(0, 30, 255, 0.5),
97 | -3.4794037899852017px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
98 | }
99 | 25% {
100 | text-shadow: 1.6125630401149584px 0 1px rgba(0, 30, 255, 0.5),
101 | -1.6125630401149584px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
102 | }
103 | 30% {
104 | text-shadow: 0.7015590085143956px 0 1px rgba(0, 30, 255, 0.5),
105 | -0.7015590085143956px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
106 | }
107 | 35% {
108 | text-shadow: 3.896914047650351px 0 1px rgba(0, 30, 255, 0.5),
109 | -3.896914047650351px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
110 | }
111 | 40% {
112 | text-shadow: 3.870905614848819px 0 1px rgba(0, 30, 255, 0.5),
113 | -3.870905614848819px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
114 | }
115 | 45% {
116 | text-shadow: 2.231056963361899px 0 1px rgba(0, 30, 255, 0.5),
117 | -2.231056963361899px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
118 | }
119 | 50% {
120 | text-shadow: 0.08084290417898504px 0 1px rgba(0, 30, 255, 0.5),
121 | -0.08084290417898504px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
122 | }
123 | 55% {
124 | text-shadow: 2.3758461067427543px 0 1px rgba(0, 30, 255, 0.5),
125 | -2.3758461067427543px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
126 | }
127 | 60% {
128 | text-shadow: 2.202193051050636px 0 1px rgba(0, 30, 255, 0.5),
129 | -2.202193051050636px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
130 | }
131 | 65% {
132 | text-shadow: 2.8638780614874975px 0 1px rgba(0, 30, 255, 0.5),
133 | -2.8638780614874975px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
134 | }
135 | 70% {
136 | text-shadow: 0.48874025155497314px 0 1px rgba(0, 30, 255, 0.5),
137 | -0.48874025155497314px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
138 | }
139 | 75% {
140 | text-shadow: 1.8948491305757957px 0 1px rgba(0, 30, 255, 0.5),
141 | -1.8948491305757957px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
142 | }
143 | 80% {
144 | text-shadow: 0.0833037308038857px 0 1px rgba(0, 30, 255, 0.5),
145 | -0.0833037308038857px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
146 | }
147 | 85% {
148 | text-shadow: 0.09769827255241735px 0 1px rgba(0, 30, 255, 0.5),
149 | -0.09769827255241735px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
150 | }
151 | 90% {
152 | text-shadow: 3.443339761481782px 0 1px rgba(0, 30, 255, 0.5),
153 | -3.443339761481782px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
154 | }
155 | 95% {
156 | text-shadow: 2.1841838852799786px 0 1px rgba(0, 30, 255, 0.5),
157 | -2.1841838852799786px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
158 | }
159 | 100% {
160 | text-shadow: 2.6208764473832513px 0 1px rgba(0, 30, 255, 0.5),
161 | -2.6208764473832513px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
162 | }
163 | }
164 | .crt::after {
165 | content: ' ';
166 | display: block;
167 | position: absolute;
168 | top: 0;
169 | left: 0;
170 | bottom: 0;
171 | right: 0;
172 | background: rgba(18, 16, 16, 0.1);
173 | opacity: 0;
174 | z-index: 2;
175 | pointer-events: none;
176 | animation: flicker 0.15s infinite;
177 | }
178 | .crt::before {
179 | content: ' ';
180 | display: block;
181 | position: absolute;
182 | top: 0;
183 | left: 0;
184 | bottom: 0;
185 | right: 0;
186 | background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
187 | linear-gradient(
188 | 90deg,
189 | rgba(255, 0, 0, 0.06),
190 | rgba(0, 255, 0, 0.02),
191 | rgba(0, 0, 255, 0.06)
192 | );
193 | z-index: 2;
194 | background-size: 100% 2px, 3px 100%;
195 | pointer-events: none;
196 | }
197 | .crt {
198 | animation: textShadow 1.6s infinite;
199 | }
200 |
--------------------------------------------------------------------------------
/vercel.json:
--------------------------------------------------------------------------------
1 | {
2 | "github": {
3 | "silent": true
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/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":
6 | version "7.16.7"
7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789"
8 | integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==
9 | dependencies:
10 | "@babel/highlight" "^7.16.7"
11 |
12 | "@babel/code-frame@^7.10.4":
13 | version "7.10.4"
14 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a"
15 | integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==
16 | dependencies:
17 | "@babel/highlight" "^7.10.4"
18 |
19 | "@babel/core@7.12.9":
20 | version "7.12.9"
21 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.9.tgz#fd450c4ec10cdbb980e2928b7aa7a28484593fc8"
22 | integrity sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==
23 | dependencies:
24 | "@babel/code-frame" "^7.10.4"
25 | "@babel/generator" "^7.12.5"
26 | "@babel/helper-module-transforms" "^7.12.1"
27 | "@babel/helpers" "^7.12.5"
28 | "@babel/parser" "^7.12.7"
29 | "@babel/template" "^7.12.7"
30 | "@babel/traverse" "^7.12.9"
31 | "@babel/types" "^7.12.7"
32 | convert-source-map "^1.7.0"
33 | debug "^4.1.0"
34 | gensync "^1.0.0-beta.1"
35 | json5 "^2.1.2"
36 | lodash "^4.17.19"
37 | resolve "^1.3.2"
38 | semver "^5.4.1"
39 | source-map "^0.5.0"
40 |
41 | "@babel/generator@^7.12.5":
42 | version "7.12.5"
43 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.5.tgz#a2c50de5c8b6d708ab95be5e6053936c1884a4de"
44 | integrity sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==
45 | dependencies:
46 | "@babel/types" "^7.12.5"
47 | jsesc "^2.5.1"
48 | source-map "^0.5.0"
49 |
50 | "@babel/helper-function-name@^7.10.4":
51 | version "7.10.4"
52 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz#d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a"
53 | integrity sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==
54 | dependencies:
55 | "@babel/helper-get-function-arity" "^7.10.4"
56 | "@babel/template" "^7.10.4"
57 | "@babel/types" "^7.10.4"
58 |
59 | "@babel/helper-get-function-arity@^7.10.4":
60 | version "7.10.4"
61 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz#98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2"
62 | integrity sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==
63 | dependencies:
64 | "@babel/types" "^7.10.4"
65 |
66 | "@babel/helper-member-expression-to-functions@^7.12.1":
67 | version "7.12.1"
68 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz#fba0f2fcff3fba00e6ecb664bb5e6e26e2d6165c"
69 | integrity sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ==
70 | dependencies:
71 | "@babel/types" "^7.12.1"
72 |
73 | "@babel/helper-module-imports@^7.12.1":
74 | version "7.12.5"
75 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz#1bfc0229f794988f76ed0a4d4e90860850b54dfb"
76 | integrity sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==
77 | dependencies:
78 | "@babel/types" "^7.12.5"
79 |
80 | "@babel/helper-module-imports@^7.12.13":
81 | version "7.16.7"
82 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz#25612a8091a999704461c8a222d0efec5d091437"
83 | integrity sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==
84 | dependencies:
85 | "@babel/types" "^7.16.7"
86 |
87 | "@babel/helper-module-transforms@^7.12.1":
88 | version "7.12.1"
89 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz#7954fec71f5b32c48e4b303b437c34453fd7247c"
90 | integrity sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==
91 | dependencies:
92 | "@babel/helper-module-imports" "^7.12.1"
93 | "@babel/helper-replace-supers" "^7.12.1"
94 | "@babel/helper-simple-access" "^7.12.1"
95 | "@babel/helper-split-export-declaration" "^7.11.0"
96 | "@babel/helper-validator-identifier" "^7.10.4"
97 | "@babel/template" "^7.10.4"
98 | "@babel/traverse" "^7.12.1"
99 | "@babel/types" "^7.12.1"
100 | lodash "^4.17.19"
101 |
102 | "@babel/helper-optimise-call-expression@^7.10.4":
103 | version "7.10.4"
104 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz#50dc96413d594f995a77905905b05893cd779673"
105 | integrity sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg==
106 | dependencies:
107 | "@babel/types" "^7.10.4"
108 |
109 | "@babel/helper-plugin-utils@7.10.4", "@babel/helper-plugin-utils@^7.10.4":
110 | version "7.10.4"
111 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375"
112 | integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==
113 |
114 | "@babel/helper-plugin-utils@^7.16.7":
115 | version "7.16.7"
116 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz#aa3a8ab4c3cceff8e65eb9e73d87dc4ff320b2f5"
117 | integrity sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==
118 |
119 | "@babel/helper-plugin-utils@^7.8.0":
120 | version "7.8.3"
121 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz#9ea293be19babc0f52ff8ca88b34c3611b208670"
122 | integrity sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==
123 |
124 | "@babel/helper-replace-supers@^7.12.1":
125 | version "7.12.5"
126 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz#f009a17543bbbbce16b06206ae73b63d3fca68d9"
127 | integrity sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==
128 | dependencies:
129 | "@babel/helper-member-expression-to-functions" "^7.12.1"
130 | "@babel/helper-optimise-call-expression" "^7.10.4"
131 | "@babel/traverse" "^7.12.5"
132 | "@babel/types" "^7.12.5"
133 |
134 | "@babel/helper-simple-access@^7.12.1":
135 | version "7.12.1"
136 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz#32427e5aa61547d38eb1e6eaf5fd1426fdad9136"
137 | integrity sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==
138 | dependencies:
139 | "@babel/types" "^7.12.1"
140 |
141 | "@babel/helper-split-export-declaration@^7.11.0":
142 | version "7.11.0"
143 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f"
144 | integrity sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==
145 | dependencies:
146 | "@babel/types" "^7.11.0"
147 |
148 | "@babel/helper-validator-identifier@^7.10.4":
149 | version "7.10.4"
150 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2"
151 | integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==
152 |
153 | "@babel/helper-validator-identifier@^7.16.7":
154 | version "7.16.7"
155 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad"
156 | integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==
157 |
158 | "@babel/helpers@^7.12.5":
159 | version "7.12.5"
160 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.12.5.tgz#1a1ba4a768d9b58310eda516c449913fe647116e"
161 | integrity sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==
162 | dependencies:
163 | "@babel/template" "^7.10.4"
164 | "@babel/traverse" "^7.12.5"
165 | "@babel/types" "^7.12.5"
166 |
167 | "@babel/highlight@^7.10.4":
168 | version "7.10.4"
169 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143"
170 | integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==
171 | dependencies:
172 | "@babel/helper-validator-identifier" "^7.10.4"
173 | chalk "^2.0.0"
174 | js-tokens "^4.0.0"
175 |
176 | "@babel/highlight@^7.16.7":
177 | version "7.16.7"
178 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.16.7.tgz#81a01d7d675046f0d96f82450d9d9578bdfd6b0b"
179 | integrity sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw==
180 | dependencies:
181 | "@babel/helper-validator-identifier" "^7.16.7"
182 | chalk "^2.0.0"
183 | js-tokens "^4.0.0"
184 |
185 | "@babel/parser@^7.10.4":
186 | version "7.10.5"
187 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.10.5.tgz#e7c6bf5a7deff957cec9f04b551e2762909d826b"
188 | integrity sha512-wfryxy4bE1UivvQKSQDU4/X6dr+i8bctjUjj8Zyt3DQy7NtPizJXT8M52nqpNKL+nq2PW8lxk4ZqLj0fD4B4hQ==
189 |
190 | "@babel/parser@^7.12.5":
191 | version "7.12.5"
192 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.5.tgz#b4af32ddd473c0bfa643bd7ff0728b8e71b81ea0"
193 | integrity sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ==
194 |
195 | "@babel/parser@^7.12.7":
196 | version "7.12.7"
197 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.7.tgz#fee7b39fe809d0e73e5b25eecaf5780ef3d73056"
198 | integrity sha512-oWR02Ubp4xTLCAqPRiNIuMVgNO5Aif/xpXtabhzW2HWUD47XJsAB4Zd/Rg30+XeQA3juXigV7hlquOTmwqLiwg==
199 |
200 | "@babel/plugin-proposal-object-rest-spread@7.12.1":
201 | version "7.12.1"
202 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz#def9bd03cea0f9b72283dac0ec22d289c7691069"
203 | integrity sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==
204 | dependencies:
205 | "@babel/helper-plugin-utils" "^7.10.4"
206 | "@babel/plugin-syntax-object-rest-spread" "^7.8.0"
207 | "@babel/plugin-transform-parameters" "^7.12.1"
208 |
209 | "@babel/plugin-syntax-jsx@7.12.1":
210 | version "7.12.1"
211 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz#9d9d357cc818aa7ae7935917c1257f67677a0926"
212 | integrity sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==
213 | dependencies:
214 | "@babel/helper-plugin-utils" "^7.10.4"
215 |
216 | "@babel/plugin-syntax-jsx@^7.12.13":
217 | version "7.16.7"
218 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.16.7.tgz#50b6571d13f764266a113d77c82b4a6508bbe665"
219 | integrity sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==
220 | dependencies:
221 | "@babel/helper-plugin-utils" "^7.16.7"
222 |
223 | "@babel/plugin-syntax-object-rest-spread@7.8.3", "@babel/plugin-syntax-object-rest-spread@^7.8.0":
224 | version "7.8.3"
225 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
226 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
227 | dependencies:
228 | "@babel/helper-plugin-utils" "^7.8.0"
229 |
230 | "@babel/plugin-transform-parameters@^7.12.1":
231 | version "7.12.1"
232 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz#d2e963b038771650c922eff593799c96d853255d"
233 | integrity sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg==
234 | dependencies:
235 | "@babel/helper-plugin-utils" "^7.10.4"
236 |
237 | "@babel/runtime@^7.13.10", "@babel/runtime@^7.7.2":
238 | version "7.16.7"
239 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.16.7.tgz#03ff99f64106588c9c403c6ecb8c3bafbbdff1fa"
240 | integrity sha512-9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ==
241 | dependencies:
242 | regenerator-runtime "^0.13.4"
243 |
244 | "@babel/template@^7.10.4":
245 | version "7.10.4"
246 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.10.4.tgz#3251996c4200ebc71d1a8fc405fba940f36ba278"
247 | integrity sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==
248 | dependencies:
249 | "@babel/code-frame" "^7.10.4"
250 | "@babel/parser" "^7.10.4"
251 | "@babel/types" "^7.10.4"
252 |
253 | "@babel/template@^7.12.7":
254 | version "7.12.7"
255 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.12.7.tgz#c817233696018e39fbb6c491d2fb684e05ed43bc"
256 | integrity sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==
257 | dependencies:
258 | "@babel/code-frame" "^7.10.4"
259 | "@babel/parser" "^7.12.7"
260 | "@babel/types" "^7.12.7"
261 |
262 | "@babel/traverse@^7.12.1", "@babel/traverse@^7.12.5":
263 | version "7.12.5"
264 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.5.tgz#78a0c68c8e8a35e4cacfd31db8bb303d5606f095"
265 | integrity sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==
266 | dependencies:
267 | "@babel/code-frame" "^7.10.4"
268 | "@babel/generator" "^7.12.5"
269 | "@babel/helper-function-name" "^7.10.4"
270 | "@babel/helper-split-export-declaration" "^7.11.0"
271 | "@babel/parser" "^7.12.5"
272 | "@babel/types" "^7.12.5"
273 | debug "^4.1.0"
274 | globals "^11.1.0"
275 | lodash "^4.17.19"
276 |
277 | "@babel/traverse@^7.12.9":
278 | version "7.12.9"
279 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.9.tgz#fad26c972eabbc11350e0b695978de6cc8e8596f"
280 | integrity sha512-iX9ajqnLdoU1s1nHt36JDI9KG4k+vmI8WgjK5d+aDTwQbL2fUnzedNedssA645Ede3PM2ma1n8Q4h2ohwXgMXw==
281 | dependencies:
282 | "@babel/code-frame" "^7.10.4"
283 | "@babel/generator" "^7.12.5"
284 | "@babel/helper-function-name" "^7.10.4"
285 | "@babel/helper-split-export-declaration" "^7.11.0"
286 | "@babel/parser" "^7.12.7"
287 | "@babel/types" "^7.12.7"
288 | debug "^4.1.0"
289 | globals "^11.1.0"
290 | lodash "^4.17.19"
291 |
292 | "@babel/types@^7.10.4":
293 | version "7.10.5"
294 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.10.5.tgz#d88ae7e2fde86bfbfe851d4d81afa70a997b5d15"
295 | integrity sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==
296 | dependencies:
297 | "@babel/helper-validator-identifier" "^7.10.4"
298 | lodash "^4.17.19"
299 | to-fast-properties "^2.0.0"
300 |
301 | "@babel/types@^7.11.0", "@babel/types@^7.12.1", "@babel/types@^7.12.5":
302 | version "7.12.6"
303 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.6.tgz#ae0e55ef1cce1fbc881cd26f8234eb3e657edc96"
304 | integrity sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==
305 | dependencies:
306 | "@babel/helper-validator-identifier" "^7.10.4"
307 | lodash "^4.17.19"
308 | to-fast-properties "^2.0.0"
309 |
310 | "@babel/types@^7.12.7":
311 | version "7.12.7"
312 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.7.tgz#6039ff1e242640a29452c9ae572162ec9a8f5d13"
313 | integrity sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==
314 | dependencies:
315 | "@babel/helper-validator-identifier" "^7.10.4"
316 | lodash "^4.17.19"
317 | to-fast-properties "^2.0.0"
318 |
319 | "@babel/types@^7.16.7":
320 | version "7.16.7"
321 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.16.7.tgz#4ed19d51f840ed4bd5645be6ce40775fecf03159"
322 | integrity sha512-E8HuV7FO9qLpx6OtoGfUQ2cjIYnbFwvZWYBS+87EwtdMvmUPJSwykpovFB+8insbpF0uJcpr8KMUi64XZntZcg==
323 | dependencies:
324 | "@babel/helper-validator-identifier" "^7.16.7"
325 | to-fast-properties "^2.0.0"
326 |
327 | "@emotion/babel-plugin@^11.7.1":
328 | version "11.7.2"
329 | resolved "https://registry.yarnpkg.com/@emotion/babel-plugin/-/babel-plugin-11.7.2.tgz#fec75f38a6ab5b304b0601c74e2a5e77c95e5fa0"
330 | integrity sha512-6mGSCWi9UzXut/ZAN6lGFu33wGR3SJisNl3c0tvlmb8XChH1b2SUvxvnOh7hvLpqyRdHHU9AiazV3Cwbk5SXKQ==
331 | dependencies:
332 | "@babel/helper-module-imports" "^7.12.13"
333 | "@babel/plugin-syntax-jsx" "^7.12.13"
334 | "@babel/runtime" "^7.13.10"
335 | "@emotion/hash" "^0.8.0"
336 | "@emotion/memoize" "^0.7.5"
337 | "@emotion/serialize" "^1.0.2"
338 | babel-plugin-macros "^2.6.1"
339 | convert-source-map "^1.5.0"
340 | escape-string-regexp "^4.0.0"
341 | find-root "^1.1.0"
342 | source-map "^0.5.7"
343 | stylis "4.0.13"
344 |
345 | "@emotion/cache@^11.7.1":
346 | version "11.7.1"
347 | resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-11.7.1.tgz#08d080e396a42e0037848214e8aa7bf879065539"
348 | integrity sha512-r65Zy4Iljb8oyjtLeCuBH8Qjiy107dOYC6SJq7g7GV5UCQWMObY4SJDPGFjiiVpPrOJ2hmJOoBiYTC7hwx9E2A==
349 | dependencies:
350 | "@emotion/memoize" "^0.7.4"
351 | "@emotion/sheet" "^1.1.0"
352 | "@emotion/utils" "^1.0.0"
353 | "@emotion/weak-memoize" "^0.2.5"
354 | stylis "4.0.13"
355 |
356 | "@emotion/hash@^0.8.0":
357 | version "0.8.0"
358 | resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.8.0.tgz#bbbff68978fefdbe68ccb533bc8cbe1d1afb5413"
359 | integrity sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==
360 |
361 | "@emotion/is-prop-valid@^0.8.1":
362 | version "0.8.6"
363 | resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.8.6.tgz#4757646f0a58e9dec614c47c838e7147d88c263c"
364 | integrity sha512-mnZMho3Sq8BfzkYYRVc8ilQTnc8U02Ytp6J1AwM6taQStZ3AhsEJBX2LzhA/LJirNCwM2VtHL3VFIZ+sNJUgUQ==
365 | dependencies:
366 | "@emotion/memoize" "0.7.4"
367 |
368 | "@emotion/is-prop-valid@^1.1.2":
369 | version "1.1.2"
370 | resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-1.1.2.tgz#34ad6e98e871aa6f7a20469b602911b8b11b3a95"
371 | integrity sha512-3QnhqeL+WW88YjYbQL5gUIkthuMw7a0NGbZ7wfFVk2kg/CK5w8w5FFa0RzWjyY1+sujN0NWbtSHH6OJmWHtJpQ==
372 | dependencies:
373 | "@emotion/memoize" "^0.7.4"
374 |
375 | "@emotion/memoize@0.7.4", "@emotion/memoize@^0.7.1":
376 | version "0.7.4"
377 | resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.4.tgz#19bf0f5af19149111c40d98bb0cf82119f5d9eeb"
378 | integrity sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==
379 |
380 | "@emotion/memoize@^0.7.4", "@emotion/memoize@^0.7.5":
381 | version "0.7.5"
382 | resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.5.tgz#2c40f81449a4e554e9fc6396910ed4843ec2be50"
383 | integrity sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ==
384 |
385 | "@emotion/react@^11.7.1":
386 | version "11.7.1"
387 | resolved "https://registry.yarnpkg.com/@emotion/react/-/react-11.7.1.tgz#3f800ce9b20317c13e77b8489ac4a0b922b2fe07"
388 | integrity sha512-DV2Xe3yhkF1yT4uAUoJcYL1AmrnO5SVsdfvu+fBuS7IbByDeTVx9+wFmvx9Idzv7/78+9Mgx2Hcmr7Fex3tIyw==
389 | dependencies:
390 | "@babel/runtime" "^7.13.10"
391 | "@emotion/cache" "^11.7.1"
392 | "@emotion/serialize" "^1.0.2"
393 | "@emotion/sheet" "^1.1.0"
394 | "@emotion/utils" "^1.0.0"
395 | "@emotion/weak-memoize" "^0.2.5"
396 | hoist-non-react-statics "^3.3.1"
397 |
398 | "@emotion/serialize@^1.0.2":
399 | version "1.0.2"
400 | resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-1.0.2.tgz#77cb21a0571c9f68eb66087754a65fa97bfcd965"
401 | integrity sha512-95MgNJ9+/ajxU7QIAruiOAdYNjxZX7G2mhgrtDWswA21VviYIRP1R5QilZ/bDY42xiKsaktP4egJb3QdYQZi1A==
402 | dependencies:
403 | "@emotion/hash" "^0.8.0"
404 | "@emotion/memoize" "^0.7.4"
405 | "@emotion/unitless" "^0.7.5"
406 | "@emotion/utils" "^1.0.0"
407 | csstype "^3.0.2"
408 |
409 | "@emotion/sheet@^1.1.0":
410 | version "1.1.0"
411 | resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.1.0.tgz#56d99c41f0a1cda2726a05aa6a20afd4c63e58d2"
412 | integrity sha512-u0AX4aSo25sMAygCuQTzS+HsImZFuS8llY8O7b9MDRzbJM0kVJlAz6KNDqcG7pOuQZJmj/8X/rAW+66kMnMW+g==
413 |
414 | "@emotion/styled@^11.8.1":
415 | version "11.8.1"
416 | resolved "https://registry.yarnpkg.com/@emotion/styled/-/styled-11.8.1.tgz#856f6f63aceef0eb783985fa2322e2bf66d04e17"
417 | integrity sha512-OghEVAYBZMpEquHZwuelXcRjRJQOVayvbmNR0zr174NHdmMgrNkLC6TljKC5h9lZLkN5WGrdUcrKlOJ4phhoTQ==
418 | dependencies:
419 | "@babel/runtime" "^7.13.10"
420 | "@emotion/babel-plugin" "^11.7.1"
421 | "@emotion/is-prop-valid" "^1.1.2"
422 | "@emotion/serialize" "^1.0.2"
423 | "@emotion/utils" "^1.1.0"
424 |
425 | "@emotion/unitless@^0.7.5":
426 | version "0.7.5"
427 | resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed"
428 | integrity sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==
429 |
430 | "@emotion/utils@^1.0.0", "@emotion/utils@^1.1.0":
431 | version "1.1.0"
432 | resolved "https://registry.yarnpkg.com/@emotion/utils/-/utils-1.1.0.tgz#86b0b297f3f1a0f2bdb08eeac9a2f49afd40d0cf"
433 | integrity sha512-iRLa/Y4Rs5H/f2nimczYmS5kFJEbpiVvgN3XVfZ022IYhuNA1IRSHEizcof88LtCTXtl9S2Cxt32KgaXEu72JQ==
434 |
435 | "@emotion/weak-memoize@^0.2.5":
436 | version "0.2.5"
437 | resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz#8eed982e2ee6f7f4e44c253e12962980791efd46"
438 | integrity sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==
439 |
440 | "@hackclub/meta@^1.1.32":
441 | version "1.1.32"
442 | resolved "https://registry.yarnpkg.com/@hackclub/meta/-/meta-1.1.32.tgz#ce10461cb440d42649d106d779946341cef9c42d"
443 | integrity sha512-vevgJP1jsbSn1TCLPJWZsmVJ51DcyOsXtMlUXmIPPGaTNPm2WwEQLOWrVmb5lpZJsONLeSmcQCrx4rpmGeyYIw==
444 |
445 | "@hackclub/theme@^0.3.3":
446 | version "0.3.3"
447 | resolved "https://registry.yarnpkg.com/@hackclub/theme/-/theme-0.3.3.tgz#af4249519489459c0e6f9f50a9caab419495b92e"
448 | integrity sha512-+K7jVUArvpziophJCCGB6vlQ7uvsm6VQnUnhHSMnF22s681Wgv6M0w12lUJBOevTu3KtgJVCmYlY888uvdaLvQ==
449 |
450 | "@mdx-js/loader@^1.6.22":
451 | version "1.6.22"
452 | resolved "https://registry.yarnpkg.com/@mdx-js/loader/-/loader-1.6.22.tgz#d9e8fe7f8185ff13c9c8639c048b123e30d322c4"
453 | integrity sha512-9CjGwy595NaxAYp0hF9B/A0lH6C8Rms97e2JS9d3jVUtILn6pT5i5IV965ra3lIWc7Rs1GG1tBdVF7dCowYe6Q==
454 | dependencies:
455 | "@mdx-js/mdx" "1.6.22"
456 | "@mdx-js/react" "1.6.22"
457 | loader-utils "2.0.0"
458 |
459 | "@mdx-js/mdx@1.6.22":
460 | version "1.6.22"
461 | resolved "https://registry.yarnpkg.com/@mdx-js/mdx/-/mdx-1.6.22.tgz#8a723157bf90e78f17dc0f27995398e6c731f1ba"
462 | integrity sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==
463 | dependencies:
464 | "@babel/core" "7.12.9"
465 | "@babel/plugin-syntax-jsx" "7.12.1"
466 | "@babel/plugin-syntax-object-rest-spread" "7.8.3"
467 | "@mdx-js/util" "1.6.22"
468 | babel-plugin-apply-mdx-type-prop "1.6.22"
469 | babel-plugin-extract-import-names "1.6.22"
470 | camelcase-css "2.0.1"
471 | detab "2.0.4"
472 | hast-util-raw "6.0.1"
473 | lodash.uniq "4.5.0"
474 | mdast-util-to-hast "10.0.1"
475 | remark-footnotes "2.0.0"
476 | remark-mdx "1.6.22"
477 | remark-parse "8.0.3"
478 | remark-squeeze-paragraphs "4.0.0"
479 | style-to-object "0.3.0"
480 | unified "9.2.0"
481 | unist-builder "2.0.3"
482 | unist-util-visit "2.0.3"
483 |
484 | "@mdx-js/react@1.6.22":
485 | version "1.6.22"
486 | resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-1.6.22.tgz#ae09b4744fddc74714ee9f9d6f17a66e77c43573"
487 | integrity sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==
488 |
489 | "@mdx-js/util@1.6.22":
490 | version "1.6.22"
491 | resolved "https://registry.yarnpkg.com/@mdx-js/util/-/util-1.6.22.tgz#219dfd89ae5b97a8801f015323ffa4b62f45718b"
492 | integrity sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==
493 |
494 | "@next/env@12.1.4":
495 | version "12.1.4"
496 | resolved "https://registry.yarnpkg.com/@next/env/-/env-12.1.4.tgz#5af629b43075281ecd7f87938802b7cf5b67e94b"
497 | integrity sha512-7gQwotJDKnfMxxXd8xJ2vsX5AzyDxO3zou0+QOXX8/unypA6icw5+wf6A62yKZ6qQ4UZHHxS68pb6UV+wNneXg==
498 |
499 | "@next/mdx@^10.0.4":
500 | version "10.0.4"
501 | resolved "https://registry.yarnpkg.com/@next/mdx/-/mdx-10.0.4.tgz#a124d1890fb93e053894bd63fa948703e9d324f7"
502 | integrity sha512-mUsfz+COZVq8R9+g2BMyMMdn6nYPkxAoBwtdUZOUoaqthBZ0w4gsF8BZQQBD5EjV//vV3NfGtWzCxBeYf4dsgw==
503 |
504 | "@next/swc-android-arm-eabi@12.1.4":
505 | version "12.1.4"
506 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-12.1.4.tgz#c3dae178b7c15ad627d2e9b8dfb38caecb5c4ac7"
507 | integrity sha512-FJg/6a3s2YrUaqZ+/DJZzeZqfxbbWrynQMT1C5wlIEq9aDLXCFpPM/PiOyJh0ahxc0XPmi6uo38Poq+GJTuKWw==
508 |
509 | "@next/swc-android-arm64@12.1.4":
510 | version "12.1.4"
511 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-12.1.4.tgz#f320d60639e19ecffa1f9034829f2d95502a9a51"
512 | integrity sha512-LXraazvQQFBgxIg3Htny6G5V5he9EK7oS4jWtMdTGIikmD/OGByOv8ZjLuVLZLtVm3UIvaAiGtlQSLecxJoJDw==
513 |
514 | "@next/swc-darwin-arm64@12.1.4":
515 | version "12.1.4"
516 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-12.1.4.tgz#fd578278312613eddcf3aee26910100509941b63"
517 | integrity sha512-SSST/dBymecllZxcqTCcSTCu5o1NKk9I+xcvhn/O9nH6GWjgvGgGkNqLbCarCa0jJ1ukvlBA138FagyrmZ/4rQ==
518 |
519 | "@next/swc-darwin-x64@12.1.4":
520 | version "12.1.4"
521 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-12.1.4.tgz#ace5f80d8c8348efe194f6d7074c6213c52b3944"
522 | integrity sha512-p1lwdX0TVjaoDXQVuAkjtxVBbCL/urgxiMCBwuPDO7TikpXtSRivi+mIzBj5q7ypgICFmIAOW3TyupXeoPRAnA==
523 |
524 | "@next/swc-linux-arm-gnueabihf@12.1.4":
525 | version "12.1.4"
526 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-12.1.4.tgz#2bf2c83863635f19c71c226a2df936e001cce29c"
527 | integrity sha512-67PZlgkCn3TDxacdVft0xqDCL7Io1/C4xbAs0+oSQ0xzp6OzN2RNpuKjHJrJgKd0DsE1XZ9sCP27Qv0591yfyg==
528 |
529 | "@next/swc-linux-arm64-gnu@12.1.4":
530 | version "12.1.4"
531 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-12.1.4.tgz#d577190f641c9b4b463719dd6b8953b6ba9be8d9"
532 | integrity sha512-OnOWixhhw7aU22TQdQLYrgpgFq0oA1wGgnjAiHJ+St7MLj82KTDyM9UcymAMbGYy6nG/TFOOHdTmRMtCRNOw0g==
533 |
534 | "@next/swc-linux-arm64-musl@12.1.4":
535 | version "12.1.4"
536 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-12.1.4.tgz#e70ffe70393d8f9242deecdb282ce5a8fd588b14"
537 | integrity sha512-UoRMzPZnsAavdWtVylYxH8DNC7Uy0i6RrvNwT4PyQVdfANBn2omsUkcH5lgS2O7oaz0nAYLk1vqyZDO7+tJotA==
538 |
539 | "@next/swc-linux-x64-gnu@12.1.4":
540 | version "12.1.4"
541 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-12.1.4.tgz#91498a130387fb1961902f2bee55863f8e910cff"
542 | integrity sha512-nM+MA/frxlTLUKLJKorctdI20/ugfHRjVEEkcLp/58LGG7slNaP1E5d5dRA1yX6ISjPcQAkywas5VlGCg+uTvA==
543 |
544 | "@next/swc-linux-x64-musl@12.1.4":
545 | version "12.1.4"
546 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-12.1.4.tgz#78057b03c148c121553d41521ad38f6c732762ff"
547 | integrity sha512-GoRHxkuW4u4yKw734B9SzxJwVdyEJosaZ62P7ifOwcujTxhgBt3y76V2nNUrsSuopcKI2ZTDjaa+2wd5zyeXbA==
548 |
549 | "@next/swc-win32-arm64-msvc@12.1.4":
550 | version "12.1.4"
551 | resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-12.1.4.tgz#05bbaabacac23b8edf6caa99eb86b17550a09051"
552 | integrity sha512-6TQkQze0ievXwHJcVUrIULwCYVe3ccX6T0JgZ1SiMeXpHxISN7VJF/O8uSCw1JvXZYZ6ud0CJ7nfC5HXivgfPg==
553 |
554 | "@next/swc-win32-ia32-msvc@12.1.4":
555 | version "12.1.4"
556 | resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-12.1.4.tgz#8fd2fb48f04a2802e51fc320878bf6b411c1c866"
557 | integrity sha512-CsbX/IXuZ5VSmWCpSetG2HD6VO5FTsO39WNp2IR2Ut/uom9XtLDJAZqjQEnbUTLGHuwDKFjrIO3LkhtROXLE/g==
558 |
559 | "@next/swc-win32-x64-msvc@12.1.4":
560 | version "12.1.4"
561 | resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-12.1.4.tgz#a72ed44c9b1f850986a30fe36c59e01f8a79b5f3"
562 | integrity sha512-JtYuWzKXKLDMgE/xTcFtCm1MiCIRaAc5XYZfYX3n/ZWSI1SJS/GMm+Su0SAHJgRFavJh6U/p998YwO/iGTIgqQ==
563 |
564 | "@styled-system/background@^5.1.2":
565 | version "5.1.2"
566 | resolved "https://registry.yarnpkg.com/@styled-system/background/-/background-5.1.2.tgz#75c63d06b497ab372b70186c0bf608d62847a2ba"
567 | integrity sha512-jtwH2C/U6ssuGSvwTN3ri/IyjdHb8W9X/g8Y0JLcrH02G+BW3OS8kZdHphF1/YyRklnrKrBT2ngwGUK6aqqV3A==
568 | dependencies:
569 | "@styled-system/core" "^5.1.2"
570 |
571 | "@styled-system/border@^5.1.2":
572 | version "5.1.2"
573 | resolved "https://registry.yarnpkg.com/@styled-system/border/-/border-5.1.2.tgz#34c81c6110f638550f1dda535edb44a82ee9fe49"
574 | integrity sha512-mSSxyQGXELdNSOlf4RqaOKsX+w6//zooR3p6qDj5Zgc5pIdEsJm63QLz6EST/6xBJwTX0Z1w4ExItdd6Q7rlTQ==
575 | dependencies:
576 | "@styled-system/core" "^5.1.2"
577 |
578 | "@styled-system/color@^5.1.2":
579 | version "5.1.2"
580 | resolved "https://registry.yarnpkg.com/@styled-system/color/-/color-5.1.2.tgz#b8d6b4af481faabe4abca1a60f8daa4ccc2d9f43"
581 | integrity sha512-1kCkeKDZkt4GYkuFNKc7vJQMcOmTl3bJY3YBUs7fCNM6mMYJeT1pViQ2LwBSBJytj3AB0o4IdLBoepgSgGl5MA==
582 | dependencies:
583 | "@styled-system/core" "^5.1.2"
584 |
585 | "@styled-system/core@^5.1.2":
586 | version "5.1.2"
587 | resolved "https://registry.yarnpkg.com/@styled-system/core/-/core-5.1.2.tgz#b8b7b86455d5a0514f071c4fa8e434b987f6a772"
588 | integrity sha512-XclBDdNIy7OPOsN4HBsawG2eiWfCcuFt6gxKn1x4QfMIgeO6TOlA2pZZ5GWZtIhCUqEPTgIBta6JXsGyCkLBYw==
589 | dependencies:
590 | object-assign "^4.1.1"
591 |
592 | "@styled-system/css@^5.1.4":
593 | version "5.1.4"
594 | resolved "https://registry.yarnpkg.com/@styled-system/css/-/css-5.1.4.tgz#fc51d0789a69b3831e00e6f8daf9f1d345eebdc3"
595 | integrity sha512-79IFT37Kxb6dlbx/0hwIGOakNHkK5oU3cMypGziShnEK8WMgK/+vuAi4MHO7uLI+FZ5U8MGYvGY9Gtk0mBzxSg==
596 |
597 | "@styled-system/flexbox@^5.1.2":
598 | version "5.1.2"
599 | resolved "https://registry.yarnpkg.com/@styled-system/flexbox/-/flexbox-5.1.2.tgz#077090f43f61c3852df63da24e4108087a8beecf"
600 | integrity sha512-6hHV52+eUk654Y1J2v77B8iLeBNtc+SA3R4necsu2VVinSD7+XY5PCCEzBFaWs42dtOEDIa2lMrgL0YBC01mDQ==
601 | dependencies:
602 | "@styled-system/core" "^5.1.2"
603 |
604 | "@styled-system/grid@^5.1.2":
605 | version "5.1.2"
606 | resolved "https://registry.yarnpkg.com/@styled-system/grid/-/grid-5.1.2.tgz#7165049877732900b99cd00759679fbe45c6c573"
607 | integrity sha512-K3YiV1KyHHzgdNuNlaw8oW2ktMuGga99o1e/NAfTEi5Zsa7JXxzwEnVSDSBdJC+z6R8WYTCYRQC6bkVFcvdTeg==
608 | dependencies:
609 | "@styled-system/core" "^5.1.2"
610 |
611 | "@styled-system/layout@^5.1.2":
612 | version "5.1.2"
613 | resolved "https://registry.yarnpkg.com/@styled-system/layout/-/layout-5.1.2.tgz#12d73e79887e10062f4dbbbc2067462eace42339"
614 | integrity sha512-wUhkMBqSeacPFhoE9S6UF3fsMEKFv91gF4AdDWp0Aym1yeMPpqz9l9qS/6vjSsDPF7zOb5cOKC3tcKKOMuDCPw==
615 | dependencies:
616 | "@styled-system/core" "^5.1.2"
617 |
618 | "@styled-system/position@^5.1.2":
619 | version "5.1.2"
620 | resolved "https://registry.yarnpkg.com/@styled-system/position/-/position-5.1.2.tgz#56961266566836f57a24d8e8e33ce0c1adb59dd3"
621 | integrity sha512-60IZfMXEOOZe3l1mCu6sj/2NAyUmES2kR9Kzp7s2D3P4qKsZWxD1Se1+wJvevb+1TP+ZMkGPEYYXRyU8M1aF5A==
622 | dependencies:
623 | "@styled-system/core" "^5.1.2"
624 |
625 | "@styled-system/shadow@^5.1.2":
626 | version "5.1.2"
627 | resolved "https://registry.yarnpkg.com/@styled-system/shadow/-/shadow-5.1.2.tgz#beddab28d7de03cd0177a87ac4ed3b3b6d9831fd"
628 | integrity sha512-wqniqYb7XuZM7K7C0d1Euxc4eGtqEe/lvM0WjuAFsQVImiq6KGT7s7is+0bNI8O4Dwg27jyu4Lfqo/oIQXNzAg==
629 | dependencies:
630 | "@styled-system/core" "^5.1.2"
631 |
632 | "@styled-system/should-forward-prop@^5.1.2":
633 | version "5.1.4"
634 | resolved "https://registry.yarnpkg.com/@styled-system/should-forward-prop/-/should-forward-prop-5.1.4.tgz#1d32d7f0942692319e1e1798aad95fb75df36967"
635 | integrity sha512-WvKlXdbzz64QX8E66dlt/t+AsHhE5mJPyxMAufKeUKn5DSj+1w7CfLtwVH2oYje7XFcrcZOV9elzaeMWE0znTw==
636 | dependencies:
637 | "@emotion/is-prop-valid" "^0.8.1"
638 | "@emotion/memoize" "^0.7.1"
639 | styled-system "^5.1.4"
640 |
641 | "@styled-system/space@^5.1.2":
642 | version "5.1.2"
643 | resolved "https://registry.yarnpkg.com/@styled-system/space/-/space-5.1.2.tgz#38925d2fa29a41c0eb20e65b7c3efb6e8efce953"
644 | integrity sha512-+zzYpR8uvfhcAbaPXhH8QgDAV//flxqxSjHiS9cDFQQUSznXMQmxJegbhcdEF7/eNnJgHeIXv1jmny78kipgBA==
645 | dependencies:
646 | "@styled-system/core" "^5.1.2"
647 |
648 | "@styled-system/typography@^5.1.2":
649 | version "5.1.2"
650 | resolved "https://registry.yarnpkg.com/@styled-system/typography/-/typography-5.1.2.tgz#65fb791c67d50cd2900d234583eaacdca8c134f7"
651 | integrity sha512-BxbVUnN8N7hJ4aaPOd7wEsudeT7CxarR+2hns8XCX1zp0DFfbWw4xYa/olA0oQaqx7F1hzDg+eRaGzAJbF+jOg==
652 | dependencies:
653 | "@styled-system/core" "^5.1.2"
654 |
655 | "@styled-system/variant@^5.1.4":
656 | version "5.1.4"
657 | resolved "https://registry.yarnpkg.com/@styled-system/variant/-/variant-5.1.4.tgz#7902de8e690b94e70b9b1026233feb38245398bf"
658 | integrity sha512-4bI2AYQfWU/ljvWlysKU8T+6gsVx5xXEI/yBvg2De7Jd6o03ZQ9tsL3OJwbzyMkIKg+UZp7YG190txEOb8K6tg==
659 | dependencies:
660 | "@styled-system/core" "^5.1.2"
661 | "@styled-system/css" "^5.1.4"
662 |
663 | "@theme-ui/color-modes@0.14.2":
664 | version "0.14.2"
665 | resolved "https://registry.yarnpkg.com/@theme-ui/color-modes/-/color-modes-0.14.2.tgz#63be46ea3ec3d5001af3c129a22805b99894752d"
666 | integrity sha512-wHjfiuM3t1Snj6qggJl5mREtDcAKmH2AO9dcAJNKAUtwG9cxO+ur9LYue7sFDHOXJowPNoyi2udC6MN/BmMGfw==
667 | dependencies:
668 | "@theme-ui/core" "0.14.2"
669 | "@theme-ui/css" "0.14.2"
670 | deepmerge "^4.2.2"
671 |
672 | "@theme-ui/components@0.14.2":
673 | version "0.14.2"
674 | resolved "https://registry.yarnpkg.com/@theme-ui/components/-/components-0.14.2.tgz#def3dcf2278a2e623063b849d593df955ac9d706"
675 | integrity sha512-UKs/cg5vWTAJCvZvVMNJ8QOX00aKEiDB40/jG+4zDMhE3Zjc8wXKCR9pMrqp26HqqeL8s7R/xZ3ELMVarhbfAw==
676 | dependencies:
677 | "@styled-system/color" "^5.1.2"
678 | "@styled-system/should-forward-prop" "^5.1.2"
679 | "@styled-system/space" "^5.1.2"
680 | "@theme-ui/css" "0.14.2"
681 | "@types/styled-system" "^5.1.13"
682 |
683 | "@theme-ui/core@0.14.2":
684 | version "0.14.2"
685 | resolved "https://registry.yarnpkg.com/@theme-ui/core/-/core-0.14.2.tgz#f3dc7000920449918cd59f0d09549aea471226d5"
686 | integrity sha512-RYT3WF6mFTRa/7pAL2pddUpXankfbRnojfvfO9YrXMTPlxbbIikMupkjm2h1HRQ80xLy6XyvaeYL0ruMYepSNw==
687 | dependencies:
688 | "@theme-ui/css" "0.14.2"
689 | "@theme-ui/parse-props" "0.14.2"
690 | deepmerge "^4.2.2"
691 |
692 | "@theme-ui/css@0.14.2":
693 | version "0.14.2"
694 | resolved "https://registry.yarnpkg.com/@theme-ui/css/-/css-0.14.2.tgz#21adc085a686fc45e548ae08a4216cb1a36d71b4"
695 | integrity sha512-xQdXgDjiyrB3ScjqLabRzup5OmJ5pOdIvfSQfA/iVOZi/SZl4nYqRyf7WRyvpiq+vlXxlrpwFwUV/9MCXuiKxw==
696 | dependencies:
697 | csstype "^3.0.10"
698 |
699 | "@theme-ui/mdx@0.14.2":
700 | version "0.14.2"
701 | resolved "https://registry.yarnpkg.com/@theme-ui/mdx/-/mdx-0.14.2.tgz#992d73137abfa40939d722b44c37ed3e390f34bc"
702 | integrity sha512-vvy4mSIjO+xqSpkAD7/nRobaNPwOU2BsSmMMvf/TuUljFh4yqZZWNGld5O2dr1GmBjibtTSH7Xpl7XYE3HO4Tw==
703 | dependencies:
704 | "@theme-ui/core" "0.14.2"
705 | "@theme-ui/css" "0.14.2"
706 |
707 | "@theme-ui/parse-props@0.14.2":
708 | version "0.14.2"
709 | resolved "https://registry.yarnpkg.com/@theme-ui/parse-props/-/parse-props-0.14.2.tgz#d40131aaa17ebb51167d647e41fe4cdb6091099a"
710 | integrity sha512-PljlADEwfnYmXFqGzSD6N0PDArozmxK7WYzmGY1RPGW85Q1PUJ3AeriRy7Th5GrAmto4WUWkKHSPcYvqodAFXw==
711 | dependencies:
712 | "@theme-ui/css" "0.14.2"
713 |
714 | "@theme-ui/theme-provider@0.14.2":
715 | version "0.14.2"
716 | resolved "https://registry.yarnpkg.com/@theme-ui/theme-provider/-/theme-provider-0.14.2.tgz#00894370cd08bf0b40e6e69732fe5de71fd814dc"
717 | integrity sha512-oK1G5HqqbRisa7Wap4NNNRz5mggMa7EJd/cpPDsA137N5Iu8lYhmuaQe6nPdFuHyQxAnPWNWcMIH40kJt8DOSQ==
718 | dependencies:
719 | "@theme-ui/color-modes" "0.14.2"
720 | "@theme-ui/core" "0.14.2"
721 | "@theme-ui/css" "0.14.2"
722 | "@theme-ui/mdx" "0.14.2"
723 |
724 | "@types/hast@^2.0.0":
725 | version "2.3.1"
726 | resolved "https://registry.yarnpkg.com/@types/hast/-/hast-2.3.1.tgz#b16872f2a6144c7025f296fb9636a667ebb79cd9"
727 | integrity sha512-viwwrB+6xGzw+G1eWpF9geV3fnsDgXqHG+cqgiHrvQfDUW5hzhCyV7Sy3UJxhfRFBsgky2SSW33qi/YrIkjX5Q==
728 | dependencies:
729 | "@types/unist" "*"
730 |
731 | "@types/mdast@^3.0.0":
732 | version "3.0.3"
733 | resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.3.tgz#2d7d671b1cd1ea3deb306ea75036c2a0407d2deb"
734 | integrity sha512-SXPBMnFVQg1s00dlMCc/jCdvPqdE4mXaMMCeRlxLDmTAEoegHT53xKtkDnzDTOcmMHUfcjyf36/YYZ6SxRdnsw==
735 | dependencies:
736 | "@types/unist" "*"
737 |
738 | "@types/parse-json@^4.0.0":
739 | version "4.0.0"
740 | resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
741 | integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
742 |
743 | "@types/parse5@^5.0.0":
744 | version "5.0.3"
745 | resolved "https://registry.yarnpkg.com/@types/parse5/-/parse5-5.0.3.tgz#e7b5aebbac150f8b5fdd4a46e7f0bd8e65e19109"
746 | integrity sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==
747 |
748 | "@types/styled-system@^5.1.13":
749 | version "5.1.13"
750 | resolved "https://registry.yarnpkg.com/@types/styled-system/-/styled-system-5.1.13.tgz#9ad667534d3bd75720dd7778c94c783449cb5c14"
751 | integrity sha512-RtpV6zXnnMQNcxKjC06BUM4MUER5o9uZ6b7xAc2OzhWxSsmQ3jXyW8ohuXdEJRKypEe0EqAzbSGx2Im0NXfdKA==
752 | dependencies:
753 | csstype "^3.0.2"
754 |
755 | "@types/unist@*", "@types/unist@^2.0.0", "@types/unist@^2.0.2", "@types/unist@^2.0.3":
756 | version "2.0.3"
757 | resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.3.tgz#9c088679876f374eb5983f150d4787aa6fb32d7e"
758 | integrity sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ==
759 |
760 | ansi-styles@^3.2.1:
761 | version "3.2.1"
762 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
763 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
764 | dependencies:
765 | color-convert "^1.9.0"
766 |
767 | babel-plugin-apply-mdx-type-prop@1.6.22:
768 | version "1.6.22"
769 | resolved "https://registry.yarnpkg.com/babel-plugin-apply-mdx-type-prop/-/babel-plugin-apply-mdx-type-prop-1.6.22.tgz#d216e8fd0de91de3f1478ef3231e05446bc8705b"
770 | integrity sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==
771 | dependencies:
772 | "@babel/helper-plugin-utils" "7.10.4"
773 | "@mdx-js/util" "1.6.22"
774 |
775 | babel-plugin-extract-import-names@1.6.22:
776 | version "1.6.22"
777 | resolved "https://registry.yarnpkg.com/babel-plugin-extract-import-names/-/babel-plugin-extract-import-names-1.6.22.tgz#de5f9a28eb12f3eb2578bf74472204e66d1a13dc"
778 | integrity sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==
779 | dependencies:
780 | "@babel/helper-plugin-utils" "7.10.4"
781 |
782 | babel-plugin-macros@^2.6.1:
783 | version "2.8.0"
784 | resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz#0f958a7cc6556b1e65344465d99111a1e5e10138"
785 | integrity sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==
786 | dependencies:
787 | "@babel/runtime" "^7.7.2"
788 | cosmiconfig "^6.0.0"
789 | resolve "^1.12.0"
790 |
791 | bail@^1.0.0:
792 | version "1.0.5"
793 | resolved "https://registry.yarnpkg.com/bail/-/bail-1.0.5.tgz#b6fa133404a392cbc1f8c4bf63f5953351e7a776"
794 | integrity sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==
795 |
796 | big.js@^5.2.2:
797 | version "5.2.2"
798 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328"
799 | integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==
800 |
801 | callsites@^3.0.0:
802 | version "3.1.0"
803 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
804 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
805 |
806 | camelcase-css@2.0.1:
807 | version "2.0.1"
808 | resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5"
809 | integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==
810 |
811 | caniuse-lite@^1.0.30001283:
812 | version "1.0.30001299"
813 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001299.tgz#d753bf6444ed401eb503cbbe17aa3e1451b5a68c"
814 | integrity sha512-iujN4+x7QzqA2NCSrS5VUy+4gLmRd4xv6vbBBsmfVqTx8bLAD8097euLqQgKxSVLvxjSDcvF1T/i9ocgnUFexw==
815 |
816 | ccount@^1.0.0:
817 | version "1.0.5"
818 | resolved "https://registry.yarnpkg.com/ccount/-/ccount-1.0.5.tgz#ac82a944905a65ce204eb03023157edf29425c17"
819 | integrity sha512-MOli1W+nfbPLlKEhInaxhRdp7KVLFxLN5ykwzHgLsLI3H3gs5jjFAK4Eoj3OzzcxCtumDaI8onoVDeQyWaNTkw==
820 |
821 | chalk@^2.0.0:
822 | version "2.4.2"
823 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
824 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
825 | dependencies:
826 | ansi-styles "^3.2.1"
827 | escape-string-regexp "^1.0.5"
828 | supports-color "^5.3.0"
829 |
830 | character-entities-legacy@^1.0.0:
831 | version "1.1.4"
832 | resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz#94bc1845dce70a5bb9d2ecc748725661293d8fc1"
833 | integrity sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==
834 |
835 | character-entities@^1.0.0:
836 | version "1.2.4"
837 | resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-1.2.4.tgz#e12c3939b7eaf4e5b15e7ad4c5e28e1d48c5b16b"
838 | integrity sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==
839 |
840 | character-reference-invalid@^1.0.0:
841 | version "1.1.4"
842 | resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz#083329cda0eae272ab3dbbf37e9a382c13af1560"
843 | integrity sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==
844 |
845 | collapse-white-space@^1.0.2:
846 | version "1.0.6"
847 | resolved "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-1.0.6.tgz#e63629c0016665792060dbbeb79c42239d2c5287"
848 | integrity sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==
849 |
850 | color-convert@^1.9.0:
851 | version "1.9.3"
852 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
853 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
854 | dependencies:
855 | color-name "1.1.3"
856 |
857 | color-name@1.1.3:
858 | version "1.1.3"
859 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
860 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
861 |
862 | comma-separated-tokens@^1.0.0:
863 | version "1.0.8"
864 | resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz#632b80b6117867a158f1080ad498b2fbe7e3f5ea"
865 | integrity sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==
866 |
867 | convert-source-map@^1.5.0:
868 | version "1.8.0"
869 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369"
870 | integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==
871 | dependencies:
872 | safe-buffer "~5.1.1"
873 |
874 | convert-source-map@^1.7.0:
875 | version "1.7.0"
876 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442"
877 | integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==
878 | dependencies:
879 | safe-buffer "~5.1.1"
880 |
881 | cosmiconfig@^6.0.0:
882 | version "6.0.0"
883 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982"
884 | integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==
885 | dependencies:
886 | "@types/parse-json" "^4.0.0"
887 | import-fresh "^3.1.0"
888 | parse-json "^5.0.0"
889 | path-type "^4.0.0"
890 | yaml "^1.7.2"
891 |
892 | csstype@^3.0.10:
893 | version "3.0.10"
894 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.10.tgz#2ad3a7bed70f35b965707c092e5f30b327c290e5"
895 | integrity sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA==
896 |
897 | csstype@^3.0.2:
898 | version "3.0.7"
899 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.7.tgz#2a5fb75e1015e84dd15692f71e89a1450290950b"
900 | integrity sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g==
901 |
902 | debug@^4.1.0:
903 | version "4.1.1"
904 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791"
905 | integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==
906 | dependencies:
907 | ms "^2.1.1"
908 |
909 | deepmerge@^4.2.2:
910 | version "4.2.2"
911 | resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955"
912 | integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==
913 |
914 | detab@2.0.4:
915 | version "2.0.4"
916 | resolved "https://registry.yarnpkg.com/detab/-/detab-2.0.4.tgz#b927892069aff405fbb9a186fe97a44a92a94b43"
917 | integrity sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==
918 | dependencies:
919 | repeat-string "^1.5.4"
920 |
921 | emojis-list@^3.0.0:
922 | version "3.0.0"
923 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78"
924 | integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==
925 |
926 | error-ex@^1.3.1:
927 | version "1.3.2"
928 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
929 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
930 | dependencies:
931 | is-arrayish "^0.2.1"
932 |
933 | escape-string-regexp@^1.0.5:
934 | version "1.0.5"
935 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
936 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
937 |
938 | escape-string-regexp@^4.0.0:
939 | version "4.0.0"
940 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
941 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
942 |
943 | extend@^3.0.0:
944 | version "3.0.2"
945 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
946 | integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
947 |
948 | find-root@^1.1.0:
949 | version "1.1.0"
950 | resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4"
951 | integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==
952 |
953 | function-bind@^1.1.1:
954 | version "1.1.1"
955 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
956 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
957 |
958 | gensync@^1.0.0-beta.1:
959 | version "1.0.0-beta.1"
960 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269"
961 | integrity sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg==
962 |
963 | globals@^11.1.0:
964 | version "11.12.0"
965 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
966 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
967 |
968 | has-flag@^3.0.0:
969 | version "3.0.0"
970 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
971 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
972 |
973 | has@^1.0.3:
974 | version "1.0.3"
975 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
976 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
977 | dependencies:
978 | function-bind "^1.1.1"
979 |
980 | hast-to-hyperscript@^9.0.0:
981 | version "9.0.0"
982 | resolved "https://registry.yarnpkg.com/hast-to-hyperscript/-/hast-to-hyperscript-9.0.0.tgz#768fb557765fe28749169c885056417342d71e83"
983 | integrity sha512-NJvMYU3GlMLs7hN3CRbsNlMzusVNkYBogVWDGybsuuVQ336gFLiD+q9qtFZT2meSHzln3pNISZWTASWothMSMg==
984 | dependencies:
985 | "@types/unist" "^2.0.3"
986 | comma-separated-tokens "^1.0.0"
987 | property-information "^5.3.0"
988 | space-separated-tokens "^1.0.0"
989 | style-to-object "^0.3.0"
990 | unist-util-is "^4.0.0"
991 | web-namespaces "^1.0.0"
992 |
993 | hast-util-from-parse5@^6.0.0:
994 | version "6.0.0"
995 | resolved "https://registry.yarnpkg.com/hast-util-from-parse5/-/hast-util-from-parse5-6.0.0.tgz#b38793c81e1a99f5fd592a4a88fc2731dccd0f30"
996 | integrity sha512-3ZYnfKenbbkhhNdmOQqgH10vnvPivTdsOJCri+APn0Kty+nRkDHArnaX9Hiaf8H+Ig+vkNptL+SRY/6RwWJk1Q==
997 | dependencies:
998 | "@types/parse5" "^5.0.0"
999 | ccount "^1.0.0"
1000 | hastscript "^5.0.0"
1001 | property-information "^5.0.0"
1002 | vfile "^4.0.0"
1003 | web-namespaces "^1.0.0"
1004 |
1005 | hast-util-parse-selector@^2.0.0:
1006 | version "2.2.4"
1007 | resolved "https://registry.yarnpkg.com/hast-util-parse-selector/-/hast-util-parse-selector-2.2.4.tgz#60c99d0b519e12ab4ed32e58f150ec3f61ed1974"
1008 | integrity sha512-gW3sxfynIvZApL4L07wryYF4+C9VvH3AUi7LAnVXV4MneGEgwOByXvFo18BgmTWnm7oHAe874jKbIB1YhHSIzA==
1009 |
1010 | hast-util-raw@6.0.1:
1011 | version "6.0.1"
1012 | resolved "https://registry.yarnpkg.com/hast-util-raw/-/hast-util-raw-6.0.1.tgz#973b15930b7529a7b66984c98148b46526885977"
1013 | integrity sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==
1014 | dependencies:
1015 | "@types/hast" "^2.0.0"
1016 | hast-util-from-parse5 "^6.0.0"
1017 | hast-util-to-parse5 "^6.0.0"
1018 | html-void-elements "^1.0.0"
1019 | parse5 "^6.0.0"
1020 | unist-util-position "^3.0.0"
1021 | vfile "^4.0.0"
1022 | web-namespaces "^1.0.0"
1023 | xtend "^4.0.0"
1024 | zwitch "^1.0.0"
1025 |
1026 | hast-util-to-parse5@^6.0.0:
1027 | version "6.0.0"
1028 | resolved "https://registry.yarnpkg.com/hast-util-to-parse5/-/hast-util-to-parse5-6.0.0.tgz#1ec44650b631d72952066cea9b1445df699f8479"
1029 | integrity sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==
1030 | dependencies:
1031 | hast-to-hyperscript "^9.0.0"
1032 | property-information "^5.0.0"
1033 | web-namespaces "^1.0.0"
1034 | xtend "^4.0.0"
1035 | zwitch "^1.0.0"
1036 |
1037 | hastscript@^5.0.0:
1038 | version "5.1.2"
1039 | resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-5.1.2.tgz#bde2c2e56d04c62dd24e8c5df288d050a355fb8a"
1040 | integrity sha512-WlztFuK+Lrvi3EggsqOkQ52rKbxkXL3RwB6t5lwoa8QLMemoWfBuL43eDrwOamJyR7uKQKdmKYaBH1NZBiIRrQ==
1041 | dependencies:
1042 | comma-separated-tokens "^1.0.0"
1043 | hast-util-parse-selector "^2.0.0"
1044 | property-information "^5.0.0"
1045 | space-separated-tokens "^1.0.0"
1046 |
1047 | hoist-non-react-statics@^3.3.1:
1048 | version "3.3.2"
1049 | resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45"
1050 | integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==
1051 | dependencies:
1052 | react-is "^16.7.0"
1053 |
1054 | html-void-elements@^1.0.0:
1055 | version "1.0.5"
1056 | resolved "https://registry.yarnpkg.com/html-void-elements/-/html-void-elements-1.0.5.tgz#ce9159494e86d95e45795b166c2021c2cfca4483"
1057 | integrity sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==
1058 |
1059 | import-fresh@^3.1.0:
1060 | version "3.3.0"
1061 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
1062 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
1063 | dependencies:
1064 | parent-module "^1.0.0"
1065 | resolve-from "^4.0.0"
1066 |
1067 | inherits@^2.0.0:
1068 | version "2.0.4"
1069 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
1070 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
1071 |
1072 | inline-style-parser@0.1.1:
1073 | version "0.1.1"
1074 | resolved "https://registry.yarnpkg.com/inline-style-parser/-/inline-style-parser-0.1.1.tgz#ec8a3b429274e9c0a1f1c4ffa9453a7fef72cea1"
1075 | integrity sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==
1076 |
1077 | is-alphabetical@1.0.4, is-alphabetical@^1.0.0:
1078 | version "1.0.4"
1079 | resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.4.tgz#9e7d6b94916be22153745d184c298cbf986a686d"
1080 | integrity sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==
1081 |
1082 | is-alphanumerical@^1.0.0:
1083 | version "1.0.4"
1084 | resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz#7eb9a2431f855f6b1ef1a78e326df515696c4dbf"
1085 | integrity sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==
1086 | dependencies:
1087 | is-alphabetical "^1.0.0"
1088 | is-decimal "^1.0.0"
1089 |
1090 | is-arrayish@^0.2.1:
1091 | version "0.2.1"
1092 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
1093 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
1094 |
1095 | is-buffer@^2.0.0:
1096 | version "2.0.4"
1097 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.4.tgz#3e572f23c8411a5cfd9557c849e3665e0b290623"
1098 | integrity sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A==
1099 |
1100 | is-core-module@^2.8.0:
1101 | version "2.8.1"
1102 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.1.tgz#f59fdfca701d5879d0a6b100a40aa1560ce27211"
1103 | integrity sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==
1104 | dependencies:
1105 | has "^1.0.3"
1106 |
1107 | is-decimal@^1.0.0:
1108 | version "1.0.4"
1109 | resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.4.tgz#65a3a5958a1c5b63a706e1b333d7cd9f630d3fa5"
1110 | integrity sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==
1111 |
1112 | is-hexadecimal@^1.0.0:
1113 | version "1.0.4"
1114 | resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz#cc35c97588da4bd49a8eedd6bc4082d44dcb23a7"
1115 | integrity sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==
1116 |
1117 | is-plain-obj@^2.0.0:
1118 | version "2.1.0"
1119 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287"
1120 | integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==
1121 |
1122 | is-whitespace-character@^1.0.0:
1123 | version "1.0.4"
1124 | resolved "https://registry.yarnpkg.com/is-whitespace-character/-/is-whitespace-character-1.0.4.tgz#0858edd94a95594c7c9dd0b5c174ec6e45ee4aa7"
1125 | integrity sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==
1126 |
1127 | is-word-character@^1.0.0:
1128 | version "1.0.4"
1129 | resolved "https://registry.yarnpkg.com/is-word-character/-/is-word-character-1.0.4.tgz#ce0e73216f98599060592f62ff31354ddbeb0230"
1130 | integrity sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==
1131 |
1132 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
1133 | version "4.0.0"
1134 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
1135 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
1136 |
1137 | jsesc@^2.5.1:
1138 | version "2.5.2"
1139 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
1140 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
1141 |
1142 | json-parse-even-better-errors@^2.3.0:
1143 | version "2.3.1"
1144 | resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
1145 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
1146 |
1147 | json5@^2.1.2:
1148 | version "2.1.3"
1149 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43"
1150 | integrity sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==
1151 | dependencies:
1152 | minimist "^1.2.5"
1153 |
1154 | lines-and-columns@^1.1.6:
1155 | version "1.2.4"
1156 | resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632"
1157 | integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==
1158 |
1159 | loader-utils@2.0.0:
1160 | version "2.0.0"
1161 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.0.tgz#e4cace5b816d425a166b5f097e10cd12b36064b0"
1162 | integrity sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==
1163 | dependencies:
1164 | big.js "^5.2.2"
1165 | emojis-list "^3.0.0"
1166 | json5 "^2.1.2"
1167 |
1168 | lodash.uniq@4.5.0:
1169 | version "4.5.0"
1170 | resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
1171 | integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
1172 |
1173 | lodash@^4.17.19:
1174 | version "4.17.21"
1175 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
1176 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
1177 |
1178 | loose-envify@^1.1.0:
1179 | version "1.4.0"
1180 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
1181 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
1182 | dependencies:
1183 | js-tokens "^3.0.0 || ^4.0.0"
1184 |
1185 | markdown-escapes@^1.0.0:
1186 | version "1.0.4"
1187 | resolved "https://registry.yarnpkg.com/markdown-escapes/-/markdown-escapes-1.0.4.tgz#c95415ef451499d7602b91095f3c8e8975f78535"
1188 | integrity sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==
1189 |
1190 | mdast-squeeze-paragraphs@^4.0.0:
1191 | version "4.0.0"
1192 | resolved "https://registry.yarnpkg.com/mdast-squeeze-paragraphs/-/mdast-squeeze-paragraphs-4.0.0.tgz#7c4c114679c3bee27ef10b58e2e015be79f1ef97"
1193 | integrity sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==
1194 | dependencies:
1195 | unist-util-remove "^2.0.0"
1196 |
1197 | mdast-util-definitions@^4.0.0:
1198 | version "4.0.0"
1199 | resolved "https://registry.yarnpkg.com/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz#c5c1a84db799173b4dcf7643cda999e440c24db2"
1200 | integrity sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==
1201 | dependencies:
1202 | unist-util-visit "^2.0.0"
1203 |
1204 | mdast-util-to-hast@10.0.1:
1205 | version "10.0.1"
1206 | resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-10.0.1.tgz#0cfc82089494c52d46eb0e3edb7a4eb2aea021eb"
1207 | integrity sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==
1208 | dependencies:
1209 | "@types/mdast" "^3.0.0"
1210 | "@types/unist" "^2.0.0"
1211 | mdast-util-definitions "^4.0.0"
1212 | mdurl "^1.0.0"
1213 | unist-builder "^2.0.0"
1214 | unist-util-generated "^1.0.0"
1215 | unist-util-position "^3.0.0"
1216 | unist-util-visit "^2.0.0"
1217 |
1218 | mdurl@^1.0.0:
1219 | version "1.0.1"
1220 | resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e"
1221 | integrity sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=
1222 |
1223 | minimist@^1.2.5:
1224 | version "1.2.5"
1225 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
1226 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
1227 |
1228 | ms@^2.1.1:
1229 | version "2.1.2"
1230 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
1231 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
1232 |
1233 | nanoid@^3.1.30:
1234 | version "3.2.0"
1235 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.2.0.tgz#62667522da6673971cca916a6d3eff3f415ff80c"
1236 | integrity sha512-fmsZYa9lpn69Ad5eDn7FMcnnSR+8R34W9qJEijxYhTbfOWzr22n1QxCMzXLK+ODyW2973V3Fux959iQoUxzUIA==
1237 |
1238 | next@^12.1.4:
1239 | version "12.1.4"
1240 | resolved "https://registry.yarnpkg.com/next/-/next-12.1.4.tgz#597a9bdec7aec778b442c4f6d41afd2c64a54b23"
1241 | integrity sha512-DA4g97BM4Z0nKtDvCTm58RxdvoQyYzeg0AeVbh0N4Y/D8ELrNu47lQeEgRGF8hV4eQ+Sal90zxrJQQG/mPQ8CQ==
1242 | dependencies:
1243 | "@next/env" "12.1.4"
1244 | caniuse-lite "^1.0.30001283"
1245 | postcss "8.4.5"
1246 | styled-jsx "5.0.1"
1247 | optionalDependencies:
1248 | "@next/swc-android-arm-eabi" "12.1.4"
1249 | "@next/swc-android-arm64" "12.1.4"
1250 | "@next/swc-darwin-arm64" "12.1.4"
1251 | "@next/swc-darwin-x64" "12.1.4"
1252 | "@next/swc-linux-arm-gnueabihf" "12.1.4"
1253 | "@next/swc-linux-arm64-gnu" "12.1.4"
1254 | "@next/swc-linux-arm64-musl" "12.1.4"
1255 | "@next/swc-linux-x64-gnu" "12.1.4"
1256 | "@next/swc-linux-x64-musl" "12.1.4"
1257 | "@next/swc-win32-arm64-msvc" "12.1.4"
1258 | "@next/swc-win32-ia32-msvc" "12.1.4"
1259 | "@next/swc-win32-x64-msvc" "12.1.4"
1260 |
1261 | object-assign@^4.1.1:
1262 | version "4.1.1"
1263 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
1264 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
1265 |
1266 | parent-module@^1.0.0:
1267 | version "1.0.1"
1268 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
1269 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
1270 | dependencies:
1271 | callsites "^3.0.0"
1272 |
1273 | parse-entities@^2.0.0:
1274 | version "2.0.0"
1275 | resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-2.0.0.tgz#53c6eb5b9314a1f4ec99fa0fdf7ce01ecda0cbe8"
1276 | integrity sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==
1277 | dependencies:
1278 | character-entities "^1.0.0"
1279 | character-entities-legacy "^1.0.0"
1280 | character-reference-invalid "^1.0.0"
1281 | is-alphanumerical "^1.0.0"
1282 | is-decimal "^1.0.0"
1283 | is-hexadecimal "^1.0.0"
1284 |
1285 | parse-json@^5.0.0:
1286 | version "5.2.0"
1287 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd"
1288 | integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==
1289 | dependencies:
1290 | "@babel/code-frame" "^7.0.0"
1291 | error-ex "^1.3.1"
1292 | json-parse-even-better-errors "^2.3.0"
1293 | lines-and-columns "^1.1.6"
1294 |
1295 | parse5@^6.0.0:
1296 | version "6.0.0"
1297 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.0.tgz#d2ac3448289c84b49947d49a39f7bef6200fa6ba"
1298 | integrity sha512-lC0A+4DefTdRr+DLQlEwwZqndL9VzEjiuegI5bj3hp4bnzzwQldSqCpHv7+msRpSOHGJyJvkcCa4q15LMUJ8rg==
1299 |
1300 | path-parse@^1.0.6, path-parse@^1.0.7:
1301 | version "1.0.7"
1302 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
1303 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
1304 |
1305 | path-type@^4.0.0:
1306 | version "4.0.0"
1307 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
1308 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
1309 |
1310 | picocolors@^1.0.0:
1311 | version "1.0.0"
1312 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
1313 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
1314 |
1315 | postcss@8.4.5:
1316 | version "8.4.5"
1317 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.5.tgz#bae665764dfd4c6fcc24dc0fdf7e7aa00cc77f95"
1318 | integrity sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg==
1319 | dependencies:
1320 | nanoid "^3.1.30"
1321 | picocolors "^1.0.0"
1322 | source-map-js "^1.0.1"
1323 |
1324 | property-information@^5.0.0, property-information@^5.3.0:
1325 | version "5.4.0"
1326 | resolved "https://registry.yarnpkg.com/property-information/-/property-information-5.4.0.tgz#16e08f13f4e5c4a7be2e4ec431c01c4f8dba869a"
1327 | integrity sha512-nmMWAm/3vKFGmmOWOcdLjgq/Hlxa+hsuR/px1Lp/UGEyc5A22A6l78Shc2C0E71sPmAqglni+HrS7L7VJ7AUCA==
1328 | dependencies:
1329 | xtend "^4.0.0"
1330 |
1331 | react-dom@^17.0.2:
1332 | version "17.0.2"
1333 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.2.tgz#ecffb6845e3ad8dbfcdc498f0d0a939736502c23"
1334 | integrity sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==
1335 | dependencies:
1336 | loose-envify "^1.1.0"
1337 | object-assign "^4.1.1"
1338 | scheduler "^0.20.2"
1339 |
1340 | react-is@^16.7.0:
1341 | version "16.13.1"
1342 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
1343 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
1344 |
1345 | react@^17.0.2:
1346 | version "17.0.2"
1347 | resolved "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037"
1348 | integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==
1349 | dependencies:
1350 | loose-envify "^1.1.0"
1351 | object-assign "^4.1.1"
1352 |
1353 | regenerator-runtime@^0.13.4:
1354 | version "0.13.5"
1355 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz#d878a1d094b4306d10b9096484b33ebd55e26697"
1356 | integrity sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA==
1357 |
1358 | remark-footnotes@2.0.0:
1359 | version "2.0.0"
1360 | resolved "https://registry.yarnpkg.com/remark-footnotes/-/remark-footnotes-2.0.0.tgz#9001c4c2ffebba55695d2dd80ffb8b82f7e6303f"
1361 | integrity sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==
1362 |
1363 | remark-mdx@1.6.22:
1364 | version "1.6.22"
1365 | resolved "https://registry.yarnpkg.com/remark-mdx/-/remark-mdx-1.6.22.tgz#06a8dab07dcfdd57f3373af7f86bd0e992108bbd"
1366 | integrity sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==
1367 | dependencies:
1368 | "@babel/core" "7.12.9"
1369 | "@babel/helper-plugin-utils" "7.10.4"
1370 | "@babel/plugin-proposal-object-rest-spread" "7.12.1"
1371 | "@babel/plugin-syntax-jsx" "7.12.1"
1372 | "@mdx-js/util" "1.6.22"
1373 | is-alphabetical "1.0.4"
1374 | remark-parse "8.0.3"
1375 | unified "9.2.0"
1376 |
1377 | remark-parse@8.0.3:
1378 | version "8.0.3"
1379 | resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-8.0.3.tgz#9c62aa3b35b79a486454c690472906075f40c7e1"
1380 | integrity sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==
1381 | dependencies:
1382 | ccount "^1.0.0"
1383 | collapse-white-space "^1.0.2"
1384 | is-alphabetical "^1.0.0"
1385 | is-decimal "^1.0.0"
1386 | is-whitespace-character "^1.0.0"
1387 | is-word-character "^1.0.0"
1388 | markdown-escapes "^1.0.0"
1389 | parse-entities "^2.0.0"
1390 | repeat-string "^1.5.4"
1391 | state-toggle "^1.0.0"
1392 | trim "0.0.1"
1393 | trim-trailing-lines "^1.0.0"
1394 | unherit "^1.0.4"
1395 | unist-util-remove-position "^2.0.0"
1396 | vfile-location "^3.0.0"
1397 | xtend "^4.0.1"
1398 |
1399 | remark-squeeze-paragraphs@4.0.0:
1400 | version "4.0.0"
1401 | resolved "https://registry.yarnpkg.com/remark-squeeze-paragraphs/-/remark-squeeze-paragraphs-4.0.0.tgz#76eb0e085295131c84748c8e43810159c5653ead"
1402 | integrity sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==
1403 | dependencies:
1404 | mdast-squeeze-paragraphs "^4.0.0"
1405 |
1406 | repeat-string@^1.5.4:
1407 | version "1.6.1"
1408 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
1409 | integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc=
1410 |
1411 | replace-ext@1.0.0:
1412 | version "1.0.0"
1413 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb"
1414 | integrity sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=
1415 |
1416 | resolve-from@^4.0.0:
1417 | version "4.0.0"
1418 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
1419 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
1420 |
1421 | resolve@^1.12.0:
1422 | version "1.21.0"
1423 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.21.0.tgz#b51adc97f3472e6a5cf4444d34bc9d6b9037591f"
1424 | integrity sha512-3wCbTpk5WJlyE4mSOtDLhqQmGFi0/TD9VPwmiolnk8U0wRgMEktqCXd3vy5buTO3tljvalNvKrjHEfrd2WpEKA==
1425 | dependencies:
1426 | is-core-module "^2.8.0"
1427 | path-parse "^1.0.7"
1428 | supports-preserve-symlinks-flag "^1.0.0"
1429 |
1430 | resolve@^1.3.2:
1431 | version "1.15.0"
1432 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.15.0.tgz#1b7ca96073ebb52e741ffd799f6b39ea462c67f5"
1433 | integrity sha512-+hTmAldEGE80U2wJJDC1lebb5jWqvTYAfm3YZ1ckk1gBr0MnCqUKlwK1e+anaFljIl+F5tR5IoZcm4ZDA1zMQw==
1434 | dependencies:
1435 | path-parse "^1.0.6"
1436 |
1437 | safe-buffer@~5.1.1:
1438 | version "5.1.2"
1439 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
1440 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
1441 |
1442 | scheduler@^0.20.2:
1443 | version "0.20.2"
1444 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91"
1445 | integrity sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==
1446 | dependencies:
1447 | loose-envify "^1.1.0"
1448 | object-assign "^4.1.1"
1449 |
1450 | semver@^5.4.1:
1451 | version "5.7.1"
1452 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
1453 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
1454 |
1455 | source-map-js@^1.0.1:
1456 | version "1.0.2"
1457 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c"
1458 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
1459 |
1460 | source-map@^0.5.0, source-map@^0.5.7:
1461 | version "0.5.7"
1462 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
1463 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
1464 |
1465 | space-separated-tokens@^1.0.0:
1466 | version "1.1.5"
1467 | resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz#85f32c3d10d9682007e917414ddc5c26d1aa6899"
1468 | integrity sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==
1469 |
1470 | state-toggle@^1.0.0:
1471 | version "1.0.3"
1472 | resolved "https://registry.yarnpkg.com/state-toggle/-/state-toggle-1.0.3.tgz#e123b16a88e143139b09c6852221bc9815917dfe"
1473 | integrity sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==
1474 |
1475 | style-to-object@0.3.0, style-to-object@^0.3.0:
1476 | version "0.3.0"
1477 | resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-0.3.0.tgz#b1b790d205991cc783801967214979ee19a76e46"
1478 | integrity sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==
1479 | dependencies:
1480 | inline-style-parser "0.1.1"
1481 |
1482 | styled-jsx@5.0.1:
1483 | version "5.0.1"
1484 | resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.0.1.tgz#78fecbbad2bf95ce6cd981a08918ce4696f5fc80"
1485 | integrity sha512-+PIZ/6Uk40mphiQJJI1202b+/dYeTVd9ZnMPR80pgiWbjIwvN2zIp4r9et0BgqBuShh48I0gttPlAXA7WVvBxw==
1486 |
1487 | styled-system@^5.1.4:
1488 | version "5.1.4"
1489 | resolved "https://registry.yarnpkg.com/styled-system/-/styled-system-5.1.4.tgz#953003bbda659092e5630e23da2ab7e855c65879"
1490 | integrity sha512-b1EdfZ41NDcR6vnvZauylhpFvSjsFl1yyQEUA+v3rLjcKdM//EIFY195Nh3YLwgj+hWIWsG0Tk1Kl0tq1xLw8Q==
1491 | dependencies:
1492 | "@styled-system/background" "^5.1.2"
1493 | "@styled-system/border" "^5.1.2"
1494 | "@styled-system/color" "^5.1.2"
1495 | "@styled-system/core" "^5.1.2"
1496 | "@styled-system/flexbox" "^5.1.2"
1497 | "@styled-system/grid" "^5.1.2"
1498 | "@styled-system/layout" "^5.1.2"
1499 | "@styled-system/position" "^5.1.2"
1500 | "@styled-system/shadow" "^5.1.2"
1501 | "@styled-system/space" "^5.1.2"
1502 | "@styled-system/typography" "^5.1.2"
1503 | "@styled-system/variant" "^5.1.4"
1504 | object-assign "^4.1.1"
1505 |
1506 | stylis@4.0.13:
1507 | version "4.0.13"
1508 | resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.0.13.tgz#f5db332e376d13cc84ecfe5dace9a2a51d954c91"
1509 | integrity sha512-xGPXiFVl4YED9Jh7Euv2V220mriG9u4B2TA6Ybjc1catrstKD2PpIdU3U0RKpkVBC2EhmL/F0sPCr9vrFTNRag==
1510 |
1511 | supports-color@^5.3.0:
1512 | version "5.5.0"
1513 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
1514 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
1515 | dependencies:
1516 | has-flag "^3.0.0"
1517 |
1518 | supports-preserve-symlinks-flag@^1.0.0:
1519 | version "1.0.0"
1520 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
1521 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
1522 |
1523 | theme-ui@^0.14.2:
1524 | version "0.14.2"
1525 | resolved "https://registry.yarnpkg.com/theme-ui/-/theme-ui-0.14.2.tgz#a1b10cc6b8aab0d474c2af36c82437f92813bb7f"
1526 | integrity sha512-psyaqDheEJjAC1XBevwa7XghPvix1jWRiFcjfCbTv4FZRClIQIZRAnjLL26rzvNB8WbHqlQgRB/Wr1aXyO7Gyg==
1527 | dependencies:
1528 | "@theme-ui/color-modes" "0.14.2"
1529 | "@theme-ui/components" "0.14.2"
1530 | "@theme-ui/core" "0.14.2"
1531 | "@theme-ui/css" "0.14.2"
1532 | "@theme-ui/mdx" "0.14.2"
1533 | "@theme-ui/theme-provider" "0.14.2"
1534 |
1535 | to-fast-properties@^2.0.0:
1536 | version "2.0.0"
1537 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
1538 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
1539 |
1540 | trim-trailing-lines@^1.0.0:
1541 | version "1.1.3"
1542 | resolved "https://registry.yarnpkg.com/trim-trailing-lines/-/trim-trailing-lines-1.1.3.tgz#7f0739881ff76657b7776e10874128004b625a94"
1543 | integrity sha512-4ku0mmjXifQcTVfYDfR5lpgV7zVqPg6zV9rdZmwOPqq0+Zq19xDqEgagqVbc4pOOShbncuAOIs59R3+3gcF3ZA==
1544 |
1545 | trim@0.0.1:
1546 | version "0.0.1"
1547 | resolved "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd"
1548 | integrity sha1-WFhUf2spB1fulczMZm+1AITEYN0=
1549 |
1550 | trough@^1.0.0:
1551 | version "1.0.5"
1552 | resolved "https://registry.yarnpkg.com/trough/-/trough-1.0.5.tgz#b8b639cefad7d0bb2abd37d433ff8293efa5f406"
1553 | integrity sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==
1554 |
1555 | unherit@^1.0.4:
1556 | version "1.1.3"
1557 | resolved "https://registry.yarnpkg.com/unherit/-/unherit-1.1.3.tgz#6c9b503f2b41b262330c80e91c8614abdaa69c22"
1558 | integrity sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==
1559 | dependencies:
1560 | inherits "^2.0.0"
1561 | xtend "^4.0.0"
1562 |
1563 | unified@9.2.0:
1564 | version "9.2.0"
1565 | resolved "https://registry.yarnpkg.com/unified/-/unified-9.2.0.tgz#67a62c627c40589edebbf60f53edfd4d822027f8"
1566 | integrity sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==
1567 | dependencies:
1568 | bail "^1.0.0"
1569 | extend "^3.0.0"
1570 | is-buffer "^2.0.0"
1571 | is-plain-obj "^2.0.0"
1572 | trough "^1.0.0"
1573 | vfile "^4.0.0"
1574 |
1575 | unist-builder@2.0.3, unist-builder@^2.0.0:
1576 | version "2.0.3"
1577 | resolved "https://registry.yarnpkg.com/unist-builder/-/unist-builder-2.0.3.tgz#77648711b5d86af0942f334397a33c5e91516436"
1578 | integrity sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==
1579 |
1580 | unist-util-generated@^1.0.0:
1581 | version "1.1.5"
1582 | resolved "https://registry.yarnpkg.com/unist-util-generated/-/unist-util-generated-1.1.5.tgz#1e903e68467931ebfaea386dae9ea253628acd42"
1583 | integrity sha512-1TC+NxQa4N9pNdayCYA1EGUOCAO0Le3fVp7Jzns6lnua/mYgwHo0tz5WUAfrdpNch1RZLHc61VZ1SDgrtNXLSw==
1584 |
1585 | unist-util-is@^4.0.0:
1586 | version "4.0.2"
1587 | resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-4.0.2.tgz#c7d1341188aa9ce5b3cff538958de9895f14a5de"
1588 | integrity sha512-Ofx8uf6haexJwI1gxWMGg6I/dLnF2yE+KibhD3/diOqY2TinLcqHXCV6OI5gFVn3xQqDH+u0M625pfKwIwgBKQ==
1589 |
1590 | unist-util-position@^3.0.0:
1591 | version "3.1.0"
1592 | resolved "https://registry.yarnpkg.com/unist-util-position/-/unist-util-position-3.1.0.tgz#1c42ee6301f8d52f47d14f62bbdb796571fa2d47"
1593 | integrity sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==
1594 |
1595 | unist-util-remove-position@^2.0.0:
1596 | version "2.0.1"
1597 | resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-2.0.1.tgz#5d19ca79fdba712301999b2b73553ca8f3b352cc"
1598 | integrity sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==
1599 | dependencies:
1600 | unist-util-visit "^2.0.0"
1601 |
1602 | unist-util-remove@^2.0.0:
1603 | version "2.0.0"
1604 | resolved "https://registry.yarnpkg.com/unist-util-remove/-/unist-util-remove-2.0.0.tgz#32c2ad5578802f2ca62ab808173d505b2c898488"
1605 | integrity sha512-HwwWyNHKkeg/eXRnE11IpzY8JT55JNM1YCwwU9YNCnfzk6s8GhPXrVBBZWiwLeATJbI7euvoGSzcy9M29UeW3g==
1606 | dependencies:
1607 | unist-util-is "^4.0.0"
1608 |
1609 | unist-util-stringify-position@^2.0.0:
1610 | version "2.0.3"
1611 | resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz#cce3bfa1cdf85ba7375d1d5b17bdc4cada9bd9da"
1612 | integrity sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==
1613 | dependencies:
1614 | "@types/unist" "^2.0.2"
1615 |
1616 | unist-util-visit-parents@^3.0.0:
1617 | version "3.0.2"
1618 | resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-3.0.2.tgz#d4076af3011739c71d2ce99d05de37d545f4351d"
1619 | integrity sha512-yJEfuZtzFpQmg1OSCyS9M5NJRrln/9FbYosH3iW0MG402QbdbaB8ZESwUv9RO6nRfLAKvWcMxCwdLWOov36x/g==
1620 | dependencies:
1621 | "@types/unist" "^2.0.0"
1622 | unist-util-is "^4.0.0"
1623 |
1624 | unist-util-visit@2.0.3:
1625 | version "2.0.3"
1626 | resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-2.0.3.tgz#c3703893146df47203bb8a9795af47d7b971208c"
1627 | integrity sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==
1628 | dependencies:
1629 | "@types/unist" "^2.0.0"
1630 | unist-util-is "^4.0.0"
1631 | unist-util-visit-parents "^3.0.0"
1632 |
1633 | unist-util-visit@^2.0.0:
1634 | version "2.0.2"
1635 | resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-2.0.2.tgz#3843782a517de3d2357b4c193b24af2d9366afb7"
1636 | integrity sha512-HoHNhGnKj6y+Sq+7ASo2zpVdfdRifhTgX2KTU3B/sO/TTlZchp7E3S4vjRzDJ7L60KmrCPsQkVK3lEF3cz36XQ==
1637 | dependencies:
1638 | "@types/unist" "^2.0.0"
1639 | unist-util-is "^4.0.0"
1640 | unist-util-visit-parents "^3.0.0"
1641 |
1642 | vfile-location@^3.0.0:
1643 | version "3.0.1"
1644 | resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-3.0.1.tgz#d78677c3546de0f7cd977544c367266764d31bb3"
1645 | integrity sha512-yYBO06eeN/Ki6Kh1QAkgzYpWT1d3Qln+ZCtSbJqFExPl1S3y2qqotJQXoh6qEvl/jDlgpUJolBn3PItVnnZRqQ==
1646 |
1647 | vfile-message@^2.0.0:
1648 | version "2.0.4"
1649 | resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-2.0.4.tgz#5b43b88171d409eae58477d13f23dd41d52c371a"
1650 | integrity sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==
1651 | dependencies:
1652 | "@types/unist" "^2.0.0"
1653 | unist-util-stringify-position "^2.0.0"
1654 |
1655 | vfile@^4.0.0:
1656 | version "4.1.0"
1657 | resolved "https://registry.yarnpkg.com/vfile/-/vfile-4.1.0.tgz#d79248957f43225d57ff67a56effc67bef08946e"
1658 | integrity sha512-BaTPalregj++64xbGK6uIlsurN3BCRNM/P2Pg8HezlGzKd1O9PrwIac6bd9Pdx2uTb0QHoioZ+rXKolbVXEgJg==
1659 | dependencies:
1660 | "@types/unist" "^2.0.0"
1661 | is-buffer "^2.0.0"
1662 | replace-ext "1.0.0"
1663 | unist-util-stringify-position "^2.0.0"
1664 | vfile-message "^2.0.0"
1665 |
1666 | web-namespaces@^1.0.0:
1667 | version "1.1.4"
1668 | resolved "https://registry.yarnpkg.com/web-namespaces/-/web-namespaces-1.1.4.tgz#bc98a3de60dadd7faefc403d1076d529f5e030ec"
1669 | integrity sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==
1670 |
1671 | xtend@^4.0.0, xtend@^4.0.1:
1672 | version "4.0.2"
1673 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
1674 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
1675 |
1676 | yaml@^1.7.2:
1677 | version "1.10.2"
1678 | resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
1679 | integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
1680 |
1681 | zwitch@^1.0.0:
1682 | version "1.0.5"
1683 | resolved "https://registry.yarnpkg.com/zwitch/-/zwitch-1.0.5.tgz#d11d7381ffed16b742f6af7b3f223d5cd9fe9920"
1684 | integrity sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==
1685 |
--------------------------------------------------------------------------------