├── README.md
├── package-lock.json
├── package.json
├── public
├── favicon.ico
├── images
│ ├── 1.jpeg
│ ├── 2.jpeg
│ ├── 3.png
│ ├── 4.jpg
│ ├── 5.jpg
│ ├── 6.jpg
│ ├── 7.png
│ ├── profile.jpeg
│ └── projects.jpeg
└── vercel.svg
├── src
├── components
│ ├── Acomplishments
│ │ ├── Acomplishments.js
│ │ └── AcomplishmentsStyles.js
│ ├── BackgrooundAnimation
│ │ └── BackgroundAnimation.js
│ ├── Footer
│ │ ├── Footer.js
│ │ └── FooterStyles.js
│ ├── Header
│ │ ├── Header.js
│ │ └── HeaderStyles.js
│ ├── Hero
│ │ ├── Hero.js
│ │ └── HeroStyles.js
│ ├── NavDropDown
│ │ ├── NavDropDown.js
│ │ └── index.js
│ ├── Projects
│ │ ├── Projects.js
│ │ └── ProjectsStyles.js
│ ├── Technologies
│ │ ├── Technologies.js
│ │ └── TechnologiesStyles.js
│ └── TimeLine
│ │ ├── TimeLine.js
│ │ └── TimeLineStyles.js
├── constants
│ └── constants.js
├── layout
│ ├── Layout.js
│ └── LayoutStyles.js
├── pages
│ ├── _app.js
│ ├── _document.js
│ ├── api
│ │ └── hello.js
│ └── index.js
├── styles
│ ├── GlobalComponents
│ │ ├── Button.js
│ │ └── index.js
│ ├── globals.js
│ └── theme.js
└── themes
│ └── default.js
└── yarn.lock
/README.md:
--------------------------------------------------------------------------------
1 | ## Personal Portfolio
2 |
3 | ### [Live Site](http://enespolat.surge.sh/)
4 |
5 | 
6 |
7 | We're going to use React and Next.js.
8 |
9 | Setup:
10 | - run ```npm i && npm start```
11 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "portfolio_nextjs",
3 | "version": "0.1.0",
4 | "private": true,
5 | "scripts": {
6 | "dev": "next dev",
7 | "build": "next build && next export",
8 | "start": "next start"
9 | },
10 | "dependencies": {
11 | "next": "10.2.3",
12 | "react": "17.0.2",
13 | "react-dom": "17.0.2",
14 | "styled-components": "^5.3.0",
15 | "styled-normalize": "^8.0.7",
16 | "react-icons": "^4.2.0"
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/enespolat25/portfolio/84f0b842acd8fc2d3aac39ab90b58d44fdc7f14c/public/favicon.ico
--------------------------------------------------------------------------------
/public/images/1.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/enespolat25/portfolio/84f0b842acd8fc2d3aac39ab90b58d44fdc7f14c/public/images/1.jpeg
--------------------------------------------------------------------------------
/public/images/2.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/enespolat25/portfolio/84f0b842acd8fc2d3aac39ab90b58d44fdc7f14c/public/images/2.jpeg
--------------------------------------------------------------------------------
/public/images/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/enespolat25/portfolio/84f0b842acd8fc2d3aac39ab90b58d44fdc7f14c/public/images/3.png
--------------------------------------------------------------------------------
/public/images/4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/enespolat25/portfolio/84f0b842acd8fc2d3aac39ab90b58d44fdc7f14c/public/images/4.jpg
--------------------------------------------------------------------------------
/public/images/5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/enespolat25/portfolio/84f0b842acd8fc2d3aac39ab90b58d44fdc7f14c/public/images/5.jpg
--------------------------------------------------------------------------------
/public/images/6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/enespolat25/portfolio/84f0b842acd8fc2d3aac39ab90b58d44fdc7f14c/public/images/6.jpg
--------------------------------------------------------------------------------
/public/images/7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/enespolat25/portfolio/84f0b842acd8fc2d3aac39ab90b58d44fdc7f14c/public/images/7.png
--------------------------------------------------------------------------------
/public/images/profile.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/enespolat25/portfolio/84f0b842acd8fc2d3aac39ab90b58d44fdc7f14c/public/images/profile.jpeg
--------------------------------------------------------------------------------
/public/images/projects.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/enespolat25/portfolio/84f0b842acd8fc2d3aac39ab90b58d44fdc7f14c/public/images/projects.jpeg
--------------------------------------------------------------------------------
/public/vercel.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/components/Acomplishments/Acomplishments.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | import { Section, SectionDivider, SectionTitle } from '../../styles/GlobalComponents';
4 | import { Box, Boxes, BoxNum, BoxText } from './AcomplishmentsStyles';
5 |
6 | const data = [
7 | { number: 196, text: 'Açık Kaynak Kod Proje'},
8 | { number: 20000, text: 'Udemy Öğrenci', },
9 | { number: 220, text: 'Github Takipçi', },
10 | { number: 170, text: 'Github Yıldızı', }
11 | ];
12 |
13 | const Acomplishments = () => (
14 |
15 | Kişisel Başarılar
16 |
17 | {data.map((card, index) => (
18 |
19 | {`${card.number}+`}
20 | {card.text}
21 |
22 | ))}
23 |
24 |
25 |
26 | );
27 |
28 | export default Acomplishments;
29 |
--------------------------------------------------------------------------------
/src/components/Acomplishments/AcomplishmentsStyles.js:
--------------------------------------------------------------------------------
1 | import styled from "styled-components"
2 |
3 | export const Boxes = styled.div`
4 | width: 100%;
5 | display: grid;
6 | grid-template-columns: repeat(4, 1fr);
7 | gap: 24px;
8 | margin: 24px 0 40px;
9 |
10 | @media ${props => props.theme.breakpoints.md}{
11 | gap: 16px;
12 | margin: 20px 0 32px;
13 | grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
14 | }
15 |
16 | @media ${props => props.theme.breakpoints.sm}{
17 | display: grid;
18 | grid-template-columns: repeat(2, 1fr);
19 | gap: 10px;
20 | max-width: 500px;
21 | margin: 24px auto;
22 | }
23 | `
24 |
25 | export const Box = styled.div`
26 | background: #212D45;
27 | border-radius: 12px;
28 | height: 144px;
29 | padding: 24px;
30 | @media ${props => props.theme.breakpoints.lg} {
31 | height: 210px;
32 |
33 | }
34 |
35 | @media ${props => props.theme.breakpoints.md} {
36 | height: 135px;
37 | padding: 16px;
38 | }
39 |
40 | @media ${props => props.theme.breakpoints.sm} {
41 | height: 110px;
42 | padding: 12px;
43 |
44 | &:nth-child(2n){
45 | grid-row:2;
46 | }
47 | }
48 | `
49 | export const BoxNum = styled.h5`
50 | font-style: normal;
51 | font-weight: 600;
52 | font-size: 36px;
53 | line-height: 40px;
54 | letter-spacing: 0.01em;
55 | color: #FFFFFF;
56 | margin-bottom: 8px;
57 |
58 | @media ${props => props.theme.breakpoints.md} {
59 | font-size: 28px;
60 | line-height: 32px;
61 | }
62 | @media ${props => props.theme.breakpoints.sm} {
63 | font-size: 24px;
64 | line-height: 26px;
65 | }
66 | `
67 |
68 | export const BoxText = styled.p`
69 | font-style: normal;
70 | font-weight: normal;
71 | font-size: 18px;
72 | line-height: 24px;
73 | letter-spacing: 0.02em;
74 | color: rgba(255, 255, 255, 0.75);
75 |
76 | @media ${props => props.theme.breakpoints.md}{
77 | font-size: 16px;
78 | line-height: 20px;
79 | };
80 |
81 | @media ${props => props.theme.breakpoints.sm} {
82 | font-size: 10px;
83 | line-height: 14px;
84 | }
85 | `
86 |
87 | export const Join = styled.div`
88 | display: flex;
89 | max-width: 1040px;
90 | justify-content: center;
91 | align-items: center;
92 | padding-bottom: 80px;
93 |
94 | @media ${props => props.theme.breakpoints.md}{
95 | display: flex;
96 | justify-content: center;
97 | padding-bottom: 64px;
98 | }
99 |
100 | @media ${props => props.theme.breakpoints.sm}{
101 | display: flex;
102 | flex-direction: column;
103 | align-items: center;
104 | padding-bottom: 32px;
105 | }
106 | `
107 |
108 | export const JoinText = styled.h5`
109 | display: flex;
110 | font-size: 24px;
111 | line-height: 40px;
112 | letter-spacing: 0.02em;
113 | color: rgba(255, 255, 255, 0.5);
114 |
115 | @media ${props => props.theme.breakpoints.md}{
116 | line-height: 32px;
117 | font-size: 20px;
118 | };
119 |
120 | @media ${props => props.theme.breakpoints.sm}{
121 | font-size: 16px;
122 | line-height: 24px;
123 | margin: 0 0 16px;
124 | }
125 | `
126 |
127 | export const IconContainer = styled.div`
128 | display: flex;
129 |
130 | @media ${props => props.theme.breakpoints.sm}{
131 | width: 160px;
132 | justify-content: space-between;
133 | }
134 | `
135 |
--------------------------------------------------------------------------------
/src/components/BackgrooundAnimation/BackgroundAnimation.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | const BackgroundAnimation = () => (
4 |
5 |
362 |
363 | );
364 |
365 | export default BackgroundAnimation;
--------------------------------------------------------------------------------
/src/components/Footer/Footer.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import { AiFillGithub, AiFillInstagram, AiFillLinkedin, } from 'react-icons/ai';
3 |
4 | import { SocialIcons } from '../Header/HeaderStyles';
5 | import { CompanyContainer, FooterWrapper, LinkColumn, LinkItem, LinkList, LinkTitle, Slogan, SocialContainer, SocialIconsContainer } from './FooterStyles';
6 |
7 | const Footer = () => {
8 | return (
9 |
10 |
11 |
12 | Call
13 | 0507 771 92 18
14 |
15 |
16 | Email
17 |
18 | polat.enes1985@gmail.com
19 |
20 |
21 |
22 |
23 |
24 | Innovating one project at a time
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 | );
40 | };
41 |
42 | export default Footer;
43 |
--------------------------------------------------------------------------------
/src/components/Footer/FooterStyles.js:
--------------------------------------------------------------------------------
1 | import styled from "styled-components"
2 |
3 | export const FooterWrapper = styled.section`
4 | width: calc(100vw - 96px);
5 | max-width: 1040px;
6 | padding: 2rem 48px 40px;
7 | margin: 1rem auto;
8 | box-sizing: content-box;
9 |
10 |
11 | @media ${props => props.theme.breakpoints.sm} {
12 | padding: 0 16px 48px;
13 | width: calc(100vw - 32px);
14 | }
15 | `
16 |
17 | export const LinkItem = styled.a`
18 | font-size: 18px;
19 | line-height: 30px;
20 | color: rgba(255, 255, 255, 0.75);
21 | margin-bottom: 16px;
22 | transition: .3s ease;
23 | position: relative;
24 | left: 0;
25 |
26 | &:hover {
27 | color: #fff;
28 | left: 6px;
29 | }
30 |
31 | @media ${props => props.theme.breakpoints.md} {
32 | font-size: 16px;
33 | line-height: 28px;
34 | display: flex;
35 | }
36 |
37 | @media ${props => props.theme.breakpoints.sm} {
38 | font-size: 8px;
39 | line-height: 14px;
40 | margin-bottom: 8px;
41 | display: flex;
42 | align-items: center;
43 | }
44 | `
45 |
46 | export const SocialIconsContainer = styled.div`
47 | max-width: 1040px;
48 | display: flex;
49 | justify-content: space-between;
50 |
51 | @media ${props => props.theme.breakpoints.md}{
52 | display: flex;
53 | justify-content: space-between;
54 | }
55 |
56 | @media ${props => props.theme.breakpoints.sm}{
57 | display: flex;
58 | width: 100%;
59 | flex-direction: column;
60 | }
61 | `
62 |
63 | export const CompanyContainer = styled.div`
64 | display: flex;
65 | align-items:baseline;
66 | flex-wrap: wrap;
67 | margin-right: auto;
68 |
69 |
70 | @media ${props => props.theme.breakpoints.md}{
71 | flex-direction: column;
72 | align-items: baseline;
73 | }
74 |
75 | @media ${props => props.theme.breakpoints.sm}{
76 | display: flex;
77 | flex-direction: column;
78 | margin: 0 0 32px;
79 | align-items: center;
80 | }
81 | `
82 |
83 |
84 | export const Slogan = styled.p`
85 | color: rgba(255, 255, 255, 0.5);
86 | min-width: 280px;
87 | letter-spacing: 0.02em;
88 | font-size: 18px;
89 | line-height: 30px;
90 | padding: 1rem;
91 |
92 | @media ${props => props.theme.breakpoints.md}{
93 | font-size: 16px;
94 | line-height: 28px;
95 | }
96 |
97 | @media ${props => props.theme.breakpoints.sm}{
98 | line-height: 22px;
99 | font-size: 14px;
100 | min-width: 100px;
101 | }
102 | `
103 |
104 | export const SocialContainer = styled.div`
105 | display: flex;
106 | align-items: center;
107 |
108 | @media ${props => props.theme.breakpoints.md}{
109 | justify-content: center;
110 | padding-right: 16px;
111 | flex-wrap: wrap;
112 | }
113 | `
114 |
115 |
116 | export const LinkList = styled.ul`
117 | border-top: 1px solid rgba(255, 255, 255, 0.1);
118 | display: grid;
119 | grid-template-columns: repeat(3, minmax(85px, 220px));
120 | gap: 40px;
121 | padding: 40px 0 28px;
122 |
123 | @media ${props => props.theme.breakpoints.lg} {
124 | padding: 32px 0 16px;
125 | }
126 |
127 | @media ${props => props.theme.breakpoints.md} {
128 | width: 100%;
129 | padding: 32px 0 16px;
130 | gap: 16px;
131 | }
132 | @media ${props => props.theme.breakpoints.sm} {
133 | width: 100%;
134 | padding: 32px 4px 16px;
135 | gap: 5px;
136 | }
137 | `
138 |
139 | export const LinkColumn = styled.div`
140 | display: flex;
141 | flex-direction: column;
142 | max-width: 220px;
143 | width: 100%;
144 | `
145 | export const LinkTitle = styled.h4`
146 | font-style: normal;
147 | font-weight: 600;
148 | font-size: 12px;
149 | line-height: 24px;
150 | text-transform: uppercase;
151 | color: rgba(255, 255, 255, 0.4);
152 | margin-bottom: 16px;
153 |
154 | @media ${props => props.theme.breakpoints.sm} {
155 | font-size: 10px;
156 | line-height: 12px;
157 | margin-bottom: 8px;
158 | }
159 | `
160 |
--------------------------------------------------------------------------------
/src/components/Header/Header.js:
--------------------------------------------------------------------------------
1 | import Link from 'next/link';
2 | import React from 'react';
3 | import { AiFillGithub, AiFillInstagram, AiFillLinkedin } from 'react-icons/ai';
4 | import { DiCssdeck } from 'react-icons/di';
5 |
6 | import { Container, Div1, Div2, Div3, NavLink, SocialIcons } from './HeaderStyles';
7 |
8 | const Header = () => (
9 |
10 |
11 |
12 |
13 | Portfolio
14 |
15 |
16 |
17 |
18 |
19 |
20 | Projeler
21 |
22 |
23 |
24 |
25 | Teknolojiler
26 |
27 |
28 |
29 |
30 | Hakkında
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 | );
47 |
48 | export default Header;
49 |
--------------------------------------------------------------------------------
/src/components/Header/HeaderStyles.js:
--------------------------------------------------------------------------------
1 | import { IoIosArrowDropdown } from 'react-icons/io';
2 | import styled from 'styled-components';
3 |
4 | export const Container = styled.div`
5 | display: grid;
6 | grid-template-columns: repeat(5, 1fr);
7 | grid-template-rows: 1fr;
8 | grid-column-gap: 2rem;
9 | padding: 1rem;
10 | padding-top: 2rem;
11 |
12 | @media ${(props) => props.theme.breakpoints.sm} {
13 | display: grid;
14 | grid-template-columns: repeat(5, 1fr);
15 | grid-template-rows: repeat(2, 60px);
16 | grid-column-gap: 0.5rem;
17 | grid-row-gap: 0.5rem;
18 | }
19 | `;
20 | export const Div1 = styled.div`
21 | grid-area: 1 / 1 / 2 / 2;
22 | display: flex;
23 | flex-direction: row;
24 | align-content: center;
25 | @media ${(props) => props.theme.breakpoints.sm} {
26 | grid-area: 1 / 1 / 2 / 3;
27 | }
28 | `;
29 | export const Div2 = styled.div`
30 | grid-area: 1 / 2 / 2 / 4;
31 | display: flex;
32 | justify-content: space-around;
33 | @media ${(props) => props.theme.breakpoints.sm} {
34 | grid-area: 2 / 2 / 3 / 5;
35 | }
36 | `;
37 | export const Div3 = styled.div`
38 | grid-area: 1 / 5 / 2 / 6;
39 | display: flex;
40 | justify-content: space-around;
41 | align-items: center;
42 | @media ${(props) => props.theme.breakpoints.sm} {
43 | align-items: center;
44 | grid-area: 1 / 4 / 2 / 6;
45 | }
46 | `;
47 |
48 | // Navigation Links
49 | export const NavLink = styled.a`
50 | font-size: 2rem;
51 | line-height: 32px;
52 | color: rgba(255, 255, 255, 0.75);
53 | transition: 0.4s ease;
54 | &:hover {
55 | color: #fff;
56 | opacity: 1;
57 | cursor: pointer;
58 | }
59 | @media ${(props) => props.theme.breakpoints.sm} {
60 | padding: 0.5rem;
61 | }
62 | `;
63 |
64 | /// DropDown Contact
65 | export const ContactDropDown = styled.button`
66 | border: none;
67 | display: flex;
68 | position: relative;
69 | background: none;
70 | font-size: 1.7rem;
71 |
72 | line-height: 32px;
73 | color: rgba(255, 255, 255, 0.75);
74 | cursor: pointer;
75 | transition: 0.3s ease;
76 |
77 | &:focus {
78 | outline: none;
79 | }
80 | &:hover {
81 | color: #fff;
82 | }
83 |
84 | @media ${(props) => props.theme.breakpoints.sm} {
85 | padding: 0.4rem 0;
86 | }
87 | @media ${(props) => props.theme.breakpoints.md} {
88 | padding: 0;
89 | }
90 | `;
91 |
92 | export const NavProductsIcon = styled(IoIosArrowDropdown)`
93 | margin-left: 8px;
94 | display: flex;
95 | align-self: center;
96 | transition: 0.3s ease;
97 | opacity: ${({ isOpen }) => (isOpen ? '1' : '.75')};
98 | transform: ${({ isOpen }) => (isOpen ? 'scaleY(-1)' : 'scaleY(1)')};
99 |
100 | &:hover {
101 | opacity: 1;
102 | }
103 |
104 | @media ${(props) => props.theme.breakpoints.sm} {
105 | margin: 2px 0 0 2px;
106 | width: 15px;
107 | }
108 | `;
109 |
110 |
111 | // Social Icons
112 |
113 | export const SocialIcons = styled.a`
114 | transition: 0.3s ease;
115 | color: white;
116 | border-radius: 50px;
117 | padding: 8px;
118 | &:hover {
119 | background-color: #212d45;
120 | transform: scale(1.2);
121 | cursor: pointer;
122 |
123 | }
124 | `
--------------------------------------------------------------------------------
/src/components/Hero/Hero.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | import { Section, SectionText, SectionTitle } from '../../styles/GlobalComponents';
4 | import Button from '../../styles/GlobalComponents/Button';
5 | import { LeftSection } from './HeroStyles';
6 |
7 | const Hero = (props) => (
8 | <>
9 |
10 |
11 |
12 | Enes POLAT
13 | Kişisel Sayfasına Hoşgeldiniz
14 |
15 |
16 | Türk Telekom Erzurum Bölge Müdürlüğü'nde Enerji ve Soğutma Sistemleri Müdürü olarak görev yapmaktayım. Türk Telekom Akademi'de Eğitimler vermekteyim. Artırılmış Gerçeklik ve Blokzincir hakkında iki kitabım yayınlanmıştır. Ayrıca Yapay Zeka, Artırılmış Gerçeklik, Blokzincir, Web Tasarımı, Mobil Programlama gibi konularda çalışmalarım bulunmaktadır.
17 |
18 |
19 |
20 |
21 | >
22 | );
23 |
24 | export default Hero;
--------------------------------------------------------------------------------
/src/components/Hero/HeroStyles.js:
--------------------------------------------------------------------------------
1 | import styled from 'styled-components';
2 |
3 | export const LeftSection = styled.div`
4 | width: 100%;
5 | @media ${(props) => props.theme.breakpoints.sm} {
6 | width: 80%;
7 | display: flex;
8 | flex-direction: column;
9 |
10 | margin: 0 auto;
11 | }
12 | @media ${(props) => props.theme.breakpoints.md} {
13 | width: 100%;
14 | display: flex;
15 | flex-direction: column;
16 |
17 | margin: 0 auto;
18 | }
19 | `;
20 |
--------------------------------------------------------------------------------
/src/components/NavDropDown/NavDropDown.js:
--------------------------------------------------------------------------------
1 | import styled from 'styled-components'
2 |
3 | export const DropDownContainer = styled.div`
4 | position: absolute;
5 | display: flex;
6 | flex-direction: column;
7 | right: -25%;
8 | top: 40px;
9 | width: 280px;
10 | background-color: #fff;
11 | border-radius: 8px;
12 | z-index: 100;
13 | padding: 4px 0;
14 | cursor: default;
15 | overflow: hidden;
16 | transition: 0.3s ease;
17 | visibility: ${({ active }) => active ? 'visible' : 'hidden'};
18 | opacity: ${({ active }) => active ? '1' : '0'};
19 | transform-origin: top;
20 | transform: ${({ active }) => active ? 'scaleY(1)' : 'scaleY(.3)'};
21 |
22 | @media ${(props) => props.theme.breakpoints.md} {
23 | top: 32px;
24 | }
25 | @media ${(props) => props.theme.breakpoints.sm} {
26 | top: 24px;
27 | }
28 | `
29 | export const DropDownItem = styled.a`
30 | width: 100%;
31 | display: flex;
32 | align-items: flex-start;
33 | cursor: pointer;
34 | transition: .3s ease;
35 | padding: 12px 16px;
36 |
37 | &:hover {
38 | transform: scale(1.05);
39 | background-color: #eee;
40 | box-shadow: 0 3px 6px 3px rgba(0,0,0,.3);
41 | }
42 |
43 | &:nth-of-type(2n):hover {
44 | box-shadow: 0 0 8px 4px rgba(0,0,0,.3);
45 | }
46 |
47 | &:nth-of-type(3n):hover {
48 | box-shadow: 0 -3px 6px 3px rgba(0,0,0,.3);
49 | }
50 | `
51 |
52 | export const DropDownIcon = styled.div`
53 | width: 32px;
54 | height: 32px;
55 | margin-right: 16px;
56 | `
57 |
58 | export const DropDownTextContainer = styled.div`
59 | display: flex;
60 | flex-direction: column;
61 | `
62 |
63 | export const DropDownItemTitle = styled.h2`
64 | color: #0f1624;
65 | font-size: 18px;
66 | line-height: 26px;
67 | text-align: start;
68 | `
69 |
70 | export const DropDownItemDesc = styled.p`
71 | color: #0f1624;
72 | opacity: 0.5;
73 | font-size: 14px;
74 | line-height: 22px;
75 | text-align: start;
76 | `
--------------------------------------------------------------------------------
/src/components/NavDropDown/index.js:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import { AiFillPhone, AiOutlineMail } from 'react-icons/ai'
3 | import { FaLocationArrow } from "react-icons/fa"
4 |
5 | import { DropDownContainer, DropDownIcon, DropDownItem, DropDownItemDesc, DropDownItemTitle, DropDownTextContainer } from './NavDropDown'
6 |
7 | const NavDropDown = (props) => (
8 |
9 |
10 |
11 |
12 |
13 |
14 | Phone
15 | Let's get together and have a chat?'
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 | Email
24 | If you want to talk jus send a message and I'll get back
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 | Address
33 | 1405, Angelus Dr, Florissant. Mo
34 |
35 |
36 |
37 | );
38 |
39 | export default NavDropDown
40 |
--------------------------------------------------------------------------------
/src/components/Projects/Projects.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | import { BlogCard, CardInfo, ExternalLinks, GridContainer, HeaderThree, Hr, Tag, TagList, TitleContent, UtilityList, Img } from './ProjectsStyles';
4 | import { Section, SectionDivider, SectionTitle } from '../../styles/GlobalComponents';
5 | import { projects } from '../../constants/constants';
6 |
7 | const Projects = () => (
8 |
9 |
10 | Projects
11 |
12 | {projects.map((p, i) => {
13 | return (
14 |
15 |
16 |
17 | {p.title}
18 |
19 |
20 | {p.description}
21 |
22 | Stack
23 |
24 | {p.tags.map((t, i) => {
25 | return {t};
26 | })}
27 |
28 |
29 |
30 | Kaynaklar
31 | İncele
32 |
33 |
34 | );
35 | })}
36 |
37 |
38 | );
39 |
40 | export default Projects;
--------------------------------------------------------------------------------
/src/components/Projects/ProjectsStyles.js:
--------------------------------------------------------------------------------
1 | import styled from 'styled-components';
2 |
3 | export const Img = styled.img`
4 | width:100%;
5 | height:100%;
6 | object-fit: cover;
7 | overflow: hidden;
8 | `
9 |
10 | export const GridContainer = styled.section`
11 | display: grid;
12 | grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
13 | padding: 3rem;
14 | place-items: center;
15 | column-gap: 2rem;
16 | row-gap: 3rem;
17 | @media ${(props) => props.theme.breakpoints.sm} {
18 | display: flex;
19 | flex-direction: column;
20 | padding: 2rem;
21 | padding-bottom: 0;
22 | }
23 |
24 | `
25 | export const BlogCard = styled.div`
26 | border-radius: 10px;
27 | box-shadow: 3px 3px 20px rgba(80, 78, 78, 0.5);
28 | text-align: center;
29 | width: 400px;
30 | @media ${(props) => props.theme.breakpoints.sm} {
31 | width: 100%;
32 | }
33 | `;
34 | export const TitleContent = styled.div`
35 | text-align: center;
36 | z-index: 20;
37 | width: 100%;
38 |
39 | `;
40 |
41 |
42 | export const HeaderThree = styled.h3`
43 | font-weight: 500;
44 | letter-spacing: 2px;
45 | color: #9cc9e3;
46 | padding: .5rem 0;
47 | font-size: ${(props) => props.title ? '3rem' : '2rem'};
48 | `;
49 |
50 | export const Hr = styled.hr`
51 | width: 50px;
52 | height: 3px;
53 | margin: 20px auto;
54 | border: 0;
55 | background: #d0bb57;
56 | `;
57 |
58 | export const Intro = styled.div`
59 | width: 170px;
60 | margin: 0 auto;
61 | color: #dce3e7;
62 | font-family: 'Droid Serif', serif;
63 | font-size: 13px;
64 | font-style: italic;
65 | line-height: 18px;
66 | `;
67 |
68 |
69 | export const CardInfo = styled.p`
70 | width: 100%;
71 | padding: 0 50px;
72 | color: #e4e6e7;
73 | font-style: 2rem;
74 | line-height: 24px;
75 | text-align: justify;
76 | @media ${(props) => props.theme.breakpoints.sm} {
77 | padding:.3rem
78 |
79 | }
80 | `;
81 |
82 |
83 | export const UtilityList = styled.ul`
84 | list-style-type: none;
85 | padding: 0;
86 | display: flex;
87 | justify-content: space-around;
88 | margin: 2.5rem 0;
89 | `;
90 |
91 | export const ExternalLinks = styled.a`
92 | color:#d4c0c0;
93 | font-size: 1.6rem;
94 | padding:1rem 1.5rem;
95 | background: #6b3030;
96 | border-radius: 15px;
97 | transition: 0.5s;
98 | &:hover{
99 | background: #801414;
100 |
101 | }
102 | `;
103 |
104 | export const TagList = styled.ul`
105 | display: flex;
106 | justify-content: space-around;
107 | padding: 2rem;
108 | `
109 | export const Tag = styled.li`
110 | color: #d8bfbf;
111 | font-size: 1.5rem;
112 | `
--------------------------------------------------------------------------------
/src/components/Technologies/Technologies.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import { DiFirebase, DiReact, DiZend } from 'react-icons/di';
3 | import { Section, SectionDivider, SectionText, SectionTitle } from '../../styles/GlobalComponents';
4 | import { List, ListContainer, ListItem, ListParagraph, ListTitle } from './TechnologiesStyles';
5 |
6 | const Technologies = () => (
7 |
8 |
9 | Technologies
10 |
11 | Teknolojiyi seviyorum ve birçok alanında araştırmalar yapıyor, ürünler ortaya koyuyorum.
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 | Front-End
20 |
21 | Vue.js
22 | React.js
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 | Back-End
32 |
33 | Java
34 | Python
35 | Node ve SQL
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 | Derin Öğrenme
45 |
46 | Tensorflow
47 | Keras
48 | PyTorch
49 | Scikit-Learn
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 | Artırılmış Gerçeklik
59 |
60 | Arkit
61 | Arcore
62 | ArFoundation
63 | Vuforia
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 | Blokzincir
73 |
74 | Solidity
75 | Reach
76 | Algorand
77 |
78 |
79 |
80 |
81 |
82 |
83 | );
84 |
85 | export default Technologies;
86 |
--------------------------------------------------------------------------------
/src/components/Technologies/TechnologiesStyles.js:
--------------------------------------------------------------------------------
1 | import styled from 'styled-components'
2 |
3 | export const ImageContainer = styled.div`
4 | text-align: center;
5 | background-image: radial-gradient(50% 50% at 50% 50%, rgba(79, 108, 176, 0.25) 53.8%, rgba(79, 108, 176, 0) 100%);
6 | width: 100%;
7 | padding: 60px;
8 | margin-top: 48px;
9 | display: flex;
10 | flex-direction: column;
11 | align-items: center;
12 | justify-content: center;
13 |
14 | @media ${props => props.theme.breakpoints.lg} {
15 | background-image: none;
16 | padding: 0;
17 | margin-top: 40px;
18 | }
19 | @media ${props => props.theme.breakpoints.md} {
20 | background-image: none;
21 | padding: 0;
22 | margin-top: 16px;
23 | }
24 | `
25 |
26 | export const MainImage = styled.img`
27 | width: 100%;
28 | `
29 |
30 | export const List = styled.ul`
31 | list-style-type: none;
32 | display: grid;
33 | grid-template-columns: repeat(3, 1fr);
34 | gap: 40px;
35 | margin: 3rem 0;
36 |
37 | @media ${props => props.theme.breakpoints.lg}{
38 | margin: 64px 0;
39 | }
40 |
41 | @media ${props => props.theme.breakpoints.md}{
42 | margin: 64px 0;
43 | gap: 24px
44 | }
45 |
46 | @media ${props => props.theme.breakpoints.sm}{
47 | display: flex;
48 | flex-direction: column;
49 | margin: 32px 0;
50 | }
51 | `
52 |
53 | export const ListContainer = styled.div`
54 | display: flex;
55 | flex-direction: column;
56 |
57 | @media ${props => props.theme.breakpoints.sm}{
58 | display: flex;
59 | margin-left: 18px;
60 | }
61 | `
62 |
63 | export const ListTitle = styled.h4`
64 | font-weight: 700;
65 | font-size: 28px;
66 | line-height: 32px;
67 | letter-spacing: 0.02em;
68 | color: #FFFFFF;
69 | margin-bottom: 8px;
70 |
71 | @media ${props => props.theme.breakpoints.md}{
72 | font-size: 24px;
73 | line-height: 28px;
74 | }
75 |
76 | @media ${props => props.theme.breakpoints.sm}{
77 | font-size: 20px;
78 | line-height: 28px;
79 | letter-spacing: 0.02em;
80 | margin-bottom: 4px;
81 | }
82 | `
83 |
84 | export const ListParagraph = styled.p`
85 | font-size: 18px;
86 | line-height: 30px;
87 | color: rgba(255, 255, 255, 0.75);
88 |
89 | @media ${props => props.theme.breakpoints.md}{
90 | font-size: 16px;
91 | line-height: 28px;
92 | }
93 |
94 | @media ${props => props.theme.breakpoints.sm}{
95 | font-size: 14px;
96 | line-height: 22px;
97 | }
98 | `
99 |
100 | export const ListItem = styled.li`
101 | max-width: 320px;
102 | display: flex;
103 | flex-direction: column;
104 |
105 | @media ${props => props.theme.breakpoints.md}{
106 | max-width: 203px;
107 | }
108 |
109 | @media ${props => props.theme.breakpoints.sm}{
110 | margin-bottom: 14px;
111 | max-width: 320px;
112 | flex-direction: row;
113 | }
114 | `
115 |
116 | export const ListIcon = styled.img`
117 | display: block;
118 | width: 48px;
119 | height: 48px;
120 | margin-bottom: 10px;
121 |
122 | @media ${props => props.theme.breakpoints.md}{
123 | width: 40px;
124 | height: 40px;
125 | margin-bottom: 8px;
126 | }
127 |
128 | @media ${props => props.theme.breakpoints.sm}{
129 | width: 32px;
130 | height: 32px;
131 | margin-bottom: 0px;
132 | }
133 | `
134 |
--------------------------------------------------------------------------------
/src/components/TimeLine/TimeLine.js:
--------------------------------------------------------------------------------
1 | import React, { useState, useRef, useEffect } from 'react';
2 |
3 | import { CarouselButton, CarouselButtonDot, CarouselButtons, CarouselContainer, CarouselItem, CarouselItemImg, CarouselItemText, CarouselItemTitle, CarouselMobileScrollNode } from './TimeLineStyles';
4 | import { Section, SectionDivider, SectionText, SectionTitle } from '../../styles/GlobalComponents';
5 | import { TimeLineData } from '../../constants/constants';
6 |
7 | const TOTAL_CAROUSEL_COUNT = TimeLineData.length;
8 |
9 | const Timeline = () => {
10 | const [activeItem, setActiveItem] = useState(0);
11 | const carouselRef = useRef();
12 |
13 | const scroll = (node, left) => {
14 | return node.scrollTo({ left, behavior: 'smooth' });
15 | }
16 |
17 | const handleClick = (e, i) => {
18 | e.preventDefault();
19 |
20 | if (carouselRef.current) {
21 | const scrollLeft = Math.floor(carouselRef.current.scrollWidth * 0.7 * (i / TimeLineData.length));
22 |
23 | scroll(carouselRef.current, scrollLeft);
24 | }
25 | }
26 |
27 | const handleScroll = () => {
28 | if (carouselRef.current) {
29 | const index = Math.round((carouselRef.current.scrollLeft / (carouselRef.current.scrollWidth * 0.7)) * TimeLineData.length);
30 |
31 | setActiveItem(index);
32 | }
33 | }
34 |
35 | // snap back to beginning of scroll when window is resized
36 | // avoids a bug where content is covered up if coming from smaller screen
37 | useEffect(() => {
38 | const handleResize = () => {
39 | scroll(carouselRef.current, 0);
40 | }
41 |
42 | window.addEventListener('resize', handleResize);
43 | }, []);
44 |
45 | return (
46 |
47 | About Me
48 |
49 | Öğrenmeyi ve öğrendiklerimi paylaşmayı seviyor, farklı platformlarda paylaşmaya çalışıyorum
50 |
51 |
52 | <>
53 | {TimeLineData.map((item, index) => (
54 |
57 | handleClick(e, index)}>
62 |
63 | {`${item.year}`}
64 |
70 |
77 |
78 |
85 |
86 |
91 |
92 |
93 |
94 |
95 | {item.text}
96 |
97 |
98 | ))}
99 | >
100 |
101 |
102 | {TimeLineData.map((item, index) => {
103 | return (
104 | handleClick(e, index)}
109 | type="button">
110 |
111 |
112 | );
113 | })}
114 |
115 |
116 |
117 | );
118 | };
119 |
120 | export default Timeline;
121 |
--------------------------------------------------------------------------------
/src/components/TimeLine/TimeLineStyles.js:
--------------------------------------------------------------------------------
1 |
2 | import styled from 'styled-components'
3 |
4 | export const CarouselContainer = styled.ul`
5 | max-width: 1040px;
6 | background: #0F1624;
7 | padding: 0rem;
8 | list-style:none;
9 | display: flex;
10 | justify-content: space-between;
11 | /* overflow-x: hidden; */
12 |
13 | margin-left: 32px;
14 | &:first-of-type{
15 | margin-left: 0px;
16 | }
17 |
18 | margin-bottom: 80px;
19 |
20 | //remove scrollbar
21 | scrollbar-width: none;
22 | &::-webkit-scrollbar {
23 | display: none;
24 | }
25 |
26 | @media ${props => props.theme.breakpoints.sm} {
27 | overflow-x: scroll;
28 | -webkit-overflow-scrolling: touch;
29 | scroll-snap-type: x mandatory;
30 | touch-action: pan-x;
31 | justify-content: initial;
32 | margin-bottom: 8px;
33 | }
34 | `
35 | export const CarouselMobileScrollNode = styled.div`
36 | @media ${props => props.theme.breakpoints.sm} {
37 | display: flex;
38 | min-width: ${({ final }) => final ? `120%;` : `min-content`}
39 | }
40 | `
41 |
42 | export const CarouselItem = styled.div`
43 | background: #0F1624;
44 | border-radius: 3px;
45 | max-width: 196px;
46 |
47 | @media ${props => props.theme.breakpoints.md} {
48 | max-width: 124px;
49 | }
50 |
51 | @media ${props => props.theme.breakpoints.sm} {
52 | margin-left: 32px;
53 | min-width: 120px;
54 | background: #0E131F;
55 | padding: 4px;
56 | align-content: start;
57 | scroll-snap-align: start;
58 | border-radius: 3px;
59 | overflow: visible;
60 | position: relative;
61 | height: fit-content;
62 |
63 | ${(props) => props.active === props.index ? `opacity: 1` : `opacity: 0.5`};
64 | }
65 | `
66 |
67 | export const CarouselItemTitle = styled.h4`
68 | font-weight: bold;
69 | font-size: 24px;
70 | line-height: 32px;
71 | letter-spacing: 0.02em;
72 | display: flex;
73 | /* This gradient is different due to the size of the Title container, it must transition sooner to be visible on the text */
74 | background: linear-gradient(121.57deg, #FFFFFF 10%, rgba(255, 255, 255, 0.66) 30.15%);
75 | -webkit-background-clip: text;
76 | -webkit-text-fill-color: transparent;
77 | margin-bottom: 8px;
78 |
79 | @media ${props => props.theme.breakpoints.md} {
80 | font-size: 20px;
81 | line-height: 28px;
82 | margin-bottom: 4px;
83 | }
84 |
85 | @media ${props => props.theme.breakpoints.sm} {
86 | font-size: 16px;
87 | line-height: 24px;
88 | }
89 | `
90 | export const CarouselItemImg = styled.svg`
91 | margin-left: 21px;
92 | -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0));
93 | width: 100%;
94 |
95 | @media ${props => props.theme.breakpoints.sm} {
96 | -webkit-mask-image: none;
97 | margin-left: 16px;
98 | overflow: visible;
99 | }
100 | `
101 |
102 | export const CarouselItemText = styled.p`
103 | font-size: 14px;
104 | line-height: 22px;
105 | letter-spacing: 0.02em;
106 | color: rgba(255, 255, 255, 0.75);
107 | padding-right: 16px;
108 |
109 | @media ${props => props.theme.breakpoints.md} {
110 | font-size: 12px;
111 | line-height: 18px;
112 | padding-right: 32px;
113 | }
114 | @media ${props => props.theme.breakpoints.sm} {
115 | font-size: 10px;
116 | line-height: 16px;
117 | padding-right: 0;
118 | }
119 | `
120 | export const CarouselButtons = styled.div`
121 | width: 288px;
122 |
123 | display: none;
124 | visibility: hidden;
125 |
126 | @media ${props => props.theme.breakpoints.sm} {
127 | display: flex;
128 | visibility: visible;
129 | margin-bottom: 48px;
130 | }
131 | `
132 |
133 | export const CarouselButton = styled.button`
134 | box-sizing: border-box;
135 | background: none;
136 | padding: 4px;
137 | border: none;
138 | cursor: pointer;
139 | margin-right: 4px;
140 | opacity: ${(props) => props.active === props.index ? `1` : `.33`};
141 | transform: ${(props) => props.active === props.index ? `scale(1.6)` : `scale(1)`};
142 |
143 | &:focus {
144 | outline: none;
145 | }
146 | `
147 |
148 | export const CarouselButtonDot = styled.div`
149 | background-color: white;
150 | border-radius: 10px;
151 | margin: auto;
152 | width: 3px;
153 | height: 3px;
154 | `
155 |
--------------------------------------------------------------------------------
/src/constants/constants.js:
--------------------------------------------------------------------------------
1 | export const projects = [
2 | {
3 | title: 'Uygulamalarla Artırılmış Gerçeklik (ARKIT ve CORE ML TEKNOLOJİLERİYLE)',
4 | description: "Bu kitap çalışmasında Artırılmış Gerçeklik evrenine Apple’ın geliştirdiği ARKIT ve Core ML teknolojilerini kullanarak giriş yaptık. Artırılmış Gerçeklik Tarihçesi’nde de okuyacağınız üzere AR şu sıralar fırtına öncesi sessizliği yaşıyor olabilir. 5G teknolojisi, lidar teknolojisinin cihazlarda yaygınlaşması, yapay zekâ tarafında derin öğrenme modellerinin gelişmesi gibi parametrelerle beraber hayatımıza çok güçlü bir şekilde girebilir. Hatta bu kitap baskıya gittiği günlerde Apple iPhone 12 cihazları için lidar sensörünü de duyurdu. Bu da bir sonraki satırımızın ne kadar doğru olduğunu bir kez daha gösterdi.",
5 | image: '/images/1.jpeg',
6 | tags: ['Swift', 'SwiftUI', 'ArKit', 'CoreML'],
7 | source: 'https://www.abakuskitap.com/urun/uygulamalarla-artirilmis-gerceklik-arkit-ve-core-ml-teknolojileriyle',
8 | visit: 'https://www.abakuskitap.com/urun/uygulamalarla-artirilmis-gerceklik-arkit-ve-core-ml-teknolojileriyle',
9 | id: 0,
10 | },
11 | {
12 | title: 'Algorand İle Blokzincir Geliştirme',
13 | description:"İnternet kullanıcıları 1990'larda Web 1.0 ile birbirini farketmeye başladı. Web 2.0'da sosyal olarak birbirine bağlandı. Sosyal ağların öncülük ettiği bu bağlanma ekonomik, sosyolojik, kültürel sayısız sonuç doğurdu. Bu sırada internet ekonomisi de 5-6 trilyon dolar seviyelerine ulaştı. Fakat oyun yeni başlıyor. Web 3.0 ile dünya finansal olarak birbirine bağlanacak. İkinci aşamanın aktörü sosyal ağların yerini blokzincir projeleri alıyor. Bu yeni dönemde internet ekonomisinin de 100 trilyon dolara ulaşması bekleniyor. Ve elbette bunun yanında üreteceği çok yönlü dönüşümler bizi bekliyor. İşte bu serüvende Türkiye olarak en önde olmak için başlattığımız çalışmalardan biri olan Algorand İle Blokzincir Geliştirme kitabı sizlerle.",
14 | image: '/images/2.jpeg',
15 | tags: ['Algorand', 'Blokzincir'],
16 | source: 'https://www.amazon.com.tr/Algorand-Blokzincir-Geli%C5%9Ftirme-Polat-Bu%C4%9Fra/dp/6050667993',
17 | visit: 'https://www.amazon.com.tr/Algorand-Blokzincir-Geli%C5%9Ftirme-Polat-Bu%C4%9Fra/dp/6050667993',
18 | id: 1,
19 | },
20 | {
21 | title: 'ARKit ile Artırılmış Gerçeklik Uygulamaları Geliştirme',
22 | description: "IOS Mobil telefonlarda ve Ipad'lerde kendi özgün artırılmış gerçeklik uygulamalarınızı ger.ekleştirmeniz için gerekli tüm eğitim uygulama örnekleri bu eğitimde",
23 | image: '/images/3.png',
24 | tags: ['Swift', 'ArKit','SwiftUI'],
25 | source: 'https://www.btkakademi.gov.tr/portal/course/arkit-ile-art-r-lm-s-gerceklik-uygulamalar-gelistirme-16234#!/about',
26 | visit: 'https://www.btkakademi.gov.tr/portal/course/arkit-ile-art-r-lm-s-gerceklik-uygulamalar-gelistirme-16234#!/about',
27 | id: 2,
28 | },
29 | {
30 | title: 'Youtube Kanalım',
31 | description: "Kanalımda yapay zekadan mobil programlamaya, blokzincirden derin öğrenmeye, artırılmış gerçeklikten programlama dillerine bir çok alanda projelerimi yaplaşmaya çalışıyorum.",
32 | image: '/images/7.png',
33 | tags: ['Kotlin', 'Deep Learning', 'Siber Güvenlik','Python'],
34 | source: 'https://www.youtube.com/channel/UCDth0IRmnNtQH2Y9grWDOug',
35 | visit: 'https://www.youtube.com/channel/UCDth0IRmnNtQH2Y9grWDOug',
36 | id: 3,
37 | },
38 | {
39 | title: 'Python Dilinde OpenCV ile Görüntü İşleme',
40 | description: "OpenCV kütüphanesi ile Python dilinde görüntü işleme projeleri oluşturma",
41 | image: '/images/4.jpg',
42 | tags: ['Python', 'OpenCV'],
43 | source: 'https://www.udemy.com/course/python-dilinde-opencv-ile-goruntu-isleme/?couponCode=EYLUL2021',
44 | visit: 'https://www.udemy.com/course/python-dilinde-opencv-ile-goruntu-isleme/?couponCode=EYLUL2021',
45 | id: 4,
46 | },
47 | {
48 | title: 'PyTorch ile Derin Öğrenme',
49 | description: "PyTorch kütüphanesi ile derin öğrenme projeleri oluşturma",
50 | image: '/images/5.jpg',
51 | tags: ['PyTorch', 'Python'],
52 | source: 'https://www.udemy.com/course/pytorch-ile-derin-ogrenme/?couponCode=EYLUL2021',
53 | visit: 'https://www.udemy.com/course/pytorch-ile-derin-ogrenme/?couponCode=EYLUL2021',
54 | id: 5,
55 | },
56 | {
57 | title: 'Reach ile Dapp Programlamaya Giriş',
58 | description: "Bu kursta Reach ile Dapp programlamaya giriş yapıyoruz",
59 | image: '/images/6.jpg',
60 | tags: ['Reach', 'Erhereum', 'Solidity','Algorand'],
61 | source: 'https://www.udemy.com/course/dapp-programlamaya-giris/?couponCode=EYLUL2021',
62 | visit: 'https://www.udemy.com/course/dapp-programlamaya-giris/?couponCode=EYLUL2021',
63 | id: 6,
64 | }
65 |
66 | ];
67 |
68 | export const TimeLineData = [
69 | { year: 2008, text: 'KTU Elk. Elk. Muh mezun oldum', },
70 | { year: 2009, text: 'Türk Telekom Uzman yardımcısı olarak işe başladım', },
71 | { year: 2013, text: 'Türk Telekom DC Enerji Uzmanı', },
72 | { year: 2016, text: 'Türk Telekom DC Enerji Yönetici', },
73 | { year: 2017, text: 'Türk Telekom ESS Müdürü', },
74 | ];
--------------------------------------------------------------------------------
/src/layout/Layout.js:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 |
3 | import Footer from '../components/Footer/Footer'
4 | import Header from '../components/Header/Header'
5 | import { Container } from './LayoutStyles'
6 |
7 | export const Layout = ({children}) => {
8 | return (
9 |
10 |
11 | {children}
12 |
13 |
14 | )
15 | }
16 |
--------------------------------------------------------------------------------
/src/layout/LayoutStyles.js:
--------------------------------------------------------------------------------
1 | import styled from 'styled-components';
2 |
3 | export const Container = styled.div`
4 | max-width: 1280px;
5 | width: 100%;
6 | margin: auto;
7 | `;
8 |
--------------------------------------------------------------------------------
/src/pages/_app.js:
--------------------------------------------------------------------------------
1 | import Theme from '../styles/theme';
2 |
3 | export default function App({ Component, pageProps }) {
4 | return (
5 | <>
6 |
7 |
8 |
9 | >
10 | );
11 | }
12 |
--------------------------------------------------------------------------------
/src/pages/_document.js:
--------------------------------------------------------------------------------
1 | import Document, { Head, Html, Main, NextScript } from 'next/document'
2 | import { ServerStyleSheet } from 'styled-components'
3 |
4 | export default class MyDocument extends Document {
5 | static async getInitialProps(ctx) {
6 | const sheet = new ServerStyleSheet()
7 | const originalRenderPage = ctx.renderPage
8 |
9 | try {
10 | ctx.renderPage = () =>
11 | originalRenderPage({
12 | enhanceApp: (App) => (props) =>
13 | sheet.collectStyles(),
14 | })
15 |
16 | const initialProps = await Document.getInitialProps(ctx)
17 | return {
18 | ...initialProps,
19 | styles: (
20 | <>
21 | {initialProps.styles}
22 | {sheet.getStyleElement()}
23 | >
24 | ),
25 | }
26 | } finally {
27 | sheet.seal()
28 | }
29 | }
30 | render() {
31 | return (
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 | );
42 | }
43 | }
--------------------------------------------------------------------------------
/src/pages/api/hello.js:
--------------------------------------------------------------------------------
1 | // Next.js API route support: https://nextjs.org/docs/api-routes/introduction
2 |
3 | export default (req, res) => {
4 | res.status(200).json({ name: 'John Doe' })
5 | }
--------------------------------------------------------------------------------
/src/pages/index.js:
--------------------------------------------------------------------------------
1 | import Acomplishments from '../components/Acomplishments/Acomplishments';
2 | import BgAnimation from '../components/BackgrooundAnimation/BackgroundAnimation';
3 | import Hero from '../components/Hero/Hero';
4 | import Projects from '../components/Projects/Projects';
5 | import Technologies from '../components/Technologies/Technologies';
6 | import Timeline from '../components/TimeLine/TimeLine';
7 | import { Layout } from '../layout/Layout';
8 | import { Section } from '../styles/GlobalComponents';
9 |
10 | const Home = () => {
11 | return (
12 |
13 |
17 |
18 |
19 |
20 |
21 |
22 | );
23 | };
24 |
25 | export default Home;
26 |
--------------------------------------------------------------------------------
/src/styles/GlobalComponents/Button.js:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 |
3 | import { ButtonBack, ButtonFront } from './index'
4 |
5 | const Button = (props) => (
6 | {props.children}
7 | {props.children}
8 |
9 | );
10 |
11 | export default Button
12 |
--------------------------------------------------------------------------------
/src/styles/GlobalComponents/index.js:
--------------------------------------------------------------------------------
1 | import styled from 'styled-components'
2 |
3 | export const Section = styled.section`
4 | display: ${(props) => props.grid ? "grid" : "flex" };
5 | flex-direction: ${(props) => props.row ? "row" : "column" };
6 | padding: ${(props) => props.nopadding ? "0" : "32px 48px 0" } ;
7 | margin: 0 auto;
8 | max-width: 1040px;
9 | box-sizing: content-box;
10 | position: relative;
11 | overflow: hidden;
12 | grid-template-columns: 1fr 1fr;
13 |
14 | @media ${(props) => props.theme.breakpoints.md} {
15 | padding: 24px 48px 0;
16 | flex-direction: column;
17 | }
18 |
19 | @media ${(props) => props.theme.breakpoints.sm} {
20 | padding: ${(props) => props.nopadding ? "0" : "16px 16px 0" } ;
21 |
22 | width: calc(100vw - 32px);
23 | flex-direction: column;
24 | }
25 | `
26 |
27 | export const SectionTitle = styled.h2`
28 | font-weight: 800;
29 | font-size: ${(props) => props.main ? '65px' : '56px'};
30 | line-height: ${(props) => props.main ? '72px' : '56px'};
31 | width: max-content;
32 | max-width: 100%;
33 | background: linear-gradient(121.57deg, #FFFFFF 18.77%, rgba(255, 255, 255, 0.66) 60.15%);
34 | -webkit-background-clip: text;
35 | -webkit-text-fill-color: transparent;
36 | margin-bottom: 16px;
37 | padding: ${(props) => props.main ? '58px 0 16px' : '0'};
38 |
39 | @media ${props => props.theme.breakpoints.md}{
40 | font-size: ${(props) => props.main ? '56px' : '48px'};
41 | line-height: ${(props) => props.main ? '56px' : '48px'};
42 | margin-bottom: 12px;
43 | padding: ${(props) => props.main ? '40px 0 12px' : '0'};
44 | }
45 |
46 | @media ${props => props.theme.breakpoints.sm}{
47 | font-size: 32px;
48 | line-height: 40px;
49 | font-size: ${(props) => props.main ? '28px' : '32px'};
50 | line-height: ${(props) => props.main ? '32px' : '40px'};
51 | margin-bottom: 8px;
52 | padding: ${(props) => props.main ? '16px 0 8px' : '0'};
53 | max-width: 100%;
54 | }
55 | `
56 |
57 | export const SectionText = styled.p`
58 | max-width: 800px;
59 | font-size: 24px;
60 | line-height: 40px;
61 | font-weight: 300;
62 | padding-bottom: 3.6rem;
63 | color: rgba(255, 255, 255, 0.5);
64 |
65 | @media ${(props) => props.theme.breakpoints.md} {
66 | max-width: 670px;
67 | font-size: 20px;
68 | line-height: 32px;
69 | padding-bottom: 24px;
70 | }
71 |
72 | @media ${(props) => props.theme.breakpoints.sm} {
73 | font-size: 16px;
74 | line-height: 24px;
75 | padding-bottom: 16px;
76 | }
77 | `
78 |
79 | export const SectionDivider = styled.div`
80 |
81 | width: 64px;
82 | height: 6px;
83 | border-radius: 10px;
84 | background-color: #fff;
85 | background: ${(props) => props.colorAlt ?
86 | 'linear-gradient(270deg, #F46737 0%, #945DD6 100%)' :
87 | 'linear-gradient(270deg, #13ADC7 0%, #945DD6 100%)'};
88 |
89 | margin: ${(props) => props.divider ? "4rem 0" : "" };
90 |
91 | @media ${(props) => props.theme.breakpoints.md} {
92 | width: 48px;
93 | height: 4px;
94 | }
95 |
96 | @media ${(props) => props.theme.breakpoints.sm} {
97 | width: 32px;
98 | height: 2px;
99 | }
100 | `
101 | export const SectionSubText = styled.p`
102 | max-width: 800px;
103 | font-weight: 300;
104 | font-size: 18px;
105 | line-height: 32px;
106 | color: rgba(255, 255, 255, 0.75);
107 |
108 | @media ${(props) => props.theme.breakpoints.md} {
109 | max-width: 672px;
110 | font-size: 16px;
111 | line-height: 25px;
112 | }
113 |
114 | @media ${(props) => props.theme.breakpoints.sm} {
115 | font-size: 14px;
116 | line-height: 22px;
117 | }
118 | `
119 | export const SecondaryBtn = styled.button`
120 | color: #FFF;
121 | background: none;
122 | border: 1px solid rgba(255, 255, 255, 0.33);
123 | box-sizing: border-box;
124 | border-radius: 999px;
125 | padding: 16px 24px;
126 | font-weight: 600;
127 | font-size: 18px;
128 | line-height: 16px;
129 | width: fit-content;
130 | margin-top: 32px;
131 | margin-bottom: 80px;
132 | cursor: pointer;
133 | transition: 0.4s ease;
134 | &:focus {
135 | outline: none;
136 | }
137 |
138 | &:hover {
139 | color: #0f1624;
140 | background: #fff;
141 | border: 1px solid #fff;
142 | }
143 |
144 | &:active {
145 | background: #e0e4eb;
146 | border: 1px solid #304169;
147 | box-shadow: inset 0px 2px 1px rgba(46, 49, 55, 0.15), inset 0px 0px 4px rgba(20, 20, 55, 0.3);
148 | }
149 |
150 | @media ${(props) => props.theme.breakpoints.md}{
151 | margin-top: 24px;
152 | margin-bottom: 64px;
153 | padding: 16px 24px;
154 | width: fit-content;
155 | font-size: 20px;
156 | line-height: 20px;
157 | }
158 |
159 | @media ${(props) => props.theme.breakpoints.sm} {
160 | margin-top: 16px;
161 | margin-bottom: 40px;
162 | padding: 8px 16px;
163 | width: 100%;
164 | font-size: 14px;
165 | line-height: 16px;
166 | }
167 | `
168 |
169 | export const ButtonBack = styled.div`
170 | width: ${({ alt }) => alt ? '150px' : '262px'};
171 | height: ${({ alt }) => alt ? '52px' : '64px'};
172 | border-radius: 50px;
173 | font-size: ${({ alt }) => alt ? '20px' : '24px'};
174 | font-weight: 600;
175 | display: flex;
176 | align-items: center;
177 | justify-content: center;
178 | margin: ${({ alt, form }) => (alt || form) ? '0' : '0 0 80px'};
179 | color: #fff;
180 | background: ${({ alt }) => alt ? 'linear-gradient(270deg, #ff622e 0%, #B133FF 100%)' : 'linear-gradient(270deg, #00DBD8 0%, #B133FF 100%)'};
181 | cursor: pointer;
182 | transition: 0.5s ease;
183 | position: relative;
184 | overflow: hidden;
185 | opacity: ${({ disabled }) => disabled ? '.5' : '1'};
186 |
187 | @media ${(props) => props.theme.breakpoints.md} {
188 | width: ${({ alt }) => alt ? '150px' : '184px'};
189 | height: ${({ alt }) => alt ? '52px' : '48px'};
190 | font-size: ${({ alt }) => alt ? '20px' : '16px'};
191 | margin-bottom: ${({ alt }) => alt ? '0' : '64px'};
192 | }
193 |
194 | @media ${(props) => props.theme.breakpoints.sm} {
195 | width: 100%;
196 | height: 32px;
197 | font-size: 14px;
198 | margin-bottom: ${({ alt }) => alt ? '0' : '32px'};
199 | }
200 | `
201 |
202 | export const ButtonFront = styled.button`
203 | border: none;
204 | border-radius: 50px;
205 | color: #fff;
206 | display: flex;
207 | position: absolute;
208 | top: 0;
209 | left: 0;
210 | width: 100%;
211 | height: 100%;
212 | background: ${({ alt }) => alt ? 'linear-gradient(270deg, #F46737 0%, #945DD6 100%)' : 'linear-gradient(270deg, #13ADC7 0%, #945DD6 100%)'};
213 | opacity: ${({ disabled }) => disabled ? '.5' : '1'};
214 | transition: .4s ease;
215 | font-size: ${({ alt }) => alt ? '20px' : '24px'};
216 | font-weight: 600;
217 | align-items: center;
218 | justify-content: center;
219 | cursor: pointer;
220 | box-shadow: ${({ disabled }) => disabled ? 'inset 0px 2px 1px rgba(46, 49, 55, 0.15), inset 0px 0px 4px rgba(20, 20, 55, 0.3)' : 'none'};
221 |
222 | &:hover {
223 | opacity: 0;
224 | }
225 | &:focus {
226 | outline: none;
227 | }
228 | &:active {
229 | opacity: 1;
230 | box-shadow: inset 0px 2px 1px rgba(46, 49, 55, 0.15), inset 0px 0px 4px rgba(20, 20, 55, 0.3);
231 | }
232 |
233 | &:disabled{
234 | background: linear-gradient(270deg, #00DBD8 0%, #B133FF 100%);
235 | opacity: 0.5;
236 | box-shadow: inset 0px 2px 1px rgba(46, 49, 55, 0.15), inset 0px 0px 4px rgba(20, 20, 55, 0.3);
237 | }
238 |
239 | @media ${(props) => props.theme.breakpoints.md} {
240 | font-size: ${({ alt }) => alt ? '20px' : '16px'};
241 | }
242 |
243 | @media ${(props) => props.theme.breakpoints.sm} {
244 | font-size: 14px;
245 | }
246 | `
247 |
248 | export const LinkContainer = styled.div`
249 | margin-left: ${({ large }) => large ? '24px' : '16px'};
250 | transition: 0.3s ease;
251 | justify-content: center;
252 | border-radius: 50px;
253 | padding: 8px;
254 |
255 | &:hover {
256 | background-color: #212d45;
257 | transform: scale(1.2);
258 | cursor: pointer;
259 | }
260 |
261 | @media ${(props) => props.theme.breakpoints.md} {
262 | margin-left: ${({ large }) => large ? '16px' : '8px'};
263 |
264 | }
265 | @media ${(props) => props.theme.breakpoints.sm} {
266 | margin-left: ${({ large }) => large ? '0' : '8px'};
267 | }
268 | `
269 |
270 | export const LinkIconImg = styled.div`
271 | display: flex;
272 | height: ${({ large }) => large ? '32px' : '24px'};
273 |
274 | @media ${(props) => props.theme.breakpoints.md} {
275 | height: ${({ nav }) => nav ? '16px' : '24px'};
276 | }
277 |
278 | @media ${(props) => props.theme.breakpoints.sm} {
279 | height: ${({ large }) => large ? '32px' : '16px'};
280 | }
281 | `
282 |
--------------------------------------------------------------------------------
/src/styles/globals.js:
--------------------------------------------------------------------------------
1 | import { createGlobalStyle } from 'styled-components';
2 | import { normalize } from 'styled-normalize';
3 |
4 | const GlobalStyles = createGlobalStyle`
5 | ${normalize};
6 |
7 | * {
8 | box-sizing: border-box;
9 | margin: 0;
10 | padding: 0;
11 | }
12 | html {
13 | font-size: 62.5%;
14 | scroll-behavior: smooth;
15 |
16 | }
17 | body {
18 | font-family: ${props => props.theme.fonts.main};
19 | font-size: 1.6rem;
20 | background: ${props => props.theme.colors.background1};
21 | color: ${props => props.theme.colors.primary1};
22 | cursor: default;
23 |
24 | }
25 | h1,h2,h3,h4,h5,h6,button {
26 | font-family: ${props => props.theme.fonts.title};
27 | }
28 | a {
29 | text-decoration: none;
30 | }
31 | li{
32 | list-style: none;
33 | }
34 |
35 | `;
36 |
37 | export default GlobalStyles;
--------------------------------------------------------------------------------
/src/styles/theme.js:
--------------------------------------------------------------------------------
1 | import { ThemeProvider } from 'styled-components';
2 |
3 | import theme from "../themes/default";
4 | import GlobalStyles from './globals';
5 |
6 | const Theme = ({ children }) => (
7 |
8 |
9 | {children}
10 |
11 | );
12 |
13 | export default Theme;
--------------------------------------------------------------------------------
/src/themes/default.js:
--------------------------------------------------------------------------------
1 | export default {
2 | // Temp fonts
3 | fonts: {
4 | title: "Space Grotesk, sans-serif",
5 | main: "Space Grotesk, sans-serif"
6 | },
7 | // Colors for layout
8 | colors: {
9 | primary1: "hsl(204,23.8%,95.9%)",
10 | background1: "#0F1624",
11 | accent1: "hsl(34.9,98.6%,72.9%)",
12 | button: "hsl(205.1,100%,36.1%)",
13 | background2: "hsl(232.7,27.3%,23.7%)",
14 | },
15 | // Breakpoints for responsive design
16 | breakpoints: {
17 | sm: 'screen and (max-width: 640px)',
18 | md: 'screen and (max-width: 768px)',
19 | lg: 'screen and (max-width: 1024px)',
20 | xl: 'screen and (max-width: 1280px)'
21 | },
22 | }
23 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@babel/code-frame@^7.12.13":
6 | "integrity" "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g=="
7 | "resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz"
8 | "version" "7.12.13"
9 | dependencies:
10 | "@babel/highlight" "^7.12.13"
11 |
12 | "@babel/code-frame@7.12.11":
13 | "integrity" "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw=="
14 | "resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz"
15 | "version" "7.12.11"
16 | dependencies:
17 | "@babel/highlight" "^7.10.4"
18 |
19 | "@babel/generator@^7.14.2":
20 | "integrity" "sha512-bn0S6flG/j0xtQdz3hsjJ624h3W0r3llttBMfyHX3YrZ/KtLYr15bjA0FXkgW7FpvrDuTuElXeVjiKlYRpnOFA=="
21 | "resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.14.3.tgz"
22 | "version" "7.14.3"
23 | dependencies:
24 | "@babel/types" "^7.14.2"
25 | "jsesc" "^2.5.1"
26 | "source-map" "^0.5.0"
27 |
28 | "@babel/helper-annotate-as-pure@^7.0.0":
29 | "integrity" "sha512-7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw=="
30 | "resolved" "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz"
31 | "version" "7.12.13"
32 | dependencies:
33 | "@babel/types" "^7.12.13"
34 |
35 | "@babel/helper-function-name@^7.14.2":
36 | "integrity" "sha512-NYZlkZRydxw+YT56IlhIcS8PAhb+FEUiOzuhFTfqDyPmzAhRge6ua0dQYT/Uh0t/EDHq05/i+e5M2d4XvjgarQ=="
37 | "resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.14.2.tgz"
38 | "version" "7.14.2"
39 | dependencies:
40 | "@babel/helper-get-function-arity" "^7.12.13"
41 | "@babel/template" "^7.12.13"
42 | "@babel/types" "^7.14.2"
43 |
44 | "@babel/helper-get-function-arity@^7.12.13":
45 | "integrity" "sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg=="
46 | "resolved" "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz"
47 | "version" "7.12.13"
48 | dependencies:
49 | "@babel/types" "^7.12.13"
50 |
51 | "@babel/helper-module-imports@^7.0.0":
52 | "integrity" "sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA=="
53 | "resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz"
54 | "version" "7.13.12"
55 | dependencies:
56 | "@babel/types" "^7.13.12"
57 |
58 | "@babel/helper-split-export-declaration@^7.12.13":
59 | "integrity" "sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg=="
60 | "resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz"
61 | "version" "7.12.13"
62 | dependencies:
63 | "@babel/types" "^7.12.13"
64 |
65 | "@babel/helper-validator-identifier@^7.14.0":
66 | "integrity" "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A=="
67 | "resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz"
68 | "version" "7.14.0"
69 |
70 | "@babel/highlight@^7.10.4", "@babel/highlight@^7.12.13":
71 | "integrity" "sha512-YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg=="
72 | "resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.0.tgz"
73 | "version" "7.14.0"
74 | dependencies:
75 | "@babel/helper-validator-identifier" "^7.14.0"
76 | "chalk" "^2.0.0"
77 | "js-tokens" "^4.0.0"
78 |
79 | "@babel/parser@^7.12.13", "@babel/parser@^7.14.2":
80 | "integrity" "sha512-7MpZDIfI7sUC5zWo2+foJ50CSI5lcqDehZ0lVgIhSi4bFEk94fLAKlF3Q0nzSQQ+ca0lm+O6G9ztKVBeu8PMRQ=="
81 | "resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.14.3.tgz"
82 | "version" "7.14.3"
83 |
84 | "@babel/runtime@7.12.5":
85 | "integrity" "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg=="
86 | "resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz"
87 | "version" "7.12.5"
88 | dependencies:
89 | "regenerator-runtime" "^0.13.4"
90 |
91 | "@babel/template@^7.12.13":
92 | "integrity" "sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA=="
93 | "resolved" "https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz"
94 | "version" "7.12.13"
95 | dependencies:
96 | "@babel/code-frame" "^7.12.13"
97 | "@babel/parser" "^7.12.13"
98 | "@babel/types" "^7.12.13"
99 |
100 | "@babel/traverse@^7.4.5":
101 | "integrity" "sha512-TsdRgvBFHMyHOOzcP9S6QU0QQtjxlRpEYOy3mcCO5RgmC305ki42aSAmfZEMSSYBla2oZ9BMqYlncBaKmD/7iA=="
102 | "resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.14.2.tgz"
103 | "version" "7.14.2"
104 | dependencies:
105 | "@babel/code-frame" "^7.12.13"
106 | "@babel/generator" "^7.14.2"
107 | "@babel/helper-function-name" "^7.14.2"
108 | "@babel/helper-split-export-declaration" "^7.12.13"
109 | "@babel/parser" "^7.14.2"
110 | "@babel/types" "^7.14.2"
111 | "debug" "^4.1.0"
112 | "globals" "^11.1.0"
113 |
114 | "@babel/types@^7.12.13":
115 | "integrity" "sha512-SdjAG/3DikRHpUOjxZgnkbR11xUlyDMUFJdvnIgZEE16mqmY0BINMmc4//JMJglEmn6i7sq6p+mGrFWyZ98EEw=="
116 | "resolved" "https://registry.npmjs.org/@babel/types/-/types-7.14.2.tgz"
117 | "version" "7.14.2"
118 | dependencies:
119 | "@babel/helper-validator-identifier" "^7.14.0"
120 | "to-fast-properties" "^2.0.0"
121 |
122 | "@babel/types@^7.13.12":
123 | "integrity" "sha512-SdjAG/3DikRHpUOjxZgnkbR11xUlyDMUFJdvnIgZEE16mqmY0BINMmc4//JMJglEmn6i7sq6p+mGrFWyZ98EEw=="
124 | "resolved" "https://registry.npmjs.org/@babel/types/-/types-7.14.2.tgz"
125 | "version" "7.14.2"
126 | dependencies:
127 | "@babel/helper-validator-identifier" "^7.14.0"
128 | "to-fast-properties" "^2.0.0"
129 |
130 | "@babel/types@^7.14.2":
131 | "integrity" "sha512-SdjAG/3DikRHpUOjxZgnkbR11xUlyDMUFJdvnIgZEE16mqmY0BINMmc4//JMJglEmn6i7sq6p+mGrFWyZ98EEw=="
132 | "resolved" "https://registry.npmjs.org/@babel/types/-/types-7.14.2.tgz"
133 | "version" "7.14.2"
134 | dependencies:
135 | "@babel/helper-validator-identifier" "^7.14.0"
136 | "to-fast-properties" "^2.0.0"
137 |
138 | "@babel/types@7.8.3":
139 | "integrity" "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg=="
140 | "resolved" "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz"
141 | "version" "7.8.3"
142 | dependencies:
143 | "esutils" "^2.0.2"
144 | "lodash" "^4.17.13"
145 | "to-fast-properties" "^2.0.0"
146 |
147 | "@emotion/is-prop-valid@^0.8.8":
148 | "integrity" "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA=="
149 | "resolved" "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz"
150 | "version" "0.8.8"
151 | dependencies:
152 | "@emotion/memoize" "0.7.4"
153 |
154 | "@emotion/memoize@0.7.4":
155 | "integrity" "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw=="
156 | "resolved" "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz"
157 | "version" "0.7.4"
158 |
159 | "@emotion/stylis@^0.8.4":
160 | "integrity" "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ=="
161 | "resolved" "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz"
162 | "version" "0.8.5"
163 |
164 | "@emotion/unitless@^0.7.4":
165 | "integrity" "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg=="
166 | "resolved" "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz"
167 | "version" "0.7.5"
168 |
169 | "@hapi/accept@5.0.2":
170 | "integrity" "sha512-CmzBx/bXUR8451fnZRuZAJRlzgm0Jgu5dltTX/bszmR2lheb9BpyN47Q1RbaGTsvFzn0PXAEs+lXDKfshccYZw=="
171 | "resolved" "https://registry.npmjs.org/@hapi/accept/-/accept-5.0.2.tgz"
172 | "version" "5.0.2"
173 | dependencies:
174 | "@hapi/boom" "9.x.x"
175 | "@hapi/hoek" "9.x.x"
176 |
177 | "@hapi/boom@9.x.x":
178 | "integrity" "sha512-uJEJtiNHzKw80JpngDGBCGAmWjBtzxDCz17A9NO2zCi8LLBlb5Frpq4pXwyN+2JQMod4pKz5BALwyneCgDg89Q=="
179 | "resolved" "https://registry.npmjs.org/@hapi/boom/-/boom-9.1.2.tgz"
180 | "version" "9.1.2"
181 | dependencies:
182 | "@hapi/hoek" "9.x.x"
183 |
184 | "@hapi/hoek@9.x.x":
185 | "integrity" "sha512-sqKVVVOe5ivCaXDWivIJYVSaEgdQK9ul7a4Kity5Iw7u9+wBAPbX1RMSnLLmp7O4Vzj0WOWwMAJsTL00xwaNug=="
186 | "resolved" "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.2.0.tgz"
187 | "version" "9.2.0"
188 |
189 | "@next/env@10.2.3":
190 | "integrity" "sha512-uBOjRBjsWC4C8X3DfmWWP6ekwLnf2JCCwQX9KVnJtJkqfDsv1yQPakdOEwvJzXQc3JC/v5KKffYPVmV2wHXCgQ=="
191 | "resolved" "https://registry.npmjs.org/@next/env/-/env-10.2.3.tgz"
192 | "version" "10.2.3"
193 |
194 | "@next/polyfill-module@10.2.3":
195 | "integrity" "sha512-OkeY4cLhzfYbXxM4fd+6V4s5pTPuyfKSlavItfNRA6PpS7t1/R6YjO7S7rB8tu1pbTGuDHGIdE1ioDv15bAbDQ=="
196 | "resolved" "https://registry.npmjs.org/@next/polyfill-module/-/polyfill-module-10.2.3.tgz"
197 | "version" "10.2.3"
198 |
199 | "@next/react-dev-overlay@10.2.3":
200 | "integrity" "sha512-E6g2jws4YW94l0lMMopBVKIZK2mEHfSBvM0d9dmzKG9L/A/kEq6LZCB4SiwGJbNsAdlk2y3USDa0oNbpA+m5Kw=="
201 | "resolved" "https://registry.npmjs.org/@next/react-dev-overlay/-/react-dev-overlay-10.2.3.tgz"
202 | "version" "10.2.3"
203 | dependencies:
204 | "@babel/code-frame" "7.12.11"
205 | "anser" "1.4.9"
206 | "chalk" "4.0.0"
207 | "classnames" "2.2.6"
208 | "css.escape" "1.5.1"
209 | "data-uri-to-buffer" "3.0.1"
210 | "platform" "1.3.6"
211 | "shell-quote" "1.7.2"
212 | "source-map" "0.8.0-beta.0"
213 | "stacktrace-parser" "0.1.10"
214 | "strip-ansi" "6.0.0"
215 |
216 | "@next/react-refresh-utils@10.2.3":
217 | "integrity" "sha512-qtBF56vPC6d6a8p7LYd0iRjW89fhY80kAIzmj+VonvIGjK/nymBjcFUhbKiMFqlhsarCksnhwX+Zmn95Dw9qvA=="
218 | "resolved" "https://registry.npmjs.org/@next/react-refresh-utils/-/react-refresh-utils-10.2.3.tgz"
219 | "version" "10.2.3"
220 |
221 | "@opentelemetry/api@0.14.0":
222 | "integrity" "sha512-L7RMuZr5LzMmZiQSQDy9O1jo0q+DaLy6XpYJfIGfYSfoJA5qzYwUP3sP1uMIQ549DvxAgM3ng85EaPTM/hUHwQ=="
223 | "resolved" "https://registry.npmjs.org/@opentelemetry/api/-/api-0.14.0.tgz"
224 | "version" "0.14.0"
225 | dependencies:
226 | "@opentelemetry/context-base" "^0.14.0"
227 |
228 | "@opentelemetry/context-base@^0.14.0":
229 | "integrity" "sha512-sDOAZcYwynHFTbLo6n8kIbLiVF3a3BLkrmehJUyEbT9F+Smbi47kLGS2gG2g0fjBLR/Lr1InPD7kXL7FaTqEkw=="
230 | "resolved" "https://registry.npmjs.org/@opentelemetry/context-base/-/context-base-0.14.0.tgz"
231 | "version" "0.14.0"
232 |
233 | "@types/node@*":
234 | "integrity" "sha512-7EIraBEyRHEe7CH+Fm1XvgqU6uwZN8Q7jppJGcqjROMT29qhAuuOxYB1uEY5UMYQKEmA5D+5tBnhdaPXSsLONA=="
235 | "resolved" "https://registry.npmjs.org/@types/node/-/node-15.6.1.tgz"
236 | "version" "15.6.1"
237 |
238 | "anser@1.4.9":
239 | "integrity" "sha512-AI+BjTeGt2+WFk4eWcqbQ7snZpDBt8SaLlj0RT2h5xfdWaiy51OjYvqwMrNzJLGy8iOAL6nKDITWO+rd4MkYEA=="
240 | "resolved" "https://registry.npmjs.org/anser/-/anser-1.4.9.tgz"
241 | "version" "1.4.9"
242 |
243 | "ansi-regex@^5.0.0":
244 | "integrity" "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg=="
245 | "resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz"
246 | "version" "5.0.0"
247 |
248 | "ansi-styles@^3.2.1":
249 | "integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="
250 | "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"
251 | "version" "3.2.1"
252 | dependencies:
253 | "color-convert" "^1.9.0"
254 |
255 | "ansi-styles@^4.1.0":
256 | "integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
257 | "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
258 | "version" "4.3.0"
259 | dependencies:
260 | "color-convert" "^2.0.1"
261 |
262 | "anymatch@~3.1.1":
263 | "integrity" "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg=="
264 | "resolved" "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz"
265 | "version" "3.1.2"
266 | dependencies:
267 | "normalize-path" "^3.0.0"
268 | "picomatch" "^2.0.4"
269 |
270 | "asn1.js@^5.2.0":
271 | "integrity" "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA=="
272 | "resolved" "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz"
273 | "version" "5.4.1"
274 | dependencies:
275 | "bn.js" "^4.0.0"
276 | "inherits" "^2.0.1"
277 | "minimalistic-assert" "^1.0.0"
278 | "safer-buffer" "^2.1.0"
279 |
280 | "assert@^1.1.1":
281 | "integrity" "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA=="
282 | "resolved" "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz"
283 | "version" "1.5.0"
284 | dependencies:
285 | "object-assign" "^4.1.1"
286 | "util" "0.10.3"
287 |
288 | "assert@2.0.0":
289 | "integrity" "sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A=="
290 | "resolved" "https://registry.npmjs.org/assert/-/assert-2.0.0.tgz"
291 | "version" "2.0.0"
292 | dependencies:
293 | "es6-object-assign" "^1.1.0"
294 | "is-nan" "^1.2.1"
295 | "object-is" "^1.0.1"
296 | "util" "^0.12.0"
297 |
298 | "ast-types@0.13.2":
299 | "integrity" "sha512-uWMHxJxtfj/1oZClOxDEV1sQ1HCDkA4MG8Gr69KKeBjEVH0R84WlejZ0y2DcwyBlpAEMltmVYkVgqfLFb2oyiA=="
300 | "resolved" "https://registry.npmjs.org/ast-types/-/ast-types-0.13.2.tgz"
301 | "version" "0.13.2"
302 |
303 | "available-typed-arrays@^1.0.2":
304 | "integrity" "sha512-SA5mXJWrId1TaQjfxUYghbqQ/hYioKmLJvPJyDuYRtXXenFNMjj4hSSt1Cf1xsuXSXrtxrVC5Ot4eU6cOtBDdA=="
305 | "resolved" "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.4.tgz"
306 | "version" "1.0.4"
307 |
308 | "babel-plugin-styled-components@>= 1.12.0":
309 | "integrity" "sha512-FEiD7l5ZABdJPpLssKXjBUJMYqzbcNzBowfXDCdJhOpbhWiewapUaY+LZGT8R4Jg2TwOjGjG4RKeyrO5p9sBkA=="
310 | "resolved" "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-1.12.0.tgz"
311 | "version" "1.12.0"
312 | dependencies:
313 | "@babel/helper-annotate-as-pure" "^7.0.0"
314 | "@babel/helper-module-imports" "^7.0.0"
315 | "babel-plugin-syntax-jsx" "^6.18.0"
316 | "lodash" "^4.17.11"
317 |
318 | "babel-plugin-syntax-jsx@^6.18.0", "babel-plugin-syntax-jsx@6.18.0":
319 | "integrity" "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY="
320 | "resolved" "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz"
321 | "version" "6.18.0"
322 |
323 | "base64-js@^1.0.2":
324 | "integrity" "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
325 | "resolved" "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz"
326 | "version" "1.5.1"
327 |
328 | "big.js@^5.2.2":
329 | "integrity" "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ=="
330 | "resolved" "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz"
331 | "version" "5.2.2"
332 |
333 | "binary-extensions@^2.0.0":
334 | "integrity" "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA=="
335 | "resolved" "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz"
336 | "version" "2.2.0"
337 |
338 | "bn.js@^4.0.0":
339 | "integrity" "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
340 | "resolved" "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz"
341 | "version" "4.12.0"
342 |
343 | "bn.js@^4.1.0":
344 | "integrity" "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
345 | "resolved" "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz"
346 | "version" "4.12.0"
347 |
348 | "bn.js@^4.11.9":
349 | "integrity" "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
350 | "resolved" "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz"
351 | "version" "4.12.0"
352 |
353 | "bn.js@^5.0.0", "bn.js@^5.1.1":
354 | "integrity" "sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw=="
355 | "resolved" "https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz"
356 | "version" "5.2.0"
357 |
358 | "braces@~3.0.2":
359 | "integrity" "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A=="
360 | "resolved" "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz"
361 | "version" "3.0.2"
362 | dependencies:
363 | "fill-range" "^7.0.1"
364 |
365 | "brorand@^1.0.1", "brorand@^1.1.0":
366 | "integrity" "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8="
367 | "resolved" "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz"
368 | "version" "1.1.0"
369 |
370 | "browserify-aes@^1.0.0", "browserify-aes@^1.0.4":
371 | "integrity" "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA=="
372 | "resolved" "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz"
373 | "version" "1.2.0"
374 | dependencies:
375 | "buffer-xor" "^1.0.3"
376 | "cipher-base" "^1.0.0"
377 | "create-hash" "^1.1.0"
378 | "evp_bytestokey" "^1.0.3"
379 | "inherits" "^2.0.1"
380 | "safe-buffer" "^5.0.1"
381 |
382 | "browserify-cipher@^1.0.0":
383 | "integrity" "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w=="
384 | "resolved" "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz"
385 | "version" "1.0.1"
386 | dependencies:
387 | "browserify-aes" "^1.0.4"
388 | "browserify-des" "^1.0.0"
389 | "evp_bytestokey" "^1.0.0"
390 |
391 | "browserify-des@^1.0.0":
392 | "integrity" "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A=="
393 | "resolved" "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz"
394 | "version" "1.0.2"
395 | dependencies:
396 | "cipher-base" "^1.0.1"
397 | "des.js" "^1.0.0"
398 | "inherits" "^2.0.1"
399 | "safe-buffer" "^5.1.2"
400 |
401 | "browserify-rsa@^4.0.0", "browserify-rsa@^4.0.1":
402 | "integrity" "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog=="
403 | "resolved" "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz"
404 | "version" "4.1.0"
405 | dependencies:
406 | "bn.js" "^5.0.0"
407 | "randombytes" "^2.0.1"
408 |
409 | "browserify-sign@^4.0.0":
410 | "integrity" "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg=="
411 | "resolved" "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz"
412 | "version" "4.2.1"
413 | dependencies:
414 | "bn.js" "^5.1.1"
415 | "browserify-rsa" "^4.0.1"
416 | "create-hash" "^1.2.0"
417 | "create-hmac" "^1.1.7"
418 | "elliptic" "^6.5.3"
419 | "inherits" "^2.0.4"
420 | "parse-asn1" "^5.1.5"
421 | "readable-stream" "^3.6.0"
422 | "safe-buffer" "^5.2.0"
423 |
424 | "browserify-zlib@^0.2.0", "browserify-zlib@0.2.0":
425 | "integrity" "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA=="
426 | "resolved" "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz"
427 | "version" "0.2.0"
428 | dependencies:
429 | "pako" "~1.0.5"
430 |
431 | "browserslist@4.16.6":
432 | "integrity" "sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ=="
433 | "resolved" "https://registry.npmjs.org/browserslist/-/browserslist-4.16.6.tgz"
434 | "version" "4.16.6"
435 | dependencies:
436 | "caniuse-lite" "^1.0.30001219"
437 | "colorette" "^1.2.2"
438 | "electron-to-chromium" "^1.3.723"
439 | "escalade" "^3.1.1"
440 | "node-releases" "^1.1.71"
441 |
442 | "buffer-xor@^1.0.3":
443 | "integrity" "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk="
444 | "resolved" "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz"
445 | "version" "1.0.3"
446 |
447 | "buffer@^4.3.0":
448 | "integrity" "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg=="
449 | "resolved" "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz"
450 | "version" "4.9.2"
451 | dependencies:
452 | "base64-js" "^1.0.2"
453 | "ieee754" "^1.1.4"
454 | "isarray" "^1.0.0"
455 |
456 | "buffer@5.6.0":
457 | "integrity" "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw=="
458 | "resolved" "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz"
459 | "version" "5.6.0"
460 | dependencies:
461 | "base64-js" "^1.0.2"
462 | "ieee754" "^1.1.4"
463 |
464 | "builtin-status-codes@^3.0.0":
465 | "integrity" "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug="
466 | "resolved" "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz"
467 | "version" "3.0.0"
468 |
469 | "bytes@3.1.0":
470 | "integrity" "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg=="
471 | "resolved" "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz"
472 | "version" "3.1.0"
473 |
474 | "call-bind@^1.0.0", "call-bind@^1.0.2":
475 | "integrity" "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA=="
476 | "resolved" "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz"
477 | "version" "1.0.2"
478 | dependencies:
479 | "function-bind" "^1.1.1"
480 | "get-intrinsic" "^1.0.2"
481 |
482 | "camelize@^1.0.0":
483 | "integrity" "sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs="
484 | "resolved" "https://registry.npmjs.org/camelize/-/camelize-1.0.0.tgz"
485 | "version" "1.0.0"
486 |
487 | "caniuse-lite@^1.0.30001202", "caniuse-lite@^1.0.30001219", "caniuse-lite@^1.0.30001228":
488 | "integrity" "sha512-5yBd5nWCBS+jWKTcHOzXwo5xzcj4ePE/yjtkZyUV1BTUmrBaA9MRGC+e7mxnqXSA90CmCA8L3eKLaSUkt099IQ=="
489 | "resolved" "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001230.tgz"
490 | "version" "1.0.30001230"
491 |
492 | "chalk@^2.0.0", "chalk@2.4.2":
493 | "integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="
494 | "resolved" "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"
495 | "version" "2.4.2"
496 | dependencies:
497 | "ansi-styles" "^3.2.1"
498 | "escape-string-regexp" "^1.0.5"
499 | "supports-color" "^5.3.0"
500 |
501 | "chalk@4.0.0":
502 | "integrity" "sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A=="
503 | "resolved" "https://registry.npmjs.org/chalk/-/chalk-4.0.0.tgz"
504 | "version" "4.0.0"
505 | dependencies:
506 | "ansi-styles" "^4.1.0"
507 | "supports-color" "^7.1.0"
508 |
509 | "chokidar@3.5.1":
510 | "integrity" "sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw=="
511 | "resolved" "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz"
512 | "version" "3.5.1"
513 | dependencies:
514 | "anymatch" "~3.1.1"
515 | "braces" "~3.0.2"
516 | "glob-parent" "~5.1.0"
517 | "is-binary-path" "~2.1.0"
518 | "is-glob" "~4.0.1"
519 | "normalize-path" "~3.0.0"
520 | "readdirp" "~3.5.0"
521 | optionalDependencies:
522 | "fsevents" "~2.3.1"
523 |
524 | "cipher-base@^1.0.0", "cipher-base@^1.0.1", "cipher-base@^1.0.3":
525 | "integrity" "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q=="
526 | "resolved" "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz"
527 | "version" "1.0.4"
528 | dependencies:
529 | "inherits" "^2.0.1"
530 | "safe-buffer" "^5.0.1"
531 |
532 | "classnames@2.2.6":
533 | "integrity" "sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q=="
534 | "resolved" "https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz"
535 | "version" "2.2.6"
536 |
537 | "color-convert@^1.9.0":
538 | "integrity" "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="
539 | "resolved" "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"
540 | "version" "1.9.3"
541 | dependencies:
542 | "color-name" "1.1.3"
543 |
544 | "color-convert@^2.0.1":
545 | "integrity" "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="
546 | "resolved" "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz"
547 | "version" "2.0.1"
548 | dependencies:
549 | "color-name" "~1.1.4"
550 |
551 | "color-name@~1.1.4":
552 | "integrity" "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
553 | "resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"
554 | "version" "1.1.4"
555 |
556 | "color-name@1.1.3":
557 | "integrity" "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
558 | "resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"
559 | "version" "1.1.3"
560 |
561 | "colorette@^1.2.2":
562 | "integrity" "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w=="
563 | "resolved" "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz"
564 | "version" "1.2.2"
565 |
566 | "commondir@^1.0.1":
567 | "integrity" "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs="
568 | "resolved" "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz"
569 | "version" "1.0.1"
570 |
571 | "console-browserify@^1.1.0":
572 | "integrity" "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA=="
573 | "resolved" "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz"
574 | "version" "1.2.0"
575 |
576 | "constants-browserify@^1.0.0", "constants-browserify@1.0.0":
577 | "integrity" "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U="
578 | "resolved" "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz"
579 | "version" "1.0.0"
580 |
581 | "convert-source-map@1.7.0":
582 | "integrity" "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA=="
583 | "resolved" "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz"
584 | "version" "1.7.0"
585 | dependencies:
586 | "safe-buffer" "~5.1.1"
587 |
588 | "core-util-is@~1.0.0":
589 | "integrity" "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
590 | "resolved" "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"
591 | "version" "1.0.2"
592 |
593 | "create-ecdh@^4.0.0":
594 | "integrity" "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A=="
595 | "resolved" "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz"
596 | "version" "4.0.4"
597 | dependencies:
598 | "bn.js" "^4.1.0"
599 | "elliptic" "^6.5.3"
600 |
601 | "create-hash@^1.1.0", "create-hash@^1.1.2", "create-hash@^1.2.0":
602 | "integrity" "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg=="
603 | "resolved" "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz"
604 | "version" "1.2.0"
605 | dependencies:
606 | "cipher-base" "^1.0.1"
607 | "inherits" "^2.0.1"
608 | "md5.js" "^1.3.4"
609 | "ripemd160" "^2.0.1"
610 | "sha.js" "^2.4.0"
611 |
612 | "create-hmac@^1.1.0", "create-hmac@^1.1.4", "create-hmac@^1.1.7":
613 | "integrity" "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg=="
614 | "resolved" "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz"
615 | "version" "1.1.7"
616 | dependencies:
617 | "cipher-base" "^1.0.3"
618 | "create-hash" "^1.1.0"
619 | "inherits" "^2.0.1"
620 | "ripemd160" "^2.0.0"
621 | "safe-buffer" "^5.0.1"
622 | "sha.js" "^2.4.8"
623 |
624 | "crypto-browserify@^3.11.0", "crypto-browserify@3.12.0":
625 | "integrity" "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg=="
626 | "resolved" "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz"
627 | "version" "3.12.0"
628 | dependencies:
629 | "browserify-cipher" "^1.0.0"
630 | "browserify-sign" "^4.0.0"
631 | "create-ecdh" "^4.0.0"
632 | "create-hash" "^1.1.0"
633 | "create-hmac" "^1.1.0"
634 | "diffie-hellman" "^5.0.0"
635 | "inherits" "^2.0.1"
636 | "pbkdf2" "^3.0.3"
637 | "public-encrypt" "^4.0.0"
638 | "randombytes" "^2.0.0"
639 | "randomfill" "^1.0.3"
640 |
641 | "css-color-keywords@^1.0.0":
642 | "integrity" "sha1-/qJhbcZ2spYmhrOvjb2+GAskTgU="
643 | "resolved" "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz"
644 | "version" "1.0.0"
645 |
646 | "css-to-react-native@^3.0.0":
647 | "integrity" "sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ=="
648 | "resolved" "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.0.0.tgz"
649 | "version" "3.0.0"
650 | dependencies:
651 | "camelize" "^1.0.0"
652 | "css-color-keywords" "^1.0.0"
653 | "postcss-value-parser" "^4.0.2"
654 |
655 | "css.escape@1.5.1":
656 | "integrity" "sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s="
657 | "resolved" "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz"
658 | "version" "1.5.1"
659 |
660 | "cssnano-preset-simple@^2.0.0":
661 | "integrity" "sha512-HkufSLkaBJbKBFx/7aj5HmCK9Ni/JedRQm0mT2qBzMG/dEuJOLnMt2lK6K1rwOOyV4j9aSY+knbW9WoS7BYpzg=="
662 | "resolved" "https://registry.npmjs.org/cssnano-preset-simple/-/cssnano-preset-simple-2.0.0.tgz"
663 | "version" "2.0.0"
664 | dependencies:
665 | "caniuse-lite" "^1.0.30001202"
666 |
667 | "cssnano-simple@2.0.0":
668 | "integrity" "sha512-0G3TXaFxlh/szPEG/o3VcmCwl0N3E60XNb9YZZijew5eIs6fLjJuOPxQd9yEBaX2p/YfJtt49i4vYi38iH6/6w=="
669 | "resolved" "https://registry.npmjs.org/cssnano-simple/-/cssnano-simple-2.0.0.tgz"
670 | "version" "2.0.0"
671 | dependencies:
672 | "cssnano-preset-simple" "^2.0.0"
673 |
674 | "data-uri-to-buffer@3.0.1":
675 | "integrity" "sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og=="
676 | "resolved" "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz"
677 | "version" "3.0.1"
678 |
679 | "debug@^4.1.0":
680 | "integrity" "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ=="
681 | "resolved" "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz"
682 | "version" "4.3.1"
683 | dependencies:
684 | "ms" "2.1.2"
685 |
686 | "debug@2":
687 | "integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="
688 | "resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"
689 | "version" "2.6.9"
690 | dependencies:
691 | "ms" "2.0.0"
692 |
693 | "define-properties@^1.1.3":
694 | "integrity" "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ=="
695 | "resolved" "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz"
696 | "version" "1.1.3"
697 | dependencies:
698 | "object-keys" "^1.0.12"
699 |
700 | "depd@~1.1.2":
701 | "integrity" "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak="
702 | "resolved" "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz"
703 | "version" "1.1.2"
704 |
705 | "des.js@^1.0.0":
706 | "integrity" "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA=="
707 | "resolved" "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz"
708 | "version" "1.0.1"
709 | dependencies:
710 | "inherits" "^2.0.1"
711 | "minimalistic-assert" "^1.0.0"
712 |
713 | "diffie-hellman@^5.0.0":
714 | "integrity" "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg=="
715 | "resolved" "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz"
716 | "version" "5.0.3"
717 | dependencies:
718 | "bn.js" "^4.1.0"
719 | "miller-rabin" "^4.0.0"
720 | "randombytes" "^2.0.0"
721 |
722 | "domain-browser@^1.1.1":
723 | "integrity" "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA=="
724 | "resolved" "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz"
725 | "version" "1.2.0"
726 |
727 | "domain-browser@4.19.0":
728 | "integrity" "sha512-fRA+BaAWOR/yr/t7T9E9GJztHPeFjj8U35ajyAjCDtAAnTn1Rc1f6W6VGPJrO1tkQv9zWu+JRof7z6oQtiYVFQ=="
729 | "resolved" "https://registry.npmjs.org/domain-browser/-/domain-browser-4.19.0.tgz"
730 | "version" "4.19.0"
731 |
732 | "electron-to-chromium@^1.3.723":
733 | "integrity" "sha512-+LPJVRsN7hGZ9EIUUiWCpO7l4E3qBYHNadazlucBfsXBbccDFNKUBAgzE68FnkWGJPwD/AfKhSzL+G+Iqb8A4A=="
734 | "resolved" "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.739.tgz"
735 | "version" "1.3.739"
736 |
737 | "elliptic@^6.5.3":
738 | "integrity" "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ=="
739 | "resolved" "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz"
740 | "version" "6.5.4"
741 | dependencies:
742 | "bn.js" "^4.11.9"
743 | "brorand" "^1.1.0"
744 | "hash.js" "^1.0.0"
745 | "hmac-drbg" "^1.0.1"
746 | "inherits" "^2.0.4"
747 | "minimalistic-assert" "^1.0.1"
748 | "minimalistic-crypto-utils" "^1.0.1"
749 |
750 | "emojis-list@^2.0.0":
751 | "integrity" "sha1-TapNnbAPmBmIDHn6RXrlsJof04k="
752 | "resolved" "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz"
753 | "version" "2.1.0"
754 |
755 | "encoding@0.1.13":
756 | "integrity" "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A=="
757 | "resolved" "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz"
758 | "version" "0.1.13"
759 | dependencies:
760 | "iconv-lite" "^0.6.2"
761 |
762 | "es-abstract@^1.18.0-next.1", "es-abstract@^1.18.0-next.2":
763 | "integrity" "sha512-byRiNIQXE6HWNySaU6JohoNXzYgbBjztwFnBLUTiJmWXjaU9bSq3urQLUlNLQ292tc+gc07zYZXNZjaOoAX3sw=="
764 | "resolved" "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.2.tgz"
765 | "version" "1.18.2"
766 | dependencies:
767 | "call-bind" "^1.0.2"
768 | "es-to-primitive" "^1.2.1"
769 | "function-bind" "^1.1.1"
770 | "get-intrinsic" "^1.1.1"
771 | "has" "^1.0.3"
772 | "has-symbols" "^1.0.2"
773 | "is-callable" "^1.2.3"
774 | "is-negative-zero" "^2.0.1"
775 | "is-regex" "^1.1.3"
776 | "is-string" "^1.0.6"
777 | "object-inspect" "^1.10.3"
778 | "object-keys" "^1.1.1"
779 | "object.assign" "^4.1.2"
780 | "string.prototype.trimend" "^1.0.4"
781 | "string.prototype.trimstart" "^1.0.4"
782 | "unbox-primitive" "^1.0.1"
783 |
784 | "es-to-primitive@^1.2.1":
785 | "integrity" "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA=="
786 | "resolved" "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz"
787 | "version" "1.2.1"
788 | dependencies:
789 | "is-callable" "^1.1.4"
790 | "is-date-object" "^1.0.1"
791 | "is-symbol" "^1.0.2"
792 |
793 | "es6-object-assign@^1.1.0":
794 | "integrity" "sha1-wsNYJlYkfDnqEHyx5mUrb58kUjw="
795 | "resolved" "https://registry.npmjs.org/es6-object-assign/-/es6-object-assign-1.1.0.tgz"
796 | "version" "1.1.0"
797 |
798 | "escalade@^3.1.1":
799 | "integrity" "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw=="
800 | "resolved" "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz"
801 | "version" "3.1.1"
802 |
803 | "escape-string-regexp@^1.0.5":
804 | "integrity" "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
805 | "resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"
806 | "version" "1.0.5"
807 |
808 | "esutils@^2.0.2":
809 | "integrity" "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="
810 | "resolved" "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz"
811 | "version" "2.0.3"
812 |
813 | "etag@1.8.1":
814 | "integrity" "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc="
815 | "resolved" "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz"
816 | "version" "1.8.1"
817 |
818 | "events@^3.0.0":
819 | "integrity" "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q=="
820 | "resolved" "https://registry.npmjs.org/events/-/events-3.3.0.tgz"
821 | "version" "3.3.0"
822 |
823 | "evp_bytestokey@^1.0.0", "evp_bytestokey@^1.0.3":
824 | "integrity" "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA=="
825 | "resolved" "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz"
826 | "version" "1.0.3"
827 | dependencies:
828 | "md5.js" "^1.3.4"
829 | "safe-buffer" "^5.1.1"
830 |
831 | "fill-range@^7.0.1":
832 | "integrity" "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ=="
833 | "resolved" "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz"
834 | "version" "7.0.1"
835 | dependencies:
836 | "to-regex-range" "^5.0.1"
837 |
838 | "find-cache-dir@3.3.1":
839 | "integrity" "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ=="
840 | "resolved" "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz"
841 | "version" "3.3.1"
842 | dependencies:
843 | "commondir" "^1.0.1"
844 | "make-dir" "^3.0.2"
845 | "pkg-dir" "^4.1.0"
846 |
847 | "find-up@^4.0.0":
848 | "integrity" "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw=="
849 | "resolved" "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz"
850 | "version" "4.1.0"
851 | dependencies:
852 | "locate-path" "^5.0.0"
853 | "path-exists" "^4.0.0"
854 |
855 | "foreach@^2.0.5":
856 | "integrity" "sha1-C+4AUBiusmDQo6865ljdATbsG5k="
857 | "resolved" "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz"
858 | "version" "2.0.5"
859 |
860 | "fsevents@~2.3.1":
861 | "integrity" "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA=="
862 | "resolved" "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz"
863 | "version" "2.3.2"
864 |
865 | "function-bind@^1.1.1":
866 | "integrity" "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
867 | "resolved" "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"
868 | "version" "1.1.1"
869 |
870 | "get-intrinsic@^1.0.2", "get-intrinsic@^1.1.1":
871 | "integrity" "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q=="
872 | "resolved" "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz"
873 | "version" "1.1.1"
874 | dependencies:
875 | "function-bind" "^1.1.1"
876 | "has" "^1.0.3"
877 | "has-symbols" "^1.0.1"
878 |
879 | "get-orientation@1.1.2":
880 | "integrity" "sha512-/pViTfifW+gBbh/RnlFYHINvELT9Znt+SYyDKAUL6uV6By019AK/s+i9XP4jSwq7lwP38Fd8HVeTxym3+hkwmQ=="
881 | "resolved" "https://registry.npmjs.org/get-orientation/-/get-orientation-1.1.2.tgz"
882 | "version" "1.1.2"
883 | dependencies:
884 | "stream-parser" "^0.3.1"
885 |
886 | "glob-parent@~5.1.0":
887 | "integrity" "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="
888 | "resolved" "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz"
889 | "version" "5.1.2"
890 | dependencies:
891 | "is-glob" "^4.0.1"
892 |
893 | "glob-to-regexp@^0.4.1":
894 | "integrity" "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw=="
895 | "resolved" "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz"
896 | "version" "0.4.1"
897 |
898 | "globals@^11.1.0":
899 | "integrity" "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="
900 | "resolved" "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz"
901 | "version" "11.12.0"
902 |
903 | "graceful-fs@^4.1.2":
904 | "integrity" "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ=="
905 | "resolved" "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz"
906 | "version" "4.2.6"
907 |
908 | "has-bigints@^1.0.1":
909 | "integrity" "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA=="
910 | "resolved" "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz"
911 | "version" "1.0.1"
912 |
913 | "has-flag@^3.0.0":
914 | "integrity" "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
915 | "resolved" "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz"
916 | "version" "3.0.0"
917 |
918 | "has-flag@^4.0.0":
919 | "integrity" "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
920 | "resolved" "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz"
921 | "version" "4.0.0"
922 |
923 | "has-symbols@^1.0.1", "has-symbols@^1.0.2":
924 | "integrity" "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw=="
925 | "resolved" "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz"
926 | "version" "1.0.2"
927 |
928 | "has@^1.0.3":
929 | "integrity" "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw=="
930 | "resolved" "https://registry.npmjs.org/has/-/has-1.0.3.tgz"
931 | "version" "1.0.3"
932 | dependencies:
933 | "function-bind" "^1.1.1"
934 |
935 | "hash-base@^3.0.0":
936 | "integrity" "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA=="
937 | "resolved" "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz"
938 | "version" "3.1.0"
939 | dependencies:
940 | "inherits" "^2.0.4"
941 | "readable-stream" "^3.6.0"
942 | "safe-buffer" "^5.2.0"
943 |
944 | "hash.js@^1.0.0", "hash.js@^1.0.3":
945 | "integrity" "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA=="
946 | "resolved" "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz"
947 | "version" "1.1.7"
948 | dependencies:
949 | "inherits" "^2.0.3"
950 | "minimalistic-assert" "^1.0.1"
951 |
952 | "he@1.2.0":
953 | "integrity" "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw=="
954 | "resolved" "https://registry.npmjs.org/he/-/he-1.2.0.tgz"
955 | "version" "1.2.0"
956 |
957 | "hmac-drbg@^1.0.1":
958 | "integrity" "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE="
959 | "resolved" "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz"
960 | "version" "1.0.1"
961 | dependencies:
962 | "hash.js" "^1.0.3"
963 | "minimalistic-assert" "^1.0.0"
964 | "minimalistic-crypto-utils" "^1.0.1"
965 |
966 | "hoist-non-react-statics@^3.0.0":
967 | "integrity" "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw=="
968 | "resolved" "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz"
969 | "version" "3.3.2"
970 | dependencies:
971 | "react-is" "^16.7.0"
972 |
973 | "http-errors@1.7.3":
974 | "integrity" "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw=="
975 | "resolved" "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz"
976 | "version" "1.7.3"
977 | dependencies:
978 | "depd" "~1.1.2"
979 | "inherits" "2.0.4"
980 | "setprototypeof" "1.1.1"
981 | "statuses" ">= 1.5.0 < 2"
982 | "toidentifier" "1.0.0"
983 |
984 | "https-browserify@^1.0.0", "https-browserify@1.0.0":
985 | "integrity" "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM="
986 | "resolved" "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz"
987 | "version" "1.0.0"
988 |
989 | "iconv-lite@^0.6.2":
990 | "integrity" "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw=="
991 | "resolved" "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz"
992 | "version" "0.6.3"
993 | dependencies:
994 | "safer-buffer" ">= 2.1.2 < 3.0.0"
995 |
996 | "iconv-lite@0.4.24":
997 | "integrity" "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="
998 | "resolved" "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz"
999 | "version" "0.4.24"
1000 | dependencies:
1001 | "safer-buffer" ">= 2.1.2 < 3"
1002 |
1003 | "ieee754@^1.1.4":
1004 | "integrity" "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="
1005 | "resolved" "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz"
1006 | "version" "1.2.1"
1007 |
1008 | "inherits@^2.0.1", "inherits@^2.0.3", "inherits@^2.0.4", "inherits@~2.0.4", "inherits@2.0.4":
1009 | "integrity" "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
1010 | "resolved" "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"
1011 | "version" "2.0.4"
1012 |
1013 | "inherits@~2.0.1", "inherits@2.0.1":
1014 | "integrity" "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE="
1015 | "resolved" "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz"
1016 | "version" "2.0.1"
1017 |
1018 | "inherits@~2.0.3":
1019 | "integrity" "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
1020 | "resolved" "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"
1021 | "version" "2.0.4"
1022 |
1023 | "inherits@2.0.3":
1024 | "integrity" "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4="
1025 | "resolved" "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz"
1026 | "version" "2.0.3"
1027 |
1028 | "is-arguments@^1.0.4":
1029 | "integrity" "sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg=="
1030 | "resolved" "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz"
1031 | "version" "1.1.0"
1032 | dependencies:
1033 | "call-bind" "^1.0.0"
1034 |
1035 | "is-bigint@^1.0.1":
1036 | "integrity" "sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA=="
1037 | "resolved" "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.2.tgz"
1038 | "version" "1.0.2"
1039 |
1040 | "is-binary-path@~2.1.0":
1041 | "integrity" "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="
1042 | "resolved" "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz"
1043 | "version" "2.1.0"
1044 | dependencies:
1045 | "binary-extensions" "^2.0.0"
1046 |
1047 | "is-boolean-object@^1.1.0":
1048 | "integrity" "sha512-bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng=="
1049 | "resolved" "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.1.tgz"
1050 | "version" "1.1.1"
1051 | dependencies:
1052 | "call-bind" "^1.0.2"
1053 |
1054 | "is-callable@^1.1.4", "is-callable@^1.2.3":
1055 | "integrity" "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ=="
1056 | "resolved" "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz"
1057 | "version" "1.2.3"
1058 |
1059 | "is-date-object@^1.0.1":
1060 | "integrity" "sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A=="
1061 | "resolved" "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.4.tgz"
1062 | "version" "1.0.4"
1063 |
1064 | "is-extglob@^2.1.1":
1065 | "integrity" "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI="
1066 | "resolved" "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz"
1067 | "version" "2.1.1"
1068 |
1069 | "is-generator-function@^1.0.7":
1070 | "integrity" "sha512-ZJ34p1uvIfptHCN7sFTjGibB9/oBg17sHqzDLfuwhvmN/qLVvIQXRQ8licZQ35WJ8KuEQt/etnnzQFI9C9Ue/A=="
1071 | "resolved" "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.9.tgz"
1072 | "version" "1.0.9"
1073 |
1074 | "is-glob@^4.0.1", "is-glob@~4.0.1":
1075 | "integrity" "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg=="
1076 | "resolved" "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz"
1077 | "version" "4.0.1"
1078 | dependencies:
1079 | "is-extglob" "^2.1.1"
1080 |
1081 | "is-nan@^1.2.1":
1082 | "integrity" "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w=="
1083 | "resolved" "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz"
1084 | "version" "1.3.2"
1085 | dependencies:
1086 | "call-bind" "^1.0.0"
1087 | "define-properties" "^1.1.3"
1088 |
1089 | "is-negative-zero@^2.0.1":
1090 | "integrity" "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w=="
1091 | "resolved" "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz"
1092 | "version" "2.0.1"
1093 |
1094 | "is-number-object@^1.0.4":
1095 | "integrity" "sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw=="
1096 | "resolved" "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.5.tgz"
1097 | "version" "1.0.5"
1098 |
1099 | "is-number@^7.0.0":
1100 | "integrity" "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="
1101 | "resolved" "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz"
1102 | "version" "7.0.0"
1103 |
1104 | "is-regex@^1.1.3":
1105 | "integrity" "sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ=="
1106 | "resolved" "https://registry.npmjs.org/is-regex/-/is-regex-1.1.3.tgz"
1107 | "version" "1.1.3"
1108 | dependencies:
1109 | "call-bind" "^1.0.2"
1110 | "has-symbols" "^1.0.2"
1111 |
1112 | "is-string@^1.0.5", "is-string@^1.0.6":
1113 | "integrity" "sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w=="
1114 | "resolved" "https://registry.npmjs.org/is-string/-/is-string-1.0.6.tgz"
1115 | "version" "1.0.6"
1116 |
1117 | "is-symbol@^1.0.2", "is-symbol@^1.0.3":
1118 | "integrity" "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg=="
1119 | "resolved" "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz"
1120 | "version" "1.0.4"
1121 | dependencies:
1122 | "has-symbols" "^1.0.2"
1123 |
1124 | "is-typed-array@^1.1.3":
1125 | "integrity" "sha512-S+GRDgJlR3PyEbsX/Fobd9cqpZBuvUS+8asRqYDMLCb2qMzt1oz5m5oxQCxOgUDxiWsOVNi4yaF+/uvdlHlYug=="
1126 | "resolved" "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.5.tgz"
1127 | "version" "1.1.5"
1128 | dependencies:
1129 | "available-typed-arrays" "^1.0.2"
1130 | "call-bind" "^1.0.2"
1131 | "es-abstract" "^1.18.0-next.2"
1132 | "foreach" "^2.0.5"
1133 | "has-symbols" "^1.0.1"
1134 |
1135 | "isarray@^1.0.0", "isarray@~1.0.0":
1136 | "integrity" "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
1137 | "resolved" "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"
1138 | "version" "1.0.0"
1139 |
1140 | "jest-worker@27.0.0-next.5":
1141 | "integrity" "sha512-mk0umAQ5lT+CaOJ+Qp01N6kz48sJG2kr2n1rX0koqKf6FIygQV0qLOdN9SCYID4IVeSigDOcPeGLozdMLYfb5g=="
1142 | "resolved" "https://registry.npmjs.org/jest-worker/-/jest-worker-27.0.0-next.5.tgz"
1143 | "version" "27.0.0-next.5"
1144 | dependencies:
1145 | "@types/node" "*"
1146 | "merge-stream" "^2.0.0"
1147 | "supports-color" "^8.0.0"
1148 |
1149 | "js-tokens@^3.0.0 || ^4.0.0", "js-tokens@^4.0.0":
1150 | "integrity" "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
1151 | "resolved" "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz"
1152 | "version" "4.0.0"
1153 |
1154 | "jsesc@^2.5.1":
1155 | "integrity" "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA=="
1156 | "resolved" "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz"
1157 | "version" "2.5.2"
1158 |
1159 | "json5@^1.0.1":
1160 | "integrity" "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow=="
1161 | "resolved" "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz"
1162 | "version" "1.0.1"
1163 | dependencies:
1164 | "minimist" "^1.2.0"
1165 |
1166 | "loader-utils@1.2.3":
1167 | "integrity" "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA=="
1168 | "resolved" "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz"
1169 | "version" "1.2.3"
1170 | dependencies:
1171 | "big.js" "^5.2.2"
1172 | "emojis-list" "^2.0.0"
1173 | "json5" "^1.0.1"
1174 |
1175 | "locate-path@^5.0.0":
1176 | "integrity" "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g=="
1177 | "resolved" "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz"
1178 | "version" "5.0.0"
1179 | dependencies:
1180 | "p-locate" "^4.1.0"
1181 |
1182 | "lodash.sortby@^4.7.0":
1183 | "integrity" "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg="
1184 | "resolved" "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz"
1185 | "version" "4.7.0"
1186 |
1187 | "lodash@^4.17.11", "lodash@^4.17.13":
1188 | "integrity" "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
1189 | "resolved" "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz"
1190 | "version" "4.17.21"
1191 |
1192 | "loose-envify@^1.1.0", "loose-envify@^1.4.0":
1193 | "integrity" "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q=="
1194 | "resolved" "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz"
1195 | "version" "1.4.0"
1196 | dependencies:
1197 | "js-tokens" "^3.0.0 || ^4.0.0"
1198 |
1199 | "make-dir@^3.0.2":
1200 | "integrity" "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw=="
1201 | "resolved" "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz"
1202 | "version" "3.1.0"
1203 | dependencies:
1204 | "semver" "^6.0.0"
1205 |
1206 | "md5.js@^1.3.4":
1207 | "integrity" "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg=="
1208 | "resolved" "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz"
1209 | "version" "1.3.5"
1210 | dependencies:
1211 | "hash-base" "^3.0.0"
1212 | "inherits" "^2.0.1"
1213 | "safe-buffer" "^5.1.2"
1214 |
1215 | "merge-stream@^2.0.0":
1216 | "integrity" "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w=="
1217 | "resolved" "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz"
1218 | "version" "2.0.0"
1219 |
1220 | "miller-rabin@^4.0.0":
1221 | "integrity" "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA=="
1222 | "resolved" "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz"
1223 | "version" "4.0.1"
1224 | dependencies:
1225 | "bn.js" "^4.0.0"
1226 | "brorand" "^1.0.1"
1227 |
1228 | "minimalistic-assert@^1.0.0", "minimalistic-assert@^1.0.1":
1229 | "integrity" "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A=="
1230 | "resolved" "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz"
1231 | "version" "1.0.1"
1232 |
1233 | "minimalistic-crypto-utils@^1.0.1":
1234 | "integrity" "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo="
1235 | "resolved" "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz"
1236 | "version" "1.0.1"
1237 |
1238 | "minimist@^1.2.0":
1239 | "integrity" "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="
1240 | "resolved" "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz"
1241 | "version" "1.2.5"
1242 |
1243 | "ms@2.0.0":
1244 | "integrity" "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
1245 | "resolved" "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"
1246 | "version" "2.0.0"
1247 |
1248 | "ms@2.1.2":
1249 | "integrity" "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
1250 | "resolved" "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"
1251 | "version" "2.1.2"
1252 |
1253 | "nanoid@^3.1.22":
1254 | "integrity" "sha512-FiB0kzdP0FFVGDKlRLEQ1BgDzU87dy5NnzjeW9YZNt+/c3+q82EQDUwniSAUxp/F0gFNI1ZhKU1FqYsMuqZVnw=="
1255 | "resolved" "https://registry.npmjs.org/nanoid/-/nanoid-3.1.23.tgz"
1256 | "version" "3.1.23"
1257 |
1258 | "native-url@0.3.4":
1259 | "integrity" "sha512-6iM8R99ze45ivyH8vybJ7X0yekIcPf5GgLV5K0ENCbmRcaRIDoj37BC8iLEmaaBfqqb8enuZ5p0uhY+lVAbAcA=="
1260 | "resolved" "https://registry.npmjs.org/native-url/-/native-url-0.3.4.tgz"
1261 | "version" "0.3.4"
1262 | dependencies:
1263 | "querystring" "^0.2.0"
1264 |
1265 | "next@10.2.3":
1266 | "integrity" "sha512-dkM1mIfnORtGyzw/Yme8RdqNxlCMZyi4Lqj56F01/yHbe1ZtOaJ0cyqqRB4RGiPhjGGh0319f8ddjDyO1605Ow=="
1267 | "resolved" "https://registry.npmjs.org/next/-/next-10.2.3.tgz"
1268 | "version" "10.2.3"
1269 | dependencies:
1270 | "@babel/runtime" "7.12.5"
1271 | "@hapi/accept" "5.0.2"
1272 | "@next/env" "10.2.3"
1273 | "@next/polyfill-module" "10.2.3"
1274 | "@next/react-dev-overlay" "10.2.3"
1275 | "@next/react-refresh-utils" "10.2.3"
1276 | "@opentelemetry/api" "0.14.0"
1277 | "assert" "2.0.0"
1278 | "ast-types" "0.13.2"
1279 | "browserify-zlib" "0.2.0"
1280 | "browserslist" "4.16.6"
1281 | "buffer" "5.6.0"
1282 | "caniuse-lite" "^1.0.30001228"
1283 | "chalk" "2.4.2"
1284 | "chokidar" "3.5.1"
1285 | "constants-browserify" "1.0.0"
1286 | "crypto-browserify" "3.12.0"
1287 | "cssnano-simple" "2.0.0"
1288 | "domain-browser" "4.19.0"
1289 | "encoding" "0.1.13"
1290 | "etag" "1.8.1"
1291 | "find-cache-dir" "3.3.1"
1292 | "get-orientation" "1.1.2"
1293 | "https-browserify" "1.0.0"
1294 | "jest-worker" "27.0.0-next.5"
1295 | "native-url" "0.3.4"
1296 | "node-fetch" "2.6.1"
1297 | "node-html-parser" "1.4.9"
1298 | "node-libs-browser" "^2.2.1"
1299 | "os-browserify" "0.3.0"
1300 | "p-limit" "3.1.0"
1301 | "path-browserify" "1.0.1"
1302 | "pnp-webpack-plugin" "1.6.4"
1303 | "postcss" "8.2.13"
1304 | "process" "0.11.10"
1305 | "prop-types" "15.7.2"
1306 | "querystring-es3" "0.2.1"
1307 | "raw-body" "2.4.1"
1308 | "react-is" "16.13.1"
1309 | "react-refresh" "0.8.3"
1310 | "stream-browserify" "3.0.0"
1311 | "stream-http" "3.1.1"
1312 | "string_decoder" "1.3.0"
1313 | "styled-jsx" "3.3.2"
1314 | "timers-browserify" "2.0.12"
1315 | "tty-browserify" "0.0.1"
1316 | "use-subscription" "1.5.1"
1317 | "util" "0.12.3"
1318 | "vm-browserify" "1.1.2"
1319 | "watchpack" "2.1.1"
1320 |
1321 | "node-fetch@2.6.1":
1322 | "integrity" "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw=="
1323 | "resolved" "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz"
1324 | "version" "2.6.1"
1325 |
1326 | "node-html-parser@1.4.9":
1327 | "integrity" "sha512-UVcirFD1Bn0O+TSmloHeHqZZCxHjvtIeGdVdGMhyZ8/PWlEiZaZ5iJzR189yKZr8p0FXN58BUeC7RHRkf/KYGw=="
1328 | "resolved" "https://registry.npmjs.org/node-html-parser/-/node-html-parser-1.4.9.tgz"
1329 | "version" "1.4.9"
1330 | dependencies:
1331 | "he" "1.2.0"
1332 |
1333 | "node-libs-browser@^2.2.1":
1334 | "integrity" "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q=="
1335 | "resolved" "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz"
1336 | "version" "2.2.1"
1337 | dependencies:
1338 | "assert" "^1.1.1"
1339 | "browserify-zlib" "^0.2.0"
1340 | "buffer" "^4.3.0"
1341 | "console-browserify" "^1.1.0"
1342 | "constants-browserify" "^1.0.0"
1343 | "crypto-browserify" "^3.11.0"
1344 | "domain-browser" "^1.1.1"
1345 | "events" "^3.0.0"
1346 | "https-browserify" "^1.0.0"
1347 | "os-browserify" "^0.3.0"
1348 | "path-browserify" "0.0.1"
1349 | "process" "^0.11.10"
1350 | "punycode" "^1.2.4"
1351 | "querystring-es3" "^0.2.0"
1352 | "readable-stream" "^2.3.3"
1353 | "stream-browserify" "^2.0.1"
1354 | "stream-http" "^2.7.2"
1355 | "string_decoder" "^1.0.0"
1356 | "timers-browserify" "^2.0.4"
1357 | "tty-browserify" "0.0.0"
1358 | "url" "^0.11.0"
1359 | "util" "^0.11.0"
1360 | "vm-browserify" "^1.0.1"
1361 |
1362 | "node-releases@^1.1.71":
1363 | "integrity" "sha512-LLUo+PpH3dU6XizX3iVoubUNheF/owjXCZZ5yACDxNnPtgFuludV1ZL3ayK1kVep42Rmm0+R9/Y60NQbZ2bifw=="
1364 | "resolved" "https://registry.npmjs.org/node-releases/-/node-releases-1.1.72.tgz"
1365 | "version" "1.1.72"
1366 |
1367 | "normalize-path@^3.0.0", "normalize-path@~3.0.0":
1368 | "integrity" "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="
1369 | "resolved" "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz"
1370 | "version" "3.0.0"
1371 |
1372 | "object-assign@^4.1.1":
1373 | "integrity" "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM="
1374 | "resolved" "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz"
1375 | "version" "4.1.1"
1376 |
1377 | "object-inspect@^1.10.3":
1378 | "integrity" "sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw=="
1379 | "resolved" "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.3.tgz"
1380 | "version" "1.10.3"
1381 |
1382 | "object-is@^1.0.1":
1383 | "integrity" "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw=="
1384 | "resolved" "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz"
1385 | "version" "1.1.5"
1386 | dependencies:
1387 | "call-bind" "^1.0.2"
1388 | "define-properties" "^1.1.3"
1389 |
1390 | "object-keys@^1.0.12", "object-keys@^1.1.1":
1391 | "integrity" "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA=="
1392 | "resolved" "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz"
1393 | "version" "1.1.1"
1394 |
1395 | "object.assign@^4.1.2":
1396 | "integrity" "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ=="
1397 | "resolved" "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz"
1398 | "version" "4.1.2"
1399 | dependencies:
1400 | "call-bind" "^1.0.0"
1401 | "define-properties" "^1.1.3"
1402 | "has-symbols" "^1.0.1"
1403 | "object-keys" "^1.1.1"
1404 |
1405 | "os-browserify@^0.3.0", "os-browserify@0.3.0":
1406 | "integrity" "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc="
1407 | "resolved" "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz"
1408 | "version" "0.3.0"
1409 |
1410 | "p-limit@^2.2.0":
1411 | "integrity" "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w=="
1412 | "resolved" "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz"
1413 | "version" "2.3.0"
1414 | dependencies:
1415 | "p-try" "^2.0.0"
1416 |
1417 | "p-limit@3.1.0":
1418 | "integrity" "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ=="
1419 | "resolved" "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz"
1420 | "version" "3.1.0"
1421 | dependencies:
1422 | "yocto-queue" "^0.1.0"
1423 |
1424 | "p-locate@^4.1.0":
1425 | "integrity" "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A=="
1426 | "resolved" "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz"
1427 | "version" "4.1.0"
1428 | dependencies:
1429 | "p-limit" "^2.2.0"
1430 |
1431 | "p-try@^2.0.0":
1432 | "integrity" "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="
1433 | "resolved" "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz"
1434 | "version" "2.2.0"
1435 |
1436 | "pako@~1.0.5":
1437 | "integrity" "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw=="
1438 | "resolved" "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz"
1439 | "version" "1.0.11"
1440 |
1441 | "parse-asn1@^5.0.0", "parse-asn1@^5.1.5":
1442 | "integrity" "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw=="
1443 | "resolved" "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz"
1444 | "version" "5.1.6"
1445 | dependencies:
1446 | "asn1.js" "^5.2.0"
1447 | "browserify-aes" "^1.0.0"
1448 | "evp_bytestokey" "^1.0.0"
1449 | "pbkdf2" "^3.0.3"
1450 | "safe-buffer" "^5.1.1"
1451 |
1452 | "path-browserify@0.0.1":
1453 | "integrity" "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ=="
1454 | "resolved" "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz"
1455 | "version" "0.0.1"
1456 |
1457 | "path-browserify@1.0.1":
1458 | "integrity" "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g=="
1459 | "resolved" "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz"
1460 | "version" "1.0.1"
1461 |
1462 | "path-exists@^4.0.0":
1463 | "integrity" "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w=="
1464 | "resolved" "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz"
1465 | "version" "4.0.0"
1466 |
1467 | "pbkdf2@^3.0.3":
1468 | "integrity" "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA=="
1469 | "resolved" "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz"
1470 | "version" "3.1.2"
1471 | dependencies:
1472 | "create-hash" "^1.1.2"
1473 | "create-hmac" "^1.1.4"
1474 | "ripemd160" "^2.0.1"
1475 | "safe-buffer" "^5.0.1"
1476 | "sha.js" "^2.4.8"
1477 |
1478 | "picomatch@^2.0.4", "picomatch@^2.2.1":
1479 | "integrity" "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw=="
1480 | "resolved" "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz"
1481 | "version" "2.3.0"
1482 |
1483 | "pkg-dir@^4.1.0":
1484 | "integrity" "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ=="
1485 | "resolved" "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz"
1486 | "version" "4.2.0"
1487 | dependencies:
1488 | "find-up" "^4.0.0"
1489 |
1490 | "platform@1.3.6":
1491 | "integrity" "sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg=="
1492 | "resolved" "https://registry.npmjs.org/platform/-/platform-1.3.6.tgz"
1493 | "version" "1.3.6"
1494 |
1495 | "pnp-webpack-plugin@1.6.4":
1496 | "integrity" "sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg=="
1497 | "resolved" "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz"
1498 | "version" "1.6.4"
1499 | dependencies:
1500 | "ts-pnp" "^1.1.6"
1501 |
1502 | "postcss-value-parser@^4.0.2":
1503 | "integrity" "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ=="
1504 | "resolved" "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz"
1505 | "version" "4.1.0"
1506 |
1507 | "postcss@^8.2.1", "postcss@^8.2.2", "postcss@8.2.13":
1508 | "integrity" "sha512-FCE5xLH+hjbzRdpbRb1IMCvPv9yZx2QnDarBEYSN0N0HYk+TcXsEhwdFcFb+SRWOKzKGErhIEbBK2ogyLdTtfQ=="
1509 | "resolved" "https://registry.npmjs.org/postcss/-/postcss-8.2.13.tgz"
1510 | "version" "8.2.13"
1511 | dependencies:
1512 | "colorette" "^1.2.2"
1513 | "nanoid" "^3.1.22"
1514 | "source-map" "^0.6.1"
1515 |
1516 | "process-nextick-args@~2.0.0":
1517 | "integrity" "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="
1518 | "resolved" "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz"
1519 | "version" "2.0.1"
1520 |
1521 | "process@^0.11.10", "process@0.11.10":
1522 | "integrity" "sha1-czIwDoQBYb2j5podHZGn1LwW8YI="
1523 | "resolved" "https://registry.npmjs.org/process/-/process-0.11.10.tgz"
1524 | "version" "0.11.10"
1525 |
1526 | "prop-types@15.7.2":
1527 | "integrity" "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ=="
1528 | "resolved" "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz"
1529 | "version" "15.7.2"
1530 | dependencies:
1531 | "loose-envify" "^1.4.0"
1532 | "object-assign" "^4.1.1"
1533 | "react-is" "^16.8.1"
1534 |
1535 | "public-encrypt@^4.0.0":
1536 | "integrity" "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q=="
1537 | "resolved" "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz"
1538 | "version" "4.0.3"
1539 | dependencies:
1540 | "bn.js" "^4.1.0"
1541 | "browserify-rsa" "^4.0.0"
1542 | "create-hash" "^1.1.0"
1543 | "parse-asn1" "^5.0.0"
1544 | "randombytes" "^2.0.1"
1545 | "safe-buffer" "^5.1.2"
1546 |
1547 | "punycode@^1.2.4":
1548 | "integrity" "sha1-wNWmOycYgArY4esPpSachN1BhF4="
1549 | "resolved" "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz"
1550 | "version" "1.4.1"
1551 |
1552 | "punycode@^2.1.0":
1553 | "integrity" "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="
1554 | "resolved" "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz"
1555 | "version" "2.1.1"
1556 |
1557 | "punycode@1.3.2":
1558 | "integrity" "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0="
1559 | "resolved" "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz"
1560 | "version" "1.3.2"
1561 |
1562 | "querystring-es3@^0.2.0", "querystring-es3@0.2.1":
1563 | "integrity" "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM="
1564 | "resolved" "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz"
1565 | "version" "0.2.1"
1566 |
1567 | "querystring@^0.2.0":
1568 | "integrity" "sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg=="
1569 | "resolved" "https://registry.npmjs.org/querystring/-/querystring-0.2.1.tgz"
1570 | "version" "0.2.1"
1571 |
1572 | "querystring@0.2.0":
1573 | "integrity" "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA="
1574 | "resolved" "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz"
1575 | "version" "0.2.0"
1576 |
1577 | "randombytes@^2.0.0", "randombytes@^2.0.1", "randombytes@^2.0.5":
1578 | "integrity" "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ=="
1579 | "resolved" "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz"
1580 | "version" "2.1.0"
1581 | dependencies:
1582 | "safe-buffer" "^5.1.0"
1583 |
1584 | "randomfill@^1.0.3":
1585 | "integrity" "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw=="
1586 | "resolved" "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz"
1587 | "version" "1.0.4"
1588 | dependencies:
1589 | "randombytes" "^2.0.5"
1590 | "safe-buffer" "^5.1.0"
1591 |
1592 | "raw-body@2.4.1":
1593 | "integrity" "sha512-9WmIKF6mkvA0SLmA2Knm9+qj89e+j1zqgyn8aXGd7+nAduPoqgI9lO57SAZNn/Byzo5P7JhXTyg9PzaJbH73bA=="
1594 | "resolved" "https://registry.npmjs.org/raw-body/-/raw-body-2.4.1.tgz"
1595 | "version" "2.4.1"
1596 | dependencies:
1597 | "bytes" "3.1.0"
1598 | "http-errors" "1.7.3"
1599 | "iconv-lite" "0.4.24"
1600 | "unpipe" "1.0.0"
1601 |
1602 | "react-dom@^16.6.0 || ^17", "react-dom@^16.9.0 || ^17", "react-dom@>= 16.8.0", "react-dom@17.0.2":
1603 | "integrity" "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA=="
1604 | "resolved" "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz"
1605 | "version" "17.0.2"
1606 | dependencies:
1607 | "loose-envify" "^1.1.0"
1608 | "object-assign" "^4.1.1"
1609 | "scheduler" "^0.20.2"
1610 |
1611 | "react-icons@^4.2.0":
1612 | "integrity" "sha512-rmzEDFt+AVXRzD7zDE21gcxyBizD/3NqjbX6cmViAgdqfJ2UiLer8927/QhhrXQV7dEj/1EGuOTPp7JnLYVJKQ=="
1613 | "resolved" "https://registry.npmjs.org/react-icons/-/react-icons-4.2.0.tgz"
1614 | "version" "4.2.0"
1615 |
1616 | "react-is@^16.7.0", "react-is@^16.8.1", "react-is@>= 16.8.0", "react-is@16.13.1":
1617 | "integrity" "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
1618 | "resolved" "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz"
1619 | "version" "16.13.1"
1620 |
1621 | "react-refresh@0.8.3":
1622 | "integrity" "sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg=="
1623 | "resolved" "https://registry.npmjs.org/react-refresh/-/react-refresh-0.8.3.tgz"
1624 | "version" "0.8.3"
1625 |
1626 | "react@*", "react@^16.6.0 || ^17", "react@^16.8.0 || ^17.0.0", "react@^16.9.0 || ^17", "react@>= 16.8.0", "react@15.x.x || 16.x.x || 17.x.x", "react@17.0.2":
1627 | "integrity" "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA=="
1628 | "resolved" "https://registry.npmjs.org/react/-/react-17.0.2.tgz"
1629 | "version" "17.0.2"
1630 | dependencies:
1631 | "loose-envify" "^1.1.0"
1632 | "object-assign" "^4.1.1"
1633 |
1634 | "readable-stream@^2.0.2", "readable-stream@^2.3.3", "readable-stream@^2.3.6":
1635 | "integrity" "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw=="
1636 | "resolved" "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz"
1637 | "version" "2.3.7"
1638 | dependencies:
1639 | "core-util-is" "~1.0.0"
1640 | "inherits" "~2.0.3"
1641 | "isarray" "~1.0.0"
1642 | "process-nextick-args" "~2.0.0"
1643 | "safe-buffer" "~5.1.1"
1644 | "string_decoder" "~1.1.1"
1645 | "util-deprecate" "~1.0.1"
1646 |
1647 | "readable-stream@^3.5.0", "readable-stream@^3.6.0":
1648 | "integrity" "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA=="
1649 | "resolved" "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz"
1650 | "version" "3.6.0"
1651 | dependencies:
1652 | "inherits" "^2.0.3"
1653 | "string_decoder" "^1.1.1"
1654 | "util-deprecate" "^1.0.1"
1655 |
1656 | "readdirp@~3.5.0":
1657 | "integrity" "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ=="
1658 | "resolved" "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz"
1659 | "version" "3.5.0"
1660 | dependencies:
1661 | "picomatch" "^2.2.1"
1662 |
1663 | "regenerator-runtime@^0.13.4":
1664 | "integrity" "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew=="
1665 | "resolved" "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz"
1666 | "version" "0.13.7"
1667 |
1668 | "ripemd160@^2.0.0", "ripemd160@^2.0.1":
1669 | "integrity" "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA=="
1670 | "resolved" "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz"
1671 | "version" "2.0.2"
1672 | dependencies:
1673 | "hash-base" "^3.0.0"
1674 | "inherits" "^2.0.1"
1675 |
1676 | "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":
1677 | "integrity" "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
1678 | "resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz"
1679 | "version" "5.2.1"
1680 |
1681 | "safe-buffer@~5.1.0", "safe-buffer@~5.1.1":
1682 | "integrity" "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
1683 | "resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"
1684 | "version" "5.1.2"
1685 |
1686 | "safer-buffer@^2.1.0", "safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0":
1687 | "integrity" "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
1688 | "resolved" "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"
1689 | "version" "2.1.2"
1690 |
1691 | "scheduler@^0.20.2":
1692 | "integrity" "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ=="
1693 | "resolved" "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz"
1694 | "version" "0.20.2"
1695 | dependencies:
1696 | "loose-envify" "^1.1.0"
1697 | "object-assign" "^4.1.1"
1698 |
1699 | "semver@^6.0.0":
1700 | "integrity" "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
1701 | "resolved" "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz"
1702 | "version" "6.3.0"
1703 |
1704 | "setimmediate@^1.0.4":
1705 | "integrity" "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU="
1706 | "resolved" "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz"
1707 | "version" "1.0.5"
1708 |
1709 | "setprototypeof@1.1.1":
1710 | "integrity" "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw=="
1711 | "resolved" "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz"
1712 | "version" "1.1.1"
1713 |
1714 | "sha.js@^2.4.0", "sha.js@^2.4.8":
1715 | "integrity" "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ=="
1716 | "resolved" "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz"
1717 | "version" "2.4.11"
1718 | dependencies:
1719 | "inherits" "^2.0.1"
1720 | "safe-buffer" "^5.0.1"
1721 |
1722 | "shallowequal@^1.1.0":
1723 | "integrity" "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ=="
1724 | "resolved" "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz"
1725 | "version" "1.1.0"
1726 |
1727 | "shell-quote@1.7.2":
1728 | "integrity" "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg=="
1729 | "resolved" "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz"
1730 | "version" "1.7.2"
1731 |
1732 | "source-map@^0.5.0":
1733 | "integrity" "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
1734 | "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz"
1735 | "version" "0.5.7"
1736 |
1737 | "source-map@^0.6.1":
1738 | "integrity" "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
1739 | "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"
1740 | "version" "0.6.1"
1741 |
1742 | "source-map@0.7.3":
1743 | "integrity" "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ=="
1744 | "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz"
1745 | "version" "0.7.3"
1746 |
1747 | "source-map@0.8.0-beta.0":
1748 | "integrity" "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA=="
1749 | "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz"
1750 | "version" "0.8.0-beta.0"
1751 | dependencies:
1752 | "whatwg-url" "^7.0.0"
1753 |
1754 | "stacktrace-parser@0.1.10":
1755 | "integrity" "sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg=="
1756 | "resolved" "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz"
1757 | "version" "0.1.10"
1758 | dependencies:
1759 | "type-fest" "^0.7.1"
1760 |
1761 | "statuses@>= 1.5.0 < 2":
1762 | "integrity" "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow="
1763 | "resolved" "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz"
1764 | "version" "1.5.0"
1765 |
1766 | "stream-browserify@^2.0.1":
1767 | "integrity" "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg=="
1768 | "resolved" "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz"
1769 | "version" "2.0.2"
1770 | dependencies:
1771 | "inherits" "~2.0.1"
1772 | "readable-stream" "^2.0.2"
1773 |
1774 | "stream-browserify@3.0.0":
1775 | "integrity" "sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA=="
1776 | "resolved" "https://registry.npmjs.org/stream-browserify/-/stream-browserify-3.0.0.tgz"
1777 | "version" "3.0.0"
1778 | dependencies:
1779 | "inherits" "~2.0.4"
1780 | "readable-stream" "^3.5.0"
1781 |
1782 | "stream-http@^2.7.2":
1783 | "integrity" "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw=="
1784 | "resolved" "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz"
1785 | "version" "2.8.3"
1786 | dependencies:
1787 | "builtin-status-codes" "^3.0.0"
1788 | "inherits" "^2.0.1"
1789 | "readable-stream" "^2.3.6"
1790 | "to-arraybuffer" "^1.0.0"
1791 | "xtend" "^4.0.0"
1792 |
1793 | "stream-http@3.1.1":
1794 | "integrity" "sha512-S7OqaYu0EkFpgeGFb/NPOoPLxFko7TPqtEeFg5DXPB4v/KETHG0Ln6fRFrNezoelpaDKmycEmmZ81cC9DAwgYg=="
1795 | "resolved" "https://registry.npmjs.org/stream-http/-/stream-http-3.1.1.tgz"
1796 | "version" "3.1.1"
1797 | dependencies:
1798 | "builtin-status-codes" "^3.0.0"
1799 | "inherits" "^2.0.4"
1800 | "readable-stream" "^3.6.0"
1801 | "xtend" "^4.0.2"
1802 |
1803 | "stream-parser@^0.3.1":
1804 | "integrity" "sha1-FhhUhpRCACGhGC/wrxkRwSl2F3M="
1805 | "resolved" "https://registry.npmjs.org/stream-parser/-/stream-parser-0.3.1.tgz"
1806 | "version" "0.3.1"
1807 | dependencies:
1808 | "debug" "2"
1809 |
1810 | "string_decoder@^1.0.0", "string_decoder@^1.1.1", "string_decoder@1.3.0":
1811 | "integrity" "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="
1812 | "resolved" "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz"
1813 | "version" "1.3.0"
1814 | dependencies:
1815 | "safe-buffer" "~5.2.0"
1816 |
1817 | "string_decoder@~1.1.1":
1818 | "integrity" "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="
1819 | "resolved" "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz"
1820 | "version" "1.1.1"
1821 | dependencies:
1822 | "safe-buffer" "~5.1.0"
1823 |
1824 | "string-hash@1.1.3":
1825 | "integrity" "sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs="
1826 | "resolved" "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz"
1827 | "version" "1.1.3"
1828 |
1829 | "string.prototype.trimend@^1.0.4":
1830 | "integrity" "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A=="
1831 | "resolved" "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz"
1832 | "version" "1.0.4"
1833 | dependencies:
1834 | "call-bind" "^1.0.2"
1835 | "define-properties" "^1.1.3"
1836 |
1837 | "string.prototype.trimstart@^1.0.4":
1838 | "integrity" "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw=="
1839 | "resolved" "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz"
1840 | "version" "1.0.4"
1841 | dependencies:
1842 | "call-bind" "^1.0.2"
1843 | "define-properties" "^1.1.3"
1844 |
1845 | "strip-ansi@6.0.0":
1846 | "integrity" "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w=="
1847 | "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz"
1848 | "version" "6.0.0"
1849 | dependencies:
1850 | "ansi-regex" "^5.0.0"
1851 |
1852 | "styled-components@^4.0.0 || ^5.0.0", "styled-components@^5.3.0", "styled-components@>= 2":
1853 | "integrity" "sha512-bPJKwZCHjJPf/hwTJl6TbkSZg/3evha+XPEizrZUGb535jLImwDUdjTNxXqjjaASt2M4qO4AVfoHJNe3XB/tpQ=="
1854 | "resolved" "https://registry.npmjs.org/styled-components/-/styled-components-5.3.0.tgz"
1855 | "version" "5.3.0"
1856 | dependencies:
1857 | "@babel/helper-module-imports" "^7.0.0"
1858 | "@babel/traverse" "^7.4.5"
1859 | "@emotion/is-prop-valid" "^0.8.8"
1860 | "@emotion/stylis" "^0.8.4"
1861 | "@emotion/unitless" "^0.7.4"
1862 | "babel-plugin-styled-components" ">= 1.12.0"
1863 | "css-to-react-native" "^3.0.0"
1864 | "hoist-non-react-statics" "^3.0.0"
1865 | "shallowequal" "^1.1.0"
1866 | "supports-color" "^5.5.0"
1867 |
1868 | "styled-jsx@3.3.2":
1869 | "integrity" "sha512-daAkGd5mqhbBhLd6jYAjYBa9LpxYCzsgo/f6qzPdFxVB8yoGbhxvzQgkC0pfmCVvW3JuAEBn0UzFLBfkHVZG1g=="
1870 | "resolved" "https://registry.npmjs.org/styled-jsx/-/styled-jsx-3.3.2.tgz"
1871 | "version" "3.3.2"
1872 | dependencies:
1873 | "@babel/types" "7.8.3"
1874 | "babel-plugin-syntax-jsx" "6.18.0"
1875 | "convert-source-map" "1.7.0"
1876 | "loader-utils" "1.2.3"
1877 | "source-map" "0.7.3"
1878 | "string-hash" "1.1.3"
1879 | "stylis" "3.5.4"
1880 | "stylis-rule-sheet" "0.0.10"
1881 |
1882 | "styled-normalize@^8.0.7":
1883 | "integrity" "sha512-qQV4O7B9g7ZUnStCwGde7Dc/mcFF/pz0Ha/LL7+j/r6uopf6kJCmmR7jCPQMCBrDkYiQ4xvw1hUoceVJkdaMuQ=="
1884 | "resolved" "https://registry.npmjs.org/styled-normalize/-/styled-normalize-8.0.7.tgz"
1885 | "version" "8.0.7"
1886 |
1887 | "stylis-rule-sheet@0.0.10":
1888 | "integrity" "sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw=="
1889 | "resolved" "https://registry.npmjs.org/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz"
1890 | "version" "0.0.10"
1891 |
1892 | "stylis@^3.5.0", "stylis@3.5.4":
1893 | "integrity" "sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q=="
1894 | "resolved" "https://registry.npmjs.org/stylis/-/stylis-3.5.4.tgz"
1895 | "version" "3.5.4"
1896 |
1897 | "supports-color@^5.3.0", "supports-color@^5.5.0":
1898 | "integrity" "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow=="
1899 | "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz"
1900 | "version" "5.5.0"
1901 | dependencies:
1902 | "has-flag" "^3.0.0"
1903 |
1904 | "supports-color@^7.1.0":
1905 | "integrity" "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="
1906 | "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz"
1907 | "version" "7.2.0"
1908 | dependencies:
1909 | "has-flag" "^4.0.0"
1910 |
1911 | "supports-color@^8.0.0":
1912 | "integrity" "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q=="
1913 | "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz"
1914 | "version" "8.1.1"
1915 | dependencies:
1916 | "has-flag" "^4.0.0"
1917 |
1918 | "timers-browserify@^2.0.4", "timers-browserify@2.0.12":
1919 | "integrity" "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ=="
1920 | "resolved" "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz"
1921 | "version" "2.0.12"
1922 | dependencies:
1923 | "setimmediate" "^1.0.4"
1924 |
1925 | "to-arraybuffer@^1.0.0":
1926 | "integrity" "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M="
1927 | "resolved" "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz"
1928 | "version" "1.0.1"
1929 |
1930 | "to-fast-properties@^2.0.0":
1931 | "integrity" "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4="
1932 | "resolved" "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz"
1933 | "version" "2.0.0"
1934 |
1935 | "to-regex-range@^5.0.1":
1936 | "integrity" "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ=="
1937 | "resolved" "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz"
1938 | "version" "5.0.1"
1939 | dependencies:
1940 | "is-number" "^7.0.0"
1941 |
1942 | "toidentifier@1.0.0":
1943 | "integrity" "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw=="
1944 | "resolved" "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz"
1945 | "version" "1.0.0"
1946 |
1947 | "tr46@^1.0.1":
1948 | "integrity" "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk="
1949 | "resolved" "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz"
1950 | "version" "1.0.1"
1951 | dependencies:
1952 | "punycode" "^2.1.0"
1953 |
1954 | "ts-pnp@^1.1.6":
1955 | "integrity" "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw=="
1956 | "resolved" "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz"
1957 | "version" "1.2.0"
1958 |
1959 | "tty-browserify@0.0.0":
1960 | "integrity" "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY="
1961 | "resolved" "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz"
1962 | "version" "0.0.0"
1963 |
1964 | "tty-browserify@0.0.1":
1965 | "integrity" "sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw=="
1966 | "resolved" "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.1.tgz"
1967 | "version" "0.0.1"
1968 |
1969 | "type-fest@^0.7.1":
1970 | "integrity" "sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg=="
1971 | "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.7.1.tgz"
1972 | "version" "0.7.1"
1973 |
1974 | "unbox-primitive@^1.0.1":
1975 | "integrity" "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw=="
1976 | "resolved" "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz"
1977 | "version" "1.0.1"
1978 | dependencies:
1979 | "function-bind" "^1.1.1"
1980 | "has-bigints" "^1.0.1"
1981 | "has-symbols" "^1.0.2"
1982 | "which-boxed-primitive" "^1.0.2"
1983 |
1984 | "unpipe@1.0.0":
1985 | "integrity" "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw="
1986 | "resolved" "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz"
1987 | "version" "1.0.0"
1988 |
1989 | "url@^0.11.0":
1990 | "integrity" "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE="
1991 | "resolved" "https://registry.npmjs.org/url/-/url-0.11.0.tgz"
1992 | "version" "0.11.0"
1993 | dependencies:
1994 | "punycode" "1.3.2"
1995 | "querystring" "0.2.0"
1996 |
1997 | "use-subscription@1.5.1":
1998 | "integrity" "sha512-Xv2a1P/yReAjAbhylMfFplFKj9GssgTwN7RlcTxBujFQcloStWNDQdc4g4NRWH9xS4i/FDk04vQBptAXoF3VcA=="
1999 | "resolved" "https://registry.npmjs.org/use-subscription/-/use-subscription-1.5.1.tgz"
2000 | "version" "1.5.1"
2001 | dependencies:
2002 | "object-assign" "^4.1.1"
2003 |
2004 | "util-deprecate@^1.0.1", "util-deprecate@~1.0.1":
2005 | "integrity" "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8="
2006 | "resolved" "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"
2007 | "version" "1.0.2"
2008 |
2009 | "util@^0.11.0":
2010 | "integrity" "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ=="
2011 | "resolved" "https://registry.npmjs.org/util/-/util-0.11.1.tgz"
2012 | "version" "0.11.1"
2013 | dependencies:
2014 | "inherits" "2.0.3"
2015 |
2016 | "util@^0.12.0", "util@0.12.3":
2017 | "integrity" "sha512-I8XkoQwE+fPQEhy9v012V+TSdH2kp9ts29i20TaaDUXsg7x/onePbhFJUExBfv/2ay1ZOp/Vsm3nDlmnFGSAog=="
2018 | "resolved" "https://registry.npmjs.org/util/-/util-0.12.3.tgz"
2019 | "version" "0.12.3"
2020 | dependencies:
2021 | "inherits" "^2.0.3"
2022 | "is-arguments" "^1.0.4"
2023 | "is-generator-function" "^1.0.7"
2024 | "is-typed-array" "^1.1.3"
2025 | "safe-buffer" "^5.1.2"
2026 | "which-typed-array" "^1.1.2"
2027 |
2028 | "util@0.10.3":
2029 | "integrity" "sha1-evsa/lCAUkZInj23/g7TeTNqwPk="
2030 | "resolved" "https://registry.npmjs.org/util/-/util-0.10.3.tgz"
2031 | "version" "0.10.3"
2032 | dependencies:
2033 | "inherits" "2.0.1"
2034 |
2035 | "vm-browserify@^1.0.1", "vm-browserify@1.1.2":
2036 | "integrity" "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ=="
2037 | "resolved" "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz"
2038 | "version" "1.1.2"
2039 |
2040 | "watchpack@2.1.1":
2041 | "integrity" "sha512-Oo7LXCmc1eE1AjyuSBmtC3+Wy4HcV8PxWh2kP6fOl8yTlNS7r0K9l1ao2lrrUza7V39Y3D/BbJgY8VeSlc5JKw=="
2042 | "resolved" "https://registry.npmjs.org/watchpack/-/watchpack-2.1.1.tgz"
2043 | "version" "2.1.1"
2044 | dependencies:
2045 | "glob-to-regexp" "^0.4.1"
2046 | "graceful-fs" "^4.1.2"
2047 |
2048 | "webidl-conversions@^4.0.2":
2049 | "integrity" "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg=="
2050 | "resolved" "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz"
2051 | "version" "4.0.2"
2052 |
2053 | "whatwg-url@^7.0.0":
2054 | "integrity" "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg=="
2055 | "resolved" "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz"
2056 | "version" "7.1.0"
2057 | dependencies:
2058 | "lodash.sortby" "^4.7.0"
2059 | "tr46" "^1.0.1"
2060 | "webidl-conversions" "^4.0.2"
2061 |
2062 | "which-boxed-primitive@^1.0.2":
2063 | "integrity" "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg=="
2064 | "resolved" "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz"
2065 | "version" "1.0.2"
2066 | dependencies:
2067 | "is-bigint" "^1.0.1"
2068 | "is-boolean-object" "^1.1.0"
2069 | "is-number-object" "^1.0.4"
2070 | "is-string" "^1.0.5"
2071 | "is-symbol" "^1.0.3"
2072 |
2073 | "which-typed-array@^1.1.2":
2074 | "integrity" "sha512-49E0SpUe90cjpoc7BOJwyPHRqSAd12c10Qm2amdEZrJPCY2NDxaW01zHITrem+rnETY3dwrbH3UUrUwagfCYDA=="
2075 | "resolved" "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.4.tgz"
2076 | "version" "1.1.4"
2077 | dependencies:
2078 | "available-typed-arrays" "^1.0.2"
2079 | "call-bind" "^1.0.0"
2080 | "es-abstract" "^1.18.0-next.1"
2081 | "foreach" "^2.0.5"
2082 | "function-bind" "^1.1.1"
2083 | "has-symbols" "^1.0.1"
2084 | "is-typed-array" "^1.1.3"
2085 |
2086 | "xtend@^4.0.0", "xtend@^4.0.2":
2087 | "integrity" "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="
2088 | "resolved" "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz"
2089 | "version" "4.0.2"
2090 |
2091 | "yocto-queue@^0.1.0":
2092 | "integrity" "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q=="
2093 | "resolved" "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz"
2094 | "version" "0.1.0"
2095 |
--------------------------------------------------------------------------------