diff --git a/.gitignore b/.gitignore index 0f21506..793f813 100644 --- a/.gitignore +++ b/.gitignore @@ -34,3 +34,4 @@ yarn-error.log* .vercel /.tmp +/.envrc diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..67f307c --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +SHELL = /bin/bash + +default: + +dev: + yarn dev + +build: + yarn build + +start: + yarn start + +# 1024x1024 area +# resize: +# mogrify -resize '1048576@>' -format jpg -quality 60 *.* diff --git a/jsconfig.json b/jsconfig.json index c2194e3..e81a7e6 100644 --- a/jsconfig.json +++ b/jsconfig.json @@ -5,6 +5,12 @@ "@/*": [ "src/*" ] - }, + } }, + "exclude": [ + ".next", + ".tmp", + "node_modules", + "out" + ] } diff --git a/netlify.toml b/netlify.toml new file mode 100644 index 0000000..6cf1df2 --- /dev/null +++ b/netlify.toml @@ -0,0 +1,6 @@ +[build] + command = "make build" + publish = "out" + +[[plugins]] + package = "@netlify/plugin-nextjs" diff --git a/next.config.js b/next.config.js index 5bb7e1d..7849359 100644 --- a/next.config.js +++ b/next.config.js @@ -1,14 +1,21 @@ // https://nextjs.org/docs/api-reference/next.config.js/introduction +const withPlugins = require('next-compose-plugins') +const withYaml = require('next-plugin-yaml') const withImages = require('next-images') -module.exports = withImages({ +let nextConfig = { // https://nextjs.org/docs/api-reference/next.config.js/basepath basePath: process.env.BASE_PATH || '', // https://nextjs.org/docs/basic-features/image-optimization images: { loader: 'cloudinary', - path: 'https://res.cloudinary.com/rnatulsa/image/upload/' + path: '/images/_loader/' }, -}) +} + +module.exports = withPlugins([ + withImages, + withYaml, +], nextConfig) diff --git a/package.json b/package.json index c091211..24efaaa 100644 --- a/package.json +++ b/package.json @@ -8,12 +8,19 @@ "start": "next start" }, "dependencies": { + "@netlify/plugin-nextjs": "^3.0.3", "autoprefixer": "^10.2.4", + "classnames": "^2.2.6", + "gray-matter": "^4.0.2", "next": "10.0.6", + "next-compose-plugins": "^2.2.1", "next-images": "^1.7.0", + "next-plugin-yaml": "^1.0.1", "postcss": "^8.2.4", "react": "17.0.1", "react-dom": "17.0.1", + "remark": "^13.0.0", + "remark-html": "^13.0.1", "tailwindcss": "^2.0.2" } } diff --git a/public/images/board-members/amber.jpg b/public/images/board-members/amber.jpg new file mode 100644 index 0000000..5c377b5 Binary files /dev/null and b/public/images/board-members/amber.jpg differ diff --git a/public/images/board-members/amber.png b/public/images/board-members/amber.png new file mode 100644 index 0000000..6638142 Binary files /dev/null and b/public/images/board-members/amber.png differ diff --git a/public/images/board-members/andrew.jpg b/public/images/board-members/andrew.jpg new file mode 100644 index 0000000..81fd7e7 Binary files /dev/null and b/public/images/board-members/andrew.jpg differ diff --git a/public/images/board-members/angela.jpg b/public/images/board-members/angela.jpg new file mode 100644 index 0000000..19a0421 Binary files /dev/null and b/public/images/board-members/angela.jpg differ diff --git a/public/images/board-members/arena.jpg b/public/images/board-members/arena.jpg new file mode 100644 index 0000000..6a5e899 Binary files /dev/null and b/public/images/board-members/arena.jpg differ diff --git a/public/images/board-members/arena.png b/public/images/board-members/arena.png new file mode 100644 index 0000000..e32ff6c Binary files /dev/null and b/public/images/board-members/arena.png differ diff --git a/public/images/board-members/casey.jpg b/public/images/board-members/casey.jpg new file mode 100644 index 0000000..554b865 Binary files /dev/null and b/public/images/board-members/casey.jpg differ diff --git a/public/images/board-members/cassie.jpg b/public/images/board-members/cassie.jpg new file mode 100644 index 0000000..c581e44 Binary files /dev/null and b/public/images/board-members/cassie.jpg differ diff --git a/public/images/board-members/charlie.jpg b/public/images/board-members/charlie.jpg new file mode 100644 index 0000000..8f25313 Binary files /dev/null and b/public/images/board-members/charlie.jpg differ diff --git a/public/images/board-members/charlie.png b/public/images/board-members/charlie.png new file mode 100644 index 0000000..f4b91df Binary files /dev/null and b/public/images/board-members/charlie.png differ diff --git a/public/images/board-members/glenn.jpg b/public/images/board-members/glenn.jpg new file mode 100644 index 0000000..5cff607 Binary files /dev/null and b/public/images/board-members/glenn.jpg differ diff --git a/public/images/board-members/kristin.jpg b/public/images/board-members/kristin.jpg new file mode 100644 index 0000000..38dcf46 Binary files /dev/null and b/public/images/board-members/kristin.jpg differ diff --git a/public/images/board-members/tom.jpg b/public/images/board-members/tom.jpg new file mode 100644 index 0000000..c4928f5 Binary files /dev/null and b/public/images/board-members/tom.jpg differ diff --git a/public/images/wix/shadow-image.png b/public/images/wix/shadow-image.png new file mode 100644 index 0000000..e884783 Binary files /dev/null and b/public/images/wix/shadow-image.png differ diff --git a/src/components/banner.js b/src/components/banner.js new file mode 100644 index 0000000..5aa1472 --- /dev/null +++ b/src/components/banner.js @@ -0,0 +1,25 @@ +import PropTypes from 'prop-types' +import classNames from 'classnames' +import styles from '@/styles/banner.module.css' + +export default function Banner({ image, className, children, bgStyle = {} }) { + return ( +
+
+ +
+ {children} +
+
+ ) +} + +Banner.propTypes = { + image: PropTypes.string.isRequired, + className: PropTypes.string, + children: PropTypes.node, + backgroundStyle: PropTypes.object +} diff --git a/src/components/board-members.js b/src/components/board-members.js new file mode 100644 index 0000000..939dea9 --- /dev/null +++ b/src/components/board-members.js @@ -0,0 +1,32 @@ +import styles from '@/styles/board-members.module.css' + +import data from '@/data/board.yml' + +export function BoardMember({ name, title, pastTitle, image, ...props }) { + return ( +
+
+
{name}
+
{title}
+ {pastTitle &&
{pastTitle}
} +
+ ) +} + +export default function BoardMembers() { + return ( +
+

Meet the Board

+ +
+ {data.members.map((member, key) => )} +
+
+ ) +} diff --git a/src/components/divider.js b/src/components/divider.js new file mode 100644 index 0000000..8f571ae --- /dev/null +++ b/src/components/divider.js @@ -0,0 +1,8 @@ +export default function Divider() { + return ( +
+ ) +} diff --git a/src/components/footer.js b/src/components/footer.js new file mode 100644 index 0000000..68b8bab --- /dev/null +++ b/src/components/footer.js @@ -0,0 +1,56 @@ +export default function Footer() { + return ( +
+
+
+
+ About Us +
+ +

+ Renaissance Neighborhood Association (RNA) is a group of residents who volunteer their time to promote a + united community by organizing events and by sharing information that affects our neighborhood. +

+
+ +
+
+ Address +
+ +

+ Renaissance Neighborhood Association{'\n'} + P.O. Box 4362{'\n'} + Tulsa, OK 74159 +

+ +

+ For website trouble, email:{'\n'} + RnaWebmaster2@gmail.com +

+
+ +
+
+ Join Our Email List +
+
+
+
+ ) +} diff --git a/src/components/gallery.js b/src/components/gallery.js new file mode 100644 index 0000000..28a8832 --- /dev/null +++ b/src/components/gallery.js @@ -0,0 +1,129 @@ +import React from 'react' +import PropTypes from 'prop-types' +import styles from '@/styles/gallery.module.css' +import classNames from 'classnames' +import Link from 'next/link' + +const DEFAULT_SPEED = 5 * 1_000 // 5 seconds + +export function GalleryImage({ image, key, visible = true, size = 'cover' }) { + return ( +
+ ) +} +GalleryImage.propTypes = { + image: PropTypes.string.isRequired, + key: PropTypes.any.isRequired, + visible: PropTypes.bool, + size: PropTypes.oneOf(['contain', 'cover']) +} + +export function GalleryText({ children }) { + return ( +
+ {children} +
+ ) +} +GalleryText.propTypes = { + children: PropTypes.node +} + +export function GalleryButton({ href, text }) { + return ( + + + {text} ยป + + + ) +} +GalleryButton.propTypes = { + href: PropTypes.string.isRequired, + text: PropTypes.string.isRequired, +} + +export function GalleryButtons({ children }) { + return ( +
+ {children} +
+ ) +} +GalleryButtons.propTypes = { + children: PropTypes.node +} + +const rotate = (images) => { + const imageShuffle = [...images] + + if (imageShuffle[1].visible) { + const image = imageShuffle.shift() + image.visible = false + imageShuffle.push(image) + } + + imageShuffle[1].visible = true + + return imageShuffle +} + +const init = ({ images, size = 'cover' }) => { + return images.map( + (image, index) => ({ image, key: index, size, visible: !index }) + ) +} + +export function Gallery({ + images, + children, + className = '', + size = 'cover', + speed = DEFAULT_SPEED, + ...props +}) { + if (!images.length) { + return + } + + const [galleryImages, rotateGalleryImages] = React.useReducer( + rotate, + init({images, size}) + ) + + React.useEffect(() => { + if (images.length < 2) { + return + } + + const interval = setInterval(() => { + rotateGalleryImages() + }, speed) + + return () => clearInterval(interval) + }, [images]) + + return ( +
+
+ {galleryImages.slice(0, 3).map(GalleryImage)} +
+
+ {children} +
+
+ ) +} +Gallery.propTypes = { + images: PropTypes.array.isRequired, + children: PropTypes.node, + className: PropTypes.string, + size: PropTypes.string, + speed: PropTypes.number, +} + +export default Gallery diff --git a/src/components/header.js b/src/components/header.js index cd65bb1..05a0c99 100644 --- a/src/components/header.js +++ b/src/components/header.js @@ -1,23 +1,40 @@ +import Link from 'next/link' import logo from '@/images/logo.png' -export default function Header({ children }) { +const MENU = { + '/': 'Home', + '/about-us': 'About Us', + '/news': 'News', + '/dues': 'Dues', + '/events': 'Events', + '/contact': 'Contact', + '/gallery-virtual-home-tour': 'Gallery', + '/history': 'History', +} + +export default function Header() { return ( - <> -
- Logo +
+ + + Logo +
+
Renaissance
+
Historic Neighborhood
+
+
+ -
- {/* */} - Home - About Us - News - Dues - Events - Contact - Gallery - History -
-
- +
+ {Object.entries(MENU).map(([href, text], index) => ( + + {text} + + ))} +
+
) } diff --git a/src/components/layout.js b/src/components/layout.js index 76397ad..3e4bc54 100644 --- a/src/components/layout.js +++ b/src/components/layout.js @@ -1,11 +1,21 @@ import Header from '@/components/header' +import Footer from '@/components/footer' +import styles from '@/styles/layout.module.css' export default function Layout({ children }) { return ( -
-
+
+
+
+
- {children} +
+ {children} +
+ +
+
+
) } diff --git a/src/components/section.js b/src/components/section.js new file mode 100644 index 0000000..98e62e0 --- /dev/null +++ b/src/components/section.js @@ -0,0 +1,18 @@ +import PropTypes from 'prop-types' +import classNames from 'classnames' +import styles from '@/styles/section.module.css' + +export default function Section({ className, children, ...props }) { + return ( +
+
+ {children} +
+
+ ) +} + +Section.propTypes = { + className: PropTypes.string, + children: PropTypes.node, +} diff --git a/src/components/shadow-image.js b/src/components/shadow-image.js new file mode 100644 index 0000000..a81d271 --- /dev/null +++ b/src/components/shadow-image.js @@ -0,0 +1,10 @@ +import classNames from 'classnames' +import styles from '@/styles/shadow-image.module.css' + +export default function ShadowImage({ src, className, ...props }) { + return ( +
+ +
+ ) +} diff --git a/src/data/board.yml b/src/data/board.yml new file mode 100644 index 0000000..0d045f9 --- /dev/null +++ b/src/data/board.yml @@ -0,0 +1,34 @@ +--- +members: + - name: P. Casey Morgan + image: casey.jpg + title: President + - name: Charlie Floyd + image: charlie.jpg + title: Vice President + - name: Amber Helvey + image: amber.jpg + title: Treasurer + - name: Cassie DeLozier Miller + image: cassie.jpg + title: Secretary + - name: Arena Mueller + image: arena.jpg + title: Historian + - name: Andrew Carlson + image: andrew.jpg + title: Member At-Large + - name: Angela Flax + image: angela.jpg + title: Member At-Large + - name: Glenn Hall + image: glenn.jpg + title: Member At-Large + pastTitle: Past President & Treasurer + - name: Kristin Marangoni + image: kristin.jpg + pastTitle: Member At-Large + - name: Tom Neal + image: tom.jpg + title: Member At-Large + pastTitle: Past President & Secretary diff --git a/src/images/wix/8ddcb11aa53c45ce954624a4aea25994.jpg b/src/images/wix/8ddcb11aa53c45ce954624a4aea25994.jpg new file mode 100644 index 0000000..8a570e7 Binary files /dev/null and b/src/images/wix/8ddcb11aa53c45ce954624a4aea25994.jpg differ diff --git a/src/images/wix/CampbellNow1.jpg b/src/images/wix/CampbellNow1.jpg new file mode 100644 index 0000000..d30d9bc Binary files /dev/null and b/src/images/wix/CampbellNow1.jpg differ diff --git a/src/images/wix/ChiliFest/BannerOnTable.jpg b/src/images/wix/ChiliFest/BannerOnTable.jpg new file mode 100644 index 0000000..0e2c825 Binary files /dev/null and b/src/images/wix/ChiliFest/BannerOnTable.jpg differ diff --git a/src/images/wix/ChiliFest/BoyLaughing2013.jpg b/src/images/wix/ChiliFest/BoyLaughing2013.jpg new file mode 100644 index 0000000..39edfd8 Binary files /dev/null and b/src/images/wix/ChiliFest/BoyLaughing2013.jpg differ diff --git a/src/images/wix/ChiliFest/ChiliAwards2012.jpg b/src/images/wix/ChiliFest/ChiliAwards2012.jpg new file mode 100644 index 0000000..259232c Binary files /dev/null and b/src/images/wix/ChiliFest/ChiliAwards2012.jpg differ diff --git a/src/images/wix/ChiliFest/ChiliGroup2012-1.jpg b/src/images/wix/ChiliFest/ChiliGroup2012-1.jpg new file mode 100644 index 0000000..9185359 Binary files /dev/null and b/src/images/wix/ChiliFest/ChiliGroup2012-1.jpg differ diff --git a/src/images/wix/ChiliFest/ChiliGroup2012-2.jpg b/src/images/wix/ChiliFest/ChiliGroup2012-2.jpg new file mode 100644 index 0000000..351c25b Binary files /dev/null and b/src/images/wix/ChiliFest/ChiliGroup2012-2.jpg differ diff --git a/src/images/wix/ChiliFest/ChiliGroup2012-3.jpg b/src/images/wix/ChiliFest/ChiliGroup2012-3.jpg new file mode 100644 index 0000000..ea157a9 Binary files /dev/null and b/src/images/wix/ChiliFest/ChiliGroup2012-3.jpg differ diff --git a/src/images/wix/ChiliFest/ChiliGroup2016.jpg b/src/images/wix/ChiliFest/ChiliGroup2016.jpg new file mode 100644 index 0000000..a36487c Binary files /dev/null and b/src/images/wix/ChiliFest/ChiliGroup2016.jpg differ diff --git a/src/images/wix/ChiliFest/ChiliGroup2018.jpg b/src/images/wix/ChiliFest/ChiliGroup2018.jpg new file mode 100644 index 0000000..8bfef88 Binary files /dev/null and b/src/images/wix/ChiliFest/ChiliGroup2018.jpg differ diff --git a/src/images/wix/ChiliFest/ChiliTable2012.jpg b/src/images/wix/ChiliFest/ChiliTable2012.jpg new file mode 100644 index 0000000..fb302e8 Binary files /dev/null and b/src/images/wix/ChiliFest/ChiliTable2012.jpg differ diff --git a/src/images/wix/ChiliFest/ChiliTable2018.jpg b/src/images/wix/ChiliFest/ChiliTable2018.jpg new file mode 100644 index 0000000..36df4ee Binary files /dev/null and b/src/images/wix/ChiliFest/ChiliTable2018.jpg differ diff --git a/src/images/wix/ChiliFest/Cookies.jpg b/src/images/wix/ChiliFest/Cookies.jpg new file mode 100644 index 0000000..f7175a7 Binary files /dev/null and b/src/images/wix/ChiliFest/Cookies.jpg differ diff --git a/src/images/wix/ChiliFest/GirlwithCaterpillar2013.jpg b/src/images/wix/ChiliFest/GirlwithCaterpillar2013.jpg new file mode 100644 index 0000000..64f15a9 Binary files /dev/null and b/src/images/wix/ChiliFest/GirlwithCaterpillar2013.jpg differ diff --git a/src/images/wix/ChiliFest/GirlwithLadel2013.jpg b/src/images/wix/ChiliFest/GirlwithLadel2013.jpg new file mode 100644 index 0000000..b4f87f1 Binary files /dev/null and b/src/images/wix/ChiliFest/GirlwithLadel2013.jpg differ diff --git a/src/images/wix/ChiliFest/GlennLade2013l.jpg b/src/images/wix/ChiliFest/GlennLade2013l.jpg new file mode 100644 index 0000000..29a8c5d Binary files /dev/null and b/src/images/wix/ChiliFest/GlennLade2013l.jpg differ diff --git a/src/images/wix/ChiliFest/GroupSceneCropped2017.jpg b/src/images/wix/ChiliFest/GroupSceneCropped2017.jpg new file mode 100644 index 0000000..821f0ff Binary files /dev/null and b/src/images/wix/ChiliFest/GroupSceneCropped2017.jpg differ diff --git a/src/images/wix/ChiliFest/LookingInPot2013.jpg b/src/images/wix/ChiliFest/LookingInPot2013.jpg new file mode 100644 index 0000000..5f0ec6f Binary files /dev/null and b/src/images/wix/ChiliFest/LookingInPot2013.jpg differ diff --git a/src/images/wix/ChiliFest/Trophies2013.jpg b/src/images/wix/ChiliFest/Trophies2013.jpg new file mode 100644 index 0000000..639f9dc Binary files /dev/null and b/src/images/wix/ChiliFest/Trophies2013.jpg differ diff --git a/src/images/wix/ChiliFest/VoteBox2017.jpg b/src/images/wix/ChiliFest/VoteBox2017.jpg new file mode 100644 index 0000000..f88afc9 Binary files /dev/null and b/src/images/wix/ChiliFest/VoteBox2017.jpg differ diff --git a/src/images/wix/ChiliFest/Winners2013.jpg b/src/images/wix/ChiliFest/Winners2013.jpg new file mode 100644 index 0000000..3816552 Binary files /dev/null and b/src/images/wix/ChiliFest/Winners2013.jpg differ diff --git a/src/images/wix/ChiliFest/Winners2018.jpg b/src/images/wix/ChiliFest/Winners2018.jpg new file mode 100644 index 0000000..3ac95ec Binary files /dev/null and b/src/images/wix/ChiliFest/Winners2018.jpg differ diff --git a/src/images/wix/EntrySign.jpg b/src/images/wix/EntrySign.jpg new file mode 100644 index 0000000..5b528e0 Binary files /dev/null and b/src/images/wix/EntrySign.jpg differ diff --git a/src/images/wix/FullSizeRender.jpg b/src/images/wix/FullSizeRender.jpg new file mode 100644 index 0000000..d2caf92 Binary files /dev/null and b/src/images/wix/FullSizeRender.jpg differ diff --git a/src/images/wix/Houses/CityViewPark.jpg b/src/images/wix/Houses/CityViewPark.jpg new file mode 100644 index 0000000..0a089f1 Binary files /dev/null and b/src/images/wix/Houses/CityViewPark.jpg differ diff --git a/src/images/wix/Houses/Leader1.png b/src/images/wix/Houses/Leader1.png new file mode 100644 index 0000000..aa1b5ae Binary files /dev/null and b/src/images/wix/Houses/Leader1.png differ diff --git a/src/images/wix/Houses/RNAhome1.jpg b/src/images/wix/Houses/RNAhome1.jpg new file mode 100644 index 0000000..13ef026 Binary files /dev/null and b/src/images/wix/Houses/RNAhome1.jpg differ diff --git a/src/images/wix/Houses/RNAhome2.jpg b/src/images/wix/Houses/RNAhome2.jpg new file mode 100644 index 0000000..ce5fe43 Binary files /dev/null and b/src/images/wix/Houses/RNAhome2.jpg differ diff --git a/src/images/wix/Houses/RNAhome3.jpg b/src/images/wix/Houses/RNAhome3.jpg new file mode 100644 index 0000000..33101f1 Binary files /dev/null and b/src/images/wix/Houses/RNAhome3.jpg differ diff --git a/src/images/wix/Houses/RNAhome4.jpg b/src/images/wix/Houses/RNAhome4.jpg new file mode 100644 index 0000000..180014b Binary files /dev/null and b/src/images/wix/Houses/RNAhome4.jpg differ diff --git a/src/images/wix/Houses/RNAhome5.jpg b/src/images/wix/Houses/RNAhome5.jpg new file mode 100644 index 0000000..672366a Binary files /dev/null and b/src/images/wix/Houses/RNAhome5.jpg differ diff --git a/src/images/wix/Houses/RNAhome6.jpg b/src/images/wix/Houses/RNAhome6.jpg new file mode 100644 index 0000000..9c22f70 Binary files /dev/null and b/src/images/wix/Houses/RNAhome6.jpg differ diff --git a/src/images/wix/Houses/RNAhouse10.jpg b/src/images/wix/Houses/RNAhouse10.jpg new file mode 100644 index 0000000..644f1f0 Binary files /dev/null and b/src/images/wix/Houses/RNAhouse10.jpg differ diff --git a/src/images/wix/Houses/RNAhouse11.jpg b/src/images/wix/Houses/RNAhouse11.jpg new file mode 100644 index 0000000..384b8a6 Binary files /dev/null and b/src/images/wix/Houses/RNAhouse11.jpg differ diff --git a/src/images/wix/Houses/RNAhouse12.jpg b/src/images/wix/Houses/RNAhouse12.jpg new file mode 100644 index 0000000..2cfa908 Binary files /dev/null and b/src/images/wix/Houses/RNAhouse12.jpg differ diff --git a/src/images/wix/Houses/RNAhouse13.jpg b/src/images/wix/Houses/RNAhouse13.jpg new file mode 100644 index 0000000..eade576 Binary files /dev/null and b/src/images/wix/Houses/RNAhouse13.jpg differ diff --git a/src/images/wix/Houses/RNAhouse14.jpg b/src/images/wix/Houses/RNAhouse14.jpg new file mode 100644 index 0000000..39a1ed0 Binary files /dev/null and b/src/images/wix/Houses/RNAhouse14.jpg differ diff --git a/src/images/wix/Houses/RNAhouse14aWilson.jpg b/src/images/wix/Houses/RNAhouse14aWilson.jpg new file mode 100644 index 0000000..44c2ecc Binary files /dev/null and b/src/images/wix/Houses/RNAhouse14aWilson.jpg differ diff --git a/src/images/wix/Houses/RNAhouse15.jpg b/src/images/wix/Houses/RNAhouse15.jpg new file mode 100644 index 0000000..907fe98 Binary files /dev/null and b/src/images/wix/Houses/RNAhouse15.jpg differ diff --git a/src/images/wix/Houses/RNAhouse16.jpg b/src/images/wix/Houses/RNAhouse16.jpg new file mode 100644 index 0000000..3db8c15 Binary files /dev/null and b/src/images/wix/Houses/RNAhouse16.jpg differ diff --git a/src/images/wix/Houses/RNAhouse17.jpg b/src/images/wix/Houses/RNAhouse17.jpg new file mode 100644 index 0000000..1b448a6 Binary files /dev/null and b/src/images/wix/Houses/RNAhouse17.jpg differ diff --git a/src/images/wix/Houses/RNAhouse18.jpg b/src/images/wix/Houses/RNAhouse18.jpg new file mode 100644 index 0000000..68c4607 Binary files /dev/null and b/src/images/wix/Houses/RNAhouse18.jpg differ diff --git a/src/images/wix/Houses/RNAhouse19.jpg b/src/images/wix/Houses/RNAhouse19.jpg new file mode 100644 index 0000000..6fb5625 Binary files /dev/null and b/src/images/wix/Houses/RNAhouse19.jpg differ diff --git a/src/images/wix/Houses/RNAhouse20.jpg b/src/images/wix/Houses/RNAhouse20.jpg new file mode 100644 index 0000000..06c9fac Binary files /dev/null and b/src/images/wix/Houses/RNAhouse20.jpg differ diff --git a/src/images/wix/Houses/RNAhouse21.jpg b/src/images/wix/Houses/RNAhouse21.jpg new file mode 100644 index 0000000..df93e44 Binary files /dev/null and b/src/images/wix/Houses/RNAhouse21.jpg differ diff --git a/src/images/wix/Houses/RNAhouse22.jpg b/src/images/wix/Houses/RNAhouse22.jpg new file mode 100644 index 0000000..1ae8496 Binary files /dev/null and b/src/images/wix/Houses/RNAhouse22.jpg differ diff --git a/src/images/wix/Houses/RNAhouse23.jpg b/src/images/wix/Houses/RNAhouse23.jpg new file mode 100644 index 0000000..6e97a76 Binary files /dev/null and b/src/images/wix/Houses/RNAhouse23.jpg differ diff --git a/src/images/wix/Houses/RNAhouse24.jpg b/src/images/wix/Houses/RNAhouse24.jpg new file mode 100644 index 0000000..53af60d Binary files /dev/null and b/src/images/wix/Houses/RNAhouse24.jpg differ diff --git a/src/images/wix/Houses/RNAhouse25.jpg b/src/images/wix/Houses/RNAhouse25.jpg new file mode 100644 index 0000000..938cab3 Binary files /dev/null and b/src/images/wix/Houses/RNAhouse25.jpg differ diff --git a/src/images/wix/Houses/RNAhouse29.jpg b/src/images/wix/Houses/RNAhouse29.jpg new file mode 100644 index 0000000..d9ae409 Binary files /dev/null and b/src/images/wix/Houses/RNAhouse29.jpg differ diff --git a/src/images/wix/Houses/RNAhouse30.jpg b/src/images/wix/Houses/RNAhouse30.jpg new file mode 100644 index 0000000..1fd0e4a Binary files /dev/null and b/src/images/wix/Houses/RNAhouse30.jpg differ diff --git a/src/images/wix/Houses/RNAhouse31.jpg b/src/images/wix/Houses/RNAhouse31.jpg new file mode 100644 index 0000000..f544168 Binary files /dev/null and b/src/images/wix/Houses/RNAhouse31.jpg differ diff --git a/src/images/wix/Houses/RNAhouse32.jpg b/src/images/wix/Houses/RNAhouse32.jpg new file mode 100644 index 0000000..ece0948 Binary files /dev/null and b/src/images/wix/Houses/RNAhouse32.jpg differ diff --git a/src/images/wix/Houses/RNAhouse33.jpg b/src/images/wix/Houses/RNAhouse33.jpg new file mode 100644 index 0000000..6c7b62c Binary files /dev/null and b/src/images/wix/Houses/RNAhouse33.jpg differ diff --git a/src/images/wix/Houses/RNAhouse34.jpg b/src/images/wix/Houses/RNAhouse34.jpg new file mode 100644 index 0000000..c7c8275 Binary files /dev/null and b/src/images/wix/Houses/RNAhouse34.jpg differ diff --git a/src/images/wix/Houses/RNAhouse35.jpg b/src/images/wix/Houses/RNAhouse35.jpg new file mode 100644 index 0000000..ad95d5b Binary files /dev/null and b/src/images/wix/Houses/RNAhouse35.jpg differ diff --git a/src/images/wix/Houses/RNAhouse36.jpg b/src/images/wix/Houses/RNAhouse36.jpg new file mode 100644 index 0000000..725432a Binary files /dev/null and b/src/images/wix/Houses/RNAhouse36.jpg differ diff --git a/src/images/wix/Houses/RNAhouse37.jpg b/src/images/wix/Houses/RNAhouse37.jpg new file mode 100644 index 0000000..28cc43d Binary files /dev/null and b/src/images/wix/Houses/RNAhouse37.jpg differ diff --git a/src/images/wix/Houses/RNAhouse38.jpg b/src/images/wix/Houses/RNAhouse38.jpg new file mode 100644 index 0000000..b922ee0 Binary files /dev/null and b/src/images/wix/Houses/RNAhouse38.jpg differ diff --git a/src/images/wix/Houses/RNAhouse39.jpg b/src/images/wix/Houses/RNAhouse39.jpg new file mode 100644 index 0000000..96b5faa Binary files /dev/null and b/src/images/wix/Houses/RNAhouse39.jpg differ diff --git a/src/images/wix/Houses/RNAhouse40.jpg b/src/images/wix/Houses/RNAhouse40.jpg new file mode 100644 index 0000000..a8ee352 Binary files /dev/null and b/src/images/wix/Houses/RNAhouse40.jpg differ diff --git a/src/images/wix/Houses/RNAhouse41.jpg b/src/images/wix/Houses/RNAhouse41.jpg new file mode 100644 index 0000000..6094bc4 Binary files /dev/null and b/src/images/wix/Houses/RNAhouse41.jpg differ diff --git a/src/images/wix/Houses/RNAhouse42.jpg b/src/images/wix/Houses/RNAhouse42.jpg new file mode 100644 index 0000000..b6d93fc Binary files /dev/null and b/src/images/wix/Houses/RNAhouse42.jpg differ diff --git a/src/images/wix/Houses/RNAhouse43.jpg b/src/images/wix/Houses/RNAhouse43.jpg new file mode 100644 index 0000000..83573c8 Binary files /dev/null and b/src/images/wix/Houses/RNAhouse43.jpg differ diff --git a/src/images/wix/Houses/RNAhouse44.jpg b/src/images/wix/Houses/RNAhouse44.jpg new file mode 100644 index 0000000..0220715 Binary files /dev/null and b/src/images/wix/Houses/RNAhouse44.jpg differ diff --git a/src/images/wix/Houses/RNAhouse7.jpg b/src/images/wix/Houses/RNAhouse7.jpg new file mode 100644 index 0000000..cba39a5 Binary files /dev/null and b/src/images/wix/Houses/RNAhouse7.jpg differ diff --git a/src/images/wix/Houses/RNAhouse8.jpg b/src/images/wix/Houses/RNAhouse8.jpg new file mode 100644 index 0000000..a9e5332 Binary files /dev/null and b/src/images/wix/Houses/RNAhouse8.jpg differ diff --git a/src/images/wix/Houses/RNAhouse9.jpg b/src/images/wix/Houses/RNAhouse9.jpg new file mode 100644 index 0000000..fa2c317 Binary files /dev/null and b/src/images/wix/Houses/RNAhouse9.jpg differ diff --git a/src/images/wix/Houses/RnaHouse26.jpg b/src/images/wix/Houses/RnaHouse26.jpg new file mode 100644 index 0000000..3f7c70c Binary files /dev/null and b/src/images/wix/Houses/RnaHouse26.jpg differ diff --git a/src/images/wix/Houses/RnaHouse27.jpg b/src/images/wix/Houses/RnaHouse27.jpg new file mode 100644 index 0000000..f073517 Binary files /dev/null and b/src/images/wix/Houses/RnaHouse27.jpg differ diff --git a/src/images/wix/Houses/RnaHouse28.jpg b/src/images/wix/Houses/RnaHouse28.jpg new file mode 100644 index 0000000..a32eadb Binary files /dev/null and b/src/images/wix/Houses/RnaHouse28.jpg differ diff --git a/src/images/wix/OldNew-2.jpg b/src/images/wix/OldNew-2.jpg new file mode 100644 index 0000000..26e0c7e Binary files /dev/null and b/src/images/wix/OldNew-2.jpg differ diff --git a/src/images/wix/Parkfest2015/BestSideDishWinnerCherie.jpg b/src/images/wix/Parkfest2015/BestSideDishWinnerCherie.jpg new file mode 100644 index 0000000..2298580 Binary files /dev/null and b/src/images/wix/Parkfest2015/BestSideDishWinnerCherie.jpg differ diff --git a/src/images/wix/Parkfest2015/BouncyHouse.jpg b/src/images/wix/Parkfest2015/BouncyHouse.jpg new file mode 100644 index 0000000..9d8e804 Binary files /dev/null and b/src/images/wix/Parkfest2015/BouncyHouse.jpg differ diff --git a/src/images/wix/Parkfest2015/Fireman.jpg b/src/images/wix/Parkfest2015/Fireman.jpg new file mode 100644 index 0000000..3b23424 Binary files /dev/null and b/src/images/wix/Parkfest2015/Fireman.jpg differ diff --git a/src/images/wix/Parkfest2015/Firemen.jpg b/src/images/wix/Parkfest2015/Firemen.jpg new file mode 100644 index 0000000..22d9976 Binary files /dev/null and b/src/images/wix/Parkfest2015/Firemen.jpg differ diff --git a/src/images/wix/Parkfest2015/Firetruck.jpg b/src/images/wix/Parkfest2015/Firetruck.jpg new file mode 100644 index 0000000..9e539cf Binary files /dev/null and b/src/images/wix/Parkfest2015/Firetruck.jpg differ diff --git a/src/images/wix/Parkfest2015/FiretruckKids.jpg b/src/images/wix/Parkfest2015/FiretruckKids.jpg new file mode 100644 index 0000000..0b1930e Binary files /dev/null and b/src/images/wix/Parkfest2015/FiretruckKids.jpg differ diff --git a/src/images/wix/Parkfest2015/GuessHowManySeeds.jpg b/src/images/wix/Parkfest2015/GuessHowManySeeds.jpg new file mode 100644 index 0000000..93c08ce Binary files /dev/null and b/src/images/wix/Parkfest2015/GuessHowManySeeds.jpg differ diff --git a/src/images/wix/Parkfest2015/HotDogGrillerBucky.jpg b/src/images/wix/Parkfest2015/HotDogGrillerBucky.jpg new file mode 100644 index 0000000..f01d929 Binary files /dev/null and b/src/images/wix/Parkfest2015/HotDogGrillerBucky.jpg differ diff --git a/src/images/wix/Parkfest2015/LeeAndKendra.jpg b/src/images/wix/Parkfest2015/LeeAndKendra.jpg new file mode 100644 index 0000000..1467485 Binary files /dev/null and b/src/images/wix/Parkfest2015/LeeAndKendra.jpg differ diff --git a/src/images/wix/Parkfest2015/LeeWinnerSeedCount.jpg b/src/images/wix/Parkfest2015/LeeWinnerSeedCount.jpg new file mode 100644 index 0000000..0f10ce6 Binary files /dev/null and b/src/images/wix/Parkfest2015/LeeWinnerSeedCount.jpg differ diff --git a/src/images/wix/Parkfest2015/Mark-Robert-Tom.jpg b/src/images/wix/Parkfest2015/Mark-Robert-Tom.jpg new file mode 100644 index 0000000..931c009 Binary files /dev/null and b/src/images/wix/Parkfest2015/Mark-Robert-Tom.jpg differ diff --git a/src/images/wix/Parkfest2015/Parkfest2015-2.jpg b/src/images/wix/Parkfest2015/Parkfest2015-2.jpg new file mode 100644 index 0000000..d234f49 Binary files /dev/null and b/src/images/wix/Parkfest2015/Parkfest2015-2.jpg differ diff --git a/src/images/wix/Parkfest2015/Parkfest2015.jpg b/src/images/wix/Parkfest2015/Parkfest2015.jpg new file mode 100644 index 0000000..5ba8fc9 Binary files /dev/null and b/src/images/wix/Parkfest2015/Parkfest2015.jpg differ diff --git a/src/images/wix/Parkfest2015/ParkfestPlannerJanelle.jpg b/src/images/wix/Parkfest2015/ParkfestPlannerJanelle.jpg new file mode 100644 index 0000000..09db260 Binary files /dev/null and b/src/images/wix/Parkfest2015/ParkfestPlannerJanelle.jpg differ diff --git a/src/images/wix/banners/AboutUsHeader.jpg b/src/images/wix/banners/AboutUsHeader.jpg new file mode 100644 index 0000000..08bdbf4 Binary files /dev/null and b/src/images/wix/banners/AboutUsHeader.jpg differ diff --git a/src/images/wix/banners/DSCN5404.jpg b/src/images/wix/banners/DSCN5404.jpg new file mode 100644 index 0000000..1af47e4 Binary files /dev/null and b/src/images/wix/banners/DSCN5404.jpg differ diff --git a/src/images/wix/banners/EventBanner-3.jpg b/src/images/wix/banners/EventBanner-3.jpg new file mode 100644 index 0000000..a9248fc Binary files /dev/null and b/src/images/wix/banners/EventBanner-3.jpg differ diff --git a/src/images/wix/banners/HistoryBanner.jpg b/src/images/wix/banners/HistoryBanner.jpg new file mode 100644 index 0000000..330a995 Binary files /dev/null and b/src/images/wix/banners/HistoryBanner.jpg differ diff --git a/src/images/wix/banners/MailboxBanner2.jpg b/src/images/wix/banners/MailboxBanner2.jpg new file mode 100644 index 0000000..90a3d8a Binary files /dev/null and b/src/images/wix/banners/MailboxBanner2.jpg differ diff --git a/src/images/wix/banners/NewsHeader.jpg b/src/images/wix/banners/NewsHeader.jpg new file mode 100644 index 0000000..db2a388 Binary files /dev/null and b/src/images/wix/banners/NewsHeader.jpg differ diff --git a/src/images/wix/banners/RitzBanner.jpg b/src/images/wix/banners/RitzBanner.jpg new file mode 100644 index 0000000..8343664 Binary files /dev/null and b/src/images/wix/banners/RitzBanner.jpg differ diff --git a/src/images/wix/banners/WaterMeter.jpg b/src/images/wix/banners/WaterMeter.jpg new file mode 100644 index 0000000..ab8a796 Binary files /dev/null and b/src/images/wix/banners/WaterMeter.jpg differ diff --git a/src/images/wix/contact/computer-table.jpg b/src/images/wix/contact/computer-table.jpg new file mode 100644 index 0000000..5adf295 Binary files /dev/null and b/src/images/wix/contact/computer-table.jpg differ diff --git a/src/images/wix/contact/mail-truck.jpg b/src/images/wix/contact/mail-truck.jpg new file mode 100644 index 0000000..64d3c4e Binary files /dev/null and b/src/images/wix/contact/mail-truck.jpg differ diff --git a/src/images/wix/events/BreweryTender.jpg b/src/images/wix/events/BreweryTender.jpg new file mode 100644 index 0000000..054625d Binary files /dev/null and b/src/images/wix/events/BreweryTender.jpg differ diff --git a/src/images/wix/events/scavenger-hunt/first.png b/src/images/wix/events/scavenger-hunt/first.png new file mode 100644 index 0000000..aa1b5ae Binary files /dev/null and b/src/images/wix/events/scavenger-hunt/first.png differ diff --git a/src/images/wix/events/scavenger-hunt/second.png b/src/images/wix/events/scavenger-hunt/second.png new file mode 100644 index 0000000..18f336f Binary files /dev/null and b/src/images/wix/events/scavenger-hunt/second.png differ diff --git a/src/images/wix/facebook.png b/src/images/wix/facebook.png new file mode 100644 index 0000000..c605f6a Binary files /dev/null and b/src/images/wix/facebook.png differ diff --git a/src/images/wix/home-page/gallery/HouseSpring.jpg b/src/images/wix/home-page/gallery/HouseSpring.jpg new file mode 100644 index 0000000..510751c Binary files /dev/null and b/src/images/wix/home-page/gallery/HouseSpring.jpg differ diff --git a/src/images/wix/home-page/gallery/HouseSummer.jpg b/src/images/wix/home-page/gallery/HouseSummer.jpg new file mode 100644 index 0000000..a4fb43e Binary files /dev/null and b/src/images/wix/home-page/gallery/HouseSummer.jpg differ diff --git a/src/images/wix/home-page/gallery/HouseWinter.jpg b/src/images/wix/home-page/gallery/HouseWinter.jpg new file mode 100644 index 0000000..a583ab2 Binary files /dev/null and b/src/images/wix/home-page/gallery/HouseWinter.jpg differ diff --git a/src/images/wix/home-page/gallery/RNAalbum1.jpg b/src/images/wix/home-page/gallery/RNAalbum1.jpg new file mode 100644 index 0000000..b152e9c Binary files /dev/null and b/src/images/wix/home-page/gallery/RNAalbum1.jpg differ diff --git a/src/images/wix/home-page/gallery/RNAalbum2.jpg b/src/images/wix/home-page/gallery/RNAalbum2.jpg new file mode 100644 index 0000000..7a9b712 Binary files /dev/null and b/src/images/wix/home-page/gallery/RNAalbum2.jpg differ diff --git a/src/images/wix/home-page/gallery/RNAalbum3.jpg b/src/images/wix/home-page/gallery/RNAalbum3.jpg new file mode 100644 index 0000000..e6433f7 Binary files /dev/null and b/src/images/wix/home-page/gallery/RNAalbum3.jpg differ diff --git a/src/images/wix/home-page/gallery/RNAalbum4.jpg b/src/images/wix/home-page/gallery/RNAalbum4.jpg new file mode 100644 index 0000000..bff0f14 Binary files /dev/null and b/src/images/wix/home-page/gallery/RNAalbum4.jpg differ diff --git a/src/images/wix/home-page/gallery/RNAalbum7.jpg b/src/images/wix/home-page/gallery/RNAalbum7.jpg new file mode 100644 index 0000000..f1a785e Binary files /dev/null and b/src/images/wix/home-page/gallery/RNAalbum7.jpg differ diff --git a/src/images/wix/home-page/gallery/RNAalbum8.jpg b/src/images/wix/home-page/gallery/RNAalbum8.jpg new file mode 100644 index 0000000..2df590a Binary files /dev/null and b/src/images/wix/home-page/gallery/RNAalbum8.jpg differ diff --git a/src/images/wix/home-page/news/Alert.jpg b/src/images/wix/home-page/news/Alert.jpg new file mode 100644 index 0000000..71c296e Binary files /dev/null and b/src/images/wix/home-page/news/Alert.jpg differ diff --git a/src/images/wix/home-page/news/NewRNAsign1.jpg b/src/images/wix/home-page/news/NewRNAsign1.jpg new file mode 100644 index 0000000..4cf8bc1 Binary files /dev/null and b/src/images/wix/home-page/news/NewRNAsign1.jpg differ diff --git a/src/images/wix/home-page/news/RNAshirt1.jpg b/src/images/wix/home-page/news/RNAshirt1.jpg new file mode 100644 index 0000000..3ea29ba Binary files /dev/null and b/src/images/wix/home-page/news/RNAshirt1.jpg differ diff --git a/src/images/wix/news/IMG_9115.jpg b/src/images/wix/news/IMG_9115.jpg new file mode 100644 index 0000000..2fbb1b7 Binary files /dev/null and b/src/images/wix/news/IMG_9115.jpg differ diff --git a/src/images/wix/news/RNAbrewery.jpg b/src/images/wix/news/RNAbrewery.jpg new file mode 100644 index 0000000..4076a8c Binary files /dev/null and b/src/images/wix/news/RNAbrewery.jpg differ diff --git a/src/images/wix/news/RNAbreweryGlass.jpg b/src/images/wix/news/RNAbreweryGlass.jpg new file mode 100644 index 0000000..c6116a8 Binary files /dev/null and b/src/images/wix/news/RNAbreweryGlass.jpg differ diff --git a/src/images/wix/news/RNAmerchGrid.jpg b/src/images/wix/news/RNAmerchGrid.jpg new file mode 100644 index 0000000..f89dcca Binary files /dev/null and b/src/images/wix/news/RNAmerchGrid.jpg differ diff --git a/src/images/wix/nextdoor.jpg b/src/images/wix/nextdoor.jpg new file mode 100644 index 0000000..97f1377 Binary files /dev/null and b/src/images/wix/nextdoor.jpg differ diff --git a/src/pages/_app.js b/src/pages/_app.js index 0f5ee06..00d69b7 100644 --- a/src/pages/_app.js +++ b/src/pages/_app.js @@ -9,7 +9,10 @@ function MyApp({ Component, pageProps }) { <Head> + <meta name="viewport" content="width=device-width"></meta> <link rel="icon" href={`${process.env.BASE_PATH || ''}/favicon.ico`} /> + <link rel="preconnect" href="https://fonts.gstatic.com" /> + <link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap" rel="stylesheet" /> </Head> <Layout> diff --git a/src/pages/about-us.js b/src/pages/about-us.js new file mode 100644 index 0000000..6314465 --- /dev/null +++ b/src/pages/about-us.js @@ -0,0 +1,114 @@ +import React from 'react' +import Link from 'next/link' +import Title from '@/components/title' +import BoardMembers from '@/components/board-members' +import Banner from '@/components/banner' +import Section from '@/components/section' +import ShadowImage from '@/components/shadow-image' + +import DSCN5404 from '@/images/wix/banners/DSCN5404.jpg' +import OldNew2 from '@/images/wix/OldNew-2.jpg' +import FullSizeRender from '@/images/wix/FullSizeRender.jpg' +import CampbellNow1 from '@/images/wix/CampbellNow1.jpg' +import EntrySign from '@/images/wix/EntrySign.jpg' + +export default function AboutUs() { + return <> + <Title>About Us + + +

About Us

+

Established 1994

+
+ +
+
+
Our Vision
+

Our association is committed to protecting and restoring the historical character of the homes and businesses in Renaissance. We strive to foster a closely connected community that is welcoming and inclusive by providing information and guidance to all residents.

+
+ +
+ +
+ +
+
What We Do
+

RNA board members volunteer their time and talents to build a stronger sense of community. We organize social events to allow residents to meet one another. We hold neighborhood meetings and use social media to share information that affects our residents. As needed, we serve as a liaison between the City of Tulsa and our residents.

+
+
+ +
+
+ +
+ +
+
Our Community
+

The Renaissance Neighborhood is nestled in the heart of Tulsa's historic midtown. It is defined by the area between 11th Street and 15th Street East, from Harvard to Lewis South. Flanked by "Cherry Street" (15th) and historic Route 66 (11th), this neighborhood enjoys a selection of restaurants, boutique shops, antique shops and funky vintage stores.

+

Our neighborhood boasts a variety of architectural styles including Craftsman Bungalow, Swiss Chalet, Colonial and Tudor Revival which are beautifully framed by mature trees. The majority of the homes were built between the 1920s and 40s with some newer builds from various decades sprinkled throughout the area.

+

Click here to take a Virtual Tour of homes...

+
+
+ +
+
+
A Little History Lesson
+

The Renaissance Neighborhood Association was established in 1994. An early accomplishment was successfully preventing the demolition of the Casa Loma Building at 11th and Columbia Ave. This building is now known as the historic Max Campbell Building and is listed on the National Register of Historic Places. It has been completely renovated and is open for business today.

+ Other accomplishments of the newly formed RNA include preventing an auto repair shop from expanding into the residential part of the neighborhood and working with the Tulsa Fire Department to locate a new station on 15th Street rather than in the middle of a residential area. RNA continues today to advocate to maintain the charm and integrity of the historic neighborhood. +

Long-time resident, Randy Stalcup designed the current logo which is used for signs that are posted at entries into our neighborhood and in many other forms including our new line of RNA merchandise available for purchase now!

+

Our neighborhood historian, Arena Mueller writes a blog about home histories. She has unearthed many secrets of the past by researching original house deeds and records. Go on a fascinating journey by reading The Renaissance Neighborhood History Project. Arena and her project was featured in the March 2019 issue of Tulsa People.

+
+ +
+ + +
+
+ +
+ +
+ +} + +/* +export async function getStaticProps() { + await cache( + // paths + [...data.members.map(member => `board-members/${member.image}`)], + // sizes + ) + + return { + props: { + members: data.members, + }, + } +} + +const cache = async (paths = []) => { + const sizes = [ + // https://nextjs.org/docs/basic-features/image-optimization#device-sizes + [640, 750, 828, 1080, 1200, 1920, 2048, 3840], + // https://nextjs.org/docs/basic-features/image-optimization#image-sizes + [16, 32, 48, 64, 96, 128, 256, 384], + ].flat().map(width => ({ width })) + + const sourceImagesDir = join(process.cwd(), 'src/images') + const targetImagesDir = join(process.cwd(), 'public/images/_loader') + + const promises = sizes.map(async ({ width, quality = 'auto' }) => { + const sizeKey = `f_auto,c_limit,w_${width},q_${quality}` + return paths.map(async (path) => { + const source = join(sourceImagesDir, path) + const target = join(targetImagesDir, sizeKey, path) + + // TODO: resize rather than copy + await fs.mkdir(dirname(target), { recursive: true }) + return fs.stat(target).catch(() => fs.copyFile(source, target)) + }) + }) + + await Promise.all(promises.flat()) +} +*/ diff --git a/src/pages/contact.js b/src/pages/contact.js new file mode 100644 index 0000000..ffe2751 --- /dev/null +++ b/src/pages/contact.js @@ -0,0 +1,129 @@ +import React from 'react' +import Title from '@/components/title' +import Banner from '@/components/banner' +import MailboxBanner2 from '@/images/wix/banners/MailboxBanner2.jpg' + +import ComputerTable from '@/images/wix/contact/computer-table.jpg' +import MailTruck from '@/images/wix/contact/mail-truck.jpg' + +import RNAhouse35 from '@/images/wix/Houses/RNAhouse35.jpg' +import RNAhouse36 from '@/images/wix/Houses/RNAhouse36.jpg' +import RNAhouse37 from '@/images/wix/Houses/RNAhouse37.jpg' +import RNAhouse38 from '@/images/wix/Houses/RNAhouse38.jpg' +import RNAhouse39 from '@/images/wix/Houses/RNAhouse39.jpg' +import NextdoorImage from '@/images/wix/nextdoor.jpg' +import FacebookImage from '@/images/wix/facebook.png' +import AlertImage from '@/images/wix/home-page/news/Alert.jpg' + +import styles from '@/styles/contact.module.css' + +function Tile({ src, children }) { + return ( +
+
+ +
+
+ {children} +
+
+ ) +} + +function IconTile({ href, backgroundColor, backgroundImage, Image, children, color = 'black' }) { + return ( + +
+
+
+ {children} +
+
+
+ ) +} + +const MailIcon = () => ( + +) + +const CellPhoneIcon = () => ( + + + + + + + + +) + +const FacebookIcon = () => +const NextdoorIcon = () => + +export default function Contact() { + + return <> + Contact + + +

Contact

+

We want to hear from you
Choose the best method for you below

+
+ +
+ + Send a Message + + + Mail a Letter + +
+ Renaissance Neighborhood Association
+ P.O. Box 4362
+ Tulsa, OK 74159 +
+
+
+ +
+
+

Click to Connect

+
+ +
+ + renaissance.neighbors@gmail.com + + + Nextdoor + + + Find us on Facebook + +
+
+ +
+
+

Alert Neighbors Contact

+
Neighborhood Coordinator Harold (Skip) Morgan
+
+ +
+ + haroldlmorgan@gmail.com + + + 918-230-7090 + + + Find him on Facebook + +
+
+ +} diff --git a/src/pages/dues.js b/src/pages/dues.js new file mode 100644 index 0000000..92cd842 --- /dev/null +++ b/src/pages/dues.js @@ -0,0 +1,128 @@ +import React from 'react' +import Link from 'next/link' +import Title from '@/components/title' +import Banner from '@/components/banner' +import Section from '@/components/section' +import RitzBanner from '@/images/wix/banners/RitzBanner.jpg' +import styles from '@/styles/dues.module.css' + +const PayPalSingle = () => ( +
+ + + + + + + + + + + + + +
+) + +const PayPalCouples = () => ( +
+ + + + + + + + + + + + + +
+) + +const PayPalBusiness = () => ( +
+ + + + + + + + + + + + + +
+) + +export default function Dues() { + + return <> + Dues + + +

Membership Dues

+

Your contribution is appreciated!

+
+ +
+
+

Membership dues are voluntary but are essential to the work RNA does on behalf of all residents. Dues cover one year of membership beginning at the spring RNA meeting. Members can vote in board elections and other association decisions requiring a vote.

+
+
+ +
+
+
Rates
+
    +
  • Couples Rate $15/year for two adults (two votes) in same residence
  • +
  • Single Rate $10/year for one adult (one vote) at a residence
  • +
  • Business Rate $25/year for one business (one vote) located within neighborhood
  • +
+

+ + + + + + + + +

+
+
+
Ways to Pay
+
    +
  • In Person Bring your cash or check to any RNA meeting or event.
  • +
  • By Mail Send a check to: Renaissance Neighborhood Association, P.O. Box 4362, Tulsa, OK 74159
  • +
  • Online Send a secure electronic payment by clicking the applicable "Buy Now" button.
  • +
+
+
+
Online Payments
+
+

Couples Rate

+ + +

Single Rate

+ + +

Business Rate

+ +
+
+
+ +
+
+
Thank You For Your Contribution
+

Renaissance Neighborhood Association (RNA) is a not-for-profit organization. This means that all money earned or donated is used for pursuing our objectives for the neighborhood and for keeping the association running. RNA board members are strictly volunteer members only and receive no compensation for their time and efforts. If you would like to see an expense report, you may send an email request to Renaissance.Neighbors@gmail.com or attend a general meeting.

+
+
+ +} diff --git a/src/pages/events.js b/src/pages/events.js new file mode 100644 index 0000000..4e295ce --- /dev/null +++ b/src/pages/events.js @@ -0,0 +1,175 @@ +import React from 'react' +import Link from 'next/link' + +import Title from '@/components/title' +import Banner from '@/components/banner' +import Section from '@/components/section' +import ShadowImage from '@/components/shadow-image' +import Gallery from '@/components/gallery' + +import EventBanner3 from '@/images/wix/banners/EventBanner-3.jpg' +import BreweryTender from '@/images/wix/events/BreweryTender.jpg' +import YardSale from '@/images/wix/8ddcb11aa53c45ce954624a4aea25994.jpg' +import CampbellNow1 from '@/images/wix/CampbellNow1.jpg' +import First from '@/images/wix/events/scavenger-hunt/first.png' +import Second from '@/images/wix/events/scavenger-hunt/second.png' +import styles from '@/styles/events.module.css' + +const CHILIFEST_IMAGES = [ + require('@/images/wix/ChiliFest/BannerOnTable.jpg'), + require('@/images/wix/ChiliFest/BoyLaughing2013.jpg'), + require('@/images/wix/ChiliFest/ChiliAwards2012.jpg'), + require('@/images/wix/ChiliFest/ChiliGroup2012-1.jpg'), + require('@/images/wix/ChiliFest/ChiliGroup2012-2.jpg'), + require('@/images/wix/ChiliFest/ChiliGroup2012-3.jpg'), + require('@/images/wix/ChiliFest/ChiliGroup2016.jpg'), + require('@/images/wix/ChiliFest/ChiliGroup2018.jpg'), + require('@/images/wix/ChiliFest/ChiliTable2012.jpg'), + require('@/images/wix/ChiliFest/ChiliTable2018.jpg'), + require('@/images/wix/ChiliFest/Cookies.jpg'), + require('@/images/wix/ChiliFest/GirlwithCaterpillar2013.jpg'), + require('@/images/wix/ChiliFest/GirlwithLadel2013.jpg'), + require('@/images/wix/ChiliFest/GlennLade2013l.jpg'), + require('@/images/wix/ChiliFest/GroupSceneCropped2017.jpg'), + require('@/images/wix/ChiliFest/LookingInPot2013.jpg'), + require('@/images/wix/ChiliFest/Trophies2013.jpg'), + require('@/images/wix/ChiliFest/VoteBox2017.jpg'), + require('@/images/wix/ChiliFest/Winners2013.jpg'), + require('@/images/wix/ChiliFest/Winners2018.jpg'), +] + +const PARKFEST_IMAGES = [ + require('@/images/wix/Parkfest2015/BestSideDishWinnerCherie.jpg'), + require('@/images/wix/Parkfest2015/BouncyHouse.jpg'), + require('@/images/wix/Parkfest2015/Fireman.jpg'), + require('@/images/wix/Parkfest2015/Firemen.jpg'), + require('@/images/wix/Parkfest2015/Firetruck.jpg'), + require('@/images/wix/Parkfest2015/FiretruckKids.jpg'), + require('@/images/wix/Parkfest2015/GuessHowManySeeds.jpg'), + require('@/images/wix/Parkfest2015/HotDogGrillerBucky.jpg'), + require('@/images/wix/Parkfest2015/LeeAndKendra.jpg'), + require('@/images/wix/Parkfest2015/LeeWinnerSeedCount.jpg'), + require('@/images/wix/Parkfest2015/Mark-Robert-Tom.jpg'), + require('@/images/wix/Parkfest2015/Parkfest2015-2.jpg'), + require('@/images/wix/Parkfest2015/Parkfest2015.jpg'), + require('@/images/wix/Parkfest2015/ParkfestPlannerJanelle.jpg'), +] + +export default function Events() { + + return <> + Events + + +

Events

+

Come Join the Fun

+
+ +
+
+

Scavenger Hunt

+

Bored with staying in the house? We've got the perfect game for you! We created a self-guided scavenger hunt for you to find special spots within our neighborhood. While having fun, you will hone your observation skills to see things you've never noticed before!

+

There are two ways to play:
Offline or Online

+
+
+
+

Play Offline

+

Download and then print a copy of the score sheet and carry this it with you as you explore. Check off each item as you find it. If you choose, you can take a photo of yourself with each item and post your photos on our FB page to show off your skills!

+
+ +
+
+
+

Play Online

+

Use your mobile phone to access a digital version of the score sheet to use as you hunt. Upload a photo of yourself with each item you find. When you finish, your score will appear on a digital leaderboard along with others playing the game. You will need a free Google account to play on-line.

+
+ +
+
+ + + +
+
+ +
+ +
+
โ€œSecond Fridayโ€ Meet-n-Greet Canceled for Now
+

Due to the measures being taken nationally to quell the spread of the COVID-19 virus, this event and all other RNA events are canceled until further notice. The brewery is still available for curbside pickup of your favorite brew. Contact them for details.

+

In normal times, every second Friday of each month, the Renaissance Brewing Company hosts a social event for residents of our neighborhood. It is a good chance to mingle with other neighbors and have some fun! Of course, your friends and family are also welcome.

+

Renaissance Brewery is located at 12th and Lewis Ave. Be sure to follow them on Facebook.

+
+
+ +
+
+ +
+ +
+
RNA General Meeting TBA
+

Our spring meeting has been canceled for now due to the current national effort to prevent the spread of the COVID-19 virus. We will reschedule when it is safe to do so.

+

Renaissance Neighborhood Association holds a meeting at least twice a year, usually in the spring and fall. The meeting is open to all residents and business owners within the Renaissance Neighborhood.

+

In normal times, this is an excellent chance to meet other people in the neighborhood and get informed about issues that affect you. We look forward to seeing you when we can safely meet again. Until then, stay healthy neighbors!

+
+
+ +
+
+ +
+ +
+
Neighborhood Yard Sale TBA
+

The RNA Yard Sale has been canceled for now due to the current national effort to prevent the spread of the COVID-19 virus. We will reschedule when the medical experts tell the public it is safe to gather in groups again. RNA urges neighbors to practice safe social distancing by not having a sale on your own at this time.

+

When we are able to reschedule, here's how it will work: There is no cost for you to participate! Just gather your treasures and display the in your yard or garage. RNA will advertise in the Tulsa World, Craigslist, FB Marketplace and other online sites. RNA will also put out several big signs around key locations of our neighborhood but you will need to put out signs to direct traffic to your specific location. There will be a sign-up sheet and by signing-up, your address will be placed on the sale map that will be accessible to potential buyers.

+

We look forward to having the sale when life returns to normal. Until then, stay safe and healthy!

+
+
+ +
+
+
Chili Challenge Over the Years
+

The annual Chili Challenge has been a fall tradition since 2009. Residents bring their best chili recipes to compete in three categories: Most Classic, Most Unique and Most Spicy. Watch the EVENTS page for this year's challenge date!

+ +
+
+ +
+
+
Parkfest 2015
+

The annual Parkfest was a spring staple for many years. In 2015, it was held at Gary Park at 12th and Gary Place. Janelle Cordray planned a really fun event including games like "Guess How Many Seeds in the Jar" and a "Best Side Dish" contest. The winners won prizes that were donated by Reasor's Grocery Store and other businesses. Hot dogs and soft drinks were provided by RNA. The Tulsa Fire Department came out to let everyone play in their fire truck. There was even a bouncy-house for the kids. A fun time was had by all!

+ +
+
+ +} diff --git a/src/pages/gallery-virtual-home-tour.js b/src/pages/gallery-virtual-home-tour.js new file mode 100644 index 0000000..d4e6dd2 --- /dev/null +++ b/src/pages/gallery-virtual-home-tour.js @@ -0,0 +1,84 @@ +import React from 'react' +import Title from '@/components/title' +import Banner from '@/components/banner' +import BannerImage from '@/images/wix/banners/AboutUsHeader.jpg' +import Gallery from '@/components/gallery' +import Divider from '@/components/divider' +import Section from '@/components/section' + +const IMAGES = [ + require('@/images/wix/Houses/RNAhome1.jpg'), + require('@/images/wix/Houses/RNAhome2.jpg'), + require('@/images/wix/Houses/RNAhome3.jpg'), + require('@/images/wix/Houses/RNAhome4.jpg'), + require('@/images/wix/Houses/RNAhome5.jpg'), + require('@/images/wix/Houses/RNAhome6.jpg'), + require('@/images/wix/Houses/RNAhouse7.jpg'), + require('@/images/wix/Houses/RNAhouse8.jpg'), + require('@/images/wix/Houses/RNAhouse9.jpg'), + require('@/images/wix/Houses/RNAhouse10.jpg'), + require('@/images/wix/Houses/RNAhouse11.jpg'), + require('@/images/wix/Houses/RNAhouse12.jpg'), + require('@/images/wix/Houses/RNAhouse13.jpg'), + require('@/images/wix/Houses/RNAhouse14.jpg'), + require('@/images/wix/Houses/RNAhouse15.jpg'), + require('@/images/wix/Houses/RNAhouse16.jpg'), + require('@/images/wix/Houses/RNAhouse17.jpg'), + require('@/images/wix/Houses/RNAhouse18.jpg'), + require('@/images/wix/Houses/RNAhouse19.jpg'), + require('@/images/wix/Houses/RNAhouse20.jpg'), + require('@/images/wix/Houses/RNAhouse21.jpg'), + require('@/images/wix/Houses/RNAhouse22.jpg'), + require('@/images/wix/Houses/RNAhouse23.jpg'), + require('@/images/wix/Houses/RNAhouse24.jpg'), + require('@/images/wix/Houses/RNAhouse25.jpg'), + require('@/images/wix/Houses/RnaHouse26.jpg'), + require('@/images/wix/Houses/RnaHouse27.jpg'), + require('@/images/wix/Houses/RnaHouse28.jpg'), + require('@/images/wix/Houses/RNAhouse29.jpg'), + require('@/images/wix/Houses/RNAhouse30.jpg'), + require('@/images/wix/Houses/RNAhouse31.jpg'), + require('@/images/wix/Houses/RNAhouse32.jpg'), + require('@/images/wix/Houses/RNAhouse33.jpg'), + require('@/images/wix/Houses/RNAhouse34.jpg'), + require('@/images/wix/Houses/RNAhouse35.jpg'), + require('@/images/wix/Houses/RNAhouse36.jpg'), + require('@/images/wix/Houses/RNAhouse37.jpg'), + require('@/images/wix/Houses/RNAhouse38.jpg'), + require('@/images/wix/Houses/RNAhouse39.jpg'), + require('@/images/wix/Houses/RNAhouse40.jpg'), + require('@/images/wix/Houses/RNAhouse41.jpg'), + require('@/images/wix/Houses/RNAhouse42.jpg'), + require('@/images/wix/Houses/RNAhouse43.jpg'), + require('@/images/wix/Houses/RNAhouse44.jpg'), +] + +export default function VirtualHomeTour() { + return <> + Virtual Home Tour + + +

Virtual Home Tour

+

Fall in love with our neighborhood

+
+ +
+
+

+ The majority of the homes in Renaissance were built between 1920-1940. + Examples of styles from other decades are sprinkled throughout. + Various architectural styles can be found including Tudor Revival, Craftsman Bungalow, Swiss Chalet and Colonial. +

+ + + + +
+
+ +} diff --git a/src/pages/history.js b/src/pages/history.js new file mode 100644 index 0000000..9335d5b --- /dev/null +++ b/src/pages/history.js @@ -0,0 +1,28 @@ +import React from 'react' +import Title from '@/components/title' +import Banner from '@/components/banner' +import Divider from '@/components/divider' +import BannerImage from '@/images/wix/banners/HistoryBanner.jpg' +import Section from '@/components/section' + +export default function History() { + return <> + History + + +

Home Histories

+

Your home has a history of its own

+
+ +
+
+

+ Did you know that Renaissance has its very own historian? Meet Arena Mueller, resident and RNA board member! She was featured in the March 2019 issue of Tulsa People for her research work. In her spare time, Arena digs into house deeds and records to unearth fascinating stories within a house's history. Scroll through her blog below to take a journey into Tulsaโ€™s past. Each house has a story to tell. +

+ +
+
+ + + +} diff --git a/src/pages/index.js b/src/pages/index.js index cbac0f7..10af2a0 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -1,62 +1,131 @@ -import styles from '@/styles/Home.module.css' +import React from 'react' import Title from '@/components/title' +import Link from 'next/link' +import styles from '@/styles/home.module.css' + +import { Gallery, GalleryText, GalleryButtons, GalleryButton } from '@/components/gallery' +import ShadowImage from '@/components/shadow-image' + +import RNAalbum7 from '@/images/wix/home-page/gallery/RNAalbum7.jpg'; +const IMAGES = [ + require('@/images/wix/home-page/gallery/HouseSpring.jpg'), + require('@/images/wix/home-page/gallery/HouseSummer.jpg'), + require('@/images/wix/home-page/gallery/HouseWinter.jpg'), + require('@/images/wix/home-page/gallery/RNAalbum1.jpg'), + require('@/images/wix/home-page/gallery/RNAalbum2.jpg'), + require('@/images/wix/home-page/gallery/RNAalbum3.jpg'), + require('@/images/wix/home-page/gallery/RNAalbum4.jpg'), + require('@/images/wix/home-page/gallery/RNAalbum7.jpg'), + require('@/images/wix/home-page/gallery/RNAalbum8.jpg'), +] + +import RNAshirt1 from '@/images/wix/home-page/news/RNAshirt1.jpg' +import Alert from '@/images/wix/home-page/news/Alert.jpg' +import NewRNAsign1 from '@/images/wix/home-page/news/NewRNAsign1.jpg' + + export default function Home() { return <> Home -
-
-

- Welcome to Next.js! -

- -

- Get started by editing{' '} - pages/index.js -

- -
- -

Documentation →

-

Find in-depth information about Next.js features and API.

-
- - -

Learn →

-

Learn about Next.js in an interactive course with quizzes!

-
- - -

Examples →

-

Discover and deploy boilerplate example Next.js projects.

-
- - -

Deploy →

-

- Instantly deploy your Next.js site to a public URL with Vercel. -

-
+ + + Bringing the best of our past into our future + + + + + + +
+

Upcoming Events

+
+
+
Scavenger Hunt
+

+ Self-Guided Scavenger Hunt
+ Find Neighborhood Treasures
+ Play Whenever You Want! +

+ +
+
+
TBA
+

+ RNA General Meeting
+ Campbell Hotel Ballroom
+ 11th & Columbia Ave.
+ Canceled Until Further Notice +

+ +
+
+
TBA
+

+ Neighborhood Yard Sale
+ Your Front Yard
+ Canceled Until Further Notice +

+ +
+
+
+ +
+

Whatโ€™s News?

+
+
+ +
+
RNA Merchandise
+
+

Finally! Now you can show your neighborhood pride by sporting our very own Renaissance logo merchandise. Many shirt designs and colors are available as well as other items such as coffee mugs and tote bags. Get yours today!

+ +
-
- - +
+ +
+
Alert Neighbors
+
+

Concerned about crime in the neighborhood? Take action! We have an Alert Neighbors program for our neighborhood but it needs your participation. Each block needs a block captain to coordinate contact information for neighbors on the block.

+ +
+
+
+ +
+
New Entry Signs
+
+

Each entry point to Renaissance now has a new logo sign. The old signs were faded and were missing from several places. Thank you to all who donated to help RNA cover the cost! Logo design by long-time resident Randy Stalcup.

+ +
+
+
+ + + + We need your support!
send your annual dues today +
+ + + +
} diff --git a/src/pages/news.js b/src/pages/news.js new file mode 100644 index 0000000..8693963 --- /dev/null +++ b/src/pages/news.js @@ -0,0 +1,79 @@ +import React from 'react' +import Link from 'next/link' +import Title from '@/components/title' +import Banner from '@/components/banner' +import Section from '@/components/section' +import ShadowImage from '@/components/shadow-image' + +import WaterMeter from '@/images/wix/banners/WaterMeter.jpg' +import RNAmerchGrid from '@/images/wix/news/RNAmerchGrid.jpg' +import Alert from '@/images/wix/home-page/news/Alert.jpg' +import IMG_9115 from '@/images/wix/news/IMG_9115.jpg' +import RNAbrewery from '@/images/wix/news/RNAbrewery.jpg' +import RNAbreweryGlass from '@/images/wix/news/RNAbreweryGlass.jpg' + +export default function News() { + return <> + News + + +

Whatโ€™s News

+

Stay in the Loop

+
+ +
+
+ +
+ +
+
RNA Merchandise Available for Sale
+

Tell the world how proud you are of your neighborhood!

+

Get your Renaissance logo swag today!

+

A large selection of items are available including shirts, hoodies, coffee mugs, tote bags, stickers and more. Choose your shirt style from among male, female and child sizes. Various colors are available. A portion of the sale price goes to support RNA. Logo designed by long-time resident Randy Stalcup.

+

NOTE: Sizes run small. Be sure to check the size chart for measurements.

+
+
+ +
+
+ +
+ +
+
New Entry Signs Installed
+

You may have noticed that most midtown neighborhoods have entry signs with their neighborhood's logo proudly displayed at the back of each stop sign around the perimeter. We were missing about half of the signs we needed to cover each entry. From old RNA documents, it seems that the original placement of signs in the 1990s did not include enough to cover every entry point. The exact reason is unknown but probably had to do with the cost of buying so many signs.

+

The City of Tulsa requires these signs to conform to their specifications. One specification requires the signs to be made of solid aluminum of a certain thickness. Prices for aluminum have increased the last few years especially. The total cost for enough signs to cover each entry was originally too expensive for RNA's treasury funds. RNA asked residents to donate extra funds and we raised enough to help cover the cost without cleaning out RNA's treasury. Thank you to all residents who paid dues and/or contributed extra money! The new signs were promptly installed by the City's Traffic Operations department on July 7, 2020.

+

The RNA logo was designed by long-time resident Randy Stalcup. His design won a contest RNA ran in the 1990s and his prize was a whopping $25! His design has endured the years to become a highly recognizable symbol for the Renaissance neighborhood.

+
+
+ +
+
+ +
+ +
+
Alert Neighbors Program in Action
+

Alert Neighbors is a free program provided by Tulsa Crimestoppers to engage neighborhoods in discussions about crime and public safety. The program instills effective collaboration and communication among neighbors to prevent crime increase a sense of security.

+

For the program to be most effective, each block in the neighborhood needs a volunteer block captain to receive training and coordinate a list of residents on their block to share contact information enabling residents know how to contact their direct neighbors in case they see criminal activity in progress.

+

โ€‹To become a block captain or for more information contact our resident coordinator, Harold (Skip) Morgan.

+
+
+ +
+
+ + +
+ +
+
Renaissance Brewing Company Hosts โ€œSecond Fridayโ€ Neighborhood Meet-N-Greet Event
+

We not only have the best neighborhood in midtown, we also have our own micro-brewery! The Renaissance Brewing Company at 12th and Lewis has a tap room open to the public as of January 2018. It is owned by Glenn Hall, a long-time RNA board member. He worked with architect Tom Neal, also a long-time board member, to ensure the design of the building fit in with the historic aesthetics of our area.

+

Since the Campbell Hotel ended its "Second Friday" event a while ago, the brewery has stepped up to take its place!

+

Second Friday is an social event to give our neighbors a place to meet and get to know each other. It's scheduled for the second Friday of each month. It starts at 4pm and goes until 7pm. Come when you want, stay as long as you want!

+

Be sure to follow the brewery on Facebook.

+
+
+ +} diff --git a/src/styles/Home.module.css b/src/styles/Home.module.css deleted file mode 100644 index bf1beb3..0000000 --- a/src/styles/Home.module.css +++ /dev/null @@ -1,122 +0,0 @@ -/* .container { - min-height: 100vh; - padding: 0 0.5rem; - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; -} */ - -.main { - padding: 5rem 0; - flex: 1; - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; -} - -.footer { - width: 100%; - height: 100px; - border-top: 1px solid #eaeaea; - display: flex; - justify-content: center; - align-items: center; -} - -.footer img { - margin-left: 0.5rem; -} - -.footer a { - display: flex; - justify-content: center; - align-items: center; -} - -.title a { - color: #0070f3; - text-decoration: none; -} - -.title a:hover, -.title a:focus, -.title a:active { - text-decoration: underline; -} - -.title { - margin: 0; - line-height: 1.15; - font-size: 4rem; -} - -.title, -.description { - text-align: center; -} - -.description { - line-height: 1.5; - font-size: 1.5rem; -} - -.code { - background: #fafafa; - border-radius: 5px; - padding: 0.75rem; - font-size: 1.1rem; - font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, - Bitstream Vera Sans Mono, Courier New, monospace; -} - -.grid { - display: flex; - align-items: center; - justify-content: center; - flex-wrap: wrap; - max-width: 800px; - margin-top: 3rem; -} - -.card { - margin: 1rem; - flex-basis: 45%; - padding: 1.5rem; - text-align: left; - color: inherit; - text-decoration: none; - border: 1px solid #eaeaea; - border-radius: 10px; - transition: color 0.15s ease, border-color 0.15s ease; -} - -.card:hover, -.card:focus, -.card:active { - color: #0070f3; - border-color: #0070f3; -} - -.card h3 { - margin: 0 0 1rem 0; - font-size: 1.5rem; -} - -.card p { - margin: 0; - font-size: 1.25rem; - line-height: 1.5; -} - -.logo { - height: 1em; -} - -@media (max-width: 600px) { - .grid { - width: 100%; - flex-direction: column; - } -} diff --git a/src/styles/banner.module.css b/src/styles/banner.module.css new file mode 100644 index 0000000..6e43ca5 --- /dev/null +++ b/src/styles/banner.module.css @@ -0,0 +1,41 @@ +.root { + @apply relative; + @apply flex; + @apply flex-col; + @apply justify-center; + @apply bg-white; + + height: calc((100vw - 0px) * 0.4); + min-height: 200px; + max-height: 362px; +} + +.background { + @apply absolute; + @apply inset-0; + @apply bg-center; + @apply bg-cover; + + opacity: 0.9; +} + +.content { + @apply relative; + @apply text-center; + @apply text-white; + @apply font-bold; + + font-size: 18px; + text-shadow:rgba(0, 0, 0, 0.4) 0px 4px 5px; +} + +.content h2 { + @apply uppercase; + @apply font-serif; + @apply leading-none; + @apply mt-0; + @apply mb-4; + + font-size: 40px; + letter-spacing: 0.2em; +} diff --git a/src/styles/board-members.module.css b/src/styles/board-members.module.css new file mode 100644 index 0000000..20355f4 --- /dev/null +++ b/src/styles/board-members.module.css @@ -0,0 +1,42 @@ +.header { + @apply text-wixColor24; + @apply font-serif; + @apply my-8; + + font-size: 35px; + text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px; +} +.header span { + @apply relative; + @apply border-wixColor13; + @apply px-2; + @apply pb-3; + + border-bottom-width: 3px; +} +.header span::after { + @apply border-wixColor13; + @apply border-b; + + content: ""; + position: absolute; + width: 100%; + bottom: -7px; + left: 0; +} + +.name { + @apply font-serif; + @apply italic; + + font-size: 20px; + text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px +} + +.title { + font-size: 12px; +} + +.pastTitle { + font-size: 12px; +} diff --git a/src/styles/contact.module.css b/src/styles/contact.module.css new file mode 100644 index 0000000..6d68ab5 --- /dev/null +++ b/src/styles/contact.module.css @@ -0,0 +1,33 @@ +.tile { + @apply flex-1; + @apply relative; + + width: 100%; + min-height: 45vw; +} + +@screen md { + .tile { + width: 45vw; + min-height: 45vw; + } +} + +.iconTile { + @apply relative; + @apply block; + @apply bg-center; + @apply bg-no-repeat; + @apply bg-cover; + + width: 100%; + min-height: 30vw; + /* min-height: 10rem; */ +} + +@screen sm { + .iconTile { + width: 30vw; + height: 30vw; + } +} diff --git a/src/styles/dues.module.css b/src/styles/dues.module.css new file mode 100644 index 0000000..84f69b7 --- /dev/null +++ b/src/styles/dues.module.css @@ -0,0 +1,25 @@ +.rates > div { + @apply pt-0; +} + +.rates h5 { + @apply text-center; + @apply text-wixColor15; +} + +.rates ul { + @apply list-disc; +} + +.rates li span { + @apply font-bold; + @apply uppercase; +} + +.paypalButtons { + @apply text-center; +} + +.paypalButtons p { + @apply font-bold; +} diff --git a/src/styles/events.module.css b/src/styles/events.module.css new file mode 100644 index 0000000..643097c --- /dev/null +++ b/src/styles/events.module.css @@ -0,0 +1,46 @@ +.scavengerHunt { + @apply text-center; +} + +@screen sm { + .scavengerHunt { + @apply flex; + } +} + +.scavengerHunt p { + @apply my-4; +} + +.scavengerHunt a { + @apply underline; +} + +.scavengerHunt h2 { + @apply font-bold; + @apply leading-none; + @apply uppercase; + + font-size: 30px; + letter-spacing: 0.1em; +} + +.scavengerHunt h2 a { + @apply block; + @apply text-white; + + text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px; +} + +.scavengerHunt h2 span { + @apply block; + @apply text-white; +} + +.button { + @apply bg-wixColor25; + @apply text-white; + @apply no-underline !important; + @apply p-2; + @apply inline-block; +} diff --git a/src/styles/gallery.module.css b/src/styles/gallery.module.css new file mode 100644 index 0000000..eb1dfe8 --- /dev/null +++ b/src/styles/gallery.module.css @@ -0,0 +1,83 @@ +.gallery { + @apply relative; + @apply w-full; + @apply h-full; +} + +.galleryImages { + @apply absolute; + @apply inset-0; +} + +.galleryImage { + @apply absolute; + @apply inset-0; + @apply bg-black; + @apply bg-cover; + @apply bg-center; + @apply bg-no-repeat; + @apply opacity-0; + + transition: opacity 1s ease 0s; +} + +.galleryImageVisible { + @apply opacity-100; +} + +.galleryOverlay { + @apply text-center; + @apply text-white; + @apply uppercase; + @apply absolute; + + bottom: 0; + left: 0; + width: 100%; +} + +.galleryText { + @apply font-bold; + @apply leading-none; + + font-size: 16px; + text-shadow: rgba(0, 0, 0, 0.498039) -1px -1px 0px, + rgba(0, 0, 0, 0.498039) -1px 1px 0px, + rgba(0, 0, 0, 0.498039) 1px 1px 0px, + rgba(0, 0, 0, 0.498039) 1px -1px 0px +} + +@screen sm { + .galleryText { + font-size: 5vw; + } +} + +.galleryText > span { + @apply whitespace-nowrap; +} + +.galleryButtons { + @apply flex; + @apply justify-center; + @apply mt-8; + @apply mb-12; +} + +.galleryButton { + @apply block; + @apply flex-none; + @apply px-12; + @apply py-2; + + @apply bg-wixColor25; + --tw-bg-opacity: 0.8; + + font-size: 16px; + transition: background-color 0.4s ease 0s; +} + +.galleryButton:hover { + @apply bg-wixColor14; + --tw-bg-opacity: 0.8; +} diff --git a/src/styles/globals.css b/src/styles/globals.css index b5c61c9..d16bb57 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -1,3 +1,11 @@ @tailwind base; @tailwind components; @tailwind utilities; + +html, body, #__next { + @apply min-h-full; + @apply h-full; + @apply m-0; + + min-width: 300px; +} diff --git a/src/styles/home.module.css b/src/styles/home.module.css new file mode 100644 index 0000000..33ea6e4 --- /dev/null +++ b/src/styles/home.module.css @@ -0,0 +1,176 @@ +.upcomingEventsSection { + @apply text-center; +} + +.upcomingEventsSection > * { + @apply my-8; +} + +.upcomingEventsSection h2 { + @apply text-wixColor24; + @apply uppercase; + @apply font-bold; + + font-size: 35px; + text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px; + letter-spacing: 0.2em; +} + +.upcomingEventsSection h5 a { + @apply underline; +} +@screen sm { + .upcomingEvents { + @apply flex; + @apply justify-center; + @apply justify-items-center; + } +} + +.upcomingEvent { + @apply flex; + @apply flex-col; + @apply my-8; + @apply px-8; + + @apply border-wixColor31; +} +@screen sm { + .upcomingEvent { + @apply border-l; + } +} + +.upcomingEvent:first-child { + @apply border-0; +} + +.upcomingEvent h5 { + @apply text-wixColor24; + @apply font-bold; + @apply leading-none; + + font-size: 26px; + letter-spacing: 0.2em; +} + +.upcomingEvent p { + @apply flex-1; + @apply my-4; +} + +.upcomingEvent div a { + @apply text-wixColor33; + @apply uppercase; + + transition: color 0.4s ease 0s; + font-size: 12px; +} +.upcomingEvent div a:hover { + @apply text-wixColor25; +} + +.newsSection { + @apply overflow-x-hidden; + @apply text-center; +} +.newsSection > * { + @apply my-8; +} +.newsSection h2 { + @apply text-wixColor24; + @apply uppercase; + @apply font-bold; + + font-size: 35px; + text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px; + letter-spacing: 0.2em; +} + +.news { + @apply container; + @apply text-center; + @apply relative; + @apply mx-auto; + @apply px-4; +} +.news > div { + @apply my-8; + @apply flex; + @apply flex-col; +} +@screen md { + .news { + @apply flex; + @apply space-x-4; + } + .news > div { + @apply flex-1; + } +} + +.news h6 { + @apply text-wixColor25; + @apply font-bold; + @apply leading-none; + @apply uppercase; + @apply font-serif; + + font-size: 18px; + letter-spacing: 0.2em; +} + +.newsContent { + @apply p-8; + @apply flex-1; + @apply flex; + @apply flex-col; + + @apply bg-wixColor31; + --tw-bg-opacity: 0.19; +} + +.newsContent > hr { + @apply my-8; + @apply w-16; + @apply border; + @apply mx-auto; + + @apply border-wixColor15; +} + +.newsContent > p { + @apply flex-1; +} + +.newsContent div { + @apply mt-8; +} + +.newsContent div a { + @apply text-wixColor33; + @apply uppercase; + + transition: color 0.4s ease 0s; + font-size: 12px; +} + +.newsContent div a:hover { + @apply text-wixColor25; +} + +.newsImage { + height: 192px; +} + +.newsImage img { + @apply object-cover; + @apply h-full; + @apply w-full; +} + +@screen sm { + .newsImage { + height: 24vw; + } +} diff --git a/src/styles/layout.module.css b/src/styles/layout.module.css new file mode 100644 index 0000000..7ce69de --- /dev/null +++ b/src/styles/layout.module.css @@ -0,0 +1,38 @@ +/* https://github.com/philipwalton/solved-by-flexbox/blob/master/assets/css/components/site.css */ + +.layout { + @apply flex; + @apply flex-col; + @apply h-full; +} + +.header { + @apply flex-none; + @apply mx-auto; + @apply container; +} + +@screen lg { + .header { + } +} + +.content { + @apply flex-1; + @apply p-0; +} +.content::after { + content: none; +} + +.content::after { + content: '\00a0'; /*   */ + display: block; + /* margin-top: var(--space); */ + height: 0px; + visibility: hidden; +} + +.footer { + @apply flex-none; +} diff --git a/src/styles/section.module.css b/src/styles/section.module.css new file mode 100644 index 0000000..0cf060e --- /dev/null +++ b/src/styles/section.module.css @@ -0,0 +1,41 @@ +.root { + @apply container; + @apply mx-auto; + @apply p-8; +} + +.root h5 { + @apply uppercase; + @apply text-wixColor24; + @apply mb-8; + + font-size: 20px; + text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px; +} + +.root h6 { + @apply font-serif; + @apply font-bold; + @apply uppercase; + @apply text-wixColor25; + @apply mb-6; + + font-size: 18px; + text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px; +} + +.root p { + @apply my-4; +} + +.root a { + @apply underline; + @apply text-wixColor24; +} + +@screen sm { + .root { + @apply flex; + @apply space-x-8; + } +} diff --git a/src/styles/shadow-image.module.css b/src/styles/shadow-image.module.css new file mode 100644 index 0000000..206655f --- /dev/null +++ b/src/styles/shadow-image.module.css @@ -0,0 +1,25 @@ +.shadowImage { + margin-bottom: 24px; + box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 3px 0px; + position: relative; +} + +.shadowImage::before, .shadowImage::after { + content: ""; + position: absolute; + bottom: -26px; + width: 165px; + height: 26px; + background-image: url('/images/wix/shadow-image.png'); + background-repeat: no-repeat; +} + +.shadowImage::before { + left: -20px; + background-position: 0 0; +} + +.shadowImage::after { + right: -20px; + background-position: 100% 0; +} diff --git a/tailwind.config.js b/tailwind.config.js index 30ba1f5..575adff 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -2,7 +2,61 @@ module.exports = { purge: ['src/pages/**/*.{js,ts,jsx,tsx}', 'src/components/**/*.{js,ts,jsx,tsx}'], darkMode: false, // or 'media' or 'class' theme: { - extend: {}, + extend: { + borderWidth: { + '3': '3px', + }, + colors: { + 'wixColor0': 'rgb(255,255,255)', + 'wixColor1': 'rgb(255,255,255)', + 'wixColor2': 'rgb(0,0,0)', + 'wixColor3': 'rgb(237,28,36)', + 'wixColor4': 'rgb(0,136,203)', + 'wixColor5': 'rgb(255,203,5)', + 'wixColor6': 'rgb(114,114,114)', + 'wixColor7': 'rgb(176,176,176)', + 'wixColor8': 'rgb(255,255,255)', + 'wixColor9': 'rgb(114,114,114)', + 'wixColor10': 'rgb(176,176,176)', + 'wixColor11': 'rgb(255,255,255)', + 'wixColor12': 'rgb(204,204,204)', + 'wixColor13': 'rgb(160,160,159)', + 'wixColor14': 'rgb(96,94,94)', + 'wixColor15': 'rgb(47,46,46)', + 'wixColor16': 'rgb(214,236,240)', + 'wixColor17': 'rgb(176,218,225)', + 'wixColor18': 'rgb(132,164,169)', + 'wixColor19': 'rgb(88,109,113)', + 'wixColor20': 'rgb(44,55,56)', + 'wixColor21': 'rgb(171,200,226)', + 'wixColor22': 'rgb(133,167,198)', + 'wixColor23': 'rgb(86,130,169)', + 'wixColor24': 'rgb(3,76,140)', + 'wixColor25': 'rgb(1,38,70)', + 'wixColor26': 'rgb(191,214,234)', + 'wixColor27': 'rgb(154,185,212)', + 'wixColor28': 'rgb(86,142,191)', + 'wixColor29': 'rgb(57,95,127)', + 'wixColor30': 'rgb(29,47,64)', + 'wixColor31': 'rgb(211,204,186)', + 'wixColor32': 'rgb(166,156,128)', + 'wixColor33': 'rgb(125,117,96)', + 'wixColor34': 'rgb(83,78,64)', + 'wixColor35': 'rgb(41,39,32)', + }, + fontFamily: { + sans: [ + 'Open Sans', + // default + 'ui-sans-serif', 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'Noto Sans', 'sans-serif', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji' + ], + serif: [ + 'Times New Roman', 'Times', + // default + 'ui-serif', 'Georgia', 'Cambria', 'Times New Roman', 'Times', 'serif' + ], + }, + }, }, variants: { extend: {}, diff --git a/yarn.lock b/yarn.lock index 47cbe4a..e415ece 100644 --- a/yarn.lock +++ b/yarn.lock @@ -53,6 +53,654 @@ dependencies: cross-fetch "3.0.6" +"@aws-crypto/crc32@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/crc32/-/crc32-1.0.0.tgz#6a0164fd92bb365860ba6afb5dfef449701eb8ca" + integrity sha512-wr4EyCv3ZfLH3Sg7FErV6e/cLhpk9rUP/l5322y8PRgpQsItdieaLbtE4aDOR+dxl8U7BG9FIwWXH4TleTDZ9A== + dependencies: + tslib "^1.11.1" + +"@aws-crypto/ie11-detection@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/ie11-detection/-/ie11-detection-1.0.0.tgz#d3a6af29ba7f15458f79c41d1cd8cac3925e726a" + integrity sha512-kCKVhCF1oDxFYgQrxXmIrS5oaWulkvRcPz+QBDMsUr2crbF4VGgGT6+uQhSwJFdUAQ2A//Vq+uT83eJrkzFgXA== + dependencies: + tslib "^1.11.1" + +"@aws-crypto/sha256-browser@^1.0.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-browser/-/sha256-browser-1.1.0.tgz#20092cc6c08d8f04db0ed57b6f05cff150384f77" + integrity sha512-VIpuLRDonMAHgomrsm/zKbeXTnxpr4aHDQmS4pF+NcpvBp64l675yjGA9hyUYs/QJwBjUl8WqMjh9tIRgi85Sg== + dependencies: + "@aws-crypto/ie11-detection" "^1.0.0" + "@aws-crypto/sha256-js" "^1.1.0" + "@aws-crypto/supports-web-crypto" "^1.0.0" + "@aws-sdk/types" "^3.1.0" + "@aws-sdk/util-locate-window" "^3.0.0" + "@aws-sdk/util-utf8-browser" "^3.0.0" + tslib "^1.11.1" + +"@aws-crypto/sha256-js@^1.0.0", "@aws-crypto/sha256-js@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-1.1.0.tgz#a58386ad18186e392e0f1d98d18831261d27b071" + integrity sha512-VIhuqbPgXDVr8sZe2yhgQcDRRmzf4CI8fmC1A3bHiRfE6wlz1d8KpeemqbuoEHotz/Dch9yOxlshyQDNjNFeHA== + dependencies: + "@aws-sdk/types" "^3.1.0" + "@aws-sdk/util-utf8-browser" "^3.0.0" + tslib "^1.11.1" + +"@aws-crypto/supports-web-crypto@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-1.0.0.tgz#c40901bc17ac1e875e248df16a2b47ad8bfd9a93" + integrity sha512-IHLfv+WmVH89EW4n6a5eE8/hUlz6qkWGMn/v4r5ZgzcXdTC5nolii2z3k46y01hWRiC2PPhOdeSLzMUCUMco7g== + dependencies: + tslib "^1.11.1" + +"@aws-sdk/abort-controller@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/abort-controller/-/abort-controller-1.0.0-rc.3.tgz#c4cde5f1a1c0d3b6e6c5ddc04a0e423cb8bcc1f1" + integrity sha512-+os/c2PDtDzaeAMqH3f03EDwMAesxy3O5lFcT2vr43iiQkXRnYwaWFD4QPwDQGzKDjksPKSa6iag4OjzGf0ezA== + dependencies: + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/chunked-blob-reader-native@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/chunked-blob-reader-native/-/chunked-blob-reader-native-1.0.0-rc.3.tgz#5a863d61f84ca0ff32e440f4c214e1929af05978" + integrity sha512-ouuN4cBmwfVPVVQeBhKm18BHkBK/ZVn0VDE4WXVMqu3WjNBxulKYCvJ7mkxi1oWWzp+RGa1TwIQuancB1IHrdA== + dependencies: + "@aws-sdk/util-base64-browser" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/chunked-blob-reader@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/chunked-blob-reader/-/chunked-blob-reader-1.0.0-rc.3.tgz#f704a8c6133931bbde3ee015936dc136763dd992" + integrity sha512-d4B6mOYxZqo+y2op5BwEsG0wxewyNhVmyvfdQfhaJowNjhZpQ6vhYkh3umOarLwyC72dNScKBQYLnOsf5chtDg== + dependencies: + tslib "^1.8.0" + +"@aws-sdk/client-s3@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-s3/-/client-s3-1.0.0-rc.3.tgz#88ba3fe10308ffc0fe9bdd334071130ccd43eae7" + integrity sha512-/IYV2zoGo8SIId0VsJ/lSI6hkP0nSNvibjQtTIOu/E0edoeHtotXtuJ3SLpsuwGGm8mZtMuq1R6W1q0G/o/DrA== + dependencies: + "@aws-crypto/sha256-browser" "^1.0.0" + "@aws-crypto/sha256-js" "^1.0.0" + "@aws-sdk/config-resolver" "1.0.0-rc.3" + "@aws-sdk/credential-provider-node" "1.0.0-rc.3" + "@aws-sdk/eventstream-serde-browser" "1.0.0-rc.3" + "@aws-sdk/eventstream-serde-config-resolver" "1.0.0-rc.3" + "@aws-sdk/eventstream-serde-node" "1.0.0-rc.3" + "@aws-sdk/fetch-http-handler" "1.0.0-rc.3" + "@aws-sdk/hash-blob-browser" "1.0.0-rc.3" + "@aws-sdk/hash-node" "1.0.0-rc.3" + "@aws-sdk/hash-stream-node" "1.0.0-rc.3" + "@aws-sdk/invalid-dependency" "1.0.0-rc.3" + "@aws-sdk/md5-js" "1.0.0-rc.3" + "@aws-sdk/middleware-apply-body-checksum" "1.0.0-rc.3" + "@aws-sdk/middleware-bucket-endpoint" "1.0.0-rc.3" + "@aws-sdk/middleware-content-length" "1.0.0-rc.3" + "@aws-sdk/middleware-expect-continue" "1.0.0-rc.3" + "@aws-sdk/middleware-host-header" "1.0.0-rc.3" + "@aws-sdk/middleware-location-constraint" "1.0.0-rc.3" + "@aws-sdk/middleware-logger" "1.0.0-rc.3" + "@aws-sdk/middleware-retry" "1.0.0-rc.3" + "@aws-sdk/middleware-sdk-s3" "1.0.0-rc.3" + "@aws-sdk/middleware-serde" "1.0.0-rc.3" + "@aws-sdk/middleware-signing" "1.0.0-rc.3" + "@aws-sdk/middleware-ssec" "1.0.0-rc.3" + "@aws-sdk/middleware-stack" "1.0.0-rc.3" + "@aws-sdk/middleware-user-agent" "1.0.0-rc.3" + "@aws-sdk/node-config-provider" "1.0.0-rc.3" + "@aws-sdk/node-http-handler" "1.0.0-rc.3" + "@aws-sdk/protocol-http" "1.0.0-rc.3" + "@aws-sdk/smithy-client" "1.0.0-rc.3" + "@aws-sdk/types" "1.0.0-rc.3" + "@aws-sdk/url-parser-browser" "1.0.0-rc.3" + "@aws-sdk/url-parser-node" "1.0.0-rc.3" + "@aws-sdk/util-base64-browser" "1.0.0-rc.3" + "@aws-sdk/util-base64-node" "1.0.0-rc.3" + "@aws-sdk/util-body-length-browser" "1.0.0-rc.3" + "@aws-sdk/util-body-length-node" "1.0.0-rc.3" + "@aws-sdk/util-user-agent-browser" "1.0.0-rc.3" + "@aws-sdk/util-user-agent-node" "1.0.0-rc.3" + "@aws-sdk/util-utf8-browser" "1.0.0-rc.3" + "@aws-sdk/util-utf8-node" "1.0.0-rc.3" + "@aws-sdk/xml-builder" "1.0.0-rc.3" + fast-xml-parser "^3.16.0" + tslib "^2.0.0" + +"@aws-sdk/config-resolver@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/config-resolver/-/config-resolver-1.0.0-rc.3.tgz#0eb877cdabffb75ba3ed89f14e86301faeec12d2" + integrity sha512-twz204J+R5SFUOWe7VPYoF9yZA3HsMujnZKkm7QTunKUYRrrZcG1x6KeArIpk1mKFlrtm1tcab5BqUDUKgm23A== + dependencies: + "@aws-sdk/signature-v4" "1.0.0-rc.3" + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/credential-provider-env@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-1.0.0-rc.3.tgz#9e7f21d1aa1d54e6a7f3f87626d2a46896ca7294" + integrity sha512-QG9YUDy1qjghL6MsXIE4wxXuTDeBsNWcXYIMpuvn5bJSVDmcSmXwVFMyCiYvDlN57zbomWaNvYiq9TS50aw0Ng== + dependencies: + "@aws-sdk/property-provider" "1.0.0-rc.3" + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/credential-provider-imds@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-imds/-/credential-provider-imds-1.0.0-rc.3.tgz#d5709e1ef009b7c87387e0c377c8840a7a27b9db" + integrity sha512-vMRAlXdU4ZUeLGgtXh+MCzyZrdoXA8tJldR5n0glbODAym1Ap6ZQ9Y/apQvaHiMxyTd/PCcPg0cwSmhlnwdhTg== + dependencies: + "@aws-sdk/property-provider" "1.0.0-rc.3" + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/credential-provider-ini@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-1.0.0-rc.3.tgz#23301a8cf39b004b4ba866d58469f766b819218e" + integrity sha512-3/dvnmtnjGSoBn9MSTtO6/Vpd0RxwA1oOeHlFhswr4ZDMI3Nn8almvUhjtC+wkKKSG+ushkEJaDDPy6P+7xqRA== + dependencies: + "@aws-sdk/property-provider" "1.0.0-rc.3" + "@aws-sdk/shared-ini-file-loader" "1.0.0-rc.3" + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/credential-provider-node@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-1.0.0-rc.3.tgz#9f6ebecec5f1622ed1b9172c9ae43b147dbc75a9" + integrity sha512-UbtN7dMjyUgYyYKSQLAMmx1aGT9HD00bf0suvn9H4lo5piWuJ/30CoBqIl/l2l+6z0AdK2DcGoF5yuLyJSX0ww== + dependencies: + "@aws-sdk/credential-provider-env" "1.0.0-rc.3" + "@aws-sdk/credential-provider-imds" "1.0.0-rc.3" + "@aws-sdk/credential-provider-ini" "1.0.0-rc.3" + "@aws-sdk/credential-provider-process" "1.0.0-rc.3" + "@aws-sdk/property-provider" "1.0.0-rc.3" + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/credential-provider-process@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-1.0.0-rc.3.tgz#8752ee9efb696d24c84cbd1da64ed76b93269820" + integrity sha512-gz98CXgAwtsW1CkK9F8SOW1EEHFFHsl3QCBs1i4CErYr08i/2sa1LHOjxyIJ9RMRM0WNPBCLH4btvpajOGtXBA== + dependencies: + "@aws-sdk/credential-provider-ini" "1.0.0-rc.3" + "@aws-sdk/property-provider" "1.0.0-rc.3" + "@aws-sdk/shared-ini-file-loader" "1.0.0-rc.3" + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/eventstream-marshaller@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/eventstream-marshaller/-/eventstream-marshaller-1.0.0-rc.3.tgz#ce4a190365ae949f6ad0639ab2285ce21d28046e" + integrity sha512-LBWqTd+VRVBdmBYm/K3ueBHLNOCUlj0uLQOExfvKFTugQ1t3i5JoZKLYNbTJyid8sMmbyq1y/nfM+kAHXguwAQ== + dependencies: + "@aws-crypto/crc32" "^1.0.0" + "@aws-sdk/types" "1.0.0-rc.3" + "@aws-sdk/util-hex-encoding" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/eventstream-serde-browser@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/eventstream-serde-browser/-/eventstream-serde-browser-1.0.0-rc.3.tgz#ea9229e17317c457dd11206565a04dc1bbccb579" + integrity sha512-dMWtrnaOBLxEFvEtX7r66Pxh+XipRdDYHHNTSsg3Vaj+cDcCUkur2tplhKaBQY9bElfGB2Rb2R7XsfIxt9PZ0w== + dependencies: + "@aws-sdk/eventstream-marshaller" "1.0.0-rc.3" + "@aws-sdk/eventstream-serde-universal" "1.0.0-rc.3" + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/eventstream-serde-config-resolver@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-1.0.0-rc.3.tgz#198f81974c4e5396d090c3d48826c6f5e2486819" + integrity sha512-hnp8DwEK64p2mwMDyBIgGq7yOaxDe3H1O7xoNmKb/owqQAcV8BxhhbrJYrsXNSeE/lO2zckPcL1imzuKHudTfA== + dependencies: + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/eventstream-serde-node@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/eventstream-serde-node/-/eventstream-serde-node-1.0.0-rc.3.tgz#cb0d74f24b43cd14963a0ee8252cc47260ddf483" + integrity sha512-QTIygM8qoVfDv6paFTdyvuAdgUSm/VDFa36OZd+IXSgzoYYrI/psutpYCyt/27oiPH+rFPrOofs9A1mXIWWMhg== + dependencies: + "@aws-sdk/eventstream-marshaller" "1.0.0-rc.3" + "@aws-sdk/eventstream-serde-universal" "1.0.0-rc.3" + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/eventstream-serde-universal@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/eventstream-serde-universal/-/eventstream-serde-universal-1.0.0-rc.3.tgz#b05d04171ae00b6f33ea1412979f78c1840ea410" + integrity sha512-YAQMuEI+J0LEf8tOISYSihkEiEH2YpQpvXkLlWyybmWEa1XjmGaZS5V1HP/xf5cA/HPtIsApCz2VYTY50A/Lxw== + dependencies: + "@aws-sdk/eventstream-marshaller" "1.0.0-rc.3" + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/fetch-http-handler@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/fetch-http-handler/-/fetch-http-handler-1.0.0-rc.3.tgz#4ab211faf75c4b1d14dc36b85311519f4723fe97" + integrity sha512-1xd4DuW8Su7qHKg9wipVGhscvLsVRhZi9pRLxh13lIKEIt+ryxXzrex1YoxDUnDH3ZI7YhdeLhZIonlgaNT+Gw== + dependencies: + "@aws-sdk/protocol-http" "1.0.0-rc.3" + "@aws-sdk/querystring-builder" "1.0.0-rc.3" + "@aws-sdk/types" "1.0.0-rc.3" + "@aws-sdk/util-base64-browser" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/hash-blob-browser@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/hash-blob-browser/-/hash-blob-browser-1.0.0-rc.3.tgz#2d1dcd1750b366817a0692424403edc808dc3cb8" + integrity sha512-2lgiclNMd3hiNBjoSh7UuzSY9ucpVF7Z6AmSmERWqN5Sm69u1q8p0RgyyWnKd0JZRelPlB8gBXk4EzxBPSTSLA== + dependencies: + "@aws-sdk/chunked-blob-reader" "1.0.0-rc.3" + "@aws-sdk/chunked-blob-reader-native" "1.0.0-rc.3" + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/hash-node@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/hash-node/-/hash-node-1.0.0-rc.3.tgz#f46571f597dd8a301362dfef4c5dfd343116f9a4" + integrity sha512-Q3DikdeGA6pih2ftZajlNaHxsNUaKEXneZdxyoaSKyMppEni3eK2Z2ZjzyjDuXflYLkNtj4ylscure+uIKAApg== + dependencies: + "@aws-sdk/types" "1.0.0-rc.3" + "@aws-sdk/util-buffer-from" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/hash-stream-node@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/hash-stream-node/-/hash-stream-node-1.0.0-rc.3.tgz#8b4f668e5d482c509dfe402812b2a2f2a9e36b1b" + integrity sha512-ry78JhVXHIUdH/aokQ/YBxQ+26zC5VOgK2XLq9eDdxBTz2sefjwzk3Qs5eY1GZKfyUlKMwdRpCibo9FlPVPJeg== + dependencies: + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/invalid-dependency@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/invalid-dependency/-/invalid-dependency-1.0.0-rc.3.tgz#857a44dcb666ec3be55ccde6f2912eff7dfddcad" + integrity sha512-Fl71S5Igd5Mi81QklxhhEWzwKbm+QP1kUYoc5nVK2sE+iLqdF9jwg7/ONBN8jISjTD8GPIW7NWL2SQNINNryMw== + dependencies: + tslib "^1.8.0" + +"@aws-sdk/is-array-buffer@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/is-array-buffer/-/is-array-buffer-1.0.0-rc.3.tgz#47e47b7e5eb7e0ac9e7fa24f56a78550fbae63bc" + integrity sha512-tHFTBiXAgBZmAKaJIL2e2QPR9kA1tZTUJMqKaybWjhXckvb29EgUOLcdK+W2kMSqKIGqEINbAaV7S11ydBtYIg== + dependencies: + tslib "^1.8.0" + +"@aws-sdk/md5-js@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/md5-js/-/md5-js-1.0.0-rc.3.tgz#c9ecabe2a7fccf017f6cfcb972c1cdb579da8f9c" + integrity sha512-UfHtEs5IWl39yU4X/95605bFMKErWRd+uPgtqEtCWDDGyw4uwUUrkyrhTfJKuUFvTj9ov0Lb03x5QPNDybAelQ== + dependencies: + "@aws-sdk/types" "1.0.0-rc.3" + "@aws-sdk/util-utf8-browser" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/middleware-apply-body-checksum@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-apply-body-checksum/-/middleware-apply-body-checksum-1.0.0-rc.3.tgz#1ba3053e65a06fa093b72c45bd28f6053d12028c" + integrity sha512-f8CMcb1mxPWHJvLxegpjF1fwoa/vFjIaRIrXgUoPMhFNICRZPGnzim2o2mGyjWcS39VkM6G7vpmosNv2zc4EJg== + dependencies: + "@aws-sdk/is-array-buffer" "1.0.0-rc.3" + "@aws-sdk/protocol-http" "1.0.0-rc.3" + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/middleware-bucket-endpoint@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-1.0.0-rc.3.tgz#3dc26338bb8b631adb93c2ef2bce4bdddf29e01d" + integrity sha512-bC7Fx78spMF+5sQhjncOHdjEamNGIIZx6KBWN5Z2JkTTfrEoN24VtM6wWXkNRn3EtN7usWBaGT1bCx3/Vk+R0A== + dependencies: + "@aws-sdk/protocol-http" "1.0.0-rc.3" + "@aws-sdk/types" "1.0.0-rc.3" + "@aws-sdk/util-arn-parser" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/middleware-content-length@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-content-length/-/middleware-content-length-1.0.0-rc.3.tgz#0410e78a508ec4ef8cb8987433ed621a7cfa7946" + integrity sha512-eQfeMwneYxxF6NMF5AokilQHm3HMUbtBVmybdrrM+vs027DRQBDqcZ2GXwVI93kcS4GaibNnzX804rG2xA2UwA== + dependencies: + "@aws-sdk/protocol-http" "1.0.0-rc.3" + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/middleware-expect-continue@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-1.0.0-rc.3.tgz#54eb6e68b7e791febbee44fe107886ead02c47d0" + integrity sha512-rDs68vBn0sSWl3z1ecXSw7n+MeiSW//r6NSAWAmBE58BDjHSfwQ+aB3izpSHDGIiGZO4aasnwZAP7NjzYvxiWQ== + dependencies: + "@aws-sdk/middleware-header-default" "1.0.0-rc.3" + "@aws-sdk/protocol-http" "1.0.0-rc.3" + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/middleware-header-default@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-header-default/-/middleware-header-default-1.0.0-rc.3.tgz#3a6186aa0d0575626f07b92b774aa15b73b54230" + integrity sha512-h0zQFCaBzu7SoRRlKYws76C8q8hY/Ja7G6E69X7fGbrcmNFMjm4aZq0eipKvOIg7cGbrcFnyOnWqLlWaL76nwA== + dependencies: + "@aws-sdk/protocol-http" "1.0.0-rc.3" + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/middleware-host-header@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-1.0.0-rc.3.tgz#d7dca9b683bacc0f985b4f1e86cef938d88ad52d" + integrity sha512-44aOjB9yd2TCDj8c9sr+8+rhQ63kkuIAcMdbt3P/fXKUWwTAW+bcvknaynya3hLa8B75tEQ112xVBb+HoDR//g== + dependencies: + "@aws-sdk/protocol-http" "1.0.0-rc.3" + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/middleware-location-constraint@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-1.0.0-rc.3.tgz#22781315b246f426acde32e894acb3e59cb9d5bf" + integrity sha512-VdW0/g8SVckRQsz55DrPIzyrF+Qgat3qt+qE9c6Gk7u6XaF05BlG7rbjsStd3Eml+FsKG1KOO3RgDCWvgESmNw== + dependencies: + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/middleware-logger@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-1.0.0-rc.3.tgz#a786bb90d3a5a184f9b8331ee90f05f3210b04b7" + integrity sha512-M1IfI6//hFgMKQXqXdXGNMf/qU4pkwzR9+Wz6TZ6iELtZaXce00ZzTK1szmO1pkWRVeXsCwr4fsbhj7OD4zZ8g== + dependencies: + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/middleware-retry@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-retry/-/middleware-retry-1.0.0-rc.3.tgz#8b06fd8c49b3a3e7279551309e418533fac73d9b" + integrity sha512-Y8JhZPJM10H1KDobUP7aYM6ghBdVT4QM+04iAQBfYZPCc0ksyN+PKZLi97kxOrbg+a4HL593CG2UVnY4WI2tBQ== + dependencies: + "@aws-sdk/protocol-http" "1.0.0-rc.3" + "@aws-sdk/service-error-classification" "1.0.0-rc.3" + "@aws-sdk/types" "1.0.0-rc.3" + react-native-get-random-values "^1.4.0" + tslib "^1.8.0" + uuid "^3.0.0" + +"@aws-sdk/middleware-sdk-s3@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-1.0.0-rc.3.tgz#1c9a26476887c464b5e52da116a752dc8975dddd" + integrity sha512-TDICHo5wONd4GUgLEtSjlygKRzXBfxkPQcNEGB2Mnbi+xbDa4FNd6XszkOrNMzxtmqD53ub/iDQewcBr9U9HJQ== + dependencies: + "@aws-sdk/protocol-http" "1.0.0-rc.3" + "@aws-sdk/util-arn-parser" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/middleware-serde@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-serde/-/middleware-serde-1.0.0-rc.3.tgz#81307310c51d50ec8425bee9fb08d35a7458dcfc" + integrity sha512-3IK4Hz8YV4+AIGJLjDu3QTKjfHGVIPrY5x4ubFzbGVc6EC9y69y+Yh3425ca3xeAVQFnORQn/707LiNKLlsD8g== + dependencies: + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/middleware-signing@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-signing/-/middleware-signing-1.0.0-rc.3.tgz#34bad68f17052c298a09905728a35f8906fe55dc" + integrity sha512-RqIQwPaHvyY38rmIR+A9b3EwIaPPAKA4rmaTGAT1jeS7H65tXJeKc7aAXJWvDn9E1Fj56mOHTOd86FgP45MrUg== + dependencies: + "@aws-sdk/protocol-http" "1.0.0-rc.3" + "@aws-sdk/signature-v4" "1.0.0-rc.3" + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/middleware-ssec@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-ssec/-/middleware-ssec-1.0.0-rc.3.tgz#45e77e8c1e998fe42bc290c7d4c65c84952e6f3b" + integrity sha512-sqv/TELHxAvpqOi7uhfCwLGVyOb1ihehfnSeqsyh2HPphg529ssmDUCF6jsi5maMc3lM/eHQ8LDPSXU9H58wwQ== + dependencies: + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/middleware-stack@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-stack/-/middleware-stack-1.0.0-rc.3.tgz#e46193e696f15275e548e0cdbe1ca734e9e1c6b9" + integrity sha512-DV5RPf0rNsZVOtZA+nEDyWhfKUazUjWQppzXGjvCUSLaaPTINPUXf/go5M4S/62mn/9gxCftN5SShMP5yw1sNQ== + dependencies: + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/middleware-user-agent@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-1.0.0-rc.3.tgz#de42837456482cd06596c0c5cebb80480d630e33" + integrity sha512-Zrp3kETrrWgJLlnjkSuetOH5cN5URqLd6WQmhZlEm0isvr+2RyDDOA4wP6JjmMhCmrG02/8/b4pMOPH/vUm/LQ== + dependencies: + "@aws-sdk/protocol-http" "1.0.0-rc.3" + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/node-config-provider@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/node-config-provider/-/node-config-provider-1.0.0-rc.3.tgz#b79fd5e95e4ca543b8d6aa2bf59b9ce2cc89c96a" + integrity sha512-1i0fjunUMYP479hAq7D8RugfMmC3KCUzvZA2xtjFQcE31d7YrlfGstwBq/kvNcIcw+yc3r7SC54KzwgqfSSvzA== + dependencies: + "@aws-sdk/property-provider" "1.0.0-rc.3" + "@aws-sdk/shared-ini-file-loader" "1.0.0-rc.3" + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/node-http-handler@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/node-http-handler/-/node-http-handler-1.0.0-rc.3.tgz#da316daa5bcf536099e43d57cb136b8c2553a17f" + integrity sha512-hK0NM3PxGVCgKLZoAb8bXFQlOA1JGd2DwfjDdAn4XfIhEH4QfbuFZxjkQhNcDwkKIqzCmlYTbgJvWKRbbFkEXg== + dependencies: + "@aws-sdk/abort-controller" "1.0.0-rc.3" + "@aws-sdk/protocol-http" "1.0.0-rc.3" + "@aws-sdk/querystring-builder" "1.0.0-rc.3" + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/property-provider@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/property-provider/-/property-provider-1.0.0-rc.3.tgz#4dce009bcc55d8779f721100462b8d6ac489606c" + integrity sha512-WrYlUVaq63k0fYdnIJziphfdTITaTlW0b1qrRzFsqKPRN1AnQenzFs27ZHaaecmFfGg3q1Y2fci3cpyNUBTruQ== + dependencies: + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/protocol-http@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/protocol-http/-/protocol-http-1.0.0-rc.3.tgz#7759e6f96df292c01daaff42f2b921180df17c5d" + integrity sha512-paOSLmXvce84BRCx+JIYGpsVCtn3GCGvzLywaPCHeES2OekwD86PJQskCDAlshRPOy/LCdxYVdMt7FrEBuyQrg== + dependencies: + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/querystring-builder@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/querystring-builder/-/querystring-builder-1.0.0-rc.3.tgz#d24135a0523a8d9645d874deeb0ba5a6f6c15428" + integrity sha512-PWTaV+0r/7FlPNjjKJQ/WyT4oRx4tG5efOuzQobb4/Bw2AFqVCzE2DMGx1V8YKqdq3QFckvRuoFDVqftyhF/Jw== + dependencies: + "@aws-sdk/types" "1.0.0-rc.3" + "@aws-sdk/util-uri-escape" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/querystring-parser@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/querystring-parser/-/querystring-parser-1.0.0-rc.3.tgz#9fdd79eb0a06846f25da5f97477e8d8f1255785a" + integrity sha512-TkA/4wM76WzsiMOs0Lxqk33rP+J0YtCjmpGzS+x4oqNbdVYQBpYtbwqN+9nsrOeieCFRWq9QWl6QM4IyJT9gRA== + dependencies: + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/service-error-classification@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/service-error-classification/-/service-error-classification-1.0.0-rc.3.tgz#711f6769cabc7fbdac9f0d5270968824762fa29f" + integrity sha512-qE/gPzAoQF3DJEPyQk5iQyTZEbVx53a41T+UHEYKYMaGXuAJfoBKnsucDNxgAYXSwcp+3Wp7XA1TUfcygEiZ/Q== + +"@aws-sdk/shared-ini-file-loader@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-1.0.0-rc.3.tgz#05aa96572d78f0c4c5edcc7f42ed14076d1b16ea" + integrity sha512-wynHRRZENIZUS714NX9cu9BDbxAL7DzOJvPYAj2tgC3bJNt0jkbQxNTePpolwWx7QNwFfQgDbK76LPkIo30dJQ== + dependencies: + tslib "^1.8.0" + +"@aws-sdk/signature-v4@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/signature-v4/-/signature-v4-1.0.0-rc.3.tgz#7ccc61f17d8f083dcbce5e30843c60f8b0388d67" + integrity sha512-ARfmXLW4NMmQF5/3xGiasi6nrlvddZauJOgG9t2STTog8gijn+y+V7wh26A7e4vgv1hyE0RdonylbakUH1R4Nw== + dependencies: + "@aws-sdk/is-array-buffer" "1.0.0-rc.3" + "@aws-sdk/types" "1.0.0-rc.3" + "@aws-sdk/util-hex-encoding" "1.0.0-rc.3" + "@aws-sdk/util-uri-escape" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/smithy-client@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/smithy-client/-/smithy-client-1.0.0-rc.3.tgz#b96e97fa6b8bb3de8ecd918d842b2fb972fa0ac6" + integrity sha512-mlzpr5NLkaoPdTVrr3HIxuNbVJtq9IIrgfVXjqCNixOqJDRG46qiXubfaSsf4giwP8CE6zK9cDkvVDKyV0dl8A== + dependencies: + "@aws-sdk/middleware-stack" "1.0.0-rc.3" + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/types@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-1.0.0-rc.3.tgz#98466080e07244d8f7406cc61ae7918d02b339a2" + integrity sha512-pKKR2SXG8IHbWcmVgFwLUrHqqqFOEuf5JiQmP7dEBjUXqavzDnqFUY7g9PGuM8928IQqL7IXrRsK7R+VbLgodQ== + +"@aws-sdk/types@^3.1.0": + version "3.6.1" + resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.6.1.tgz#00686db69e998b521fcd4a5f81ef0960980f80c4" + integrity sha512-4Dx3eRTrUHLxhFdLJL8zdNGzVsJfAxtxPYYGmIddUkO2Gj3WA1TGjdfG4XN/ClI6e1XonCHafQX3UYO/mgnH3g== + +"@aws-sdk/url-parser-browser@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/url-parser-browser/-/url-parser-browser-1.0.0-rc.3.tgz#d9e1da2acdfb7f2486a68e951dd185dd7b0764e8" + integrity sha512-bTCB4K1nxX3juaOSRdjUC+nq1KZX1Ipy5pMQoDiRWYCgMgUAcqeWuxlclF3dc8vuhYUWa2A86D5lT3zrP0Gqag== + dependencies: + "@aws-sdk/querystring-parser" "1.0.0-rc.3" + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/url-parser-node@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/url-parser-node/-/url-parser-node-1.0.0-rc.3.tgz#0cdd48fa068a1cf243b46b4eb4c927f38499f63d" + integrity sha512-W2No+drp3jCjkr1edSReGNLyXF+a34qHOcy8cJ6ZtPe5eLzCroZ33+w1gJ01r5UboWwzo8Qyz7QPxD5J0zPVzw== + dependencies: + "@aws-sdk/querystring-parser" "1.0.0-rc.3" + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + url "^0.11.0" + +"@aws-sdk/util-arn-parser@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-arn-parser/-/util-arn-parser-1.0.0-rc.3.tgz#738e945d2dfd009d78c4c07e3773d41c1c525262" + integrity sha512-mIXiyBYDAQa9EdaKKU4oQsWAvSWVXAumCH89N5VQfrlRCuaqRUdmE83CJx69wcLFbrZCZmCJD2gcPVG5Ywa+NQ== + dependencies: + tslib "^1.8.0" + +"@aws-sdk/util-base64-browser@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-base64-browser/-/util-base64-browser-1.0.0-rc.3.tgz#49cb2a1c9f177327b66eb2a150e643334dd3ce0d" + integrity sha512-peqOSoOCTGlZVX9gC+4SxaSXQqSsjzNfKxKLZwcP/HhHIPU/I+tbnRbH4a2Cx29DsopTngu0GKLuPJEL67bvog== + dependencies: + tslib "^1.8.0" + +"@aws-sdk/util-base64-node@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-base64-node/-/util-base64-node-1.0.0-rc.3.tgz#ef68e130e7b42b673f93af4a68b46c1542702e64" + integrity sha512-gz/JScFQ9MMdI59VdJTbgZrnNdTPXOJKesMwoEMH8nMb6/Wi3+KL2NH/GC92hxhuE/JbA1vdrelvCFOED8E1Jg== + dependencies: + "@aws-sdk/util-buffer-from" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/util-body-length-browser@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-body-length-browser/-/util-body-length-browser-1.0.0-rc.3.tgz#f3052599445e06081002788693ada1fb99ea4a51" + integrity sha512-xvMrCo+5DshN4Fu3zar2RxaqPJ/QRAEOChyWEGUqjE+9/cow+uWsqBX3FdeY84mV6dkdcAJLQvP8aVH+v+w+lw== + dependencies: + tslib "^1.8.0" + +"@aws-sdk/util-body-length-node@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-body-length-node/-/util-body-length-node-1.0.0-rc.3.tgz#e7068c9feff896a3720f71eab5ca44c76e587764" + integrity sha512-q7n3IP5s9TIMao9sK4an+xxBubHqWXoeqCQ5haeDmqQTBiZQYcyQQq61YJRghj2/53SH5MMS1ACncw3kvnO92g== + dependencies: + tslib "^1.8.0" + +"@aws-sdk/util-buffer-from@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-buffer-from/-/util-buffer-from-1.0.0-rc.3.tgz#6a18955cb422b5649c9675d64bc2defa6e1175ac" + integrity sha512-43FzXSA3356C/QRCKZSmGTVwH4BgObNJDvF4z5dwwrfqU+tXjnUdnFo5hLsHq+fwjtWuXLkAyi+vz07x3MphvA== + dependencies: + "@aws-sdk/is-array-buffer" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/util-hex-encoding@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-hex-encoding/-/util-hex-encoding-1.0.0-rc.3.tgz#4229f2495f3a5ef32c8c7ada7ab14bd6f983d269" + integrity sha512-GXHBBGdAH2HPn18RFMsvXAvBtO8pG0I2PlGHfKhn+ym+UT1lHHYpCd3/PawUVUYnFZrqIj+j48IjFFJ3XMPXyQ== + dependencies: + tslib "^1.8.0" + +"@aws-sdk/util-locate-window@^3.0.0": + version "3.6.1" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-locate-window/-/util-locate-window-3.6.1.tgz#d94534388ebe294b55390c9ec845fc545d3acb40" + integrity sha512-xXJmtCNa1Sku2JkCx0RHRyXmTMBAraup6L14a5vgLrV2TNL89HRy2iybbe/6LqG8hg9QC3HFtr3QsXQXrsBI8Q== + dependencies: + tslib "^1.8.0" + +"@aws-sdk/util-uri-escape@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-uri-escape/-/util-uri-escape-1.0.0-rc.3.tgz#53b7ba5c353cef31f0d1f10c06d8dfc2118a3371" + integrity sha512-PW1Uh5nJ32VKysV6DxyO40gONJR8s0QFeS55apyPUeCYCrdEjwsNvftDWbRJIcVpvkRSrbDezWc5CJC0S8WXjQ== + dependencies: + tslib "^1.8.0" + +"@aws-sdk/util-user-agent-browser@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-1.0.0-rc.3.tgz#2b8d7a79c7e79099fe9a41976d4eeb39f5d83c21" + integrity sha512-ev7bjF6QejDTi/UTvBLfiUETrXtuBf5sJl8ocWRUcrCnje5DW5lat2LaC7KWeRppQ4NA//ldavF5ngAxsn8TzA== + dependencies: + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/util-user-agent-node@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-1.0.0-rc.3.tgz#f9a7337b80e4118a12c4cc4f83512e9b5e48cb4e" + integrity sha512-5ELevKFFsHcyPSOrQ3mgdaNZ+Fr1I4J+/8aKoOiBO1Pnp15/xlVS4GkRiE0uUmAvBbUh1sByMvTo7ITeOBvlxA== + dependencies: + "@aws-sdk/types" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/util-utf8-browser@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-utf8-browser/-/util-utf8-browser-1.0.0-rc.3.tgz#ca2f1ee3c3774203675455e6cf6a52256d40849d" + integrity sha512-ypEJ2zsfm844dPSnES5lvS80Jb6hQ7D9iu0TUKQfIVu0LernJaAiSM05UEbktN+bEAoQBi9S64l8JjHVKFWu1Q== + dependencies: + tslib "^1.8.0" + +"@aws-sdk/util-utf8-browser@^3.0.0": + version "3.6.1" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.6.1.tgz#97a8770cae9d29218adc0f32c7798350261377c7" + integrity sha512-gZPySY6JU5gswnw3nGOEHl3tYE7vPKvtXGYoS2NRabfDKRejFvu+4/nNW6SSpoOxk6LSXsrWB39NO51k+G4PVA== + dependencies: + tslib "^1.8.0" + +"@aws-sdk/util-utf8-node@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-utf8-node/-/util-utf8-node-1.0.0-rc.3.tgz#d6841823b949f4209fdcc405c5ad5d4b483e6e60" + integrity sha512-80BWIgYzdw/cKxUrXf+7IKp07saLfCl7p4Q+zitcTrng9bSbPhjntXBS+dOFrBU2fBUynfI2K+9k5taJRKgOTQ== + dependencies: + "@aws-sdk/util-buffer-from" "1.0.0-rc.3" + tslib "^1.8.0" + +"@aws-sdk/xml-builder@1.0.0-rc.3": + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/@aws-sdk/xml-builder/-/xml-builder-1.0.0-rc.3.tgz#2b0b6b4c182b96245889f4c8e2004eef847401f4" + integrity sha512-WdW/bZLVMNrEdG++m4B4QmZ6KnYsF3V68CDkZKg8IgDOMON4YOqUPBYDHNR8Wtdd1JQFLMDzrcqnXQqLb5dWgA== + dependencies: + tslib "^1.8.0" + "@babel/code-frame@7.12.11": version "7.12.11" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" @@ -60,17 +708,17 @@ dependencies: "@babel/highlight" "^7.10.4" -"@babel/helper-validator-identifier@^7.10.4": +"@babel/helper-validator-identifier@^7.12.11": version "7.12.11" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz#c9a1f021917dcb5ccf0d4e453e399022981fc9ed" integrity sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw== "@babel/highlight@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" - integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== + version "7.13.10" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.13.10.tgz#a8b2a66148f5b27d666b15d81774347a731d52d1" + integrity sha512-5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg== dependencies: - "@babel/helper-validator-identifier" "^7.10.4" + "@babel/helper-validator-identifier" "^7.12.11" chalk "^2.0.0" js-tokens "^4.0.0" @@ -81,6 +729,13 @@ dependencies: regenerator-runtime "^0.13.4" +"@babel/runtime@^7.7.2": + version "7.13.10" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.13.10.tgz#47d42a57b6095f4468da440388fdbad8bebf0d7d" + integrity sha512-4QPkjJq6Ns3V/RgpEahRk+AGfL0eO6RHHtTWoNNr5mO49G6B5+X6d6THgWEAvTrznU5xYpbAlVKRYcsCgh/Akw== + dependencies: + regenerator-runtime "^0.13.4" + "@babel/types@7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.8.3.tgz#5a383dffa5416db1b73dedffd311ffd0788fb31c" @@ -106,9 +761,9 @@ "@hapi/hoek" "9.x.x" "@hapi/boom@9.x.x": - version "9.1.1" - resolved "https://registry.yarnpkg.com/@hapi/boom/-/boom-9.1.1.tgz#89e6f0e01637c2a4228da0d113e8157c93677b04" - integrity sha512-VNR8eDbBrOxBgbkddRYIe7+8DZ+vSbV6qlmaN2x7eWjsUjy2VmQgChkOKcVZIeupEZYj+I0dqNg430OhwzagjA== + version "9.1.2" + resolved "https://registry.yarnpkg.com/@hapi/boom/-/boom-9.1.2.tgz#48bd41d67437164a2d636e3b5bc954f8c8dc5e38" + integrity sha512-uJEJtiNHzKw80JpngDGBCGAmWjBtzxDCz17A9NO2zCi8LLBlb5Frpq4pXwyN+2JQMod4pKz5BALwyneCgDg89Q== dependencies: "@hapi/hoek" "9.x.x" @@ -117,6 +772,314 @@ resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-9.1.1.tgz#9daf5745156fd84b8e9889a2dc721f0c58e894aa" integrity sha512-CAEbWH7OIur6jEOzaai83jq3FmKmv4PmX1JYfs9IrYcGEVI/lyL1EXJGCj7eFVJ0bg5QR8LMxBlEtA+xKiLpFw== +"@jimp/bmp@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/bmp/-/bmp-0.16.1.tgz#6e2da655b2ba22e721df0795423f34e92ef13768" + integrity sha512-iwyNYQeBawrdg/f24x3pQ5rEx+/GwjZcCXd3Kgc+ZUd+Ivia7sIqBsOnDaMZdKCBPlfW364ekexnlOqyVa0NWg== + dependencies: + "@babel/runtime" "^7.7.2" + "@jimp/utils" "^0.16.1" + bmp-js "^0.1.0" + +"@jimp/core@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/core/-/core-0.16.1.tgz#68c4288f6ef7f31a0f6b859ba3fb28dae930d39d" + integrity sha512-la7kQia31V6kQ4q1kI/uLimu8FXx7imWVajDGtwUG8fzePLWDFJyZl0fdIXVCL1JW2nBcRHidUot6jvlRDi2+g== + dependencies: + "@babel/runtime" "^7.7.2" + "@jimp/utils" "^0.16.1" + any-base "^1.1.0" + buffer "^5.2.0" + exif-parser "^0.1.12" + file-type "^9.0.0" + load-bmfont "^1.3.1" + mkdirp "^0.5.1" + phin "^2.9.1" + pixelmatch "^4.0.2" + tinycolor2 "^1.4.1" + +"@jimp/custom@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/custom/-/custom-0.16.1.tgz#28b659c59e20a1d75a0c46067bd3f4bd302cf9c5" + integrity sha512-DNUAHNSiUI/j9hmbatD6WN/EBIyeq4AO0frl5ETtt51VN1SvE4t4v83ZA/V6ikxEf3hxLju4tQ5Pc3zmZkN/3A== + dependencies: + "@babel/runtime" "^7.7.2" + "@jimp/core" "^0.16.1" + +"@jimp/gif@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/gif/-/gif-0.16.1.tgz#d1f7c3a58f4666482750933af8b8f4666414f3ca" + integrity sha512-r/1+GzIW1D5zrP4tNrfW+3y4vqD935WBXSc8X/wm23QTY9aJO9Lw6PEdzpYCEY+SOklIFKaJYUAq/Nvgm/9ryw== + dependencies: + "@babel/runtime" "^7.7.2" + "@jimp/utils" "^0.16.1" + gifwrap "^0.9.2" + omggif "^1.0.9" + +"@jimp/jpeg@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/jpeg/-/jpeg-0.16.1.tgz#3b7bb08a4173f2f6d81f3049b251df3ee2ac8175" + integrity sha512-8352zrdlCCLFdZ/J+JjBslDvml+fS3Z8gttdml0We759PnnZGqrnPRhkOEOJbNUlE+dD4ckLeIe6NPxlS/7U+w== + dependencies: + "@babel/runtime" "^7.7.2" + "@jimp/utils" "^0.16.1" + jpeg-js "0.4.2" + +"@jimp/plugin-blit@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/plugin-blit/-/plugin-blit-0.16.1.tgz#09ea919f9d326de3b9c2826fe4155da37dde8edb" + integrity sha512-fKFNARm32RoLSokJ8WZXHHH2CGzz6ire2n1Jh6u+XQLhk9TweT1DcLHIXwQMh8oR12KgjbgsMGvrMVlVknmOAg== + dependencies: + "@babel/runtime" "^7.7.2" + "@jimp/utils" "^0.16.1" + +"@jimp/plugin-blur@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/plugin-blur/-/plugin-blur-0.16.1.tgz#e614fa002797dcd662e705d4cea376e7db968bf5" + integrity sha512-1WhuLGGj9MypFKRcPvmW45ht7nXkOKu+lg3n2VBzIB7r4kKNVchuI59bXaCYQumOLEqVK7JdB4glaDAbCQCLyw== + dependencies: + "@babel/runtime" "^7.7.2" + "@jimp/utils" "^0.16.1" + +"@jimp/plugin-circle@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/plugin-circle/-/plugin-circle-0.16.1.tgz#20e3194a67ca29740aba2630fd4d0a89afa27491" + integrity sha512-JK7yi1CIU7/XL8hdahjcbGA3V7c+F+Iw+mhMQhLEi7Q0tCnZ69YJBTamMiNg3fWPVfMuvWJJKOBRVpwNTuaZRg== + dependencies: + "@babel/runtime" "^7.7.2" + "@jimp/utils" "^0.16.1" + +"@jimp/plugin-color@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/plugin-color/-/plugin-color-0.16.1.tgz#0f298ba74dee818b663834cd80d53e56f3755233" + integrity sha512-9yQttBAO5SEFj7S6nJK54f+1BnuBG4c28q+iyzm1JjtnehjqMg6Ljw4gCSDCvoCQ3jBSYHN66pmwTV74SU1B7A== + dependencies: + "@babel/runtime" "^7.7.2" + "@jimp/utils" "^0.16.1" + tinycolor2 "^1.4.1" + +"@jimp/plugin-contain@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/plugin-contain/-/plugin-contain-0.16.1.tgz#3c5f5c495fd9bb08a970739d83694934f58123f2" + integrity sha512-44F3dUIjBDHN+Ym/vEfg+jtjMjAqd2uw9nssN67/n4FdpuZUVs7E7wadKY1RRNuJO+WgcD5aDQcsvurXMETQTg== + dependencies: + "@babel/runtime" "^7.7.2" + "@jimp/utils" "^0.16.1" + +"@jimp/plugin-cover@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/plugin-cover/-/plugin-cover-0.16.1.tgz#0e8caec16a40abe15b1b32e5383a603a3306dc41" + integrity sha512-YztWCIldBAVo0zxcQXR+a/uk3/TtYnpKU2CanOPJ7baIuDlWPsG+YE4xTsswZZc12H9Kl7CiziEbDtvF9kwA/Q== + dependencies: + "@babel/runtime" "^7.7.2" + "@jimp/utils" "^0.16.1" + +"@jimp/plugin-crop@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/plugin-crop/-/plugin-crop-0.16.1.tgz#b362497c873043fe47ba881ab08604bf7226f50f" + integrity sha512-UQdva9oQzCVadkyo3T5Tv2CUZbf0klm2cD4cWMlASuTOYgaGaFHhT9st+kmfvXjKL8q3STkBu/zUPV6PbuV3ew== + dependencies: + "@babel/runtime" "^7.7.2" + "@jimp/utils" "^0.16.1" + +"@jimp/plugin-displace@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/plugin-displace/-/plugin-displace-0.16.1.tgz#4dd9db518c3e78de9d723f86a234bf98922afe8d" + integrity sha512-iVAWuz2+G6Heu8gVZksUz+4hQYpR4R0R/RtBzpWEl8ItBe7O6QjORAkhxzg+WdYLL2A/Yd4ekTpvK0/qW8hTVw== + dependencies: + "@babel/runtime" "^7.7.2" + "@jimp/utils" "^0.16.1" + +"@jimp/plugin-dither@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/plugin-dither/-/plugin-dither-0.16.1.tgz#b47de2c0bb09608bed228b41c3cd01a85ec2d45b" + integrity sha512-tADKVd+HDC9EhJRUDwMvzBXPz4GLoU6s5P7xkVq46tskExYSptgj5713J5Thj3NMgH9Rsqu22jNg1H/7tr3V9Q== + dependencies: + "@babel/runtime" "^7.7.2" + "@jimp/utils" "^0.16.1" + +"@jimp/plugin-fisheye@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/plugin-fisheye/-/plugin-fisheye-0.16.1.tgz#f625047b6cdbe1b83b89e9030fd025ab19cdb1a4" + integrity sha512-BWHnc5hVobviTyIRHhIy9VxI1ACf4CeSuCfURB6JZm87YuyvgQh5aX5UDKtOz/3haMHXBLP61ZBxlNpMD8CG4A== + dependencies: + "@babel/runtime" "^7.7.2" + "@jimp/utils" "^0.16.1" + +"@jimp/plugin-flip@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/plugin-flip/-/plugin-flip-0.16.1.tgz#7a99ea22bde802641017ed0f2615870c144329bb" + integrity sha512-KdxTf0zErfZ8DyHkImDTnQBuHby+a5YFdoKI/G3GpBl3qxLBvC+PWkS2F/iN3H7wszP7/TKxTEvWL927pypT0w== + dependencies: + "@babel/runtime" "^7.7.2" + "@jimp/utils" "^0.16.1" + +"@jimp/plugin-gaussian@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/plugin-gaussian/-/plugin-gaussian-0.16.1.tgz#0845e314085ccd52e34fad9a83949bc0d81a68e8" + integrity sha512-u9n4wjskh3N1mSqketbL6tVcLU2S5TEaFPR40K6TDv4phPLZALi1Of7reUmYpVm8mBDHt1I6kGhuCJiWvzfGyg== + dependencies: + "@babel/runtime" "^7.7.2" + "@jimp/utils" "^0.16.1" + +"@jimp/plugin-invert@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/plugin-invert/-/plugin-invert-0.16.1.tgz#7e6f5a15707256f3778d06921675bbcf18545c97" + integrity sha512-2DKuyVXANH8WDpW9NG+PYFbehzJfweZszFYyxcaewaPLN0GxvxVLOGOPP1NuUTcHkOdMFbE0nHDuB7f+sYF/2w== + dependencies: + "@babel/runtime" "^7.7.2" + "@jimp/utils" "^0.16.1" + +"@jimp/plugin-mask@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/plugin-mask/-/plugin-mask-0.16.1.tgz#e7f2460e05c3cda7af5e76f33ccb0579f66f90df" + integrity sha512-snfiqHlVuj4bSFS0v96vo2PpqCDMe4JB+O++sMo5jF5mvGcGL6AIeLo8cYqPNpdO6BZpBJ8MY5El0Veckhr39Q== + dependencies: + "@babel/runtime" "^7.7.2" + "@jimp/utils" "^0.16.1" + +"@jimp/plugin-normalize@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/plugin-normalize/-/plugin-normalize-0.16.1.tgz#032dfd88eefbc4dedc8b1b2d243832e4f3af30c8" + integrity sha512-dOQfIOvGLKDKXPU8xXWzaUeB0nvkosHw6Xg1WhS1Z5Q0PazByhaxOQkSKgUryNN/H+X7UdbDvlyh/yHf3ITRaw== + dependencies: + "@babel/runtime" "^7.7.2" + "@jimp/utils" "^0.16.1" + +"@jimp/plugin-print@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/plugin-print/-/plugin-print-0.16.1.tgz#66b803563f9d109825970714466e6ab9ae639ff6" + integrity sha512-ceWgYN40jbN4cWRxixym+csyVymvrryuKBQ+zoIvN5iE6OyS+2d7Mn4zlNgumSczb9GGyZZESIgVcBDA1ezq0Q== + dependencies: + "@babel/runtime" "^7.7.2" + "@jimp/utils" "^0.16.1" + load-bmfont "^1.4.0" + +"@jimp/plugin-resize@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/plugin-resize/-/plugin-resize-0.16.1.tgz#65e39d848ed13ba2d6c6faf81d5d590396571d10" + integrity sha512-u4JBLdRI7dargC04p2Ha24kofQBk3vhaf0q8FwSYgnCRwxfvh2RxvhJZk9H7Q91JZp6wgjz/SjvEAYjGCEgAwQ== + dependencies: + "@babel/runtime" "^7.7.2" + "@jimp/utils" "^0.16.1" + +"@jimp/plugin-rotate@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/plugin-rotate/-/plugin-rotate-0.16.1.tgz#53fb5d51a4b3d05af9c91c2a8fffe5d7a1a47c8c" + integrity sha512-ZUU415gDQ0VjYutmVgAYYxC9Og9ixu2jAGMCU54mSMfuIlmohYfwARQmI7h4QB84M76c9hVLdONWjuo+rip/zg== + dependencies: + "@babel/runtime" "^7.7.2" + "@jimp/utils" "^0.16.1" + +"@jimp/plugin-scale@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/plugin-scale/-/plugin-scale-0.16.1.tgz#89f6ba59feed3429847ed226aebda33a240cc647" + integrity sha512-jM2QlgThIDIc4rcyughD5O7sOYezxdafg/2Xtd1csfK3z6fba3asxDwthqPZAgitrLgiKBDp6XfzC07Y/CefUw== + dependencies: + "@babel/runtime" "^7.7.2" + "@jimp/utils" "^0.16.1" + +"@jimp/plugin-shadow@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/plugin-shadow/-/plugin-shadow-0.16.1.tgz#a7af892a740febf41211e10a5467c3c5c521a04c" + integrity sha512-MeD2Is17oKzXLnsphAa1sDstTu6nxscugxAEk3ji0GV1FohCvpHBcec0nAq6/czg4WzqfDts+fcPfC79qWmqrA== + dependencies: + "@babel/runtime" "^7.7.2" + "@jimp/utils" "^0.16.1" + +"@jimp/plugin-threshold@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/plugin-threshold/-/plugin-threshold-0.16.1.tgz#34f3078f9965145b7ae26c53a32ad74b1195bbf5" + integrity sha512-iGW8U/wiCSR0+6syrPioVGoSzQFt4Z91SsCRbgNKTAk7D+XQv6OI78jvvYg4o0c2FOlwGhqz147HZV5utoSLxA== + dependencies: + "@babel/runtime" "^7.7.2" + "@jimp/utils" "^0.16.1" + +"@jimp/plugins@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/plugins/-/plugins-0.16.1.tgz#9f08544c97226d6460a16ced79f57e85bec3257b" + integrity sha512-c+lCqa25b+4q6mJZSetlxhMoYuiltyS+ValLzdwK/47+aYsq+kcJNl+TuxIEKf59yr9+5rkbpsPkZHLF/V7FFA== + dependencies: + "@babel/runtime" "^7.7.2" + "@jimp/plugin-blit" "^0.16.1" + "@jimp/plugin-blur" "^0.16.1" + "@jimp/plugin-circle" "^0.16.1" + "@jimp/plugin-color" "^0.16.1" + "@jimp/plugin-contain" "^0.16.1" + "@jimp/plugin-cover" "^0.16.1" + "@jimp/plugin-crop" "^0.16.1" + "@jimp/plugin-displace" "^0.16.1" + "@jimp/plugin-dither" "^0.16.1" + "@jimp/plugin-fisheye" "^0.16.1" + "@jimp/plugin-flip" "^0.16.1" + "@jimp/plugin-gaussian" "^0.16.1" + "@jimp/plugin-invert" "^0.16.1" + "@jimp/plugin-mask" "^0.16.1" + "@jimp/plugin-normalize" "^0.16.1" + "@jimp/plugin-print" "^0.16.1" + "@jimp/plugin-resize" "^0.16.1" + "@jimp/plugin-rotate" "^0.16.1" + "@jimp/plugin-scale" "^0.16.1" + "@jimp/plugin-shadow" "^0.16.1" + "@jimp/plugin-threshold" "^0.16.1" + timm "^1.6.1" + +"@jimp/png@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/png/-/png-0.16.1.tgz#f24cfc31529900b13a2dd9d4fdb4460c1e4d814e" + integrity sha512-iyWoCxEBTW0OUWWn6SveD4LePW89kO7ZOy5sCfYeDM/oTPLpR8iMIGvZpZUz1b8kvzFr27vPst4E5rJhGjwsdw== + dependencies: + "@babel/runtime" "^7.7.2" + "@jimp/utils" "^0.16.1" + pngjs "^3.3.3" + +"@jimp/tiff@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/tiff/-/tiff-0.16.1.tgz#0e8756695687d7574b6bc73efab0acd4260b7a12" + integrity sha512-3K3+xpJS79RmSkAvFMgqY5dhSB+/sxhwTFA9f4AVHUK0oKW+u6r52Z1L0tMXHnpbAdR9EJ+xaAl2D4x19XShkQ== + dependencies: + "@babel/runtime" "^7.7.2" + utif "^2.0.1" + +"@jimp/types@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/types/-/types-0.16.1.tgz#0dbab37b3202315c91010f16c31766d35a2322cc" + integrity sha512-g1w/+NfWqiVW4CaXSJyD28JQqZtm2eyKMWPhBBDCJN9nLCN12/Az0WFF3JUAktzdsEC2KRN2AqB1a2oMZBNgSQ== + dependencies: + "@babel/runtime" "^7.7.2" + "@jimp/bmp" "^0.16.1" + "@jimp/gif" "^0.16.1" + "@jimp/jpeg" "^0.16.1" + "@jimp/png" "^0.16.1" + "@jimp/tiff" "^0.16.1" + timm "^1.6.1" + +"@jimp/utils@^0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@jimp/utils/-/utils-0.16.1.tgz#2f51e6f14ff8307c4aa83d5e1a277da14a9fe3f7" + integrity sha512-8fULQjB0x4LzUSiSYG6ZtQl355sZjxbv8r9PPAuYHzS9sGiSHJQavNqK/nKnpDsVkU88/vRGcE7t3nMU0dEnVw== + dependencies: + "@babel/runtime" "^7.7.2" + regenerator-runtime "^0.13.3" + +"@netlify/plugin-nextjs@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@netlify/plugin-nextjs/-/plugin-nextjs-3.0.3.tgz#fb0087f6eff2156bf1b64fdc3d02040923a22d56" + integrity sha512-7hWyX7Bb6m8yocYGZAdqr5vkC6SMIBBjHr0PzFMGcYjPKpFjMseq4D7PCpDCiI9Ekwi27yMFtVV9LdarrEKeSw== + dependencies: + "@sls-next/lambda-at-edge" "^1.5.2" + chalk "^4.1.0" + chokidar "^3.5.1" + commander "^7.1.0" + debounce-fn "^4.0.0" + find-cache-dir "^3.3.1" + find-up "^4.1.0" + fs-extra "^9.1.0" + jimp "^0.16.1" + make-dir "^3.1.0" + moize "^6.0.0" + semver "^7.3.2" + "@next/env@10.0.6": version "10.0.6" resolved "https://registry.yarnpkg.com/@next/env/-/env-10.0.6.tgz#e3c845491a8b0fffda219b5bda84b361b8b2f9c2" @@ -161,11 +1124,64 @@ resolved "https://registry.yarnpkg.com/@opentelemetry/context-base/-/context-base-0.14.0.tgz#c67fc20a4d891447ca1a855d7d70fa79a3533001" integrity sha512-sDOAZcYwynHFTbLo6n8kIbLiVF3a3BLkrmehJUyEbT9F+Smbi47kLGS2gG2g0fjBLR/Lr1InPD7kXL7FaTqEkw== +"@sls-next/lambda-at-edge@^1.5.2": + version "1.7.0" + resolved "https://registry.yarnpkg.com/@sls-next/lambda-at-edge/-/lambda-at-edge-1.7.0.tgz#86b2a4642ef252eb8bb96b8931808d4c18d54082" + integrity sha512-mBdw4EgsNB9tE7pZ/YIhfkZbkbXzGjcaeJxGBKN0HsJwMJCNdJKnxPC2a29rvaovHnyFD6s91HVJ9V7b1GH/XQ== + dependencies: + "@aws-sdk/client-s3" "1.0.0-rc.3" + "@zeit/node-file-trace" "^0.6.5" + cookie "^0.4.1" + execa "^4.0.2" + fs-extra "^9.0.1" + get-stream "^6.0.0" + jsonwebtoken "^8.5.1" + path-to-regexp "^6.1.0" + "@types/json-schema@^7.0.6": version "7.0.7" resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.7.tgz#98a993516c859eb0d5c4c8f098317a9ea68db9ad" integrity sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA== +"@types/mdast@^3.0.0": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.3.tgz#2d7d671b1cd1ea3deb306ea75036c2a0407d2deb" + integrity sha512-SXPBMnFVQg1s00dlMCc/jCdvPqdE4mXaMMCeRlxLDmTAEoegHT53xKtkDnzDTOcmMHUfcjyf36/YYZ6SxRdnsw== + dependencies: + "@types/unist" "*" + +"@types/unist@*", "@types/unist@^2.0.0", "@types/unist@^2.0.2": + version "2.0.3" + resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.3.tgz#9c088679876f374eb5983f150d4787aa6fb32d7e" + integrity sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ== + +"@zeit/node-file-trace@^0.6.5": + version "0.6.5" + resolved "https://registry.yarnpkg.com/@zeit/node-file-trace/-/node-file-trace-0.6.5.tgz#ffd443e4648eb88591c53b1a871a47bff651b62e" + integrity sha512-PbxtiZBU+axKtR9dU2/iQgK9+aP/ip94SqI/FCMWppmFPGlxGKHf8UnJZskFuqLZeWWzL+L+8SeipsNHATO9nw== + dependencies: + acorn "^7.1.1" + acorn-class-fields "^0.3.2" + acorn-export-ns-from "^0.1.0" + acorn-import-meta "^1.1.0" + acorn-numeric-separator "^0.3.0" + acorn-static-class-features "^0.2.1" + bindings "^1.4.0" + estree-walker "^0.6.0" + glob "^7.1.3" + graceful-fs "^4.1.15" + micromatch "^4.0.2" + mkdirp "^0.5.1" + node-gyp-build "^4.2.2" + node-pre-gyp "^0.13.0" + resolve-from "^5.0.0" + rollup-pluginutils "^2.8.2" + +abbrev@1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" + integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== + abort-controller@3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" @@ -173,6 +1189,23 @@ abort-controller@3.0.0: dependencies: event-target-shim "^5.0.0" +acorn-class-fields@^0.3.2: + version "0.3.7" + resolved "https://registry.yarnpkg.com/acorn-class-fields/-/acorn-class-fields-0.3.7.tgz#a35122f3cc6ad2bb33b1857e79215677fcfdd720" + integrity sha512-jdUWSFce0fuADUljmExz4TWpPkxmRW/ZCPRqeeUzbGf0vFUcpQYbyq52l75qGd0oSwwtAepeL6hgb/naRgvcKQ== + dependencies: + acorn-private-class-elements "^0.2.7" + +acorn-export-ns-from@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/acorn-export-ns-from/-/acorn-export-ns-from-0.1.0.tgz#192687869bba3bcb2ef1a1ba196486ea7e100e5c" + integrity sha512-QDQJBe2DfxNBIMxs+19XY2i/XXilJn+kPgX30HWNYK4IXoNj3ACNSWPU7szL0SzqjFyOG4zoZxG9P7JfNw5g7A== + +acorn-import-meta@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/acorn-import-meta/-/acorn-import-meta-1.1.0.tgz#c384423462ee7d4721d4de83231021a36cb09def" + integrity sha512-pshgiVR5mhpjFVdizKTN+kAGRqjJFUOEB3TvpQ6kiAutb1lvHrIVVcGoe5xzMpJkVNifCeymMG7/tsDkWn8CdQ== + acorn-node@^1.6.1: version "1.8.2" resolved "https://registry.yarnpkg.com/acorn-node/-/acorn-node-1.8.2.tgz#114c95d64539e53dede23de8b9d96df7c7ae2af8" @@ -182,12 +1215,29 @@ acorn-node@^1.6.1: acorn-walk "^7.0.0" xtend "^4.0.2" +acorn-numeric-separator@^0.3.0: + version "0.3.6" + resolved "https://registry.yarnpkg.com/acorn-numeric-separator/-/acorn-numeric-separator-0.3.6.tgz#af7f0abaf8e74bd9ca1117602954d0a3b75804f3" + integrity sha512-jUr5esgChu4k7VzesH/Nww3EysuyGJJcTEEiXqILUFKpO96PNyEXmK21M6nE0TSqGA1PeEg1MzgqJaoFsn9JMw== + +acorn-private-class-elements@^0.2.7: + version "0.2.7" + resolved "https://registry.yarnpkg.com/acorn-private-class-elements/-/acorn-private-class-elements-0.2.7.tgz#b14902c705bcff267adede1c9f61c1a317ef95d2" + integrity sha512-+GZH2wOKNZOBI4OOPmzpo4cs6mW297sn6fgIk1dUI08jGjhAaEwvC39mN2gJAg2lmAQJ1rBkFqKWonL3Zz6PVA== + +acorn-static-class-features@^0.2.1: + version "0.2.4" + resolved "https://registry.yarnpkg.com/acorn-static-class-features/-/acorn-static-class-features-0.2.4.tgz#a0f5261dd483f25196716854f2d7652a1deb39ee" + integrity sha512-5X4mpYq5J3pdndLmIB0+WtFd/mKWnNYpuTlTzj32wUu/PMmEGOiayQ5UrqgwdBNiaZBtDDh5kddpP7Yg2QaQYA== + dependencies: + acorn-private-class-elements "^0.2.7" + acorn-walk@^7.0.0: version "7.2.0" resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== -acorn@^7.0.0: +acorn@^7.0.0, acorn@^7.1.1: version "7.4.1" resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== @@ -248,6 +1298,11 @@ ansi-styles@^4.1.0: dependencies: color-convert "^2.0.1" +any-base@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/any-base/-/any-base-1.1.0.tgz#ae101a62bc08a597b4c9ab5b7089d456630549fe" + integrity sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg== + anymatch@~3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142" @@ -269,6 +1324,13 @@ are-we-there-yet@~1.1.2: delegates "^1.0.0" readable-stream "^2.0.6" +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + array-flatten@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-3.0.0.tgz#6428ca2ee52c7b823192ec600fa3ed2f157cd541" @@ -319,6 +1381,11 @@ babel-plugin-syntax-jsx@6.18.0: resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" integrity sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY= +bail@^1.0.0: + version "1.0.5" + resolved "https://registry.yarnpkg.com/bail/-/bail-1.0.5.tgz#b6fa133404a392cbc1f8c4bf63f5953351e7a776" + integrity sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ== + balanced-match@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" @@ -339,24 +1406,36 @@ binary-extensions@^2.0.0: resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== +bindings@^1.4.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" + integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== + dependencies: + file-uri-to-path "1.0.0" + bl@^4.0.3: - version "4.0.3" - resolved "https://registry.yarnpkg.com/bl/-/bl-4.0.3.tgz#12d6287adc29080e22a705e5764b2a9522cdc489" - integrity sha512-fs4G6/Hu4/EE+F75J8DuN/0IpQqNjAdC7aEQv7Qt8MHGUH7Ckv2MwTEEeN9QehD0pfIDkMI1bkHYkKy7xHyKIg== + version "4.1.0" + resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" + integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== dependencies: buffer "^5.5.0" inherits "^2.0.4" readable-stream "^3.4.0" -bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.4.0: - version "4.11.9" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz#26d556829458f9d1e81fc48952493d0ba3507828" - integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw== +bmp-js@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/bmp-js/-/bmp-js-0.1.0.tgz#e05a63f796a6c1ff25f4771ec7adadc148c07233" + integrity sha1-4Fpj95amwf8l9Hcex62twUjAcjM= + +bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9: + version "4.12.0" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" + integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== bn.js@^5.0.0, bn.js@^5.1.1: - version "5.1.3" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.3.tgz#beca005408f642ebebea80b042b4d18d2ac0ee6b" - integrity sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ== + version "5.2.0" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.0.tgz#358860674396c6997771a9d051fcc1b57d4ae002" + integrity sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw== brace-expansion@^1.1.7: version "1.1.11" @@ -366,14 +1445,14 @@ brace-expansion@^1.1.7: balanced-match "^1.0.0" concat-map "0.0.1" -braces@~3.0.2: +braces@^3.0.1, braces@~3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== dependencies: fill-range "^7.0.1" -brorand@^1.0.1: +brorand@^1.0.1, brorand@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= @@ -461,6 +1540,16 @@ browserslist@^4.16.1: escalade "^3.1.1" node-releases "^1.1.70" +buffer-equal-constant-time@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz#f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819" + integrity sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk= + +buffer-equal@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-0.0.1.tgz#91bc74b11ea405bc916bc6aa908faafa5b4aac4b" + integrity sha1-kbx0sR6kBbyRa8aqkI+q+ltKrEs= + buffer-from@^1.0.0: version "1.1.1" resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" @@ -488,7 +1577,7 @@ buffer@^4.3.0: ieee754 "^1.1.4" isarray "^1.0.0" -buffer@^5.5.0: +buffer@^5.2.0, buffer@^5.5.0: version "5.7.1" resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== @@ -511,11 +1600,21 @@ camelcase-css@^2.0.1: resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== -caniuse-lite@^1.0.30001093, caniuse-lite@^1.0.30001173, caniuse-lite@^1.0.30001179, caniuse-lite@^1.0.30001181: +caniuse-lite@^1.0.30001093, caniuse-lite@^1.0.30001173, caniuse-lite@^1.0.30001179: + version "1.0.30001204" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001204.tgz#256c85709a348ec4d175e847a3b515c66e79f2aa" + integrity sha512-JUdjWpcxfJ9IPamy2f5JaRDCaqJOxDzOSKtbdx4rH9VivMd1vIzoPumsJa9LoMIi4Fx2BV2KZOxWhNkBjaYivQ== + +caniuse-lite@^1.0.30001181: version "1.0.30001181" resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001181.tgz#4f0e5184e1ea7c3bf2727e735cbe7ca9a451d673" integrity sha512-m5ul/ARCX50JB8BSNM+oiPmQrR5UmngaQ3QThTTp5HcIIQGP/nPBs82BYLE+tigzm3VW+F4BJIhUyaVtEweelQ== +ccount@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/ccount/-/ccount-1.1.0.tgz#246687debb6014735131be8abab2d93898f8d043" + integrity sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg== + chalk@2.4.2, chalk@^2.0.0, chalk@^2.4.1, chalk@^2.4.2: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" @@ -541,7 +1640,27 @@ chalk@^4.1.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chokidar@3.5.1: +character-entities-html4@^1.0.0: + version "1.1.4" + resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-1.1.4.tgz#0e64b0a3753ddbf1fdc044c5fd01d0199a02e125" + integrity sha512-HRcDxZuZqMx3/a+qrzxdBKBPUpxWEq9xw2OPZ3a/174ihfrQKVsFhqtthBInFy1zZ9GgZyFXOatNujm8M+El3g== + +character-entities-legacy@^1.0.0: + version "1.1.4" + resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz#94bc1845dce70a5bb9d2ecc748725661293d8fc1" + integrity sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA== + +character-entities@^1.0.0: + version "1.2.4" + resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-1.2.4.tgz#e12c3939b7eaf4e5b15e7ad4c5e28e1d48c5b16b" + integrity sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw== + +character-reference-invalid@^1.0.0: + version "1.1.4" + resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz#083329cda0eae272ab3dbbf37e9a382c13af1560" + integrity sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg== + +chokidar@3.5.1, chokidar@^3.5.1: version "3.5.1" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.1.tgz#ee9ce7bbebd2b79f49f304799d5468e31e14e68a" integrity sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw== @@ -569,7 +1688,7 @@ cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: inherits "^2.0.1" safe-buffer "^5.0.1" -classnames@2.2.6: +classnames@2.2.6, classnames@^2.2.6: version "2.2.6" resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.2.6.tgz#43935bffdd291f326dad0a205309b38d00f650ce" integrity sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q== @@ -604,9 +1723,9 @@ color-name@^1.0.0, color-name@~1.1.4: integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== color-string@^1.5.4: - version "1.5.4" - resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.4.tgz#dd51cd25cfee953d138fe4002372cc3d0e504cb6" - integrity sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw== + version "1.5.5" + resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.5.tgz#65474a8f0e7439625f3d27a6a19d89fc45223014" + integrity sha512-jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg== dependencies: color-name "^1.0.0" simple-swizzle "^0.2.2" @@ -620,9 +1739,14 @@ color@^3.1.3: color-string "^1.5.4" colorette@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b" - integrity sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw== + version "1.2.2" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94" + integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w== + +comma-separated-tokens@^1.0.0: + version "1.0.8" + resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz#632b80b6117867a158f1080ad498b2fbe7e3f5ea" + integrity sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw== commander@^2.20.0: version "2.20.3" @@ -634,6 +1758,11 @@ commander@^6.0.0: resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== +commander@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" + integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== + commondir@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" @@ -666,6 +1795,11 @@ convert-source-map@1.7.0: dependencies: safe-buffer "~5.1.1" +cookie@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.1.tgz#afd713fe26ebd21ba95ceb61f9a8116e50a537d1" + integrity sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA== + core-util-is@~1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" @@ -709,6 +1843,15 @@ cross-fetch@3.0.6: dependencies: node-fetch "2.6.1" +cross-spawn@^7.0.0: + version "7.0.3" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + crypto-browserify@3.12.0, crypto-browserify@^3.11.0: version "3.12.0" resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" @@ -778,13 +1921,27 @@ data-uri-to-buffer@3.0.1: resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz#594b8973938c5bc2c33046535785341abc4f3636" integrity sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og== -debug@4: +debounce-fn@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/debounce-fn/-/debounce-fn-4.0.0.tgz#ed76d206d8a50e60de0dd66d494d82835ffe61c7" + integrity sha512-8pYCQiL9Xdcg0UPSD3d+0KMlOjp+KGU5EPwYddgzQ7DATsg4fuUDjQtsYLmWjnk2obnNHgV3vE2Y4jejSOJVBQ== + dependencies: + mimic-fn "^3.0.0" + +debug@4, debug@^4.0.0: version "4.3.1" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== dependencies: ms "2.1.2" +debug@^3.2.6: + version "3.2.7" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" + integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== + dependencies: + ms "^2.1.1" + decompress-response@^4.2.0: version "4.2.1" resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-4.2.1.tgz#414023cc7a302da25ce2ec82d0d5238ccafd8986" @@ -827,7 +1984,7 @@ des.js@^1.0.0: inherits "^2.0.1" minimalistic-assert "^1.0.0" -detect-libc@^1.0.3: +detect-libc@^1.0.2, detect-libc@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= @@ -873,6 +2030,11 @@ dom-serializer@^1.0.1: domhandler "^4.0.0" entities "^2.0.0" +dom-walk@^0.1.0: + version "0.1.2" + resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.2.tgz#0c548bef048f4d1f2a97249002236060daa3fd84" + integrity sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w== + domain-browser@^1.1.1: version "1.2.0" resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" @@ -907,31 +2069,43 @@ domutils@2.4.2: domhandler "^3.3.0" domutils@^2.4.2: - version "2.4.4" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.4.4.tgz#282739c4b150d022d34699797369aad8d19bbbd3" - integrity sha512-jBC0vOsECI4OMdD0GC9mGn7NXPLb+Qt6KW1YDQzeQYRUFKmNG8lh7mO5HiELfr+lLQE7loDVI4QcAxV80HS+RA== + version "2.5.0" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.5.0.tgz#42f49cffdabb92ad243278b331fd761c1c2d3039" + integrity sha512-Ho16rzNMOFk2fPwChGh3D2D9OEHAfG19HgmRR2l+WLSsIstNsAYBzePH412bL0y5T44ejABIVfTHQ8nqi/tBCg== dependencies: dom-serializer "^1.0.1" domelementtype "^2.0.1" domhandler "^4.0.0" -electron-to-chromium@^1.3.634, electron-to-chromium@^1.3.649: +ecdsa-sig-formatter@1.0.11: + version "1.0.11" + resolved "https://registry.yarnpkg.com/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz#ae0f0fa2d85045ef14a817daa3ce9acd0489e5bf" + integrity sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ== + dependencies: + safe-buffer "^5.0.1" + +electron-to-chromium@^1.3.634: + version "1.3.693" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.693.tgz#5089c506a925c31f93fcb173a003a22e341115dd" + integrity sha512-vUdsE8yyeu30RecppQtI+XTz2++LWLVEIYmzeCaCRLSdtKZ2eXqdJcrs85KwLiPOPVc6PELgWyXBsfqIvzGZag== + +electron-to-chromium@^1.3.649: version "1.3.650" resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.650.tgz#24e821fff2ed61fd71fee092f2a0631b3c0c22a6" integrity sha512-j6pRuNylFBbroG6NB8Lw/Im9oDY74s2zWHBP5TmdYg73cBuL6cz//SMgolVa0gIJk/DSL+kO7baJ1DSXW1FUZg== elliptic@^6.5.3: - version "6.5.3" - resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.3.tgz#cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6" - integrity sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw== + version "6.5.4" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" + integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== dependencies: - bn.js "^4.4.0" - brorand "^1.0.1" + bn.js "^4.11.9" + brorand "^1.1.0" hash.js "^1.0.0" - hmac-drbg "^1.0.0" - inherits "^2.0.1" - minimalistic-assert "^1.0.0" - minimalistic-crypto-utils "^1.0.0" + hmac-drbg "^1.0.1" + inherits "^2.0.4" + minimalistic-assert "^1.0.1" + minimalistic-crypto-utils "^1.0.1" emojis-list@^2.0.0: version "2.1.0" @@ -965,6 +2139,16 @@ escape-string-regexp@^1.0.5: resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= +esprima@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + +estree-walker@^0.6.0, estree-walker@^0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362" + integrity sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w== + esutils@^2.0.2: version "2.0.3" resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" @@ -981,9 +2165,9 @@ event-target-shim@^5.0.0: integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== events@^3.0.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/events/-/events-3.2.0.tgz#93b87c18f8efcd4202a461aec4dfc0556b639379" - integrity sha512-/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg== + version "3.3.0" + resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" + integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: version "1.0.3" @@ -993,21 +2177,68 @@ evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: md5.js "^1.3.4" safe-buffer "^5.1.1" +execa@^4.0.2: + version "4.1.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a" + integrity sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA== + dependencies: + cross-spawn "^7.0.0" + get-stream "^5.0.0" + human-signals "^1.1.1" + is-stream "^2.0.0" + merge-stream "^2.0.0" + npm-run-path "^4.0.0" + onetime "^5.1.0" + signal-exit "^3.0.2" + strip-final-newline "^2.0.0" + +exif-parser@^0.1.12: + version "0.1.12" + resolved "https://registry.yarnpkg.com/exif-parser/-/exif-parser-0.1.12.tgz#58a9d2d72c02c1f6f02a0ef4a9166272b7760922" + integrity sha1-WKnS1ywCwfbwKg70qRZicrd2CSI= + expand-template@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c" integrity sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg== +extend-shallow@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" + integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= + dependencies: + is-extendable "^0.1.0" + +extend@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" + integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== + +fast-base64-decode@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fast-base64-decode/-/fast-base64-decode-1.0.0.tgz#b434a0dd7d92b12b43f26819300d2dafb83ee418" + integrity sha512-qwaScUgUGBYeDNRnbc/KyllVU88Jk1pRHPStuF/lO7B0/RTRLj7U0lkdTAutlBblY08rwZDff6tNU9cjv6j//Q== + fast-deep-equal@^3.1.1: version "3.1.3" resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== +fast-equals@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/fast-equals/-/fast-equals-2.0.0.tgz#bef2c423af3939f2c54310df54c57e64cd2adefc" + integrity sha512-u6RBd8cSiLLxAiC04wVsLV6GBFDOXcTCgWkd3wEoFXgidPSoAJENqC9m7Jb2vewSvjBIfXV6icKeh3GTKfIaXA== + fast-json-stable-stringify@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== +fast-xml-parser@^3.16.0: + version "3.19.0" + resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-3.19.0.tgz#cb637ec3f3999f51406dd8ff0e6fc4d83e520d01" + integrity sha512-4pXwmBplsCPv8FOY1WRakF970TjNGnGnfbOnLqjlYvMiF1SR3yOHyxMR/YCXpPTOspNF5gwudqktIP4VsWkvBg== + file-loader@^6.0.0: version "6.2.0" resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-6.2.0.tgz#baef7cf8e1840df325e4390b4484879480eebe4d" @@ -1016,6 +2247,16 @@ file-loader@^6.0.0: loader-utils "^2.0.0" schema-utils "^3.0.0" +file-type@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/file-type/-/file-type-9.0.0.tgz#a68d5ad07f486414dfb2c8866f73161946714a18" + integrity sha512-Qe/5NJrgIOlwijpq3B7BEpzPFcgzggOTagZmkXQY4LA6bsXKTUstK7Wp12lEJ/mLKTpvIZxmIuRcLYWT6ov9lw== + +file-uri-to-path@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" + integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== + fill-range@^7.0.1: version "7.0.1" resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" @@ -1023,7 +2264,7 @@ fill-range@^7.0.1: dependencies: to-regex-range "^5.0.1" -find-cache-dir@3.3.1: +find-cache-dir@3.3.1, find-cache-dir@^3.3.1: version "3.3.1" resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.1.tgz#89b33fad4a4670daa94f855f7fbe31d6d84fe880" integrity sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ== @@ -1032,7 +2273,7 @@ find-cache-dir@3.3.1: make-dir "^3.0.2" pkg-dir "^4.1.0" -find-up@^4.0.0: +find-up@^4.0.0, find-up@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== @@ -1050,7 +2291,7 @@ fs-constants@^1.0.0: resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== -fs-extra@^9.0.1: +fs-extra@^9.0.1, fs-extra@^9.1.0: version "9.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== @@ -1060,15 +2301,22 @@ fs-extra@^9.0.1: jsonfile "^6.0.1" universalify "^2.0.0" +fs-minipass@^1.2.5: + version "1.2.7" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.7.tgz#ccff8570841e7fe4265693da88936c55aed7f7c7" + integrity sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA== + dependencies: + minipass "^2.6.0" + fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= fsevents@~2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.1.tgz#b209ab14c61012636c8863507edf7fb68cc54e9f" - integrity sha512-YR47Eg4hChJGAB1O3yEAOkGO+rlzutoICGqGo9EZ4lKWokzZRSyIW1QmTzqjtw8MJdj9srP869CuWw/hyzSiBw== + version "2.3.2" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== function-bind@^1.1.1: version "1.1.1" @@ -1089,15 +2337,35 @@ gauge@~2.7.3: strip-ansi "^3.0.1" wide-align "^1.1.0" +get-stream@^5.0.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" + integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== + dependencies: + pump "^3.0.0" + +get-stream@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.0.tgz#3e0012cb6827319da2706e601a1583e8629a6718" + integrity sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg== + +gifwrap@^0.9.2: + version "0.9.2" + resolved "https://registry.yarnpkg.com/gifwrap/-/gifwrap-0.9.2.tgz#348e286e67d7cf57942172e1e6f05a71cee78489" + integrity sha512-fcIswrPaiCDAyO8xnWvHSZdWChjKXUanKKpAiWWJ/UTkEi/aYKn5+90e7DE820zbEaVR9CE2y4z9bzhQijZ0BA== + dependencies: + image-q "^1.1.1" + omggif "^1.0.10" + github-from-package@0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" integrity sha1-l/tdlr/eiXMxPyDoKI75oWf6ZM4= glob-parent@~5.1.0: - version "5.1.1" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" - integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== dependencies: is-glob "^4.0.1" @@ -1106,7 +2374,7 @@ glob-to-regexp@^0.4.1: resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== -glob@^7.0.0, glob@^7.1.2: +glob@^7.0.0, glob@^7.1.2, glob@^7.1.3: version "7.1.6" resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== @@ -1118,11 +2386,34 @@ glob@^7.0.0, glob@^7.1.2: once "^1.3.0" path-is-absolute "^1.0.0" -graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0: +global@~4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/global/-/global-4.4.0.tgz#3e7b105179006a323ed71aafca3e9c57a5cc6406" + integrity sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w== + dependencies: + min-document "^2.19.0" + process "^0.11.10" + +graceful-fs@^4.1.15, graceful-fs@^4.1.2: + version "4.2.6" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee" + integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ== + +graceful-fs@^4.1.6, graceful-fs@^4.2.0: version "4.2.4" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== +gray-matter@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/gray-matter/-/gray-matter-4.0.2.tgz#9aa379e3acaf421193fce7d2a28cebd4518ac454" + integrity sha512-7hB/+LxrOjq/dd8APlK0r24uL/67w7SkYnfwhNFwg/VDIGWGmduTDYf3WNstLW2fbbmRwrDGCVSJ2isuf2+4Hw== + dependencies: + js-yaml "^3.11.0" + kind-of "^6.0.2" + section-matter "^1.0.0" + strip-bom-string "^1.0.0" + has-flag@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" @@ -1162,12 +2453,45 @@ hash.js@^1.0.0, hash.js@^1.0.3: inherits "^2.0.3" minimalistic-assert "^1.0.1" +hast-util-is-element@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/hast-util-is-element/-/hast-util-is-element-1.1.0.tgz#3b3ed5159a2707c6137b48637fbfe068e175a425" + integrity sha512-oUmNua0bFbdrD/ELDSSEadRVtWZOf3iF6Lbv81naqsIV99RnSCieTbWuWCY8BAeEfKJTKl0gRdokv+dELutHGQ== + +hast-util-sanitize@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/hast-util-sanitize/-/hast-util-sanitize-3.0.2.tgz#b0b783220af528ba8fe6999f092d138908678520" + integrity sha512-+2I0x2ZCAyiZOO/sb4yNLFmdwPBnyJ4PBkVTUMKMqBwYNA+lXSgOmoRXlJFazoyid9QPogRRKgKhVEodv181sA== + dependencies: + xtend "^4.0.0" + +hast-util-to-html@^7.0.0: + version "7.1.2" + resolved "https://registry.yarnpkg.com/hast-util-to-html/-/hast-util-to-html-7.1.2.tgz#db677f0ee483658cea0eecc9dec30aba42b67111" + integrity sha512-pu73bvORzdF6XZgwl9eID/0RjBb/jtRfoGRRSykpR1+o9rCdiAHpgkSukZsQBRlIqMg6ylAcd7F0F7myJUb09Q== + dependencies: + ccount "^1.0.0" + comma-separated-tokens "^1.0.0" + hast-util-is-element "^1.0.0" + hast-util-whitespace "^1.0.0" + html-void-elements "^1.0.0" + property-information "^5.0.0" + space-separated-tokens "^1.0.0" + stringify-entities "^3.0.1" + unist-util-is "^4.0.0" + xtend "^4.0.0" + +hast-util-whitespace@^1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/hast-util-whitespace/-/hast-util-whitespace-1.0.4.tgz#e4fe77c4a9ae1cb2e6c25e02df0043d0164f6e41" + integrity sha512-I5GTdSfhYfAPNztx2xJRQpG8cuDSNt599/7YUn7Gx/WxNMsG+a835k97TDkFgk123cwjfwINaZknkKkphx/f2A== + he@1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== -hmac-drbg@^1.0.0: +hmac-drbg@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= @@ -1181,6 +2505,11 @@ html-tags@^3.1.0: resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-3.1.0.tgz#7b5e6f7e665e9fb41f30007ed9e0d41e97fb2140" integrity sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg== +html-void-elements@^1.0.0: + version "1.0.5" + resolved "https://registry.yarnpkg.com/html-void-elements/-/html-void-elements-1.0.5.tgz#ce9159494e86d95e45795b166c2021c2cfca4483" + integrity sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w== + htmlparser2@5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-5.0.1.tgz#7daa6fc3e35d6107ac95a4fc08781f091664f6e7" @@ -1215,7 +2544,12 @@ https-proxy-agent@5.0.0: agent-base "6" debug "4" -iconv-lite@0.4.24: +human-signals@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" + integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== + +iconv-lite@0.4.24, iconv-lite@^0.4.4: version "0.4.24" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== @@ -1227,6 +2561,18 @@ ieee754@^1.1.13, ieee754@^1.1.4: resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== +ignore-walk@^3.0.1: + version "3.0.3" + resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.3.tgz#017e2447184bfeade7c238e4aefdd1e8f95b1e37" + integrity sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw== + dependencies: + minimatch "^3.0.4" + +image-q@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/image-q/-/image-q-1.1.1.tgz#fc84099664460b90ca862d9300b6bfbbbfbf8056" + integrity sha1-/IQJlmRGC5DKhi2TALa/u7+/gFY= + indexes-of@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" @@ -1260,6 +2606,19 @@ ini@~1.3.0: resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== +is-alphabetical@^1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.4.tgz#9e7d6b94916be22153745d184c298cbf986a686d" + integrity sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg== + +is-alphanumerical@^1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz#7eb9a2431f855f6b1ef1a78e326df515696c4dbf" + integrity sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A== + dependencies: + is-alphabetical "^1.0.0" + is-decimal "^1.0.0" + is-arrayish@^0.3.1: version "0.3.2" resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" @@ -1272,6 +2631,11 @@ is-binary-path@~2.1.0: dependencies: binary-extensions "^2.0.0" +is-buffer@^2.0.0: + version "2.0.5" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191" + integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ== + is-core-module@^2.1.0: version "2.2.0" resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.2.0.tgz#97037ef3d52224d85163f5597b2b63d9afed981a" @@ -1279,6 +2643,16 @@ is-core-module@^2.1.0: dependencies: has "^1.0.3" +is-decimal@^1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.4.tgz#65a3a5958a1c5b63a706e1b333d7cd9f630d3fa5" + integrity sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw== + +is-extendable@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" + integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= + is-extglob@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" @@ -1296,6 +2670,11 @@ is-fullwidth-code-point@^2.0.0: resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= +is-function@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.2.tgz#4f097f30abf6efadac9833b17ca5dc03f8144e08" + integrity sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ== + is-glob@^4.0.1, is-glob@~4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" @@ -1303,16 +2682,36 @@ is-glob@^4.0.1, is-glob@~4.0.1: dependencies: is-extglob "^2.1.1" +is-hexadecimal@^1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz#cc35c97588da4bd49a8eedd6bc4082d44dcb23a7" + integrity sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw== + is-number@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== +is-plain-obj@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" + integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== + +is-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" + integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== + isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= + isobject@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" @@ -1328,11 +2727,44 @@ jest-worker@24.9.0: merge-stream "^2.0.0" supports-color "^6.1.0" +jimp@^0.16.1: + version "0.16.1" + resolved "https://registry.yarnpkg.com/jimp/-/jimp-0.16.1.tgz#192f851a30e5ca11112a3d0aa53137659a78ca7a" + integrity sha512-+EKVxbR36Td7Hfd23wKGIeEyHbxShZDX6L8uJkgVW3ESA9GiTEPK08tG1XI2r/0w5Ch0HyJF5kPqF9K7EmGjaw== + dependencies: + "@babel/runtime" "^7.7.2" + "@jimp/custom" "^0.16.1" + "@jimp/plugins" "^0.16.1" + "@jimp/types" "^0.16.1" + regenerator-runtime "^0.13.3" + +jpeg-js@0.4.2: + version "0.4.2" + resolved "https://registry.yarnpkg.com/jpeg-js/-/jpeg-js-0.4.2.tgz#8b345b1ae4abde64c2da2fe67ea216a114ac279d" + integrity sha512-+az2gi/hvex7eLTMTlbRLOhH6P6WFdk2ITI8HJsaH2VqYO0I594zXSYEP+tf4FW+8Cy68ScDXoAsQdyQanv3sw== + "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== +js-yaml-loader@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/js-yaml-loader/-/js-yaml-loader-1.2.2.tgz#2c15f93915617acd19676d648945fa3003f8629b" + integrity sha512-H+NeuNrG6uOs/WMjna2SjkaCw13rMWiT/D7l9+9x5n8aq88BDsh2sRmdfxckWPIHtViYHWRG6XiCKYvS1dfyLg== + dependencies: + js-yaml "^3.13.1" + loader-utils "^1.2.3" + un-eval "^1.2.0" + +js-yaml@^3.11.0, js-yaml@^3.13.1: + version "3.14.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + json-schema-traverse@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" @@ -1361,6 +2793,44 @@ jsonfile@^6.0.1: optionalDependencies: graceful-fs "^4.1.6" +jsonwebtoken@^8.5.1: + version "8.5.1" + resolved "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz#00e71e0b8df54c2121a1f26137df2280673bcc0d" + integrity sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w== + dependencies: + jws "^3.2.2" + lodash.includes "^4.3.0" + lodash.isboolean "^3.0.3" + lodash.isinteger "^4.0.4" + lodash.isnumber "^3.0.3" + lodash.isplainobject "^4.0.6" + lodash.isstring "^4.0.1" + lodash.once "^4.0.0" + ms "^2.1.1" + semver "^5.6.0" + +jwa@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/jwa/-/jwa-1.4.1.tgz#743c32985cb9e98655530d53641b66c8645b039a" + integrity sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA== + dependencies: + buffer-equal-constant-time "1.0.1" + ecdsa-sig-formatter "1.0.11" + safe-buffer "^5.0.1" + +jws@^3.2.2: + version "3.2.2" + resolved "https://registry.yarnpkg.com/jws/-/jws-3.2.2.tgz#001099f3639468c9414000e99995fa52fb478304" + integrity sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA== + dependencies: + jwa "^1.4.1" + safe-buffer "^5.0.1" + +kind-of@^6.0.0, kind-of@^6.0.2: + version "6.0.3" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + line-column@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/line-column/-/line-column-1.0.2.tgz#d25af2936b6f4849172b312e4792d1d987bc34a2" @@ -1369,6 +2839,20 @@ line-column@^1.0.2: isarray "^1.0.0" isobject "^2.0.0" +load-bmfont@^1.3.1, load-bmfont@^1.4.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/load-bmfont/-/load-bmfont-1.4.1.tgz#c0f5f4711a1e2ccff725a7b6078087ccfcddd3e9" + integrity sha512-8UyQoYmdRDy81Brz6aLAUhfZLwr5zV0L3taTQ4hju7m6biuwiWiJXjPhBJxbUQJA8PrkvJ/7Enqmwk2sM14soA== + dependencies: + buffer-equal "0.0.1" + mime "^1.3.4" + parse-bmfont-ascii "^1.0.3" + parse-bmfont-binary "^1.0.5" + parse-bmfont-xml "^1.1.4" + phin "^2.9.1" + xhr "^2.0.1" + xtend "^4.0.0" + loader-utils@1.2.3: version "1.2.3" resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7" @@ -1378,6 +2862,15 @@ loader-utils@1.2.3: emojis-list "^2.0.0" json5 "^1.0.1" +loader-utils@^1.2.3: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613" + integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA== + dependencies: + big.js "^5.2.2" + emojis-list "^3.0.0" + json5 "^1.0.1" + loader-utils@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.0.tgz#e4cace5b816d425a166b5f097e10cd12b36064b0" @@ -1394,6 +2887,41 @@ locate-path@^5.0.0: dependencies: p-locate "^4.1.0" +lodash.includes@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/lodash.includes/-/lodash.includes-4.3.0.tgz#60bb98a87cb923c68ca1e51325483314849f553f" + integrity sha1-YLuYqHy5I8aMoeUTJUgzFISfVT8= + +lodash.isboolean@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz#6c2e171db2a257cd96802fd43b01b20d5f5870f6" + integrity sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY= + +lodash.isinteger@^4.0.4: + version "4.0.4" + resolved "https://registry.yarnpkg.com/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz#619c0af3d03f8b04c31f5882840b77b11cd68343" + integrity sha1-YZwK89A/iwTDH1iChAt3sRzWg0M= + +lodash.isnumber@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz#3ce76810c5928d03352301ac287317f11c0b1ffc" + integrity sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w= + +lodash.isplainobject@^4.0.6: + version "4.0.6" + resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" + integrity sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs= + +lodash.isstring@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451" + integrity sha1-1SfftUVuynzJu5XV2ur4i6VKVFE= + +lodash.once@^4.0.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" + integrity sha1-DdOXEhPHxW34gJd9UEyI+0cal6w= + lodash.sortby@^4.7.0: version "4.7.0" resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" @@ -1404,11 +2932,21 @@ lodash.toarray@^4.4.0: resolved "https://registry.yarnpkg.com/lodash.toarray/-/lodash.toarray-4.4.0.tgz#24c4bfcd6b2fba38bfd0594db1179d8e9b656561" integrity sha1-JMS/zWsvuji/0FlNsRedjptlZWE= -lodash@^4.17.13, lodash@^4.17.20: +lodash@^4.17.13: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +lodash@^4.17.20: version "4.17.20" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== +longest-streak@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-2.0.4.tgz#b8599957da5b5dab64dee3fe316fa774597d90e4" + integrity sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg== + loose-envify@^1.1.0, loose-envify@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" @@ -1423,7 +2961,7 @@ lru-cache@6.0.0, lru-cache@^6.0.0: dependencies: yallist "^4.0.0" -make-dir@^3.0.2: +make-dir@^3.0.2, make-dir@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== @@ -1439,11 +2977,86 @@ md5.js@^1.3.4: inherits "^2.0.1" safe-buffer "^5.1.2" +mdast-util-definitions@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz#c5c1a84db799173b4dcf7643cda999e440c24db2" + integrity sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ== + dependencies: + unist-util-visit "^2.0.0" + +mdast-util-from-markdown@^0.8.0: + version "0.8.5" + resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-0.8.5.tgz#d1ef2ca42bc377ecb0463a987910dae89bd9a28c" + integrity sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ== + dependencies: + "@types/mdast" "^3.0.0" + mdast-util-to-string "^2.0.0" + micromark "~2.11.0" + parse-entities "^2.0.0" + unist-util-stringify-position "^2.0.0" + +mdast-util-to-hast@^10.0.0: + version "10.2.0" + resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-10.2.0.tgz#61875526a017d8857b71abc9333942700b2d3604" + integrity sha512-JoPBfJ3gBnHZ18icCwHR50orC9kNH81tiR1gs01D8Q5YpV6adHNO9nKNuFBCJQ941/32PT1a63UF/DitmS3amQ== + dependencies: + "@types/mdast" "^3.0.0" + "@types/unist" "^2.0.0" + mdast-util-definitions "^4.0.0" + mdurl "^1.0.0" + unist-builder "^2.0.0" + unist-util-generated "^1.0.0" + unist-util-position "^3.0.0" + unist-util-visit "^2.0.0" + +mdast-util-to-markdown@^0.6.0: + version "0.6.5" + resolved "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz#b33f67ca820d69e6cc527a93d4039249b504bebe" + integrity sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ== + dependencies: + "@types/unist" "^2.0.0" + longest-streak "^2.0.0" + mdast-util-to-string "^2.0.0" + parse-entities "^2.0.0" + repeat-string "^1.0.0" + zwitch "^1.0.0" + +mdast-util-to-string@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz#b8cfe6a713e1091cb5b728fc48885a4767f8b97b" + integrity sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w== + +mdurl@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e" + integrity sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4= + merge-stream@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== +micro-memoize@4.0.9: + version "4.0.9" + resolved "https://registry.yarnpkg.com/micro-memoize/-/micro-memoize-4.0.9.tgz#b44a38c9dffbee1cefc2fd139bc8947952268b62" + integrity sha512-Z2uZi/IUMGQDCXASdujXRqrXXEwSY0XffUrAOllhqzQI3wpUyZbiZTiE2JuYC0HSG2G7DbCS5jZmsEKEGZuemg== + +micromark@~2.11.0: + version "2.11.4" + resolved "https://registry.yarnpkg.com/micromark/-/micromark-2.11.4.tgz#d13436138eea826383e822449c9a5c50ee44665a" + integrity sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA== + dependencies: + debug "^4.0.0" + parse-entities "^2.0.0" + +micromatch@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259" + integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q== + dependencies: + braces "^3.0.1" + picomatch "^2.0.5" + miller-rabin@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" @@ -1464,6 +3077,21 @@ mime-types@^2.1.27: dependencies: mime-db "1.45.0" +mime@^1.3.4: + version "1.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +mimic-fn@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-3.1.0.tgz#65755145bbf3e36954b949c16450427451d5ca74" + integrity sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ== + mimic-response@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-2.1.0.tgz#d13763d35f613d09ec37ebb30bac0469c0ee8f43" @@ -1474,12 +3102,19 @@ mimic-response@^3.1.0: resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== +min-document@^2.19.0: + version "2.19.0" + resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685" + integrity sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU= + dependencies: + dom-walk "^0.1.0" + minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== -minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: +minimalistic-crypto-utils@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= @@ -1496,22 +3131,62 @@ minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.5: resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== +minipass@^2.6.0, minipass@^2.8.6, minipass@^2.9.0: + version "2.9.0" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.9.0.tgz#e713762e7d3e32fed803115cf93e04bca9fcc9a6" + integrity sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg== + dependencies: + safe-buffer "^5.1.2" + yallist "^3.0.0" + +minizlib@^1.2.1: + version "1.3.3" + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz#2290de96818a34c29551c8a8d301216bd65a861d" + integrity sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q== + dependencies: + minipass "^2.9.0" + mkdirp-classic@^0.5.2, mkdirp-classic@^0.5.3: version "0.5.3" resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== +mkdirp@^0.5.0, mkdirp@^0.5.1: + version "0.5.5" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" + integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== + dependencies: + minimist "^1.2.5" + modern-normalize@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/modern-normalize/-/modern-normalize-1.0.0.tgz#539d84a1e141338b01b346f3e27396d0ed17601e" integrity sha512-1lM+BMLGuDfsdwf3rsgBSrxJwAZHFIrQ8YR61xIqdHo0uNKI9M52wNpHSrliZATJp51On6JD0AfRxd4YGSU0lw== +moize@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/moize/-/moize-6.0.1.tgz#5e1cd820fb156e90b83e411e0e22b3bbbccea474" + integrity sha512-Bl91P98A6Xba35mn9XoAW9DuGoQb3HyoY888TxrvQbMr9+1v3dzBzi9n4Guh5Lne8ENdqbXjQ0a8mf7UUvZ9wg== + dependencies: + fast-equals "2.0.0" + micro-memoize "4.0.9" + ms@2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== -nanoid@^3.1.16, nanoid@^3.1.20: +ms@^2.1.1: + version "2.1.3" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +nanoid@^3.1.16: + version "3.1.22" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.22.tgz#b35f8fb7d151990a8aebd5aa5015c03cf726f844" + integrity sha512-/2ZUaJX2ANuLtTvqTlgqBQNJoQO398KyJgZloL0PZkC0dpysjncRUPsFe3DUPzz/y3h+u7C46np8RMuvF3jsSQ== + +nanoid@^3.1.20: version "3.1.20" resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.20.tgz#badc263c6b1dcf14b71efaa85f6ab4c1d6cfc788" integrity sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw== @@ -1528,6 +3203,20 @@ native-url@0.3.4: dependencies: querystring "^0.2.0" +needle@^2.2.1: + version "2.6.0" + resolved "https://registry.yarnpkg.com/needle/-/needle-2.6.0.tgz#24dbb55f2509e2324b4a99d61f413982013ccdbe" + integrity sha512-KKYdza4heMsEfSWD7VPUIz3zX2XDwOyX2d+geb4vrERZMT5RMU6ujjaD+I5Yr54uZxQ2w6XRTAhHBbSCyovZBg== + dependencies: + debug "^3.2.6" + iconv-lite "^0.4.4" + sax "^1.2.4" + +next-compose-plugins@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/next-compose-plugins/-/next-compose-plugins-2.2.1.tgz#020fc53f275a7e719d62521bef4300fbb6fde5ab" + integrity sha512-OjJ+fV15FXO2uQXQagLD4C0abYErBjyjE0I0FHpOEIB8upw0hg1ldFP6cqHTJBH1cZqy96OeR3u1dJ+Ez2D4Bg== + next-images@^1.7.0: version "1.7.0" resolved "https://registry.yarnpkg.com/next-images/-/next-images-1.7.0.tgz#70761ad88543b222d383e139824063c04f1119d6" @@ -1536,6 +3225,13 @@ next-images@^1.7.0: file-loader "^6.0.0" url-loader "^4.0.0" +next-plugin-yaml@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/next-plugin-yaml/-/next-plugin-yaml-1.0.1.tgz#90e96637dfa445806fc44d1df3506c0f1446246a" + integrity sha512-k13wbpN33wTgrgWUBiXPtObXO94JOEiwvYKJ3X0JrBz2yaW24EfNaVqHwA0dwhsn9PyPIKhPhgsu3bhJsNs+cQ== + dependencies: + js-yaml-loader "^1.2.2" + next@10.0.6: version "10.0.6" resolved "https://registry.yarnpkg.com/next/-/next-10.0.6.tgz#1d33723d714c85f282b9bf6ff59dcae40f9252cb" @@ -1582,9 +3278,9 @@ next@10.0.6: sharp "0.26.3" node-abi@^2.7.0: - version "2.19.3" - resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-2.19.3.tgz#252f5dcab12dad1b5503b2d27eddd4733930282d" - integrity sha512-9xZrlyfvKhWme2EXFKQhZRp1yNWT/uI1luYPr3sFl+H4keYY4xR+1jO7mvTTijIsHf1M+QDe9uWuKeEpLInIlg== + version "2.21.0" + resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-2.21.0.tgz#c2dc9ebad6f4f53d6ea9b531e7b8faad81041d48" + integrity sha512-smhrivuPqEM3H5LmnY3KU6HfYv0u4QklgAxfFyRNujKUzbUcYZ+Jc2EhukB9SRcD2VpqhxM7n/MIcp1Ua1/JMg== dependencies: semver "^5.4.1" @@ -1605,6 +3301,11 @@ node-fetch@2.6.1: resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== +node-gyp-build@^4.2.2: + version "4.2.3" + resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.2.3.tgz#ce6277f853835f718829efb47db20f3e4d9c4739" + integrity sha512-MN6ZpzmfNCRM+3t57PTJHgHyw/h4OWnZ6mR8P5j/uZtqQr46RRuDE/P+g3n0YR/AiYXeWixZZzaip77gdICfRg== + node-html-parser@1.4.9: version "1.4.9" resolved "https://registry.yarnpkg.com/node-html-parser/-/node-html-parser-1.4.9.tgz#3c8f6cac46479fae5800725edb532e9ae8fd816c" @@ -1641,7 +3342,28 @@ node-libs-browser@^2.2.1: util "^0.11.0" vm-browserify "^1.0.1" -node-releases@^1.1.69, node-releases@^1.1.70: +node-pre-gyp@^0.13.0: + version "0.13.0" + resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.13.0.tgz#df9ab7b68dd6498137717838e4f92a33fc9daa42" + integrity sha512-Md1D3xnEne8b/HGVQkZZwV27WUi1ZRuZBij24TNaZwUPU3ZAFtvT6xxJGaUVillfmMKnn5oD1HoGsp2Ftik7SQ== + dependencies: + detect-libc "^1.0.2" + mkdirp "^0.5.1" + needle "^2.2.1" + nopt "^4.0.1" + npm-packlist "^1.1.6" + npmlog "^4.0.2" + rc "^1.2.7" + rimraf "^2.6.1" + semver "^5.3.0" + tar "^4" + +node-releases@^1.1.69: + version "1.1.71" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.71.tgz#cb1334b179896b1c89ecfdd4b725fb7bbdfc7dbb" + integrity sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg== + +node-releases@^1.1.70: version "1.1.70" resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.70.tgz#66e0ed0273aa65666d7fe78febe7634875426a08" integrity sha512-Slf2s69+2/uAD79pVVQo8uSiC34+g8GWY8UH2Qtqv34ZfhYrxpYpfzs9Js9d6O0mbDmALuxaTlplnBTnSELcrw== @@ -1651,6 +3373,14 @@ noop-logger@^0.1.1: resolved "https://registry.yarnpkg.com/noop-logger/-/noop-logger-0.1.1.tgz#94a2b1633c4f1317553007d8966fd0e841b6a4c2" integrity sha1-lKKxYzxPExdVMAfYlm/Q6EG2pMI= +nopt@^4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz#a375cad9d02fd921278d954c2254d5aa57e15e48" + integrity sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg== + dependencies: + abbrev "1" + osenv "^0.1.4" + normalize-html-whitespace@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/normalize-html-whitespace/-/normalize-html-whitespace-1.0.0.tgz#5e3c8e192f1b06c3b9eee4b7e7f28854c7601e34" @@ -1666,7 +3396,35 @@ normalize-range@^0.1.2: resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI= -npmlog@^4.0.1, npmlog@^4.1.2: +npm-bundled@^1.0.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.1.tgz#1edd570865a94cdb1bc8220775e29466c9fb234b" + integrity sha512-gqkfgGePhTpAEgUsGEgcq1rqPXA+tv/aVBlgEzfXwA1yiUJF7xtEt3CtVwOjNYQOVknDk0F20w58Fnm3EtG0fA== + dependencies: + npm-normalize-package-bin "^1.0.1" + +npm-normalize-package-bin@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2" + integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA== + +npm-packlist@^1.1.6: + version "1.4.8" + resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.8.tgz#56ee6cc135b9f98ad3d51c1c95da22bbb9b2ef3e" + integrity sha512-5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A== + dependencies: + ignore-walk "^3.0.1" + npm-bundled "^1.0.1" + npm-normalize-package-bin "^1.0.1" + +npm-run-path@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + +npmlog@^4.0.1, npmlog@^4.0.2, npmlog@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== @@ -1691,6 +3449,11 @@ object-hash@^2.0.3: resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-2.1.1.tgz#9447d0279b4fcf80cff3259bf66a1dc73afabe09" integrity sha512-VOJmgmS+7wvXf8CjbQmimtCnEx3IAoLxI3fp2fbWehxrWBcAQFbk+vcwb6vzR0VZv/eNCJ/27j151ZTwqW/JeQ== +omggif@^1.0.10, omggif@^1.0.9: + version "1.0.10" + resolved "https://registry.yarnpkg.com/omggif/-/omggif-1.0.10.tgz#ddaaf90d4a42f532e9e7cb3a95ecdd47f17c7b19" + integrity sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw== + once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" @@ -1698,11 +3461,36 @@ once@^1.3.0, once@^1.3.1, once@^1.4.0: dependencies: wrappy "1" +onetime@^5.1.0: + version "5.1.2" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + os-browserify@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc= +os-homedir@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" + integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= + +os-tmpdir@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= + +osenv@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" + integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.0" + p-limit@3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" @@ -1729,7 +3517,7 @@ p-try@^2.0.0: resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== -pako@~1.0.5: +pako@^1.0.5, pako@~1.0.5: version "1.0.11" resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== @@ -1745,6 +3533,41 @@ parse-asn1@^5.0.0, parse-asn1@^5.1.5: pbkdf2 "^3.0.3" safe-buffer "^5.1.1" +parse-bmfont-ascii@^1.0.3: + version "1.0.6" + resolved "https://registry.yarnpkg.com/parse-bmfont-ascii/-/parse-bmfont-ascii-1.0.6.tgz#11ac3c3ff58f7c2020ab22769079108d4dfa0285" + integrity sha1-Eaw8P/WPfCAgqyJ2kHkQjU36AoU= + +parse-bmfont-binary@^1.0.5: + version "1.0.6" + resolved "https://registry.yarnpkg.com/parse-bmfont-binary/-/parse-bmfont-binary-1.0.6.tgz#d038b476d3e9dd9db1e11a0b0e53a22792b69006" + integrity sha1-0Di0dtPp3Z2x4RoLDlOiJ5K2kAY= + +parse-bmfont-xml@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/parse-bmfont-xml/-/parse-bmfont-xml-1.1.4.tgz#015319797e3e12f9e739c4d513872cd2fa35f389" + integrity sha512-bjnliEOmGv3y1aMEfREMBJ9tfL3WR0i0CKPj61DnSLaoxWR3nLrsQrEbCId/8rF4NyRF0cCqisSVXyQYWM+mCQ== + dependencies: + xml-parse-from-string "^1.0.0" + xml2js "^0.4.5" + +parse-entities@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-2.0.0.tgz#53c6eb5b9314a1f4ec99fa0fdf7ce01ecda0cbe8" + integrity sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ== + dependencies: + character-entities "^1.0.0" + character-entities-legacy "^1.0.0" + character-reference-invalid "^1.0.0" + is-alphanumerical "^1.0.0" + is-decimal "^1.0.0" + is-hexadecimal "^1.0.0" + +parse-headers@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/parse-headers/-/parse-headers-2.0.3.tgz#5e8e7512383d140ba02f0c7aa9f49b4399c92515" + integrity sha512-QhhZ+DCCit2Coi2vmAKbq5RGTRcQUOE2+REgv8vdyu7MnYx2eZztegqtTx99TZ86GTIwqiy3+4nQTWZ2tgmdCA== + path-browserify@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a" @@ -1765,11 +3588,21 @@ path-is-absolute@^1.0.0: resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= +path-key@^3.0.0, path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + path-parse@^1.0.6: version "1.0.6" resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== +path-to-regexp@^6.1.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-6.2.0.tgz#f7b3803336104c346889adece614669230645f38" + integrity sha512-f66KywYG6+43afgE/8j/GoiNyygk/bnoCbps++3ErRKsIYkGGupyv07R2Ok5m9i67Iqc+T2g1eAUGUPzWhYTyg== + pbkdf2@^3.0.3: version "3.1.1" resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.1.tgz#cb8724b0fada984596856d1a6ebafd3584654b94" @@ -1781,11 +3614,23 @@ pbkdf2@^3.0.3: safe-buffer "^5.0.1" sha.js "^2.4.8" -picomatch@^2.0.4, picomatch@^2.2.1: +phin@^2.9.1: + version "2.9.3" + resolved "https://registry.yarnpkg.com/phin/-/phin-2.9.3.tgz#f9b6ac10a035636fb65dfc576aaaa17b8743125c" + integrity sha512-CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA== + +picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.1: version "2.2.2" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== +pixelmatch@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/pixelmatch/-/pixelmatch-4.0.2.tgz#8f47dcec5011b477b67db03c243bc1f3085e8854" + integrity sha1-j0fc7FARtHe2fbA8JDvB8wheiFQ= + dependencies: + pngjs "^3.0.0" + pkg-dir@^4.1.0: version "4.2.0" resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" @@ -1798,6 +3643,11 @@ platform@1.3.6: resolved "https://registry.yarnpkg.com/platform/-/platform-1.3.6.tgz#48b4ce983164b209c2d45a107adb31f473a6e7a7" integrity sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg== +pngjs@^3.0.0, pngjs@^3.3.3: + version "3.4.0" + resolved "https://registry.yarnpkg.com/pngjs/-/pngjs-3.4.0.tgz#99ca7d725965fb655814eaf65f38f12bbdbf555f" + integrity sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w== + pnp-webpack-plugin@1.6.4: version "1.6.4" resolved "https://registry.yarnpkg.com/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz#c9711ac4dc48a685dabafc86f8b6dd9f8df84149" @@ -1904,9 +3754,9 @@ postcss@^8.1.6, postcss@^8.2.1, postcss@^8.2.4: source-map "^0.6.1" prebuild-install@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-6.0.0.tgz#669022bcde57c710a869e39c5ca6bf9cd207f316" - integrity sha512-h2ZJ1PXHKWZpp1caLw0oX9sagVpL2YTk+ZwInQbQ3QqNd4J03O6MpFNmMTJlkfgPENWqe5kP0WjQLqz5OjLfsw== + version "6.0.1" + resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-6.0.1.tgz#5902172f7a40eb67305b96c2a695db32636ee26d" + integrity sha512-7GOJrLuow8yeiyv75rmvZyeMGzl8mdEX5gY69d6a6bHWmiPevwqFw+tQavhK0EYMaSg3/KD24cWqeQv1EWsqDQ== dependencies: detect-libc "^1.0.3" expand-template "^2.0.3" @@ -1948,6 +3798,13 @@ prop-types@15.7.2: object-assign "^4.1.1" react-is "^16.8.1" +property-information@^5.0.0: + version "5.6.0" + resolved "https://registry.yarnpkg.com/property-information/-/property-information-5.6.0.tgz#61675545fb23002f245c6540ec46077d4da3ed69" + integrity sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA== + dependencies: + xtend "^4.0.0" + public-encrypt@^4.0.0: version "4.0.3" resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" @@ -1998,11 +3855,16 @@ querystring-es3@^0.2.0: resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM= -querystring@0.2.0, querystring@^0.2.0: +querystring@0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= +querystring@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.1.tgz#40d77615bb09d16902a85c3e38aa8b5ed761c2dd" + integrity sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg== + randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: version "2.1.0" resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" @@ -2052,6 +3914,13 @@ react-is@16.13.1, react-is@^16.8.1: resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== +react-native-get-random-values@^1.4.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/react-native-get-random-values/-/react-native-get-random-values-1.6.0.tgz#9035636b2dc2a6d574f2803205381fe1a7b5c864" + integrity sha512-sPTRTJk4bpuZeTBf6d7DldQGAOCi0GZh5NxzNI3eHXzxwHbNkV13Q22TehiSb3bsaVqwLC4UAa6QvYIucyyc+A== + dependencies: + fast-base64-decode "^1.0.0" + react-refresh@0.8.3: version "0.8.3" resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.8.3.tgz#721d4657672d400c5e3c75d063c4a85fb2d5d68f" @@ -2102,11 +3971,53 @@ reduce-css-calc@^2.1.6: css-unit-converter "^1.1.1" postcss-value-parser "^3.3.0" -regenerator-runtime@^0.13.4: +regenerator-runtime@^0.13.3, regenerator-runtime@^0.13.4: version "0.13.7" resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55" integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew== +remark-html@^13.0.1: + version "13.0.1" + resolved "https://registry.yarnpkg.com/remark-html/-/remark-html-13.0.1.tgz#d5b2d8be01203e61fc37403167ca7584879ad675" + integrity sha512-K5KQCXWVz+harnyC+UVM/J9eJWCgjYRqFeZoZf2NgP0iFbuuw/RgMZv3MA34b/OEpGnstl3oiOUtZzD3tJ+CBw== + dependencies: + hast-util-sanitize "^3.0.0" + hast-util-to-html "^7.0.0" + mdast-util-to-hast "^10.0.0" + +remark-parse@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-9.0.0.tgz#4d20a299665880e4f4af5d90b7c7b8a935853640" + integrity sha512-geKatMwSzEXKHuzBNU1z676sGcDcFoChMK38TgdHJNAYfFtsfHDQG7MoJAjs6sgYMqyLduCYWDIWZIxiPeafEw== + dependencies: + mdast-util-from-markdown "^0.8.0" + +remark-stringify@^9.0.0: + version "9.0.1" + resolved "https://registry.yarnpkg.com/remark-stringify/-/remark-stringify-9.0.1.tgz#576d06e910548b0a7191a71f27b33f1218862894" + integrity sha512-mWmNg3ZtESvZS8fv5PTvaPckdL4iNlCHTt8/e/8oN08nArHRHjNZMKzA/YW3+p7/lYqIw4nx1XsjCBo/AxNChg== + dependencies: + mdast-util-to-markdown "^0.6.0" + +remark@^13.0.0: + version "13.0.0" + resolved "https://registry.yarnpkg.com/remark/-/remark-13.0.0.tgz#d15d9bf71a402f40287ebe36067b66d54868e425" + integrity sha512-HDz1+IKGtOyWN+QgBiAT0kn+2s6ovOxHyPAFGKVE81VSzJ+mq7RwHFledEvB5F1p4iJvOah/LOKdFuzvRnNLCA== + dependencies: + remark-parse "^9.0.0" + remark-stringify "^9.0.0" + unified "^9.1.0" + +repeat-string@^1.0.0: + version "1.6.1" + resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" + integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= + +resolve-from@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" + integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== + resolve@^1.19.0: version "1.19.0" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.19.0.tgz#1af5bf630409734a067cae29318aac7fa29a267c" @@ -2115,6 +4026,13 @@ resolve@^1.19.0: is-core-module "^2.1.0" path-parse "^1.0.6" +rimraf@^2.6.1: + version "2.7.1" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" + integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== + dependencies: + glob "^7.1.3" + ripemd160@^2.0.0, ripemd160@^2.0.1: version "2.0.2" resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" @@ -2123,6 +4041,13 @@ ripemd160@^2.0.0, ripemd160@^2.0.1: hash-base "^3.0.0" inherits "^2.0.1" +rollup-pluginutils@^2.8.2: + version "2.8.2" + resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz#72f2af0748b592364dbd3389e600e5a9444a351e" + integrity sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ== + dependencies: + estree-walker "^0.6.1" + safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0: version "5.2.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" @@ -2138,6 +4063,11 @@ safe-buffer@~5.1.0, safe-buffer@~5.1.1: resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== +sax@>=0.6.0, sax@^1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" + integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== + scheduler@^0.20.1: version "0.20.1" resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.1.tgz#da0b907e24026b01181ecbc75efdc7f27b5a000c" @@ -2155,7 +4085,15 @@ schema-utils@^3.0.0: ajv "^6.12.5" ajv-keywords "^3.5.2" -semver@^5.4.1: +section-matter@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/section-matter/-/section-matter-1.0.0.tgz#e9041953506780ec01d59f292a19c7b850b84167" + integrity sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA== + dependencies: + extend-shallow "^2.0.1" + kind-of "^6.0.0" + +semver@^5.3.0, semver@^5.4.1, semver@^5.6.0: version "5.7.1" resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== @@ -2211,12 +4149,24 @@ sharp@0.26.3: tar-fs "^2.1.1" tunnel-agent "^0.6.0" +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + shell-quote@1.7.2: version "1.7.2" resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2" integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg== -signal-exit@^3.0.0: +signal-exit@^3.0.0, signal-exit@^3.0.2: version "3.0.3" resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== @@ -2276,6 +4226,16 @@ source-map@^0.6.0, source-map@^0.6.1: resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== +space-separated-tokens@^1.0.0: + version "1.1.5" + resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz#85f32c3d10d9682007e917414ddc5c26d1aa6899" + integrity sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA== + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= + stacktrace-parser@0.1.10: version "0.1.10" resolved "https://registry.yarnpkg.com/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz#29fb0cae4e0d0b85155879402857a1639eb6051a" @@ -2351,6 +4311,15 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" +stringify-entities@^3.0.1: + version "3.1.0" + resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-3.1.0.tgz#b8d3feac256d9ffcc9fa1fefdcf3ca70576ee903" + integrity sha512-3FP+jGMmMV/ffZs86MoghGqAoqXAdxLrJP4GUdrDN1aIScYih5tuIO3eF4To5AJZ79KDZ8Fpdy7QJnK8SsL1Vg== + dependencies: + character-entities-html4 "^1.0.0" + character-entities-legacy "^1.0.0" + xtend "^4.0.0" + strip-ansi@6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" @@ -2372,6 +4341,16 @@ strip-ansi@^4.0.0: dependencies: ansi-regex "^3.0.0" +strip-bom-string@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/strip-bom-string/-/strip-bom-string-1.0.0.tgz#e5211e9224369fbb81d633a2f00044dc8cedad92" + integrity sha1-5SEekiQ2n7uB1jOi8ABE3IztrZI= + +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + strip-json-comments@~2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" @@ -2469,6 +4448,19 @@ tar-stream@^2.1.4: inherits "^2.0.3" readable-stream "^3.1.1" +tar@^4: + version "4.4.13" + resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.13.tgz#43b364bc52888d555298637b10d60790254ab525" + integrity sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA== + dependencies: + chownr "^1.1.1" + fs-minipass "^1.2.5" + minipass "^2.8.6" + minizlib "^1.2.1" + mkdirp "^0.5.0" + safe-buffer "^5.1.2" + yallist "^3.0.3" + terser@5.5.1: version "5.5.1" resolved "https://registry.yarnpkg.com/terser/-/terser-5.5.1.tgz#540caa25139d6f496fdea056e414284886fb2289" @@ -2485,6 +4477,16 @@ timers-browserify@^2.0.4: dependencies: setimmediate "^1.0.4" +timm@^1.6.1: + version "1.7.1" + resolved "https://registry.yarnpkg.com/timm/-/timm-1.7.1.tgz#96bab60c7d45b5a10a8a4d0f0117c6b7e5aff76f" + integrity sha512-IjZc9KIotudix8bMaBW6QvMuq64BrJWFs1+4V0lXwWGQZwH+LnX87doAYhem4caOEusRP9/g6jVDQmZ8XOk1nw== + +tinycolor2@^1.4.1: + version "1.4.2" + resolved "https://registry.yarnpkg.com/tinycolor2/-/tinycolor2-1.4.2.tgz#3f6a4d1071ad07676d7fa472e1fac40a719d8803" + integrity sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA== + to-arraybuffer@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" @@ -2514,11 +4516,26 @@ tr46@^1.0.1: dependencies: punycode "^2.1.0" +trough@^1.0.0: + version "1.0.5" + resolved "https://registry.yarnpkg.com/trough/-/trough-1.0.5.tgz#b8b639cefad7d0bb2abd37d433ff8293efa5f406" + integrity sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA== + ts-pnp@^1.1.6: version "1.2.0" resolved "https://registry.yarnpkg.com/ts-pnp/-/ts-pnp-1.2.0.tgz#a500ad084b0798f1c3071af391e65912c86bca92" integrity sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw== +tslib@^1.11.1, tslib@^1.8.0: + version "1.14.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" + integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + +tslib@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.1.0.tgz#da60860f1c2ecaa5703ab7d39bc05b6bf988b97a" + integrity sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A== + tty-browserify@0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" @@ -2536,11 +4553,72 @@ type-fest@^0.7.1: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.7.1.tgz#8dda65feaf03ed78f0a3f9678f1869147f7c5c48" integrity sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg== +un-eval@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/un-eval/-/un-eval-1.2.0.tgz#22a95c650334d59d21697efae32612218ecad65f" + integrity sha512-Wlj/pum6dQtGTPD/lclDtoVPkSfpjPfy1dwnnKw/sZP5DpBH9fLhBgQfsqNhe5/gS1D+vkZUuB771NRMUPA5CA== + +unified@^9.1.0: + version "9.2.1" + resolved "https://registry.yarnpkg.com/unified/-/unified-9.2.1.tgz#ae18d5674c114021bfdbdf73865ca60f410215a3" + integrity sha512-juWjuI8Z4xFg8pJbnEZ41b5xjGUWGHqXALmBZ3FC3WX0PIx1CZBIIJ6mXbYMcf6Yw4Fi0rFUTA1cdz/BglbOhA== + dependencies: + bail "^1.0.0" + extend "^3.0.0" + is-buffer "^2.0.0" + is-plain-obj "^2.0.0" + trough "^1.0.0" + vfile "^4.0.0" + uniq@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8= +unist-builder@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/unist-builder/-/unist-builder-2.0.3.tgz#77648711b5d86af0942f334397a33c5e91516436" + integrity sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw== + +unist-util-generated@^1.0.0: + version "1.1.6" + resolved "https://registry.yarnpkg.com/unist-util-generated/-/unist-util-generated-1.1.6.tgz#5ab51f689e2992a472beb1b35f2ce7ff2f324d4b" + integrity sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg== + +unist-util-is@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-4.1.0.tgz#976e5f462a7a5de73d94b706bac1b90671b57797" + integrity sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg== + +unist-util-position@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/unist-util-position/-/unist-util-position-3.1.0.tgz#1c42ee6301f8d52f47d14f62bbdb796571fa2d47" + integrity sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA== + +unist-util-stringify-position@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz#cce3bfa1cdf85ba7375d1d5b17bdc4cada9bd9da" + integrity sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g== + dependencies: + "@types/unist" "^2.0.2" + +unist-util-visit-parents@^3.0.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz#65a6ce698f78a6b0f56aa0e88f13801886cdaef6" + integrity sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg== + dependencies: + "@types/unist" "^2.0.0" + unist-util-is "^4.0.0" + +unist-util-visit@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-2.0.3.tgz#c3703893146df47203bb8a9795af47d7b971208c" + integrity sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q== + dependencies: + "@types/unist" "^2.0.0" + unist-util-is "^4.0.0" + unist-util-visit-parents "^3.0.0" + universalify@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" @@ -2582,6 +4660,13 @@ use-subscription@1.5.1: dependencies: object-assign "^4.1.1" +utif@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/utif/-/utif-2.0.1.tgz#9e1582d9bbd20011a6588548ed3266298e711759" + integrity sha512-Z/S1fNKCicQTf375lIP9G8Sa1H/phcysstNrrSdZKj1f9g58J4NMgb5IgiEZN9/nLMPDwF0W7hdOe9Qq2IYoLg== + dependencies: + pako "^1.0.5" + util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" @@ -2601,6 +4686,29 @@ util@^0.11.0: dependencies: inherits "2.0.3" +uuid@^3.0.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" + integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== + +vfile-message@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-2.0.4.tgz#5b43b88171d409eae58477d13f23dd41d52c371a" + integrity sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ== + dependencies: + "@types/unist" "^2.0.0" + unist-util-stringify-position "^2.0.0" + +vfile@^4.0.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/vfile/-/vfile-4.2.1.tgz#03f1dce28fc625c625bc6514350fbdb00fa9e624" + integrity sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA== + dependencies: + "@types/unist" "^2.0.0" + is-buffer "^2.0.0" + unist-util-stringify-position "^2.0.0" + vfile-message "^2.0.0" + vm-browserify@1.1.2, vm-browserify@^1.0.1: version "1.1.2" resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" @@ -2633,6 +4741,13 @@ which-pm-runs@^1.0.0: resolved "https://registry.yarnpkg.com/which-pm-runs/-/which-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb" integrity sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs= +which@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + wide-align@^1.1.0: version "1.1.3" resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" @@ -2645,11 +4760,44 @@ wrappy@1: resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= +xhr@^2.0.1: + version "2.6.0" + resolved "https://registry.yarnpkg.com/xhr/-/xhr-2.6.0.tgz#b69d4395e792b4173d6b7df077f0fc5e4e2b249d" + integrity sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA== + dependencies: + global "~4.4.0" + is-function "^1.0.1" + parse-headers "^2.0.0" + xtend "^4.0.0" + +xml-parse-from-string@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz#a9029e929d3dbcded169f3c6e28238d95a5d5a28" + integrity sha1-qQKekp09vN7RafPG4oI42VpdWig= + +xml2js@^0.4.5: + version "0.4.23" + resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.23.tgz#a0c69516752421eb2ac758ee4d4ccf58843eac66" + integrity sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug== + dependencies: + sax ">=0.6.0" + xmlbuilder "~11.0.0" + +xmlbuilder@~11.0.0: + version "11.0.1" + resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz#be9bae1c8a046e76b31127726347d0ad7002beb3" + integrity sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA== + xtend@^4.0.0, xtend@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== +yallist@^3.0.0, yallist@^3.0.3: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + yallist@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" @@ -2659,3 +4807,8 @@ yocto-queue@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== + +zwitch@^1.0.0: + version "1.0.5" + resolved "https://registry.yarnpkg.com/zwitch/-/zwitch-1.0.5.tgz#d11d7381ffed16b742f6af7b3f223d5cd9fe9920" + integrity sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==