├── .eslintrc.js ├── .gitignore ├── .npmignore ├── .prettierrc.js ├── Example ├── .gitignore ├── App.js ├── app.json ├── assets │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ └── splash.png ├── babel.config.js ├── constants.js ├── package-lock.json ├── package.json └── src │ ├── App.js │ ├── WebView.js │ ├── constants.js │ ├── style.js │ └── utils.js ├── LICENSE ├── README.md ├── example └── yarn.lock ├── index.d.ts ├── index.js ├── package.json ├── src ├── App.js ├── WebView.js ├── constants.js ├── style.js └── utils.js └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | rules: { 5 | 'no-console': 2, 6 | 'react/prop-types': 2, 7 | 'prettier/prettier': 'off', 8 | }, 9 | }; 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | *.log 3 | npm-debug.log 4 | 5 | # Runtime data 6 | tmp 7 | build 8 | dist 9 | 10 | # Dependency directory 11 | node_modules/ 12 | 13 | .DS_Store -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | *.log 3 | npm-debug.log 4 | 5 | # Dependency directory 6 | node_modules 7 | 8 | # Runtime data 9 | tmp 10 | 11 | # Examples 12 | examples 13 | examples/ 14 | 15 | .DS_Store -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | bracketSpacing: true, 3 | jsxBracketSameLine: true, 4 | singleQuote: true, 5 | trailingComma: "all", 6 | printWidth: 100, 7 | }; 8 | -------------------------------------------------------------------------------- /Example/.gitignore: -------------------------------------------------------------------------------- 1 | # Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files 2 | 3 | # dependencies 4 | node_modules/ 5 | 6 | # Expo 7 | .expo/ 8 | dist/ 9 | web-build/ 10 | 11 | # Native 12 | *.orig.* 13 | *.jks 14 | *.p8 15 | *.p12 16 | *.key 17 | *.mobileprovision 18 | 19 | # Metro 20 | .metro-health-check* 21 | 22 | # debug 23 | npm-debug.* 24 | yarn-debug.* 25 | yarn-error.* 26 | 27 | # macOS 28 | .DS_Store 29 | *.pem 30 | 31 | # local env files 32 | .env*.local 33 | 34 | # typescript 35 | *.tsbuildinfo 36 | -------------------------------------------------------------------------------- /Example/App.js: -------------------------------------------------------------------------------- 1 | import React, {useState} from 'react'; 2 | import ChatWootWidget from '@chatwoot/react-native-widget'; 3 | 4 | import { 5 | SafeAreaView, 6 | Text, 7 | TextInput, 8 | TouchableOpacity, 9 | View, 10 | StyleSheet, 11 | } from 'react-native'; 12 | 13 | const App = () => { 14 | const [showWidget, toggleWidget] = useState(false); 15 | const [user, setUser] = useState({ 16 | identifier: 'sandra.lawrence@example.com', 17 | name: 'Sandra Lawrence', 18 | avatar_url: 'https://i.pravatar.cc/150?u=a042581f4e29026704d', 19 | email: 'sandra.lawrence@example.com', 20 | identifier_hash: '', 21 | }); 22 | const customAttributes = { 23 | accountId: 1, 24 | pricingPlan: 'paid', 25 | status: 'active', 26 | }; 27 | const websiteToken = 'RY3LaFtwmkPhDdZVmRd4ektW'; 28 | const baseUrl = 'https://staging.chatwoot.com'; 29 | const [locale, setLocale] = useState('en'); 30 | 31 | return ( 32 | 33 | 34 | Name 35 | 38 | setUser(prevUser => ({ 39 | ...prevUser, 40 | name: text, 41 | })) 42 | } 43 | value={user.name} 44 | /> 45 | Email 46 | 49 | setUser(prevUser => ({ 50 | ...prevUser, 51 | email: text, 52 | identifier: text, 53 | })) 54 | } 55 | value={user.email} 56 | /> 57 | Language 58 | setLocale(locale)} 62 | /> 63 | Avatar 64 | 67 | setUser(prevUser => ({ 68 | ...prevUser, 69 | avatar_url: text, 70 | })) 71 | } 72 | value={user.avatar_url} 73 | /> 74 | toggleWidget(true)}> 77 | Open Chatwoot Widget 78 | 79 | 80 | toggleWidget(false)} 86 | isModalVisible={showWidget} 87 | user={user} 88 | customAttributes={customAttributes} 89 | /> 90 | 91 | ); 92 | }; 93 | 94 | const styles = StyleSheet.create({ 95 | container: { 96 | flex: 1, 97 | justifyContent: 'center', 98 | alignItems: 'center', 99 | }, 100 | modal: { 101 | flex: 1, 102 | paddingVertical: 32, 103 | }, 104 | 105 | button: { 106 | height: 48, 107 | marginTop: 32, 108 | paddingTop: 8, 109 | paddingBottom: 8, 110 | backgroundColor: '#1F93FF', 111 | borderRadius: 8, 112 | borderWidth: 1, 113 | borderColor: '#fff', 114 | justifyContent: 'center', 115 | }, 116 | buttonText: { 117 | color: '#fff', 118 | textAlign: 'center', 119 | paddingLeft: 10, 120 | fontWeight: '600', 121 | fontSize: 16, 122 | paddingRight: 10, 123 | }, 124 | label: { 125 | marginTop: 16, 126 | }, 127 | input: { 128 | height: 40, 129 | width: 300, 130 | borderColor: 'gray', 131 | borderWidth: 1, 132 | marginTop: 8, 133 | fontWeight: '600', 134 | fontSize: 16, 135 | color: 'gray', 136 | }, 137 | }); 138 | 139 | export default App; -------------------------------------------------------------------------------- /Example/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "expo": { 3 | "name": "Example", 4 | "slug": "Example", 5 | "version": "1.0.0", 6 | "orientation": "portrait", 7 | "icon": "./assets/icon.png", 8 | "userInterfaceStyle": "light", 9 | "splash": { 10 | "image": "./assets/splash.png", 11 | "resizeMode": "contain", 12 | "backgroundColor": "#ffffff" 13 | }, 14 | "ios": { 15 | "supportsTablet": true 16 | }, 17 | "android": { 18 | "adaptiveIcon": { 19 | "foregroundImage": "./assets/adaptive-icon.png", 20 | "backgroundColor": "#ffffff" 21 | } 22 | }, 23 | "web": { 24 | "favicon": "./assets/favicon.png" 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /Example/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/chatwoot-react-native-widget/9c76b077e55a604cd9d53789ef3113524a8f605a/Example/assets/adaptive-icon.png -------------------------------------------------------------------------------- /Example/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/chatwoot-react-native-widget/9c76b077e55a604cd9d53789ef3113524a8f605a/Example/assets/favicon.png -------------------------------------------------------------------------------- /Example/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/chatwoot-react-native-widget/9c76b077e55a604cd9d53789ef3113524a8f605a/Example/assets/icon.png -------------------------------------------------------------------------------- /Example/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/chatwoot-react-native-widget/9c76b077e55a604cd9d53789ef3113524a8f605a/Example/assets/splash.png -------------------------------------------------------------------------------- /Example/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = function(api) { 2 | api.cache(true); 3 | return { 4 | presets: ['babel-preset-expo'], 5 | }; 6 | }; 7 | -------------------------------------------------------------------------------- /Example/constants.js: -------------------------------------------------------------------------------- 1 | export const WOOT_PREFIX = 'chatwoot-widget:'; 2 | export const POST_MESSAGE_EVENTS = { 3 | SET_LOCALE: 'set-locale', 4 | SET_CUSTOM_ATTRIBUTES: 'set-custom-attributes', 5 | SET_USER: 'set-user', 6 | SET_COLOR_SCHEME: 'set-color-scheme', 7 | }; 8 | export const COLOR_WHITE = '#fff'; 9 | export const BG_COLOR_WHITE = '#FFFF'; 10 | export const BG_COLOR_DARK = '#25292c'; -------------------------------------------------------------------------------- /Example/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "example", 3 | "version": "1.0.0", 4 | "main": "expo/AppEntry.js", 5 | "scripts": { 6 | "start": "expo start", 7 | "android": "expo start --android", 8 | "ios": "expo start --ios", 9 | "web": "expo start --web" 10 | }, 11 | "dependencies": { 12 | "@chatwoot/react-native-widget": "^0.0.20", 13 | "@react-native-async-storage/async-storage": "1.23.1", 14 | "expo": "~51.0.28", 15 | "expo-status-bar": "~1.12.1", 16 | "react": "18.2.0", 17 | "react-native": "0.74.5", 18 | "react-native-modal": "^13.0.1", 19 | "react-native-webview": "13.8.6" 20 | }, 21 | "devDependencies": { 22 | "@babel/core": "^7.20.0" 23 | }, 24 | "private": true 25 | } 26 | -------------------------------------------------------------------------------- /Example/src/App.js: -------------------------------------------------------------------------------- 1 | import React, { useEffect, useState } from 'react'; 2 | import { SafeAreaView, Appearance } from 'react-native'; 3 | import Modal from 'react-native-modal'; 4 | import PropTypes from 'prop-types'; 5 | import { storeHelper, findColors } from './utils'; 6 | import WebView from './WebView'; 7 | import styles from './style'; 8 | import { COLOR_WHITE } from './constants'; 9 | 10 | const propTypes = { 11 | isModalVisible: PropTypes.bool.isRequired, 12 | websiteToken: PropTypes.string.isRequired, 13 | baseUrl: PropTypes.string.isRequired, 14 | cwCookie: PropTypes.string, 15 | user: PropTypes.shape({ 16 | name: PropTypes.string, 17 | avatar_url: PropTypes.string, 18 | email: PropTypes.string, 19 | identifier_hash: PropTypes.string, 20 | }), 21 | locale: PropTypes.string, 22 | colorScheme: PropTypes.oneOf(['dark', 'light', 'auto']), 23 | customAttributes: PropTypes.shape({}), 24 | closeModal: PropTypes.func, 25 | }; 26 | 27 | const ChatWootWidget = ({ 28 | isModalVisible, 29 | baseUrl, 30 | websiteToken, 31 | user = {}, 32 | locale = 'en', 33 | colorScheme = 'light', 34 | customAttributes = {}, 35 | closeModal, 36 | }) => { 37 | const [cwCookie, setCookie] = useState(''); 38 | 39 | useEffect(() => { 40 | async function fetchData() { 41 | const value = await storeHelper.getCookie(); 42 | setCookie(value); 43 | } 44 | fetchData(); 45 | }, []); 46 | const appColorScheme = Appearance.getColorScheme(); 47 | 48 | const { headerBackgroundColor, mainBackgroundColor } = findColors({ 49 | colorScheme, 50 | appColorScheme, 51 | }); 52 | return ( 53 | 60 | 61 | 62 | 72 | 73 | 74 | ); 75 | }; 76 | 77 | ChatWootWidget.propTypes = propTypes; 78 | 79 | export default ChatWootWidget; 80 | -------------------------------------------------------------------------------- /Example/src/WebView.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { StyleSheet, Linking } from 'react-native'; 3 | import { WebView } from 'react-native-webview'; 4 | import PropTypes from 'prop-types'; 5 | import { isJsonString, storeHelper, generateScripts, getMessage } from './utils'; 6 | const propTypes = { 7 | websiteToken: PropTypes.string.isRequired, 8 | baseUrl: PropTypes.string.isRequired, 9 | cwCookie: PropTypes.string, 10 | colorScheme: PropTypes.oneOf(['light', 'dark', 'auto']), 11 | user: PropTypes.shape({ 12 | name: PropTypes.string, 13 | avatar_url: PropTypes.string, 14 | email: PropTypes.string, 15 | identifier_hash: PropTypes.string, 16 | }), 17 | locale: PropTypes.string, 18 | customAttributes: PropTypes.shape({}), 19 | closeModal: PropTypes.func, 20 | }; 21 | 22 | const WebViewComponent = ({ 23 | baseUrl, 24 | websiteToken, 25 | cwCookie, 26 | locale, 27 | colorScheme, 28 | user, 29 | customAttributes, 30 | closeModal, 31 | }) => { 32 | const [currentUrl, setCurrentUrl] = React.useState(null); 33 | let widgetUrl = `${baseUrl}/widget?website_token=${websiteToken}&locale=${locale}`; 34 | 35 | if (cwCookie) { 36 | widgetUrl = `${widgetUrl}&cw_conversation=${cwCookie}`; 37 | } 38 | const injectedJavaScript = generateScripts({ 39 | user, 40 | locale, 41 | customAttributes, 42 | colorScheme, 43 | }); 44 | 45 | const onShouldStartLoadWithRequest = (request) => { 46 | const isMessageView = currentUrl && currentUrl.includes('#/messages'); 47 | const isAttachmentUrl = !widgetUrl.includes(request.url); 48 | // Open the attachments only in the external browser 49 | const shouldRedirectToBrowser = isMessageView && isAttachmentUrl; 50 | if (shouldRedirectToBrowser) { 51 | Linking.openURL(request.url); 52 | return false; 53 | } 54 | 55 | return true; 56 | }; 57 | 58 | const handleWebViewNavigationStateChange = (newNavState) => { 59 | setCurrentUrl(newNavState.url); 60 | }; 61 | 62 | return ( 63 | { 68 | const { data } = event.nativeEvent; 69 | const message = getMessage(data); 70 | if (isJsonString(message)) { 71 | const parsedMessage = JSON.parse(message); 72 | const { event: eventType, type } = parsedMessage; 73 | if (eventType === 'loaded') { 74 | const { 75 | config: { authToken }, 76 | } = parsedMessage; 77 | storeHelper.storeCookie(authToken); 78 | } 79 | if (type === 'close-widget') { 80 | closeModal(); 81 | } 82 | } 83 | }} 84 | scalesPageToFit 85 | useWebKit 86 | sharedCookiesEnabled 87 | javaScriptEnabled={true} 88 | domStorageEnabled={true} 89 | style={styles.WebViewStyle} 90 | injectedJavaScript={injectedJavaScript} 91 | onShouldStartLoadWithRequest={onShouldStartLoadWithRequest} 92 | onNavigationStateChange={handleWebViewNavigationStateChange} 93 | scrollEnabled 94 | /> 95 | ); 96 | }; 97 | 98 | const styles = StyleSheet.create({ 99 | modal: { 100 | flex: 1, 101 | borderRadius: 4, 102 | overflow: 'hidden', 103 | }, 104 | webViewContainer: { 105 | flex: 1, 106 | }, 107 | }); 108 | 109 | WebViewComponent.propTypes = propTypes; 110 | export default WebViewComponent; 111 | -------------------------------------------------------------------------------- /Example/src/constants.js: -------------------------------------------------------------------------------- 1 | export const WOOT_PREFIX = 'chatwoot-widget:'; 2 | export const POST_MESSAGE_EVENTS = { 3 | SET_LOCALE: 'set-locale', 4 | SET_CUSTOM_ATTRIBUTES: 'set-custom-attributes', 5 | SET_USER: 'set-user', 6 | SET_COLOR_SCHEME: 'set-color-scheme', 7 | }; 8 | export const COLOR_WHITE = '#fff'; 9 | export const BG_COLOR_WHITE = '#FFFF'; 10 | export const BG_COLOR_DARK = '#25292c'; 11 | -------------------------------------------------------------------------------- /Example/src/style.js: -------------------------------------------------------------------------------- 1 | const { StyleSheet } = require('react-native'); 2 | 3 | const styles = StyleSheet.create({ 4 | modal: { 5 | flex: 1, 6 | margin: 0, 7 | paddingVertical: 0, 8 | }, 9 | mainView: { 10 | flex: 1, 11 | }, 12 | headerView: { 13 | flex: 0, 14 | }, 15 | }); 16 | export default styles; 17 | -------------------------------------------------------------------------------- /Example/src/utils.js: -------------------------------------------------------------------------------- 1 | import AsyncStorage from '@react-native-async-storage/async-storage'; 2 | 3 | import { 4 | BG_COLOR_WHITE, 5 | BG_COLOR_DARK, 6 | COLOR_WHITE, 7 | WOOT_PREFIX, 8 | POST_MESSAGE_EVENTS, 9 | } from './constants'; 10 | 11 | export const isJsonString = (string) => { 12 | try { 13 | JSON.parse(string); 14 | } catch (e) { 15 | return false; 16 | } 17 | return true; 18 | }; 19 | 20 | export const createWootPostMessage = (object) => { 21 | const stringfyObject = `'${WOOT_PREFIX}${JSON.stringify(object)}'`; 22 | const script = `window.postMessage(${stringfyObject});`; 23 | return script; 24 | }; 25 | 26 | export const getMessage = (data) => data.replace(WOOT_PREFIX, ''); 27 | 28 | export const generateScripts = ({ colorScheme, user, locale, customAttributes }) => { 29 | let script = ''; 30 | if (user) { 31 | const userObject = { 32 | event: POST_MESSAGE_EVENTS.SET_USER, 33 | identifier: user.identifier, 34 | user, 35 | }; 36 | script += createWootPostMessage(userObject); 37 | } 38 | if (locale) { 39 | const localeObject = { event: POST_MESSAGE_EVENTS.SET_LOCALE, locale }; 40 | script += createWootPostMessage(localeObject); 41 | } 42 | if (customAttributes) { 43 | const attributeObject = { 44 | event: POST_MESSAGE_EVENTS.SET_CUSTOM_ATTRIBUTES, 45 | customAttributes, 46 | }; 47 | script += createWootPostMessage(attributeObject); 48 | } 49 | if (colorScheme) { 50 | const themeObject = { event: POST_MESSAGE_EVENTS.SET_COLOR_SCHEME, darkMode: colorScheme }; 51 | script += createWootPostMessage(themeObject); 52 | } 53 | return script; 54 | }; 55 | export const storeHelper = { 56 | getCookie: async () => { 57 | const cookie = await AsyncStorage.getItem('cwCookie'); 58 | return cookie; 59 | }, 60 | storeCookie: async (value) => { 61 | await AsyncStorage.setItem('cwCookie', value); 62 | }, 63 | }; 64 | 65 | export const findColors = ({ colorScheme, appColorScheme }) => { 66 | let headerBackgroundColor = COLOR_WHITE; 67 | let mainBackgroundColor = BG_COLOR_WHITE; 68 | 69 | if (colorScheme === 'dark' || (colorScheme === 'auto' && appColorScheme === 'dark')) { 70 | headerBackgroundColor = BG_COLOR_DARK; 71 | mainBackgroundColor = BG_COLOR_DARK; 72 | } else if (colorScheme === 'auto' && appColorScheme === 'light') { 73 | headerBackgroundColor = COLOR_WHITE; 74 | mainBackgroundColor = BG_COLOR_WHITE; 75 | } 76 | 77 | return { 78 | headerBackgroundColor, 79 | mainBackgroundColor, 80 | }; 81 | }; 82 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2017-2023 Chatwoot Inc. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | chatwoot-react-native-widget 3 |

4 | 5 | ![](https://img.shields.io/npm/v/@chatwoot/react-native-widget?style=flat) 6 | ![](https://img.shields.io/npm/dt/@chatwoot/react-native-widget.svg) 7 | [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](http://makeapullrequest.com) 8 | ![](https://img.shields.io/npm/l/@chatwoot/@chatwoot/react-native-widget) 9 | 10 | - **Supported Chatwoot version:** 2.16.0+ 11 | 12 | screenshot 13 | 14 | ### Installation 15 | 16 | Install the library using either yarn or npm like so: 17 | 18 | ```sh 19 | yarn add @chatwoot/react-native-widget 20 | ``` 21 | 22 | OR 23 | 24 | ```sh 25 | npm install --save @chatwoot/react-native-widget 26 | ``` 27 | 28 | This library depends on [react-native-webview](https://www.npmjs.com/package/react-native-webview) and [async-storage](https://github.com/react-native-async-storage/async-storage). Please follow the instructions provided in the docs. 29 | 30 | ### iOS Installation 31 | 32 | If you're using React Native versions > 60.0, it's relatively straightforward. 33 | 34 | ```sh 35 | cd ios && pod install 36 | ``` 37 | 38 | ### How to use 39 | 40 | 1. Create a website channel in chatwoot server by following the steps described here https://www.chatwoot.com/docs/channels/website 41 | 2. Replace `websiteToken` prop and `baseUrl` 42 | 43 | ``` 44 | 45 | import React, { useState } from 'react'; 46 | 47 | import { StyleSheet, View, SafeAreaView, TouchableOpacity, Text } from 'react-native'; 48 | 49 | import ChatWootWidget from '@chatwoot/react-native-widget'; 50 | 51 | const App = () => { 52 | const [showWidget, toggleWidget] = useState(false); 53 | const user = { 54 | identifier: 'john@gmail.com', 55 | name: 'John Samuel', 56 | avatar_url: '', 57 | email: 'john@gmail.com', 58 | identifier_hash: '', 59 | }; 60 | const customAttributes = { accountId: 1, pricingPlan: 'paid', status: 'active' }; 61 | const websiteToken = 'WEBSITE_TOKEN'; 62 | const baseUrl = 'CHATWOOT_INSTALLATION_URL'; 63 | const locale = 'en'; 64 | const colorScheme='dark' 65 | 66 | return ( 67 | 68 | 69 | toggleWidget(true)}> 70 | Open widget 71 | 72 | 73 | { 74 | showWidget&& 75 | toggleWidget(false)} 80 | isModalVisible={showWidget} 81 | user={user} 82 | customAttributes={customAttributes} 83 | colorScheme={colorScheme} 84 | /> 85 | } 86 | 87 | 88 | ); 89 | }; 90 | 91 | const styles = StyleSheet.create({ 92 | container: { 93 | flex: 1, 94 | justifyContent: 'center', 95 | alignItems: 'center', 96 | }, 97 | 98 | button: { 99 | height: 48, 100 | marginTop: 32, 101 | paddingTop: 8, 102 | paddingBottom: 8, 103 | backgroundColor: '#1F93FF', 104 | borderRadius: 8, 105 | borderWidth: 1, 106 | borderColor: '#fff', 107 | justifyContent: 'center', 108 | }, 109 | buttonText: { 110 | color: '#fff', 111 | textAlign: 'center', 112 | paddingLeft: 10, 113 | fontWeight: '600', 114 | fontSize: 16, 115 | paddingRight: 10, 116 | }, 117 | }); 118 | 119 | export default App; 120 | 121 | ``` 122 | 123 | You're done! 124 | 125 | The whole example is in the `/example` folder. 126 | 127 | ### Props 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 |
NameDefaultTypeDescription
baseUrl - String Chatwoot installation URL
websiteToken - String Website channel token
colorScheme light String Widget color scheme (light/dark/auto)
locale en String Locale
isModalVisible false Boolean Widget is visible or not
closeModal - Function Close event
user {} Object User information about the user like email, username and avatar_url
customAttributes {} Object Additional information about the customer
184 | 185 | ## Feedback & Contributing 186 | 187 | Feel free to send us feedback on [Twitter](https://twitter.com/chatwootapp) or [file an issue](https://github.com/chatwoot/chatwoot-mobile-app/issues). 188 | 189 | If there's anything you'd like to chat about, please feel free to join our [Discord](https://discord.gg/cJXdrwS) chat! 190 | 191 | _Chatwoot_ © 2017-2023, Chatwoot Inc - Released under the MIT License. 192 | -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@chatwoot/react-native-widget' { 2 | import React from 'react'; 3 | 4 | export interface ChatWootWidgetProps { 5 | websiteToken: string; 6 | locale?: string; 7 | baseUrl: string; 8 | colorScheme?: 'light' | 'auto' | 'dark'; 9 | closeModal: () => void; 10 | isModalVisible: boolean; 11 | user?: { 12 | identifier?: string; 13 | name?: string; 14 | avatar_url?: string; 15 | email?: string; 16 | identifier_hash?: string; 17 | }; 18 | // This can actually be any object 19 | customAttributes?: Record; 20 | } 21 | 22 | class ChatWootWidget extends React.Component {} 23 | export default ChatWootWidget; 24 | } 25 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | import App from './src/App'; 2 | export default App; 3 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@chatwoot/react-native-widget", 3 | "version": "0.0.21", 4 | "description": "React Native widget for Chatwoot", 5 | "main": "index.js", 6 | "scripts": { 7 | "lint": "eslint .", 8 | "test": "echo \"Error: no test specified\" && exit 1" 9 | }, 10 | "dependencies": { 11 | "react-native-modal": "^13.0.1" 12 | }, 13 | "peerDependencies": { 14 | "@react-native-async-storage/async-storage": ">=1.23.1", 15 | "react": "*", 16 | "react-native": "*", 17 | "react-native-webview": ">=13.8.6" 18 | }, 19 | "devDependencies": { 20 | "@react-native-community/eslint-config": "^2.0.0", 21 | "@react-native-community/eslint-plugin": "^1.1.0", 22 | "eslint": "^7.21.0", 23 | "eslint-plugin-prettier": "^3.3.1", 24 | "husky": "^5.1.3", 25 | "lint-staged": "^10.5.4", 26 | "metro-react-native-babel-preset": "^0.65.2", 27 | "prettier": "^2.2.1" 28 | }, 29 | "husky": { 30 | "hooks": { 31 | "pre-commit": "lint-staged" 32 | } 33 | }, 34 | "lint-staged": { 35 | "*.js": [ 36 | "prettier --write", 37 | "eslint --fix", 38 | "git add" 39 | ] 40 | }, 41 | "repository": { 42 | "type": "git", 43 | "url": "git+https://github.com/chatwoot/chatwoot-react-native-widget.git" 44 | }, 45 | "keywords": [ 46 | "react-native", 47 | "chatwoot", 48 | "mobile", 49 | "ios", 50 | "android" 51 | ], 52 | "bugs": { 53 | "url": "https://github.com/chatwoot/chatwoot-react-native-widget/issues" 54 | }, 55 | "homepage": "https://github.com/chatwoot/chatwoot-react-native-widget#readme", 56 | "license": "MIT" 57 | } 58 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | import React, { useEffect, useState } from 'react'; 2 | import { SafeAreaView, Appearance } from 'react-native'; 3 | import Modal from 'react-native-modal'; 4 | import PropTypes from 'prop-types'; 5 | import { storeHelper, findColors } from './utils'; 6 | import WebView from './WebView'; 7 | import styles from './style'; 8 | import { COLOR_WHITE } from './constants'; 9 | 10 | const propTypes = { 11 | isModalVisible: PropTypes.bool.isRequired, 12 | websiteToken: PropTypes.string.isRequired, 13 | baseUrl: PropTypes.string.isRequired, 14 | cwCookie: PropTypes.string, 15 | user: PropTypes.shape({ 16 | name: PropTypes.string, 17 | avatar_url: PropTypes.string, 18 | email: PropTypes.string, 19 | identifier_hash: PropTypes.string, 20 | }), 21 | locale: PropTypes.string, 22 | colorScheme: PropTypes.oneOf(['dark', 'light', 'auto']), 23 | customAttributes: PropTypes.shape({}), 24 | closeModal: PropTypes.func, 25 | }; 26 | 27 | const ChatWootWidget = ({ 28 | isModalVisible, 29 | baseUrl, 30 | websiteToken, 31 | user = {}, 32 | locale = 'en', 33 | colorScheme = 'light', 34 | customAttributes = {}, 35 | closeModal, 36 | }) => { 37 | const [cwCookie, setCookie] = useState(''); 38 | 39 | useEffect(() => { 40 | async function fetchData() { 41 | const value = await storeHelper.getCookie(); 42 | setCookie(value); 43 | } 44 | fetchData(); 45 | }, []); 46 | const appColorScheme = Appearance.getColorScheme(); 47 | 48 | const { headerBackgroundColor, mainBackgroundColor } = findColors({ 49 | colorScheme, 50 | appColorScheme, 51 | }); 52 | return ( 53 | 60 | 61 | 62 | 72 | 73 | 74 | ); 75 | }; 76 | 77 | ChatWootWidget.propTypes = propTypes; 78 | 79 | export default ChatWootWidget; 80 | -------------------------------------------------------------------------------- /src/WebView.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { StyleSheet, Linking } from 'react-native'; 3 | import { WebView } from 'react-native-webview'; 4 | import PropTypes from 'prop-types'; 5 | import { isJsonString, storeHelper, generateScripts, getMessage } from './utils'; 6 | const propTypes = { 7 | websiteToken: PropTypes.string.isRequired, 8 | baseUrl: PropTypes.string.isRequired, 9 | cwCookie: PropTypes.string, 10 | colorScheme: PropTypes.oneOf(['light', 'dark', 'auto']), 11 | user: PropTypes.shape({ 12 | name: PropTypes.string, 13 | avatar_url: PropTypes.string, 14 | email: PropTypes.string, 15 | identifier_hash: PropTypes.string, 16 | }), 17 | locale: PropTypes.string, 18 | customAttributes: PropTypes.shape({}), 19 | closeModal: PropTypes.func, 20 | }; 21 | 22 | const WebViewComponent = ({ 23 | baseUrl, 24 | websiteToken, 25 | cwCookie = '', 26 | locale = 'en', 27 | colorScheme = 'light', 28 | user = {}, 29 | customAttributes = {}, 30 | closeModal, 31 | }) => { 32 | const [currentUrl, setCurrentUrl] = React.useState(null); 33 | let widgetUrl = `${baseUrl}/widget?website_token=${websiteToken}&locale=${locale}`; 34 | 35 | if (cwCookie) { 36 | widgetUrl = `${widgetUrl}&cw_conversation=${cwCookie}`; 37 | } 38 | const injectedJavaScript = generateScripts({ 39 | user, 40 | locale, 41 | customAttributes, 42 | colorScheme, 43 | }); 44 | 45 | const onShouldStartLoadWithRequest = (request) => { 46 | const isMessageView = currentUrl && currentUrl.includes('#/messages'); 47 | const isAttachmentUrl = !widgetUrl.includes(request.url); 48 | // Open the attachments only in the external browser 49 | const shouldRedirectToBrowser = isMessageView && isAttachmentUrl; 50 | if (shouldRedirectToBrowser) { 51 | Linking.openURL(request.url); 52 | return false; 53 | } 54 | 55 | return true; 56 | }; 57 | 58 | const handleWebViewNavigationStateChange = (newNavState) => { 59 | setCurrentUrl(newNavState.url); 60 | }; 61 | 62 | return ( 63 | { 68 | const { data } = event.nativeEvent; 69 | const message = getMessage(data); 70 | if (isJsonString(message)) { 71 | const parsedMessage = JSON.parse(message); 72 | const { event: eventType, type } = parsedMessage; 73 | if (eventType === 'loaded') { 74 | const { 75 | config: { authToken }, 76 | } = parsedMessage; 77 | storeHelper.storeCookie(authToken); 78 | } 79 | if (type === 'close-widget') { 80 | closeModal(); 81 | } 82 | } 83 | }} 84 | scalesPageToFit 85 | useWebKit 86 | sharedCookiesEnabled 87 | javaScriptEnabled={true} 88 | domStorageEnabled={true} 89 | style={styles.WebViewStyle} 90 | injectedJavaScript={injectedJavaScript} 91 | onShouldStartLoadWithRequest={onShouldStartLoadWithRequest} 92 | onNavigationStateChange={handleWebViewNavigationStateChange} 93 | scrollEnabled 94 | /> 95 | ); 96 | }; 97 | 98 | const styles = StyleSheet.create({ 99 | modal: { 100 | flex: 1, 101 | borderRadius: 4, 102 | overflow: 'hidden', 103 | }, 104 | webViewContainer: { 105 | flex: 1, 106 | }, 107 | }); 108 | WebViewComponent.propTypes = propTypes; 109 | export default WebViewComponent; 110 | -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- 1 | export const WOOT_PREFIX = 'chatwoot-widget:'; 2 | export const POST_MESSAGE_EVENTS = { 3 | SET_LOCALE: 'set-locale', 4 | SET_CUSTOM_ATTRIBUTES: 'set-custom-attributes', 5 | SET_USER: 'set-user', 6 | SET_COLOR_SCHEME: 'set-color-scheme', 7 | }; 8 | export const COLOR_WHITE = '#fff'; 9 | export const BG_COLOR_WHITE = '#FFFF'; 10 | export const BG_COLOR_DARK = '#25292c'; 11 | -------------------------------------------------------------------------------- /src/style.js: -------------------------------------------------------------------------------- 1 | const { StyleSheet } = require('react-native'); 2 | 3 | const styles = StyleSheet.create({ 4 | modal: { 5 | flex: 1, 6 | margin: 0, 7 | paddingVertical: 0, 8 | }, 9 | mainView: { 10 | flex: 1, 11 | }, 12 | headerView: { 13 | flex: 0, 14 | }, 15 | }); 16 | export default styles; 17 | -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- 1 | import AsyncStorage from '@react-native-async-storage/async-storage'; 2 | 3 | import { 4 | BG_COLOR_WHITE, 5 | BG_COLOR_DARK, 6 | COLOR_WHITE, 7 | WOOT_PREFIX, 8 | POST_MESSAGE_EVENTS, 9 | } from './constants'; 10 | 11 | export const isJsonString = (string) => { 12 | try { 13 | JSON.parse(string); 14 | } catch (e) { 15 | return false; 16 | } 17 | return true; 18 | }; 19 | 20 | export const createWootPostMessage = (object) => { 21 | const stringfyObject = `'${WOOT_PREFIX}${JSON.stringify(object)}'`; 22 | const script = `window.postMessage(${stringfyObject});`; 23 | return script; 24 | }; 25 | 26 | export const getMessage = (data) => data.replace(WOOT_PREFIX, ''); 27 | 28 | export const generateScripts = ({ colorScheme, user, locale, customAttributes }) => { 29 | let script = ''; 30 | if (user) { 31 | const userObject = { 32 | event: POST_MESSAGE_EVENTS.SET_USER, 33 | identifier: user.identifier, 34 | user, 35 | }; 36 | script += createWootPostMessage(userObject); 37 | } 38 | if (locale) { 39 | const localeObject = { event: POST_MESSAGE_EVENTS.SET_LOCALE, locale }; 40 | script += createWootPostMessage(localeObject); 41 | } 42 | if (customAttributes) { 43 | const attributeObject = { 44 | event: POST_MESSAGE_EVENTS.SET_CUSTOM_ATTRIBUTES, 45 | customAttributes, 46 | }; 47 | script += createWootPostMessage(attributeObject); 48 | } 49 | if (colorScheme) { 50 | const themeObject = { event: POST_MESSAGE_EVENTS.SET_COLOR_SCHEME, darkMode: colorScheme }; 51 | script += createWootPostMessage(themeObject); 52 | } 53 | return script; 54 | }; 55 | export const storeHelper = { 56 | getCookie: async () => { 57 | const cookie = await AsyncStorage.getItem('cwCookie'); 58 | return cookie; 59 | }, 60 | storeCookie: async (value) => { 61 | await AsyncStorage.setItem('cwCookie', value); 62 | }, 63 | }; 64 | 65 | export const findColors = ({ colorScheme, appColorScheme }) => { 66 | let headerBackgroundColor = COLOR_WHITE; 67 | let mainBackgroundColor = BG_COLOR_WHITE; 68 | 69 | if (colorScheme === 'dark' || (colorScheme === 'auto' && appColorScheme === 'dark')) { 70 | headerBackgroundColor = BG_COLOR_DARK; 71 | mainBackgroundColor = BG_COLOR_DARK; 72 | } else if (colorScheme === 'auto' && appColorScheme === 'light') { 73 | headerBackgroundColor = COLOR_WHITE; 74 | mainBackgroundColor = BG_COLOR_WHITE; 75 | } 76 | 77 | return { 78 | headerBackgroundColor, 79 | mainBackgroundColor, 80 | }; 81 | }; 82 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@7.12.11": 6 | version "7.12.11" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" 8 | integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== 9 | dependencies: 10 | "@babel/highlight" "^7.10.4" 11 | 12 | "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13": 13 | version "7.12.13" 14 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.13.tgz#dcfc826beef65e75c50e21d3837d7d95798dd658" 15 | integrity sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g== 16 | dependencies: 17 | "@babel/highlight" "^7.12.13" 18 | 19 | "@babel/compat-data@^7.13.0", "@babel/compat-data@^7.13.8": 20 | version "7.13.11" 21 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.13.11.tgz#9c8fe523c206979c9a81b1e12fe50c1254f1aa35" 22 | integrity sha512-BwKEkO+2a67DcFeS3RLl0Z3Gs2OvdXewuWjc1Hfokhb5eQWP9YRYH1/+VrVZvql2CfjOiNGqSAFOYt4lsqTHzg== 23 | 24 | "@babel/core@^7.0.0": 25 | version "7.13.10" 26 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.13.10.tgz#07de050bbd8193fcd8a3c27918c0890613a94559" 27 | integrity sha512-bfIYcT0BdKeAZrovpMqX2Mx5NrgAckGbwT982AkdS5GNfn3KMGiprlBAtmBcFZRUmpaufS6WZFP8trvx8ptFDw== 28 | dependencies: 29 | "@babel/code-frame" "^7.12.13" 30 | "@babel/generator" "^7.13.9" 31 | "@babel/helper-compilation-targets" "^7.13.10" 32 | "@babel/helper-module-transforms" "^7.13.0" 33 | "@babel/helpers" "^7.13.10" 34 | "@babel/parser" "^7.13.10" 35 | "@babel/template" "^7.12.13" 36 | "@babel/traverse" "^7.13.0" 37 | "@babel/types" "^7.13.0" 38 | convert-source-map "^1.7.0" 39 | debug "^4.1.0" 40 | gensync "^1.0.0-beta.2" 41 | json5 "^2.1.2" 42 | lodash "^4.17.19" 43 | semver "^6.3.0" 44 | source-map "^0.5.0" 45 | 46 | "@babel/generator@^7.13.0", "@babel/generator@^7.13.9": 47 | version "7.13.9" 48 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.13.9.tgz#3a7aa96f9efb8e2be42d38d80e2ceb4c64d8de39" 49 | integrity sha512-mHOOmY0Axl/JCTkxTU6Lf5sWOg/v8nUa+Xkt4zMTftX0wqmb6Sh7J8gvcehBw7q0AhrhAR+FDacKjCZ2X8K+Sw== 50 | dependencies: 51 | "@babel/types" "^7.13.0" 52 | jsesc "^2.5.1" 53 | source-map "^0.5.0" 54 | 55 | "@babel/helper-annotate-as-pure@^7.12.13": 56 | version "7.12.13" 57 | resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz#0f58e86dfc4bb3b1fcd7db806570e177d439b6ab" 58 | integrity sha512-7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw== 59 | dependencies: 60 | "@babel/types" "^7.12.13" 61 | 62 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.12.13": 63 | version "7.12.13" 64 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.12.13.tgz#6bc20361c88b0a74d05137a65cac8d3cbf6f61fc" 65 | integrity sha512-CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA== 66 | dependencies: 67 | "@babel/helper-explode-assignable-expression" "^7.12.13" 68 | "@babel/types" "^7.12.13" 69 | 70 | "@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.13.10", "@babel/helper-compilation-targets@^7.13.8": 71 | version "7.13.10" 72 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.10.tgz#1310a1678cb8427c07a753750da4f8ce442bdd0c" 73 | integrity sha512-/Xju7Qg1GQO4mHZ/Kcs6Au7gfafgZnwm+a7sy/ow/tV1sHeraRUHbjdat8/UvDor4Tez+siGKDk6zIKtCPKVJA== 74 | dependencies: 75 | "@babel/compat-data" "^7.13.8" 76 | "@babel/helper-validator-option" "^7.12.17" 77 | browserslist "^4.14.5" 78 | semver "^6.3.0" 79 | 80 | "@babel/helper-create-class-features-plugin@^7.13.0": 81 | version "7.13.11" 82 | resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.13.11.tgz#30d30a005bca2c953f5653fc25091a492177f4f6" 83 | integrity sha512-ays0I7XYq9xbjCSvT+EvysLgfc3tOkwCULHjrnscGT3A9qD4sk3wXnJ3of0MAWsWGjdinFvajHU2smYuqXKMrw== 84 | dependencies: 85 | "@babel/helper-function-name" "^7.12.13" 86 | "@babel/helper-member-expression-to-functions" "^7.13.0" 87 | "@babel/helper-optimise-call-expression" "^7.12.13" 88 | "@babel/helper-replace-supers" "^7.13.0" 89 | "@babel/helper-split-export-declaration" "^7.12.13" 90 | 91 | "@babel/helper-create-regexp-features-plugin@^7.12.13": 92 | version "7.12.17" 93 | resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.17.tgz#a2ac87e9e319269ac655b8d4415e94d38d663cb7" 94 | integrity sha512-p2VGmBu9oefLZ2nQpgnEnG0ZlRPvL8gAGvPUMQwUdaE8k49rOMuZpOwdQoy5qJf6K8jL3bcAMhVUlHAjIgJHUg== 95 | dependencies: 96 | "@babel/helper-annotate-as-pure" "^7.12.13" 97 | regexpu-core "^4.7.1" 98 | 99 | "@babel/helper-define-polyfill-provider@^0.1.5": 100 | version "0.1.5" 101 | resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.1.5.tgz#3c2f91b7971b9fc11fe779c945c014065dea340e" 102 | integrity sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg== 103 | dependencies: 104 | "@babel/helper-compilation-targets" "^7.13.0" 105 | "@babel/helper-module-imports" "^7.12.13" 106 | "@babel/helper-plugin-utils" "^7.13.0" 107 | "@babel/traverse" "^7.13.0" 108 | debug "^4.1.1" 109 | lodash.debounce "^4.0.8" 110 | resolve "^1.14.2" 111 | semver "^6.1.2" 112 | 113 | "@babel/helper-explode-assignable-expression@^7.12.13": 114 | version "7.13.0" 115 | resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.13.0.tgz#17b5c59ff473d9f956f40ef570cf3a76ca12657f" 116 | integrity sha512-qS0peLTDP8kOisG1blKbaoBg/o9OSa1qoumMjTK5pM+KDTtpxpsiubnCGP34vK8BXGcb2M9eigwgvoJryrzwWA== 117 | dependencies: 118 | "@babel/types" "^7.13.0" 119 | 120 | "@babel/helper-function-name@^7.12.13": 121 | version "7.12.13" 122 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz#93ad656db3c3c2232559fd7b2c3dbdcbe0eb377a" 123 | integrity sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA== 124 | dependencies: 125 | "@babel/helper-get-function-arity" "^7.12.13" 126 | "@babel/template" "^7.12.13" 127 | "@babel/types" "^7.12.13" 128 | 129 | "@babel/helper-get-function-arity@^7.12.13": 130 | version "7.12.13" 131 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz#bc63451d403a3b3082b97e1d8b3fe5bd4091e583" 132 | integrity sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg== 133 | dependencies: 134 | "@babel/types" "^7.12.13" 135 | 136 | "@babel/helper-member-expression-to-functions@^7.13.0": 137 | version "7.13.0" 138 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.0.tgz#6aa4bb678e0f8c22f58cdb79451d30494461b091" 139 | integrity sha512-yvRf8Ivk62JwisqV1rFRMxiSMDGnN6KH1/mDMmIrij4jztpQNRoHqqMG3U6apYbGRPJpgPalhva9Yd06HlUxJQ== 140 | dependencies: 141 | "@babel/types" "^7.13.0" 142 | 143 | "@babel/helper-module-imports@^7.12.13": 144 | version "7.12.13" 145 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.12.13.tgz#ec67e4404f41750463e455cc3203f6a32e93fcb0" 146 | integrity sha512-NGmfvRp9Rqxy0uHSSVP+SRIW1q31a7Ji10cLBcqSDUngGentY4FRiHOFZFE1CLU5eiL0oE8reH7Tg1y99TDM/g== 147 | dependencies: 148 | "@babel/types" "^7.12.13" 149 | 150 | "@babel/helper-module-transforms@^7.13.0": 151 | version "7.13.0" 152 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.13.0.tgz#42eb4bd8eea68bab46751212c357bfed8b40f6f1" 153 | integrity sha512-Ls8/VBwH577+pw7Ku1QkUWIyRRNHpYlts7+qSqBBFCW3I8QteB9DxfcZ5YJpOwH6Ihe/wn8ch7fMGOP1OhEIvw== 154 | dependencies: 155 | "@babel/helper-module-imports" "^7.12.13" 156 | "@babel/helper-replace-supers" "^7.13.0" 157 | "@babel/helper-simple-access" "^7.12.13" 158 | "@babel/helper-split-export-declaration" "^7.12.13" 159 | "@babel/helper-validator-identifier" "^7.12.11" 160 | "@babel/template" "^7.12.13" 161 | "@babel/traverse" "^7.13.0" 162 | "@babel/types" "^7.13.0" 163 | lodash "^4.17.19" 164 | 165 | "@babel/helper-optimise-call-expression@^7.12.13": 166 | version "7.12.13" 167 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz#5c02d171b4c8615b1e7163f888c1c81c30a2aaea" 168 | integrity sha512-BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA== 169 | dependencies: 170 | "@babel/types" "^7.12.13" 171 | 172 | "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.8.0": 173 | version "7.13.0" 174 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz#806526ce125aed03373bc416a828321e3a6a33af" 175 | integrity sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ== 176 | 177 | "@babel/helper-remap-async-to-generator@^7.13.0": 178 | version "7.13.0" 179 | resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.13.0.tgz#376a760d9f7b4b2077a9dd05aa9c3927cadb2209" 180 | integrity sha512-pUQpFBE9JvC9lrQbpX0TmeNIy5s7GnZjna2lhhcHC7DzgBs6fWn722Y5cfwgrtrqc7NAJwMvOa0mKhq6XaE4jg== 181 | dependencies: 182 | "@babel/helper-annotate-as-pure" "^7.12.13" 183 | "@babel/helper-wrap-function" "^7.13.0" 184 | "@babel/types" "^7.13.0" 185 | 186 | "@babel/helper-replace-supers@^7.13.0": 187 | version "7.13.0" 188 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.13.0.tgz#6034b7b51943094cb41627848cb219cb02be1d24" 189 | integrity sha512-Segd5me1+Pz+rmN/NFBOplMbZG3SqRJOBlY+mA0SxAv6rjj7zJqr1AVr3SfzUVTLCv7ZLU5FycOM/SBGuLPbZw== 190 | dependencies: 191 | "@babel/helper-member-expression-to-functions" "^7.13.0" 192 | "@babel/helper-optimise-call-expression" "^7.12.13" 193 | "@babel/traverse" "^7.13.0" 194 | "@babel/types" "^7.13.0" 195 | 196 | "@babel/helper-simple-access@^7.12.13": 197 | version "7.12.13" 198 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.12.13.tgz#8478bcc5cacf6aa1672b251c1d2dde5ccd61a6c4" 199 | integrity sha512-0ski5dyYIHEfwpWGx5GPWhH35j342JaflmCeQmsPWcrOQDtCN6C1zKAVRFVbK53lPW2c9TsuLLSUDf0tIGJ5hA== 200 | dependencies: 201 | "@babel/types" "^7.12.13" 202 | 203 | "@babel/helper-skip-transparent-expression-wrappers@^7.12.1": 204 | version "7.12.1" 205 | resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz#462dc63a7e435ade8468385c63d2b84cce4b3cbf" 206 | integrity sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA== 207 | dependencies: 208 | "@babel/types" "^7.12.1" 209 | 210 | "@babel/helper-split-export-declaration@^7.12.13": 211 | version "7.12.13" 212 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz#e9430be00baf3e88b0e13e6f9d4eaf2136372b05" 213 | integrity sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg== 214 | dependencies: 215 | "@babel/types" "^7.12.13" 216 | 217 | "@babel/helper-validator-identifier@^7.12.11": 218 | version "7.12.11" 219 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz#c9a1f021917dcb5ccf0d4e453e399022981fc9ed" 220 | integrity sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw== 221 | 222 | "@babel/helper-validator-option@^7.12.17": 223 | version "7.12.17" 224 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz#d1fbf012e1a79b7eebbfdc6d270baaf8d9eb9831" 225 | integrity sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw== 226 | 227 | "@babel/helper-wrap-function@^7.13.0": 228 | version "7.13.0" 229 | resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.13.0.tgz#bdb5c66fda8526ec235ab894ad53a1235c79fcc4" 230 | integrity sha512-1UX9F7K3BS42fI6qd2A4BjKzgGjToscyZTdp1DjknHLCIvpgne6918io+aL5LXFcER/8QWiwpoY902pVEqgTXA== 231 | dependencies: 232 | "@babel/helper-function-name" "^7.12.13" 233 | "@babel/template" "^7.12.13" 234 | "@babel/traverse" "^7.13.0" 235 | "@babel/types" "^7.13.0" 236 | 237 | "@babel/helpers@^7.13.10": 238 | version "7.13.10" 239 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.13.10.tgz#fd8e2ba7488533cdeac45cc158e9ebca5e3c7df8" 240 | integrity sha512-4VO883+MWPDUVRF3PhiLBUFHoX/bsLTGFpFK/HqvvfBZz2D57u9XzPVNFVBTc0PW/CWR9BXTOKt8NF4DInUHcQ== 241 | dependencies: 242 | "@babel/template" "^7.12.13" 243 | "@babel/traverse" "^7.13.0" 244 | "@babel/types" "^7.13.0" 245 | 246 | "@babel/highlight@^7.10.4", "@babel/highlight@^7.12.13": 247 | version "7.13.10" 248 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.13.10.tgz#a8b2a66148f5b27d666b15d81774347a731d52d1" 249 | integrity sha512-5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg== 250 | dependencies: 251 | "@babel/helper-validator-identifier" "^7.12.11" 252 | chalk "^2.0.0" 253 | js-tokens "^4.0.0" 254 | 255 | "@babel/parser@^7.12.13", "@babel/parser@^7.13.0", "@babel/parser@^7.13.10", "@babel/parser@^7.7.0": 256 | version "7.13.11" 257 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.13.11.tgz#f93ebfc99d21c1772afbbaa153f47e7ce2f50b88" 258 | integrity sha512-PhuoqeHoO9fc4ffMEVk4qb/w/s2iOSWohvbHxLtxui0eBg3Lg5gN1U8wp1V1u61hOWkPQJJyJzGH6Y+grwkq8Q== 259 | 260 | "@babel/plugin-proposal-class-properties@^7.0.0": 261 | version "7.13.0" 262 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.13.0.tgz#146376000b94efd001e57a40a88a525afaab9f37" 263 | integrity sha512-KnTDjFNC1g+45ka0myZNvSBFLhNCLN+GeGYLDEA8Oq7MZ6yMgfLoIRh86GRT0FjtJhZw8JyUskP9uvj5pHM9Zg== 264 | dependencies: 265 | "@babel/helper-create-class-features-plugin" "^7.13.0" 266 | "@babel/helper-plugin-utils" "^7.13.0" 267 | 268 | "@babel/plugin-proposal-export-default-from@^7.0.0": 269 | version "7.12.13" 270 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.12.13.tgz#f110284108a9b2b96f01b15b3be9e54c2610a989" 271 | integrity sha512-idIsBT+DGXdOHL82U+8bwX4goHm/z10g8sGGrQroh+HCRcm7mDv/luaGdWJQMTuCX2FsdXS7X0Nyyzp4znAPJA== 272 | dependencies: 273 | "@babel/helper-plugin-utils" "^7.12.13" 274 | "@babel/plugin-syntax-export-default-from" "^7.12.13" 275 | 276 | "@babel/plugin-proposal-nullish-coalescing-operator@^7.0.0": 277 | version "7.13.8" 278 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.13.8.tgz#3730a31dafd3c10d8ccd10648ed80a2ac5472ef3" 279 | integrity sha512-iePlDPBn//UhxExyS9KyeYU7RM9WScAG+D3Hhno0PLJebAEpDZMocbDe64eqynhNAnwz/vZoL/q/QB2T1OH39A== 280 | dependencies: 281 | "@babel/helper-plugin-utils" "^7.13.0" 282 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 283 | 284 | "@babel/plugin-proposal-object-rest-spread@^7.0.0": 285 | version "7.13.8" 286 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.13.8.tgz#5d210a4d727d6ce3b18f9de82cc99a3964eed60a" 287 | integrity sha512-DhB2EuB1Ih7S3/IRX5AFVgZ16k3EzfRbq97CxAVI1KSYcW+lexV8VZb7G7L8zuPVSdQMRn0kiBpf/Yzu9ZKH0g== 288 | dependencies: 289 | "@babel/compat-data" "^7.13.8" 290 | "@babel/helper-compilation-targets" "^7.13.8" 291 | "@babel/helper-plugin-utils" "^7.13.0" 292 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 293 | "@babel/plugin-transform-parameters" "^7.13.0" 294 | 295 | "@babel/plugin-proposal-optional-catch-binding@^7.0.0": 296 | version "7.13.8" 297 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.13.8.tgz#3ad6bd5901506ea996fc31bdcf3ccfa2bed71107" 298 | integrity sha512-0wS/4DUF1CuTmGo+NiaHfHcVSeSLj5S3e6RivPTg/2k3wOv3jO35tZ6/ZWsQhQMvdgI7CwphjQa/ccarLymHVA== 299 | dependencies: 300 | "@babel/helper-plugin-utils" "^7.13.0" 301 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 302 | 303 | "@babel/plugin-proposal-optional-chaining@^7.0.0": 304 | version "7.13.8" 305 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.13.8.tgz#e39df93efe7e7e621841babc197982e140e90756" 306 | integrity sha512-hpbBwbTgd7Cz1QryvwJZRo1U0k1q8uyBmeXOSQUjdg/A2TASkhR/rz7AyqZ/kS8kbpsNA80rOYbxySBJAqmhhQ== 307 | dependencies: 308 | "@babel/helper-plugin-utils" "^7.13.0" 309 | "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" 310 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" 311 | 312 | "@babel/plugin-syntax-dynamic-import@^7.0.0": 313 | version "7.8.3" 314 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" 315 | integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== 316 | dependencies: 317 | "@babel/helper-plugin-utils" "^7.8.0" 318 | 319 | "@babel/plugin-syntax-export-default-from@^7.0.0", "@babel/plugin-syntax-export-default-from@^7.12.13": 320 | version "7.12.13" 321 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.12.13.tgz#3c807d37efaf0a806f1deb556ccb3b2f562ae9c2" 322 | integrity sha512-gVry0zqoums0hA+EniCYK3gABhjYSLX1dVuwYpPw9DrLNA4/GovXySHVg4FGRsZht09ON/5C2NVx3keq+qqVGQ== 323 | dependencies: 324 | "@babel/helper-plugin-utils" "^7.12.13" 325 | 326 | "@babel/plugin-syntax-flow@^7.12.13", "@babel/plugin-syntax-flow@^7.2.0": 327 | version "7.12.13" 328 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.12.13.tgz#5df9962503c0a9c918381c929d51d4d6949e7e86" 329 | integrity sha512-J/RYxnlSLXZLVR7wTRsozxKT8qbsx1mNKJzXEEjQ0Kjx1ZACcyHgbanNWNCFtc36IzuWhYWPpvJFFoexoOWFmA== 330 | dependencies: 331 | "@babel/helper-plugin-utils" "^7.12.13" 332 | 333 | "@babel/plugin-syntax-jsx@^7.12.13": 334 | version "7.12.13" 335 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.13.tgz#044fb81ebad6698fe62c478875575bcbb9b70f15" 336 | integrity sha512-d4HM23Q1K7oq/SLNmG6mRt85l2csmQ0cHRaxRXjKW0YFdEXqlZ5kzFQKH5Uc3rDJECgu+yCRgPkG04Mm98R/1g== 337 | dependencies: 338 | "@babel/helper-plugin-utils" "^7.12.13" 339 | 340 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.0.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": 341 | version "7.8.3" 342 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" 343 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== 344 | dependencies: 345 | "@babel/helper-plugin-utils" "^7.8.0" 346 | 347 | "@babel/plugin-syntax-object-rest-spread@^7.8.3": 348 | version "7.8.3" 349 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" 350 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== 351 | dependencies: 352 | "@babel/helper-plugin-utils" "^7.8.0" 353 | 354 | "@babel/plugin-syntax-optional-catch-binding@^7.8.3": 355 | version "7.8.3" 356 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" 357 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== 358 | dependencies: 359 | "@babel/helper-plugin-utils" "^7.8.0" 360 | 361 | "@babel/plugin-syntax-optional-chaining@^7.0.0", "@babel/plugin-syntax-optional-chaining@^7.8.3": 362 | version "7.8.3" 363 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" 364 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== 365 | dependencies: 366 | "@babel/helper-plugin-utils" "^7.8.0" 367 | 368 | "@babel/plugin-syntax-typescript@^7.12.13": 369 | version "7.12.13" 370 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.12.13.tgz#9dff111ca64154cef0f4dc52cf843d9f12ce4474" 371 | integrity sha512-cHP3u1JiUiG2LFDKbXnwVad81GvfyIOmCD6HIEId6ojrY0Drfy2q1jw7BwN7dE84+kTnBjLkXoL3IEy/3JPu2w== 372 | dependencies: 373 | "@babel/helper-plugin-utils" "^7.12.13" 374 | 375 | "@babel/plugin-transform-arrow-functions@^7.0.0": 376 | version "7.13.0" 377 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.13.0.tgz#10a59bebad52d637a027afa692e8d5ceff5e3dae" 378 | integrity sha512-96lgJagobeVmazXFaDrbmCLQxBysKu7U6Do3mLsx27gf5Dk85ezysrs2BZUpXD703U/Su1xTBDxxar2oa4jAGg== 379 | dependencies: 380 | "@babel/helper-plugin-utils" "^7.13.0" 381 | 382 | "@babel/plugin-transform-async-to-generator@^7.0.0": 383 | version "7.13.0" 384 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.13.0.tgz#8e112bf6771b82bf1e974e5e26806c5c99aa516f" 385 | integrity sha512-3j6E004Dx0K3eGmhxVJxwwI89CTJrce7lg3UrtFuDAVQ/2+SJ/h/aSFOeE6/n0WB1GsOffsJp6MnPQNQ8nmwhg== 386 | dependencies: 387 | "@babel/helper-module-imports" "^7.12.13" 388 | "@babel/helper-plugin-utils" "^7.13.0" 389 | "@babel/helper-remap-async-to-generator" "^7.13.0" 390 | 391 | "@babel/plugin-transform-block-scoping@^7.0.0": 392 | version "7.12.13" 393 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.13.tgz#f36e55076d06f41dfd78557ea039c1b581642e61" 394 | integrity sha512-Pxwe0iqWJX4fOOM2kEZeUuAxHMWb9nK+9oh5d11bsLoB0xMg+mkDpt0eYuDZB7ETrY9bbcVlKUGTOGWy7BHsMQ== 395 | dependencies: 396 | "@babel/helper-plugin-utils" "^7.12.13" 397 | 398 | "@babel/plugin-transform-classes@^7.0.0": 399 | version "7.13.0" 400 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.13.0.tgz#0265155075c42918bf4d3a4053134176ad9b533b" 401 | integrity sha512-9BtHCPUARyVH1oXGcSJD3YpsqRLROJx5ZNP6tN5vnk17N0SVf9WCtf8Nuh1CFmgByKKAIMstitKduoCmsaDK5g== 402 | dependencies: 403 | "@babel/helper-annotate-as-pure" "^7.12.13" 404 | "@babel/helper-function-name" "^7.12.13" 405 | "@babel/helper-optimise-call-expression" "^7.12.13" 406 | "@babel/helper-plugin-utils" "^7.13.0" 407 | "@babel/helper-replace-supers" "^7.13.0" 408 | "@babel/helper-split-export-declaration" "^7.12.13" 409 | globals "^11.1.0" 410 | 411 | "@babel/plugin-transform-computed-properties@^7.0.0": 412 | version "7.13.0" 413 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.13.0.tgz#845c6e8b9bb55376b1fa0b92ef0bdc8ea06644ed" 414 | integrity sha512-RRqTYTeZkZAz8WbieLTvKUEUxZlUTdmL5KGMyZj7FnMfLNKV4+r5549aORG/mgojRmFlQMJDUupwAMiF2Q7OUg== 415 | dependencies: 416 | "@babel/helper-plugin-utils" "^7.13.0" 417 | 418 | "@babel/plugin-transform-destructuring@^7.0.0": 419 | version "7.13.0" 420 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.13.0.tgz#c5dce270014d4e1ebb1d806116694c12b7028963" 421 | integrity sha512-zym5em7tePoNT9s964c0/KU3JPPnuq7VhIxPRefJ4/s82cD+q1mgKfuGRDMCPL0HTyKz4dISuQlCusfgCJ86HA== 422 | dependencies: 423 | "@babel/helper-plugin-utils" "^7.13.0" 424 | 425 | "@babel/plugin-transform-exponentiation-operator@^7.0.0": 426 | version "7.12.13" 427 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.13.tgz#4d52390b9a273e651e4aba6aee49ef40e80cd0a1" 428 | integrity sha512-fbUelkM1apvqez/yYx1/oICVnGo2KM5s63mhGylrmXUxK/IAXSIf87QIxVfZldWf4QsOafY6vV3bX8aMHSvNrA== 429 | dependencies: 430 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.12.13" 431 | "@babel/helper-plugin-utils" "^7.12.13" 432 | 433 | "@babel/plugin-transform-flow-strip-types@^7.0.0": 434 | version "7.13.0" 435 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.13.0.tgz#58177a48c209971e8234e99906cb6bd1122addd3" 436 | integrity sha512-EXAGFMJgSX8gxWD7PZtW/P6M+z74jpx3wm/+9pn+c2dOawPpBkUX7BrfyPvo6ZpXbgRIEuwgwDb/MGlKvu2pOg== 437 | dependencies: 438 | "@babel/helper-plugin-utils" "^7.13.0" 439 | "@babel/plugin-syntax-flow" "^7.12.13" 440 | 441 | "@babel/plugin-transform-for-of@^7.0.0": 442 | version "7.13.0" 443 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.13.0.tgz#c799f881a8091ac26b54867a845c3e97d2696062" 444 | integrity sha512-IHKT00mwUVYE0zzbkDgNRP6SRzvfGCYsOxIRz8KsiaaHCcT9BWIkO+H9QRJseHBLOGBZkHUdHiqj6r0POsdytg== 445 | dependencies: 446 | "@babel/helper-plugin-utils" "^7.13.0" 447 | 448 | "@babel/plugin-transform-function-name@^7.0.0": 449 | version "7.12.13" 450 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.13.tgz#bb024452f9aaed861d374c8e7a24252ce3a50051" 451 | integrity sha512-6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ== 452 | dependencies: 453 | "@babel/helper-function-name" "^7.12.13" 454 | "@babel/helper-plugin-utils" "^7.12.13" 455 | 456 | "@babel/plugin-transform-literals@^7.0.0": 457 | version "7.12.13" 458 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.13.tgz#2ca45bafe4a820197cf315794a4d26560fe4bdb9" 459 | integrity sha512-FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ== 460 | dependencies: 461 | "@babel/helper-plugin-utils" "^7.12.13" 462 | 463 | "@babel/plugin-transform-modules-commonjs@^7.0.0": 464 | version "7.13.8" 465 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.13.8.tgz#7b01ad7c2dcf2275b06fa1781e00d13d420b3e1b" 466 | integrity sha512-9QiOx4MEGglfYZ4XOnU79OHr6vIWUakIj9b4mioN8eQIoEh+pf5p/zEB36JpDFWA12nNMiRf7bfoRvl9Rn79Bw== 467 | dependencies: 468 | "@babel/helper-module-transforms" "^7.13.0" 469 | "@babel/helper-plugin-utils" "^7.13.0" 470 | "@babel/helper-simple-access" "^7.12.13" 471 | babel-plugin-dynamic-import-node "^2.3.3" 472 | 473 | "@babel/plugin-transform-object-assign@^7.0.0": 474 | version "7.12.13" 475 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.12.13.tgz#d9b9200a69e03403a813e44a933ad9f4bddfd050" 476 | integrity sha512-4QxDMc0lAOkIBSfCrnSGbAJ+4epDBF2XXwcLXuBcG1xl9u7LrktNVD4+LwhL47XuKVPQ7R25e/WdcV+h97HyZA== 477 | dependencies: 478 | "@babel/helper-plugin-utils" "^7.12.13" 479 | 480 | "@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.13.0": 481 | version "7.13.0" 482 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.13.0.tgz#8fa7603e3097f9c0b7ca1a4821bc2fb52e9e5007" 483 | integrity sha512-Jt8k/h/mIwE2JFEOb3lURoY5C85ETcYPnbuAJ96zRBzh1XHtQZfs62ChZ6EP22QlC8c7Xqr9q+e1SU5qttwwjw== 484 | dependencies: 485 | "@babel/helper-plugin-utils" "^7.13.0" 486 | 487 | "@babel/plugin-transform-react-display-name@^7.0.0": 488 | version "7.12.13" 489 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.13.tgz#c28effd771b276f4647411c9733dbb2d2da954bd" 490 | integrity sha512-MprESJzI9O5VnJZrL7gg1MpdqmiFcUv41Jc7SahxYsNP2kDkFqClxxTZq+1Qv4AFCamm+GXMRDQINNn+qrxmiA== 491 | dependencies: 492 | "@babel/helper-plugin-utils" "^7.12.13" 493 | 494 | "@babel/plugin-transform-react-jsx-self@^7.0.0": 495 | version "7.12.13" 496 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.12.13.tgz#422d99d122d592acab9c35ea22a6cfd9bf189f60" 497 | integrity sha512-FXYw98TTJ125GVCCkFLZXlZ1qGcsYqNQhVBQcZjyrwf8FEUtVfKIoidnO8S0q+KBQpDYNTmiGo1gn67Vti04lQ== 498 | dependencies: 499 | "@babel/helper-plugin-utils" "^7.12.13" 500 | 501 | "@babel/plugin-transform-react-jsx-source@^7.0.0": 502 | version "7.12.13" 503 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.12.13.tgz#051d76126bee5c9a6aa3ba37be2f6c1698856bcb" 504 | integrity sha512-O5JJi6fyfih0WfDgIJXksSPhGP/G0fQpfxYy87sDc+1sFmsCS6wr3aAn+whbzkhbjtq4VMqLRaSzR6IsshIC0Q== 505 | dependencies: 506 | "@babel/helper-plugin-utils" "^7.12.13" 507 | 508 | "@babel/plugin-transform-react-jsx@^7.0.0": 509 | version "7.12.17" 510 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.17.tgz#dd2c1299f5e26de584939892de3cfc1807a38f24" 511 | integrity sha512-mwaVNcXV+l6qJOuRhpdTEj8sT/Z0owAVWf9QujTZ0d2ye9X/K+MTOTSizcgKOj18PGnTc/7g1I4+cIUjsKhBcw== 512 | dependencies: 513 | "@babel/helper-annotate-as-pure" "^7.12.13" 514 | "@babel/helper-module-imports" "^7.12.13" 515 | "@babel/helper-plugin-utils" "^7.12.13" 516 | "@babel/plugin-syntax-jsx" "^7.12.13" 517 | "@babel/types" "^7.12.17" 518 | 519 | "@babel/plugin-transform-regenerator@^7.0.0": 520 | version "7.12.13" 521 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.13.tgz#b628bcc9c85260ac1aeb05b45bde25210194a2f5" 522 | integrity sha512-lxb2ZAvSLyJ2PEe47hoGWPmW22v7CtSl9jW8mingV4H2sEX/JOcrAj2nPuGWi56ERUm2bUpjKzONAuT6HCn2EA== 523 | dependencies: 524 | regenerator-transform "^0.14.2" 525 | 526 | "@babel/plugin-transform-runtime@^7.0.0": 527 | version "7.13.10" 528 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.13.10.tgz#a1e40d22e2bf570c591c9c7e5ab42d6bf1e419e1" 529 | integrity sha512-Y5k8ipgfvz5d/76tx7JYbKQTcgFSU6VgJ3kKQv4zGTKr+a9T/KBvfRvGtSFgKDQGt/DBykQixV0vNWKIdzWErA== 530 | dependencies: 531 | "@babel/helper-module-imports" "^7.12.13" 532 | "@babel/helper-plugin-utils" "^7.13.0" 533 | babel-plugin-polyfill-corejs2 "^0.1.4" 534 | babel-plugin-polyfill-corejs3 "^0.1.3" 535 | babel-plugin-polyfill-regenerator "^0.1.2" 536 | semver "^6.3.0" 537 | 538 | "@babel/plugin-transform-shorthand-properties@^7.0.0": 539 | version "7.12.13" 540 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.13.tgz#db755732b70c539d504c6390d9ce90fe64aff7ad" 541 | integrity sha512-xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw== 542 | dependencies: 543 | "@babel/helper-plugin-utils" "^7.12.13" 544 | 545 | "@babel/plugin-transform-spread@^7.0.0": 546 | version "7.13.0" 547 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.13.0.tgz#84887710e273c1815ace7ae459f6f42a5d31d5fd" 548 | integrity sha512-V6vkiXijjzYeFmQTr3dBxPtZYLPcUfY34DebOU27jIl2M/Y8Egm52Hw82CSjjPqd54GTlJs5x+CR7HeNr24ckg== 549 | dependencies: 550 | "@babel/helper-plugin-utils" "^7.13.0" 551 | "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" 552 | 553 | "@babel/plugin-transform-sticky-regex@^7.0.0": 554 | version "7.12.13" 555 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.13.tgz#760ffd936face73f860ae646fb86ee82f3d06d1f" 556 | integrity sha512-Jc3JSaaWT8+fr7GRvQP02fKDsYk4K/lYwWq38r/UGfaxo89ajud321NH28KRQ7xy1Ybc0VUE5Pz8psjNNDUglg== 557 | dependencies: 558 | "@babel/helper-plugin-utils" "^7.12.13" 559 | 560 | "@babel/plugin-transform-template-literals@^7.0.0": 561 | version "7.13.0" 562 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.13.0.tgz#a36049127977ad94438dee7443598d1cefdf409d" 563 | integrity sha512-d67umW6nlfmr1iehCcBv69eSUSySk1EsIS8aTDX4Xo9qajAh6mYtcl4kJrBkGXuxZPEgVr7RVfAvNW6YQkd4Mw== 564 | dependencies: 565 | "@babel/helper-plugin-utils" "^7.13.0" 566 | 567 | "@babel/plugin-transform-typescript@^7.5.0": 568 | version "7.13.0" 569 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.13.0.tgz#4a498e1f3600342d2a9e61f60131018f55774853" 570 | integrity sha512-elQEwluzaU8R8dbVuW2Q2Y8Nznf7hnjM7+DSCd14Lo5fF63C9qNLbwZYbmZrtV9/ySpSUpkRpQXvJb6xyu4hCQ== 571 | dependencies: 572 | "@babel/helper-create-class-features-plugin" "^7.13.0" 573 | "@babel/helper-plugin-utils" "^7.13.0" 574 | "@babel/plugin-syntax-typescript" "^7.12.13" 575 | 576 | "@babel/plugin-transform-unicode-regex@^7.0.0": 577 | version "7.12.13" 578 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.13.tgz#b52521685804e155b1202e83fc188d34bb70f5ac" 579 | integrity sha512-mDRzSNY7/zopwisPZ5kM9XKCfhchqIYwAKRERtEnhYscZB79VRekuRSoYbN0+KVe3y8+q1h6A4svXtP7N+UoCA== 580 | dependencies: 581 | "@babel/helper-create-regexp-features-plugin" "^7.12.13" 582 | "@babel/helper-plugin-utils" "^7.12.13" 583 | 584 | "@babel/runtime@^7.8.4": 585 | version "7.13.10" 586 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.13.10.tgz#47d42a57b6095f4468da440388fdbad8bebf0d7d" 587 | integrity sha512-4QPkjJq6Ns3V/RgpEahRk+AGfL0eO6RHHtTWoNNr5mO49G6B5+X6d6THgWEAvTrznU5xYpbAlVKRYcsCgh/Akw== 588 | dependencies: 589 | regenerator-runtime "^0.13.4" 590 | 591 | "@babel/template@^7.0.0", "@babel/template@^7.12.13": 592 | version "7.12.13" 593 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.12.13.tgz#530265be8a2589dbb37523844c5bcb55947fb327" 594 | integrity sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA== 595 | dependencies: 596 | "@babel/code-frame" "^7.12.13" 597 | "@babel/parser" "^7.12.13" 598 | "@babel/types" "^7.12.13" 599 | 600 | "@babel/traverse@^7.13.0", "@babel/traverse@^7.7.0", "@babel/traverse@^7.7.4": 601 | version "7.13.0" 602 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.13.0.tgz#6d95752475f86ee7ded06536de309a65fc8966cc" 603 | integrity sha512-xys5xi5JEhzC3RzEmSGrs/b3pJW/o87SypZ+G/PhaE7uqVQNv/jlmVIBXuoh5atqQ434LfXV+sf23Oxj0bchJQ== 604 | dependencies: 605 | "@babel/code-frame" "^7.12.13" 606 | "@babel/generator" "^7.13.0" 607 | "@babel/helper-function-name" "^7.12.13" 608 | "@babel/helper-split-export-declaration" "^7.12.13" 609 | "@babel/parser" "^7.13.0" 610 | "@babel/types" "^7.13.0" 611 | debug "^4.1.0" 612 | globals "^11.1.0" 613 | lodash "^4.17.19" 614 | 615 | "@babel/types@^7.12.1", "@babel/types@^7.12.13", "@babel/types@^7.12.17", "@babel/types@^7.13.0", "@babel/types@^7.7.0": 616 | version "7.13.0" 617 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.13.0.tgz#74424d2816f0171b4100f0ab34e9a374efdf7f80" 618 | integrity sha512-hE+HE8rnG1Z6Wzo+MhaKE5lM5eMx71T4EHJgku2E3xIfaULhDcxiiRxUYgwX8qwP1BBSlag+TdGOt6JAidIZTA== 619 | dependencies: 620 | "@babel/helper-validator-identifier" "^7.12.11" 621 | lodash "^4.17.19" 622 | to-fast-properties "^2.0.0" 623 | 624 | "@eslint/eslintrc@^0.4.0": 625 | version "0.4.0" 626 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.0.tgz#99cc0a0584d72f1df38b900fb062ba995f395547" 627 | integrity sha512-2ZPCc+uNbjV5ERJr+aKSPRwZgKd2z11x0EgLvb1PURmUrn9QNRXFqje0Ldq454PfAVyaJYyrDvvIKSFP4NnBog== 628 | dependencies: 629 | ajv "^6.12.4" 630 | debug "^4.1.1" 631 | espree "^7.3.0" 632 | globals "^12.1.0" 633 | ignore "^4.0.6" 634 | import-fresh "^3.2.1" 635 | js-yaml "^3.13.1" 636 | minimatch "^3.0.4" 637 | strip-json-comments "^3.1.1" 638 | 639 | "@react-native-community/eslint-config@^2.0.0": 640 | version "2.0.0" 641 | resolved "https://registry.yarnpkg.com/@react-native-community/eslint-config/-/eslint-config-2.0.0.tgz#35dcc529a274803fc4e0a6b3d6c274551fb91774" 642 | integrity sha512-vHaMMfvMp9BWCQQ0lNIXibOJTcXIbYUQ8dSUsMOsrXgVkeVQJj88OwrKS00rQyqwMaC4/a6HuDiFzYUkGKOpVg== 643 | dependencies: 644 | "@react-native-community/eslint-plugin" "^1.1.0" 645 | "@typescript-eslint/eslint-plugin" "^3.1.0" 646 | "@typescript-eslint/parser" "^3.1.0" 647 | babel-eslint "^10.1.0" 648 | eslint-config-prettier "^6.10.1" 649 | eslint-plugin-eslint-comments "^3.1.2" 650 | eslint-plugin-flowtype "2.50.3" 651 | eslint-plugin-jest "22.4.1" 652 | eslint-plugin-prettier "3.1.2" 653 | eslint-plugin-react "^7.20.0" 654 | eslint-plugin-react-hooks "^4.0.4" 655 | eslint-plugin-react-native "^3.8.1" 656 | prettier "^2.0.2" 657 | 658 | "@react-native-community/eslint-plugin@^1.1.0": 659 | version "1.1.0" 660 | resolved "https://registry.yarnpkg.com/@react-native-community/eslint-plugin/-/eslint-plugin-1.1.0.tgz#e42b1bef12d2415411519fd528e64b593b1363dc" 661 | integrity sha512-W/J0fNYVO01tioHjvYWQ9m6RgndVtbElzYozBq1ZPrHO/iCzlqoySHl4gO/fpCl9QEFjvJfjPgtPMTMlsoq5DQ== 662 | 663 | "@types/eslint-visitor-keys@^1.0.0": 664 | version "1.0.0" 665 | resolved "https://registry.yarnpkg.com/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#1ee30d79544ca84d68d4b3cdb0af4f205663dd2d" 666 | integrity sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag== 667 | 668 | "@types/json-schema@^7.0.3": 669 | version "7.0.7" 670 | resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.7.tgz#98a993516c859eb0d5c4c8f098317a9ea68db9ad" 671 | integrity sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA== 672 | 673 | "@types/parse-json@^4.0.0": 674 | version "4.0.0" 675 | resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" 676 | integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== 677 | 678 | "@typescript-eslint/eslint-plugin@^3.1.0": 679 | version "3.10.1" 680 | resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-3.10.1.tgz#7e061338a1383f59edc204c605899f93dc2e2c8f" 681 | integrity sha512-PQg0emRtzZFWq6PxBcdxRH3QIQiyFO3WCVpRL3fgj5oQS3CDs3AeAKfv4DxNhzn8ITdNJGJ4D3Qw8eAJf3lXeQ== 682 | dependencies: 683 | "@typescript-eslint/experimental-utils" "3.10.1" 684 | debug "^4.1.1" 685 | functional-red-black-tree "^1.0.1" 686 | regexpp "^3.0.0" 687 | semver "^7.3.2" 688 | tsutils "^3.17.1" 689 | 690 | "@typescript-eslint/experimental-utils@3.10.1": 691 | version "3.10.1" 692 | resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-3.10.1.tgz#e179ffc81a80ebcae2ea04e0332f8b251345a686" 693 | integrity sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw== 694 | dependencies: 695 | "@types/json-schema" "^7.0.3" 696 | "@typescript-eslint/types" "3.10.1" 697 | "@typescript-eslint/typescript-estree" "3.10.1" 698 | eslint-scope "^5.0.0" 699 | eslint-utils "^2.0.0" 700 | 701 | "@typescript-eslint/parser@^3.1.0": 702 | version "3.10.1" 703 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-3.10.1.tgz#1883858e83e8b442627e1ac6f408925211155467" 704 | integrity sha512-Ug1RcWcrJP02hmtaXVS3axPPTTPnZjupqhgj+NnZ6BCkwSImWk/283347+x9wN+lqOdK9Eo3vsyiyDHgsmiEJw== 705 | dependencies: 706 | "@types/eslint-visitor-keys" "^1.0.0" 707 | "@typescript-eslint/experimental-utils" "3.10.1" 708 | "@typescript-eslint/types" "3.10.1" 709 | "@typescript-eslint/typescript-estree" "3.10.1" 710 | eslint-visitor-keys "^1.1.0" 711 | 712 | "@typescript-eslint/types@3.10.1": 713 | version "3.10.1" 714 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-3.10.1.tgz#1d7463fa7c32d8a23ab508a803ca2fe26e758727" 715 | integrity sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ== 716 | 717 | "@typescript-eslint/typescript-estree@3.10.1": 718 | version "3.10.1" 719 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-3.10.1.tgz#fd0061cc38add4fad45136d654408569f365b853" 720 | integrity sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w== 721 | dependencies: 722 | "@typescript-eslint/types" "3.10.1" 723 | "@typescript-eslint/visitor-keys" "3.10.1" 724 | debug "^4.1.1" 725 | glob "^7.1.6" 726 | is-glob "^4.0.1" 727 | lodash "^4.17.15" 728 | semver "^7.3.2" 729 | tsutils "^3.17.1" 730 | 731 | "@typescript-eslint/visitor-keys@3.10.1": 732 | version "3.10.1" 733 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-3.10.1.tgz#cd4274773e3eb63b2e870ac602274487ecd1e931" 734 | integrity sha512-9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ== 735 | dependencies: 736 | eslint-visitor-keys "^1.1.0" 737 | 738 | acorn-jsx@^5.3.1: 739 | version "5.3.1" 740 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b" 741 | integrity sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng== 742 | 743 | acorn@^7.4.0: 744 | version "7.4.1" 745 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" 746 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== 747 | 748 | aggregate-error@^3.0.0: 749 | version "3.1.0" 750 | resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" 751 | integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== 752 | dependencies: 753 | clean-stack "^2.0.0" 754 | indent-string "^4.0.0" 755 | 756 | ajv@^6.10.0, ajv@^6.12.4: 757 | version "6.12.6" 758 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 759 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 760 | dependencies: 761 | fast-deep-equal "^3.1.1" 762 | fast-json-stable-stringify "^2.0.0" 763 | json-schema-traverse "^0.4.1" 764 | uri-js "^4.2.2" 765 | 766 | ajv@^7.0.2: 767 | version "7.2.3" 768 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-7.2.3.tgz#ca78d1cf458d7d36d1c3fa0794dd143406db5772" 769 | integrity sha512-idv5WZvKVXDqKralOImQgPM9v6WOdLNa0IY3B3doOjw/YxRGT8I+allIJ6kd7Uaj+SF1xZUSU+nPM5aDNBVtnw== 770 | dependencies: 771 | fast-deep-equal "^3.1.1" 772 | json-schema-traverse "^1.0.0" 773 | require-from-string "^2.0.2" 774 | uri-js "^4.2.2" 775 | 776 | ansi-colors@^4.1.1: 777 | version "4.1.1" 778 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" 779 | integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== 780 | 781 | ansi-escapes@^4.3.0: 782 | version "4.3.1" 783 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.1.tgz#a5c47cc43181f1f38ffd7076837700d395522a61" 784 | integrity sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA== 785 | dependencies: 786 | type-fest "^0.11.0" 787 | 788 | ansi-regex@^5.0.0: 789 | version "5.0.0" 790 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" 791 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== 792 | 793 | ansi-styles@^3.2.1: 794 | version "3.2.1" 795 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 796 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 797 | dependencies: 798 | color-convert "^1.9.0" 799 | 800 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 801 | version "4.3.0" 802 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 803 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 804 | dependencies: 805 | color-convert "^2.0.1" 806 | 807 | argparse@^1.0.7: 808 | version "1.0.10" 809 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 810 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 811 | dependencies: 812 | sprintf-js "~1.0.2" 813 | 814 | array-includes@^3.1.1, array-includes@^3.1.2: 815 | version "3.1.3" 816 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.3.tgz#c7f619b382ad2afaf5326cddfdc0afc61af7690a" 817 | integrity sha512-gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A== 818 | dependencies: 819 | call-bind "^1.0.2" 820 | define-properties "^1.1.3" 821 | es-abstract "^1.18.0-next.2" 822 | get-intrinsic "^1.1.1" 823 | is-string "^1.0.5" 824 | 825 | array.prototype.flatmap@^1.2.3: 826 | version "1.2.4" 827 | resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.4.tgz#94cfd47cc1556ec0747d97f7c7738c58122004c9" 828 | integrity sha512-r9Z0zYoxqHz60vvQbWEdXIEtCwHF0yxaWfno9qzXeNHvfyl3BZqygmGzb84dsubyaXLH4husF+NFgMSdpZhk2Q== 829 | dependencies: 830 | call-bind "^1.0.0" 831 | define-properties "^1.1.3" 832 | es-abstract "^1.18.0-next.1" 833 | function-bind "^1.1.1" 834 | 835 | astral-regex@^2.0.0: 836 | version "2.0.0" 837 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" 838 | integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== 839 | 840 | babel-eslint@^10.1.0: 841 | version "10.1.0" 842 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.1.0.tgz#6968e568a910b78fb3779cdd8b6ac2f479943232" 843 | integrity sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg== 844 | dependencies: 845 | "@babel/code-frame" "^7.0.0" 846 | "@babel/parser" "^7.7.0" 847 | "@babel/traverse" "^7.7.0" 848 | "@babel/types" "^7.7.0" 849 | eslint-visitor-keys "^1.0.0" 850 | resolve "^1.12.0" 851 | 852 | babel-plugin-dynamic-import-node@^2.3.3: 853 | version "2.3.3" 854 | resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3" 855 | integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== 856 | dependencies: 857 | object.assign "^4.1.0" 858 | 859 | babel-plugin-polyfill-corejs2@^0.1.4: 860 | version "0.1.10" 861 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.1.10.tgz#a2c5c245f56c0cac3dbddbf0726a46b24f0f81d1" 862 | integrity sha512-DO95wD4g0A8KRaHKi0D51NdGXzvpqVLnLu5BTvDlpqUEpTmeEtypgC1xqesORaWmiUOQI14UHKlzNd9iZ2G3ZA== 863 | dependencies: 864 | "@babel/compat-data" "^7.13.0" 865 | "@babel/helper-define-polyfill-provider" "^0.1.5" 866 | semver "^6.1.1" 867 | 868 | babel-plugin-polyfill-corejs3@^0.1.3: 869 | version "0.1.7" 870 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.1.7.tgz#80449d9d6f2274912e05d9e182b54816904befd0" 871 | integrity sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw== 872 | dependencies: 873 | "@babel/helper-define-polyfill-provider" "^0.1.5" 874 | core-js-compat "^3.8.1" 875 | 876 | babel-plugin-polyfill-regenerator@^0.1.2: 877 | version "0.1.6" 878 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.1.6.tgz#0fe06a026fe0faa628ccc8ba3302da0a6ce02f3f" 879 | integrity sha512-OUrYG9iKPKz8NxswXbRAdSwF0GhRdIEMTloQATJi4bDuFqrXaXcCUT/VGNrr8pBcjMh1RxZ7Xt9cytVJTJfvMg== 880 | dependencies: 881 | "@babel/helper-define-polyfill-provider" "^0.1.5" 882 | 883 | balanced-match@^1.0.0: 884 | version "1.0.0" 885 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 886 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 887 | 888 | brace-expansion@^1.1.7: 889 | version "1.1.11" 890 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 891 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 892 | dependencies: 893 | balanced-match "^1.0.0" 894 | concat-map "0.0.1" 895 | 896 | braces@^3.0.1: 897 | version "3.0.2" 898 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 899 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 900 | dependencies: 901 | fill-range "^7.0.1" 902 | 903 | browserslist@^4.14.5, browserslist@^4.16.3: 904 | version "4.16.3" 905 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.3.tgz#340aa46940d7db878748567c5dea24a48ddf3717" 906 | integrity sha512-vIyhWmIkULaq04Gt93txdh+j02yX/JzlyhLYbV3YQCn/zvES3JnY7TifHHvvr1w5hTDluNKMkV05cs4vy8Q7sw== 907 | dependencies: 908 | caniuse-lite "^1.0.30001181" 909 | colorette "^1.2.1" 910 | electron-to-chromium "^1.3.649" 911 | escalade "^3.1.1" 912 | node-releases "^1.1.70" 913 | 914 | call-bind@^1.0.0, call-bind@^1.0.2: 915 | version "1.0.2" 916 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 917 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 918 | dependencies: 919 | function-bind "^1.1.1" 920 | get-intrinsic "^1.0.2" 921 | 922 | callsites@^3.0.0: 923 | version "3.1.0" 924 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 925 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 926 | 927 | caniuse-lite@^1.0.30001181: 928 | version "1.0.30001204" 929 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001204.tgz#256c85709a348ec4d175e847a3b515c66e79f2aa" 930 | integrity sha512-JUdjWpcxfJ9IPamy2f5JaRDCaqJOxDzOSKtbdx4rH9VivMd1vIzoPumsJa9LoMIi4Fx2BV2KZOxWhNkBjaYivQ== 931 | 932 | chalk@^2.0.0: 933 | version "2.4.2" 934 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 935 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 936 | dependencies: 937 | ansi-styles "^3.2.1" 938 | escape-string-regexp "^1.0.5" 939 | supports-color "^5.3.0" 940 | 941 | chalk@^4.0.0, chalk@^4.1.0: 942 | version "4.1.0" 943 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" 944 | integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== 945 | dependencies: 946 | ansi-styles "^4.1.0" 947 | supports-color "^7.1.0" 948 | 949 | clean-stack@^2.0.0: 950 | version "2.2.0" 951 | resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" 952 | integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== 953 | 954 | cli-cursor@^3.1.0: 955 | version "3.1.0" 956 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" 957 | integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== 958 | dependencies: 959 | restore-cursor "^3.1.0" 960 | 961 | cli-truncate@^2.1.0: 962 | version "2.1.0" 963 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7" 964 | integrity sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg== 965 | dependencies: 966 | slice-ansi "^3.0.0" 967 | string-width "^4.2.0" 968 | 969 | color-convert@^1.9.0: 970 | version "1.9.3" 971 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 972 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 973 | dependencies: 974 | color-name "1.1.3" 975 | 976 | color-convert@^2.0.1: 977 | version "2.0.1" 978 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 979 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 980 | dependencies: 981 | color-name "~1.1.4" 982 | 983 | color-name@1.1.3: 984 | version "1.1.3" 985 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 986 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 987 | 988 | color-name@~1.1.4: 989 | version "1.1.4" 990 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 991 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 992 | 993 | colorette@^1.2.1: 994 | version "1.2.2" 995 | resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94" 996 | integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w== 997 | 998 | commander@^6.2.0: 999 | version "6.2.1" 1000 | resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" 1001 | integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== 1002 | 1003 | concat-map@0.0.1: 1004 | version "0.0.1" 1005 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1006 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 1007 | 1008 | convert-source-map@^1.7.0: 1009 | version "1.7.0" 1010 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" 1011 | integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== 1012 | dependencies: 1013 | safe-buffer "~5.1.1" 1014 | 1015 | core-js-compat@^3.8.1: 1016 | version "3.9.1" 1017 | resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.9.1.tgz#4e572acfe90aff69d76d8c37759d21a5c59bb455" 1018 | integrity sha512-jXAirMQxrkbiiLsCx9bQPJFA6llDadKMpYrBJQJ3/c4/vsPP/fAf29h24tviRlvwUL6AmY5CHLu2GvjuYviQqA== 1019 | dependencies: 1020 | browserslist "^4.16.3" 1021 | semver "7.0.0" 1022 | 1023 | cosmiconfig@^7.0.0: 1024 | version "7.0.0" 1025 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.0.tgz#ef9b44d773959cae63ddecd122de23853b60f8d3" 1026 | integrity sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA== 1027 | dependencies: 1028 | "@types/parse-json" "^4.0.0" 1029 | import-fresh "^3.2.1" 1030 | parse-json "^5.0.0" 1031 | path-type "^4.0.0" 1032 | yaml "^1.10.0" 1033 | 1034 | cross-spawn@^7.0.0, cross-spawn@^7.0.2: 1035 | version "7.0.3" 1036 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 1037 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 1038 | dependencies: 1039 | path-key "^3.1.0" 1040 | shebang-command "^2.0.0" 1041 | which "^2.0.1" 1042 | 1043 | debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.2.0: 1044 | version "4.3.1" 1045 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" 1046 | integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== 1047 | dependencies: 1048 | ms "2.1.2" 1049 | 1050 | dedent@^0.7.0: 1051 | version "0.7.0" 1052 | resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" 1053 | integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw= 1054 | 1055 | deep-is@^0.1.3: 1056 | version "0.1.3" 1057 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1058 | integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= 1059 | 1060 | define-properties@^1.1.3: 1061 | version "1.1.3" 1062 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 1063 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 1064 | dependencies: 1065 | object-keys "^1.0.12" 1066 | 1067 | doctrine@^2.1.0: 1068 | version "2.1.0" 1069 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 1070 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 1071 | dependencies: 1072 | esutils "^2.0.2" 1073 | 1074 | doctrine@^3.0.0: 1075 | version "3.0.0" 1076 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 1077 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 1078 | dependencies: 1079 | esutils "^2.0.2" 1080 | 1081 | electron-to-chromium@^1.3.649: 1082 | version "1.3.693" 1083 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.693.tgz#5089c506a925c31f93fcb173a003a22e341115dd" 1084 | integrity sha512-vUdsE8yyeu30RecppQtI+XTz2++LWLVEIYmzeCaCRLSdtKZ2eXqdJcrs85KwLiPOPVc6PELgWyXBsfqIvzGZag== 1085 | 1086 | emoji-regex@^8.0.0: 1087 | version "8.0.0" 1088 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 1089 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 1090 | 1091 | end-of-stream@^1.1.0: 1092 | version "1.4.4" 1093 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" 1094 | integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== 1095 | dependencies: 1096 | once "^1.4.0" 1097 | 1098 | enquirer@^2.3.5, enquirer@^2.3.6: 1099 | version "2.3.6" 1100 | resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" 1101 | integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== 1102 | dependencies: 1103 | ansi-colors "^4.1.1" 1104 | 1105 | error-ex@^1.3.1: 1106 | version "1.3.2" 1107 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 1108 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 1109 | dependencies: 1110 | is-arrayish "^0.2.1" 1111 | 1112 | es-abstract@^1.18.0-next.1, es-abstract@^1.18.0-next.2: 1113 | version "1.18.0" 1114 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0.tgz#ab80b359eecb7ede4c298000390bc5ac3ec7b5a4" 1115 | integrity sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw== 1116 | dependencies: 1117 | call-bind "^1.0.2" 1118 | es-to-primitive "^1.2.1" 1119 | function-bind "^1.1.1" 1120 | get-intrinsic "^1.1.1" 1121 | has "^1.0.3" 1122 | has-symbols "^1.0.2" 1123 | is-callable "^1.2.3" 1124 | is-negative-zero "^2.0.1" 1125 | is-regex "^1.1.2" 1126 | is-string "^1.0.5" 1127 | object-inspect "^1.9.0" 1128 | object-keys "^1.1.1" 1129 | object.assign "^4.1.2" 1130 | string.prototype.trimend "^1.0.4" 1131 | string.prototype.trimstart "^1.0.4" 1132 | unbox-primitive "^1.0.0" 1133 | 1134 | es-to-primitive@^1.2.1: 1135 | version "1.2.1" 1136 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 1137 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 1138 | dependencies: 1139 | is-callable "^1.1.4" 1140 | is-date-object "^1.0.1" 1141 | is-symbol "^1.0.2" 1142 | 1143 | escalade@^3.1.1: 1144 | version "3.1.1" 1145 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 1146 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 1147 | 1148 | escape-string-regexp@^1.0.5: 1149 | version "1.0.5" 1150 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1151 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 1152 | 1153 | eslint-config-prettier@^6.10.1: 1154 | version "6.15.0" 1155 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.15.0.tgz#7f93f6cb7d45a92f1537a70ecc06366e1ac6fed9" 1156 | integrity sha512-a1+kOYLR8wMGustcgAjdydMsQ2A/2ipRPwRKUmfYaSxc9ZPcrku080Ctl6zrZzZNs/U82MjSv+qKREkoq3bJaw== 1157 | dependencies: 1158 | get-stdin "^6.0.0" 1159 | 1160 | eslint-plugin-eslint-comments@^3.1.2: 1161 | version "3.2.0" 1162 | resolved "https://registry.yarnpkg.com/eslint-plugin-eslint-comments/-/eslint-plugin-eslint-comments-3.2.0.tgz#9e1cd7b4413526abb313933071d7aba05ca12ffa" 1163 | integrity sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ== 1164 | dependencies: 1165 | escape-string-regexp "^1.0.5" 1166 | ignore "^5.0.5" 1167 | 1168 | eslint-plugin-flowtype@2.50.3: 1169 | version "2.50.3" 1170 | resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.50.3.tgz#61379d6dce1d010370acd6681740fd913d68175f" 1171 | integrity sha512-X+AoKVOr7Re0ko/yEXyM5SSZ0tazc6ffdIOocp2fFUlWoDt7DV0Bz99mngOkAFLOAWjqRA5jPwqUCbrx13XoxQ== 1172 | dependencies: 1173 | lodash "^4.17.10" 1174 | 1175 | eslint-plugin-jest@22.4.1: 1176 | version "22.4.1" 1177 | resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-22.4.1.tgz#a5fd6f7a2a41388d16f527073b778013c5189a9c" 1178 | integrity sha512-gcLfn6P2PrFAVx3AobaOzlIEevpAEf9chTpFZz7bYfc7pz8XRv7vuKTIE4hxPKZSha6XWKKplDQ0x9Pq8xX2mg== 1179 | 1180 | eslint-plugin-prettier@3.1.2: 1181 | version "3.1.2" 1182 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.2.tgz#432e5a667666ab84ce72f945c72f77d996a5c9ba" 1183 | integrity sha512-GlolCC9y3XZfv3RQfwGew7NnuFDKsfI4lbvRK+PIIo23SFH+LemGs4cKwzAaRa+Mdb+lQO/STaIayno8T5sJJA== 1184 | dependencies: 1185 | prettier-linter-helpers "^1.0.0" 1186 | 1187 | eslint-plugin-prettier@^3.3.1: 1188 | version "3.3.1" 1189 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.3.1.tgz#7079cfa2497078905011e6f82e8dd8453d1371b7" 1190 | integrity sha512-Rq3jkcFY8RYeQLgk2cCwuc0P7SEFwDravPhsJZOQ5N4YI4DSg50NyqJ/9gdZHzQlHf8MvafSesbNJCcP/FF6pQ== 1191 | dependencies: 1192 | prettier-linter-helpers "^1.0.0" 1193 | 1194 | eslint-plugin-react-hooks@^4.0.4: 1195 | version "4.2.0" 1196 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.2.0.tgz#8c229c268d468956334c943bb45fc860280f5556" 1197 | integrity sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ== 1198 | 1199 | eslint-plugin-react-native-globals@^0.1.1: 1200 | version "0.1.2" 1201 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-native-globals/-/eslint-plugin-react-native-globals-0.1.2.tgz#ee1348bc2ceb912303ce6bdbd22e2f045ea86ea2" 1202 | integrity sha512-9aEPf1JEpiTjcFAmmyw8eiIXmcNZOqaZyHO77wgm0/dWfT/oxC1SrIq8ET38pMxHYrcB6Uew+TzUVsBeczF88g== 1203 | 1204 | eslint-plugin-react-native@^3.8.1: 1205 | version "3.10.0" 1206 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-native/-/eslint-plugin-react-native-3.10.0.tgz#240f7e6979a908af3dfd9ba9652434c33f4d64cd" 1207 | integrity sha512-4f5+hHYYq5wFhB5eptkPEAR7FfvqbS7AzScUOANfAMZtYw5qgnCxRq45bpfBaQF+iyPMim5Q8pubcpvLv75NAg== 1208 | dependencies: 1209 | "@babel/traverse" "^7.7.4" 1210 | eslint-plugin-react-native-globals "^0.1.1" 1211 | 1212 | eslint-plugin-react@^7.20.0: 1213 | version "7.22.0" 1214 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.22.0.tgz#3d1c542d1d3169c45421c1215d9470e341707269" 1215 | integrity sha512-p30tuX3VS+NWv9nQot9xIGAHBXR0+xJVaZriEsHoJrASGCJZDJ8JLNM0YqKqI0AKm6Uxaa1VUHoNEibxRCMQHA== 1216 | dependencies: 1217 | array-includes "^3.1.1" 1218 | array.prototype.flatmap "^1.2.3" 1219 | doctrine "^2.1.0" 1220 | has "^1.0.3" 1221 | jsx-ast-utils "^2.4.1 || ^3.0.0" 1222 | object.entries "^1.1.2" 1223 | object.fromentries "^2.0.2" 1224 | object.values "^1.1.1" 1225 | prop-types "^15.7.2" 1226 | resolve "^1.18.1" 1227 | string.prototype.matchall "^4.0.2" 1228 | 1229 | eslint-scope@^5.0.0, eslint-scope@^5.1.1: 1230 | version "5.1.1" 1231 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" 1232 | integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== 1233 | dependencies: 1234 | esrecurse "^4.3.0" 1235 | estraverse "^4.1.1" 1236 | 1237 | eslint-utils@^2.0.0, eslint-utils@^2.1.0: 1238 | version "2.1.0" 1239 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" 1240 | integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== 1241 | dependencies: 1242 | eslint-visitor-keys "^1.1.0" 1243 | 1244 | eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: 1245 | version "1.3.0" 1246 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" 1247 | integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== 1248 | 1249 | eslint-visitor-keys@^2.0.0: 1250 | version "2.0.0" 1251 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz#21fdc8fbcd9c795cc0321f0563702095751511a8" 1252 | integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ== 1253 | 1254 | eslint@^7.21.0: 1255 | version "7.22.0" 1256 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.22.0.tgz#07ecc61052fec63661a2cab6bd507127c07adc6f" 1257 | integrity sha512-3VawOtjSJUQiiqac8MQc+w457iGLfuNGLFn8JmF051tTKbh5/x/0vlcEj8OgDCaw7Ysa2Jn8paGshV7x2abKXg== 1258 | dependencies: 1259 | "@babel/code-frame" "7.12.11" 1260 | "@eslint/eslintrc" "^0.4.0" 1261 | ajv "^6.10.0" 1262 | chalk "^4.0.0" 1263 | cross-spawn "^7.0.2" 1264 | debug "^4.0.1" 1265 | doctrine "^3.0.0" 1266 | enquirer "^2.3.5" 1267 | eslint-scope "^5.1.1" 1268 | eslint-utils "^2.1.0" 1269 | eslint-visitor-keys "^2.0.0" 1270 | espree "^7.3.1" 1271 | esquery "^1.4.0" 1272 | esutils "^2.0.2" 1273 | file-entry-cache "^6.0.1" 1274 | functional-red-black-tree "^1.0.1" 1275 | glob-parent "^5.0.0" 1276 | globals "^13.6.0" 1277 | ignore "^4.0.6" 1278 | import-fresh "^3.0.0" 1279 | imurmurhash "^0.1.4" 1280 | is-glob "^4.0.0" 1281 | js-yaml "^3.13.1" 1282 | json-stable-stringify-without-jsonify "^1.0.1" 1283 | levn "^0.4.1" 1284 | lodash "^4.17.21" 1285 | minimatch "^3.0.4" 1286 | natural-compare "^1.4.0" 1287 | optionator "^0.9.1" 1288 | progress "^2.0.0" 1289 | regexpp "^3.1.0" 1290 | semver "^7.2.1" 1291 | strip-ansi "^6.0.0" 1292 | strip-json-comments "^3.1.0" 1293 | table "^6.0.4" 1294 | text-table "^0.2.0" 1295 | v8-compile-cache "^2.0.3" 1296 | 1297 | espree@^7.3.0, espree@^7.3.1: 1298 | version "7.3.1" 1299 | resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6" 1300 | integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g== 1301 | dependencies: 1302 | acorn "^7.4.0" 1303 | acorn-jsx "^5.3.1" 1304 | eslint-visitor-keys "^1.3.0" 1305 | 1306 | esprima@^4.0.0: 1307 | version "4.0.1" 1308 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1309 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 1310 | 1311 | esquery@^1.4.0: 1312 | version "1.4.0" 1313 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" 1314 | integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== 1315 | dependencies: 1316 | estraverse "^5.1.0" 1317 | 1318 | esrecurse@^4.3.0: 1319 | version "4.3.0" 1320 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 1321 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 1322 | dependencies: 1323 | estraverse "^5.2.0" 1324 | 1325 | estraverse@^4.1.1: 1326 | version "4.3.0" 1327 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" 1328 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== 1329 | 1330 | estraverse@^5.1.0, estraverse@^5.2.0: 1331 | version "5.2.0" 1332 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880" 1333 | integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ== 1334 | 1335 | esutils@^2.0.2: 1336 | version "2.0.3" 1337 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 1338 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1339 | 1340 | execa@^4.1.0: 1341 | version "4.1.0" 1342 | resolved "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a" 1343 | integrity sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA== 1344 | dependencies: 1345 | cross-spawn "^7.0.0" 1346 | get-stream "^5.0.0" 1347 | human-signals "^1.1.1" 1348 | is-stream "^2.0.0" 1349 | merge-stream "^2.0.0" 1350 | npm-run-path "^4.0.0" 1351 | onetime "^5.1.0" 1352 | signal-exit "^3.0.2" 1353 | strip-final-newline "^2.0.0" 1354 | 1355 | fast-deep-equal@^3.1.1: 1356 | version "3.1.3" 1357 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 1358 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 1359 | 1360 | fast-diff@^1.1.2: 1361 | version "1.2.0" 1362 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" 1363 | integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== 1364 | 1365 | fast-json-stable-stringify@^2.0.0: 1366 | version "2.1.0" 1367 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 1368 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 1369 | 1370 | fast-levenshtein@^2.0.6: 1371 | version "2.0.6" 1372 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1373 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 1374 | 1375 | figures@^3.2.0: 1376 | version "3.2.0" 1377 | resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" 1378 | integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== 1379 | dependencies: 1380 | escape-string-regexp "^1.0.5" 1381 | 1382 | file-entry-cache@^6.0.1: 1383 | version "6.0.1" 1384 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" 1385 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 1386 | dependencies: 1387 | flat-cache "^3.0.4" 1388 | 1389 | fill-range@^7.0.1: 1390 | version "7.0.1" 1391 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 1392 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 1393 | dependencies: 1394 | to-regex-range "^5.0.1" 1395 | 1396 | flat-cache@^3.0.4: 1397 | version "3.0.4" 1398 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" 1399 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== 1400 | dependencies: 1401 | flatted "^3.1.0" 1402 | rimraf "^3.0.2" 1403 | 1404 | flatted@^3.1.0: 1405 | version "3.1.1" 1406 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.1.1.tgz#c4b489e80096d9df1dfc97c79871aea7c617c469" 1407 | integrity sha512-zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA== 1408 | 1409 | fs.realpath@^1.0.0: 1410 | version "1.0.0" 1411 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1412 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1413 | 1414 | function-bind@^1.1.1: 1415 | version "1.1.1" 1416 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1417 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1418 | 1419 | functional-red-black-tree@^1.0.1: 1420 | version "1.0.1" 1421 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1422 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= 1423 | 1424 | gensync@^1.0.0-beta.2: 1425 | version "1.0.0-beta.2" 1426 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" 1427 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== 1428 | 1429 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1: 1430 | version "1.1.1" 1431 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" 1432 | integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== 1433 | dependencies: 1434 | function-bind "^1.1.1" 1435 | has "^1.0.3" 1436 | has-symbols "^1.0.1" 1437 | 1438 | get-own-enumerable-property-symbols@^3.0.0: 1439 | version "3.0.2" 1440 | resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664" 1441 | integrity sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g== 1442 | 1443 | get-stdin@^6.0.0: 1444 | version "6.0.0" 1445 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" 1446 | integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g== 1447 | 1448 | get-stream@^5.0.0: 1449 | version "5.2.0" 1450 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" 1451 | integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== 1452 | dependencies: 1453 | pump "^3.0.0" 1454 | 1455 | glob-parent@^5.0.0: 1456 | version "5.1.2" 1457 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 1458 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 1459 | dependencies: 1460 | is-glob "^4.0.1" 1461 | 1462 | glob@^7.1.3, glob@^7.1.6: 1463 | version "7.1.6" 1464 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 1465 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 1466 | dependencies: 1467 | fs.realpath "^1.0.0" 1468 | inflight "^1.0.4" 1469 | inherits "2" 1470 | minimatch "^3.0.4" 1471 | once "^1.3.0" 1472 | path-is-absolute "^1.0.0" 1473 | 1474 | globals@^11.1.0: 1475 | version "11.12.0" 1476 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1477 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1478 | 1479 | globals@^12.1.0: 1480 | version "12.4.0" 1481 | resolved "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8" 1482 | integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg== 1483 | dependencies: 1484 | type-fest "^0.8.1" 1485 | 1486 | globals@^13.6.0: 1487 | version "13.7.0" 1488 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.7.0.tgz#aed3bcefd80ad3ec0f0be2cf0c895110c0591795" 1489 | integrity sha512-Aipsz6ZKRxa/xQkZhNg0qIWXT6x6rD46f6x/PCnBomlttdIyAPak4YD9jTmKpZ72uROSMU87qJtcgpgHaVchiA== 1490 | dependencies: 1491 | type-fest "^0.20.2" 1492 | 1493 | has-bigints@^1.0.0: 1494 | version "1.0.1" 1495 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113" 1496 | integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA== 1497 | 1498 | has-flag@^3.0.0: 1499 | version "3.0.0" 1500 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1501 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1502 | 1503 | has-flag@^4.0.0: 1504 | version "4.0.0" 1505 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1506 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1507 | 1508 | has-symbols@^1.0.0, has-symbols@^1.0.1, has-symbols@^1.0.2: 1509 | version "1.0.2" 1510 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423" 1511 | integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== 1512 | 1513 | has@^1.0.3: 1514 | version "1.0.3" 1515 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1516 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1517 | dependencies: 1518 | function-bind "^1.1.1" 1519 | 1520 | human-signals@^1.1.1: 1521 | version "1.1.1" 1522 | resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" 1523 | integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== 1524 | 1525 | husky@^5.1.3: 1526 | version "5.2.0" 1527 | resolved "https://registry.yarnpkg.com/husky/-/husky-5.2.0.tgz#fc5e1c2300d34855d47de4753607d00943fc0802" 1528 | integrity sha512-AM8T/auHXRBxlrfPVLKP6jt49GCM2Zz47m8G3FOMsLmTv8Dj/fKVWE0Rh2d4Qrvmy131xEsdQnb3OXRib67PGg== 1529 | 1530 | ignore@^4.0.6: 1531 | version "4.0.6" 1532 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" 1533 | integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== 1534 | 1535 | ignore@^5.0.5: 1536 | version "5.1.8" 1537 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57" 1538 | integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== 1539 | 1540 | import-fresh@^3.0.0, import-fresh@^3.2.1: 1541 | version "3.3.0" 1542 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 1543 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 1544 | dependencies: 1545 | parent-module "^1.0.0" 1546 | resolve-from "^4.0.0" 1547 | 1548 | imurmurhash@^0.1.4: 1549 | version "0.1.4" 1550 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1551 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 1552 | 1553 | indent-string@^4.0.0: 1554 | version "4.0.0" 1555 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" 1556 | integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== 1557 | 1558 | inflight@^1.0.4: 1559 | version "1.0.6" 1560 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1561 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1562 | dependencies: 1563 | once "^1.3.0" 1564 | wrappy "1" 1565 | 1566 | inherits@2: 1567 | version "2.0.4" 1568 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1569 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1570 | 1571 | internal-slot@^1.0.3: 1572 | version "1.0.3" 1573 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" 1574 | integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== 1575 | dependencies: 1576 | get-intrinsic "^1.1.0" 1577 | has "^1.0.3" 1578 | side-channel "^1.0.4" 1579 | 1580 | is-arrayish@^0.2.1: 1581 | version "0.2.1" 1582 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1583 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 1584 | 1585 | is-bigint@^1.0.1: 1586 | version "1.0.1" 1587 | resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.1.tgz#6923051dfcbc764278540b9ce0e6b3213aa5ebc2" 1588 | integrity sha512-J0ELF4yHFxHy0cmSxZuheDOz2luOdVvqjwmEcj8H/L1JHeuEDSDbeRP+Dk9kFVk5RTFzbucJ2Kb9F7ixY2QaCg== 1589 | 1590 | is-boolean-object@^1.1.0: 1591 | version "1.1.0" 1592 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.0.tgz#e2aaad3a3a8fca34c28f6eee135b156ed2587ff0" 1593 | integrity sha512-a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA== 1594 | dependencies: 1595 | call-bind "^1.0.0" 1596 | 1597 | is-callable@^1.1.4, is-callable@^1.2.3: 1598 | version "1.2.3" 1599 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.3.tgz#8b1e0500b73a1d76c70487636f368e519de8db8e" 1600 | integrity sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ== 1601 | 1602 | is-core-module@^2.2.0: 1603 | version "2.2.0" 1604 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.2.0.tgz#97037ef3d52224d85163f5597b2b63d9afed981a" 1605 | integrity sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ== 1606 | dependencies: 1607 | has "^1.0.3" 1608 | 1609 | is-date-object@^1.0.1: 1610 | version "1.0.2" 1611 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" 1612 | integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== 1613 | 1614 | is-extglob@^2.1.1: 1615 | version "2.1.1" 1616 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1617 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 1618 | 1619 | is-fullwidth-code-point@^3.0.0: 1620 | version "3.0.0" 1621 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1622 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1623 | 1624 | is-glob@^4.0.0, is-glob@^4.0.1: 1625 | version "4.0.1" 1626 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 1627 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 1628 | dependencies: 1629 | is-extglob "^2.1.1" 1630 | 1631 | is-negative-zero@^2.0.1: 1632 | version "2.0.1" 1633 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24" 1634 | integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w== 1635 | 1636 | is-number-object@^1.0.4: 1637 | version "1.0.4" 1638 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.4.tgz#36ac95e741cf18b283fc1ddf5e83da798e3ec197" 1639 | integrity sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw== 1640 | 1641 | is-number@^7.0.0: 1642 | version "7.0.0" 1643 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1644 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1645 | 1646 | is-obj@^1.0.1: 1647 | version "1.0.1" 1648 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1649 | integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= 1650 | 1651 | is-regex@^1.1.2: 1652 | version "1.1.2" 1653 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.2.tgz#81c8ebde4db142f2cf1c53fc86d6a45788266251" 1654 | integrity sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg== 1655 | dependencies: 1656 | call-bind "^1.0.2" 1657 | has-symbols "^1.0.1" 1658 | 1659 | is-regexp@^1.0.0: 1660 | version "1.0.0" 1661 | resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" 1662 | integrity sha1-/S2INUXEa6xaYz57mgnof6LLUGk= 1663 | 1664 | is-stream@^2.0.0: 1665 | version "2.0.0" 1666 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" 1667 | integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== 1668 | 1669 | is-string@^1.0.5: 1670 | version "1.0.5" 1671 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6" 1672 | integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ== 1673 | 1674 | is-symbol@^1.0.2, is-symbol@^1.0.3: 1675 | version "1.0.3" 1676 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" 1677 | integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== 1678 | dependencies: 1679 | has-symbols "^1.0.1" 1680 | 1681 | is-unicode-supported@^0.1.0: 1682 | version "0.1.0" 1683 | resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" 1684 | integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== 1685 | 1686 | isexe@^2.0.0: 1687 | version "2.0.0" 1688 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1689 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1690 | 1691 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 1692 | version "4.0.0" 1693 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1694 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1695 | 1696 | js-yaml@^3.13.1: 1697 | version "3.14.1" 1698 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" 1699 | integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== 1700 | dependencies: 1701 | argparse "^1.0.7" 1702 | esprima "^4.0.0" 1703 | 1704 | jsesc@^2.5.1: 1705 | version "2.5.2" 1706 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 1707 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 1708 | 1709 | jsesc@~0.5.0: 1710 | version "0.5.0" 1711 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1712 | integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= 1713 | 1714 | json-parse-even-better-errors@^2.3.0: 1715 | version "2.3.1" 1716 | resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" 1717 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 1718 | 1719 | json-schema-traverse@^0.4.1: 1720 | version "0.4.1" 1721 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1722 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1723 | 1724 | json-schema-traverse@^1.0.0: 1725 | version "1.0.0" 1726 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" 1727 | integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== 1728 | 1729 | json-stable-stringify-without-jsonify@^1.0.1: 1730 | version "1.0.1" 1731 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1732 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= 1733 | 1734 | json5@^2.1.2: 1735 | version "2.2.0" 1736 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3" 1737 | integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA== 1738 | dependencies: 1739 | minimist "^1.2.5" 1740 | 1741 | "jsx-ast-utils@^2.4.1 || ^3.0.0": 1742 | version "3.2.0" 1743 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.2.0.tgz#41108d2cec408c3453c1bbe8a4aae9e1e2bd8f82" 1744 | integrity sha512-EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q== 1745 | dependencies: 1746 | array-includes "^3.1.2" 1747 | object.assign "^4.1.2" 1748 | 1749 | levn@^0.4.1: 1750 | version "0.4.1" 1751 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 1752 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 1753 | dependencies: 1754 | prelude-ls "^1.2.1" 1755 | type-check "~0.4.0" 1756 | 1757 | lines-and-columns@^1.1.6: 1758 | version "1.1.6" 1759 | resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" 1760 | integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= 1761 | 1762 | lint-staged@^10.5.4: 1763 | version "10.5.4" 1764 | resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-10.5.4.tgz#cd153b5f0987d2371fc1d2847a409a2fe705b665" 1765 | integrity sha512-EechC3DdFic/TdOPgj/RB3FicqE6932LTHCUm0Y2fsD9KGlLB+RwJl2q1IYBIvEsKzDOgn0D4gll+YxG5RsrKg== 1766 | dependencies: 1767 | chalk "^4.1.0" 1768 | cli-truncate "^2.1.0" 1769 | commander "^6.2.0" 1770 | cosmiconfig "^7.0.0" 1771 | debug "^4.2.0" 1772 | dedent "^0.7.0" 1773 | enquirer "^2.3.6" 1774 | execa "^4.1.0" 1775 | listr2 "^3.2.2" 1776 | log-symbols "^4.0.0" 1777 | micromatch "^4.0.2" 1778 | normalize-path "^3.0.0" 1779 | please-upgrade-node "^3.2.0" 1780 | string-argv "0.3.1" 1781 | stringify-object "^3.3.0" 1782 | 1783 | listr2@^3.2.2: 1784 | version "3.4.3" 1785 | resolved "https://registry.yarnpkg.com/listr2/-/listr2-3.4.3.tgz#543bcf849d5ffc70602708b69d2daac73f751699" 1786 | integrity sha512-wZmkzNiuinOfwrGqAwTCcPw6aKQGTAMGXwG5xeU1WpDjJNeBA35jGBeWxR3OF+R6Yl5Y3dRG+3vE8t6PDcSNHA== 1787 | dependencies: 1788 | chalk "^4.1.0" 1789 | cli-truncate "^2.1.0" 1790 | figures "^3.2.0" 1791 | indent-string "^4.0.0" 1792 | log-update "^4.0.0" 1793 | p-map "^4.0.0" 1794 | rxjs "^6.6.6" 1795 | through "^2.3.8" 1796 | wrap-ansi "^7.0.0" 1797 | 1798 | lodash.debounce@^4.0.8: 1799 | version "4.0.8" 1800 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" 1801 | integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168= 1802 | 1803 | lodash@^4.17.10, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21: 1804 | version "4.17.21" 1805 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 1806 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 1807 | 1808 | log-symbols@^4.0.0: 1809 | version "4.1.0" 1810 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" 1811 | integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== 1812 | dependencies: 1813 | chalk "^4.1.0" 1814 | is-unicode-supported "^0.1.0" 1815 | 1816 | log-update@^4.0.0: 1817 | version "4.0.0" 1818 | resolved "https://registry.yarnpkg.com/log-update/-/log-update-4.0.0.tgz#589ecd352471f2a1c0c570287543a64dfd20e0a1" 1819 | integrity sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg== 1820 | dependencies: 1821 | ansi-escapes "^4.3.0" 1822 | cli-cursor "^3.1.0" 1823 | slice-ansi "^4.0.0" 1824 | wrap-ansi "^6.2.0" 1825 | 1826 | loose-envify@^1.4.0: 1827 | version "1.4.0" 1828 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1829 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 1830 | dependencies: 1831 | js-tokens "^3.0.0 || ^4.0.0" 1832 | 1833 | lru-cache@^6.0.0: 1834 | version "6.0.0" 1835 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1836 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1837 | dependencies: 1838 | yallist "^4.0.0" 1839 | 1840 | merge-stream@^2.0.0: 1841 | version "2.0.0" 1842 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 1843 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 1844 | 1845 | metro-react-native-babel-preset@^0.65.2: 1846 | version "0.65.2" 1847 | resolved "https://registry.yarnpkg.com/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.65.2.tgz#786cbb8b21daa614cbbebcc5c3ce72b6b0710892" 1848 | integrity sha512-jBpZwJwnGHXUnzoZl81LlUzvec2dh1llMJ2A7pbTMuCKhx4LjqOGEE1E+hkNqj/Uh7gi6tCPy5JYSCo9Ue/Vog== 1849 | dependencies: 1850 | "@babel/core" "^7.0.0" 1851 | "@babel/plugin-proposal-class-properties" "^7.0.0" 1852 | "@babel/plugin-proposal-export-default-from" "^7.0.0" 1853 | "@babel/plugin-proposal-nullish-coalescing-operator" "^7.0.0" 1854 | "@babel/plugin-proposal-object-rest-spread" "^7.0.0" 1855 | "@babel/plugin-proposal-optional-catch-binding" "^7.0.0" 1856 | "@babel/plugin-proposal-optional-chaining" "^7.0.0" 1857 | "@babel/plugin-syntax-dynamic-import" "^7.0.0" 1858 | "@babel/plugin-syntax-export-default-from" "^7.0.0" 1859 | "@babel/plugin-syntax-flow" "^7.2.0" 1860 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.0.0" 1861 | "@babel/plugin-syntax-optional-chaining" "^7.0.0" 1862 | "@babel/plugin-transform-arrow-functions" "^7.0.0" 1863 | "@babel/plugin-transform-async-to-generator" "^7.0.0" 1864 | "@babel/plugin-transform-block-scoping" "^7.0.0" 1865 | "@babel/plugin-transform-classes" "^7.0.0" 1866 | "@babel/plugin-transform-computed-properties" "^7.0.0" 1867 | "@babel/plugin-transform-destructuring" "^7.0.0" 1868 | "@babel/plugin-transform-exponentiation-operator" "^7.0.0" 1869 | "@babel/plugin-transform-flow-strip-types" "^7.0.0" 1870 | "@babel/plugin-transform-for-of" "^7.0.0" 1871 | "@babel/plugin-transform-function-name" "^7.0.0" 1872 | "@babel/plugin-transform-literals" "^7.0.0" 1873 | "@babel/plugin-transform-modules-commonjs" "^7.0.0" 1874 | "@babel/plugin-transform-object-assign" "^7.0.0" 1875 | "@babel/plugin-transform-parameters" "^7.0.0" 1876 | "@babel/plugin-transform-react-display-name" "^7.0.0" 1877 | "@babel/plugin-transform-react-jsx" "^7.0.0" 1878 | "@babel/plugin-transform-react-jsx-self" "^7.0.0" 1879 | "@babel/plugin-transform-react-jsx-source" "^7.0.0" 1880 | "@babel/plugin-transform-regenerator" "^7.0.0" 1881 | "@babel/plugin-transform-runtime" "^7.0.0" 1882 | "@babel/plugin-transform-shorthand-properties" "^7.0.0" 1883 | "@babel/plugin-transform-spread" "^7.0.0" 1884 | "@babel/plugin-transform-sticky-regex" "^7.0.0" 1885 | "@babel/plugin-transform-template-literals" "^7.0.0" 1886 | "@babel/plugin-transform-typescript" "^7.5.0" 1887 | "@babel/plugin-transform-unicode-regex" "^7.0.0" 1888 | "@babel/template" "^7.0.0" 1889 | react-refresh "^0.4.0" 1890 | 1891 | micromatch@^4.0.2: 1892 | version "4.0.2" 1893 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259" 1894 | integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q== 1895 | dependencies: 1896 | braces "^3.0.1" 1897 | picomatch "^2.0.5" 1898 | 1899 | mimic-fn@^2.1.0: 1900 | version "2.1.0" 1901 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 1902 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 1903 | 1904 | minimatch@^3.0.4: 1905 | version "3.0.4" 1906 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1907 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 1908 | dependencies: 1909 | brace-expansion "^1.1.7" 1910 | 1911 | minimist@^1.2.5: 1912 | version "1.2.5" 1913 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 1914 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 1915 | 1916 | ms@2.1.2: 1917 | version "2.1.2" 1918 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1919 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1920 | 1921 | natural-compare@^1.4.0: 1922 | version "1.4.0" 1923 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1924 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 1925 | 1926 | node-releases@^1.1.70: 1927 | version "1.1.71" 1928 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.71.tgz#cb1334b179896b1c89ecfdd4b725fb7bbdfc7dbb" 1929 | integrity sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg== 1930 | 1931 | normalize-path@^3.0.0: 1932 | version "3.0.0" 1933 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 1934 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 1935 | 1936 | npm-run-path@^4.0.0: 1937 | version "4.0.1" 1938 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" 1939 | integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== 1940 | dependencies: 1941 | path-key "^3.0.0" 1942 | 1943 | object-assign@^4.1.1: 1944 | version "4.1.1" 1945 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1946 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 1947 | 1948 | object-inspect@^1.9.0: 1949 | version "1.9.0" 1950 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.9.0.tgz#c90521d74e1127b67266ded3394ad6116986533a" 1951 | integrity sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw== 1952 | 1953 | object-keys@^1.0.12, object-keys@^1.1.1: 1954 | version "1.1.1" 1955 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1956 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1957 | 1958 | object.assign@^4.1.0, object.assign@^4.1.2: 1959 | version "4.1.2" 1960 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" 1961 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== 1962 | dependencies: 1963 | call-bind "^1.0.0" 1964 | define-properties "^1.1.3" 1965 | has-symbols "^1.0.1" 1966 | object-keys "^1.1.1" 1967 | 1968 | object.entries@^1.1.2: 1969 | version "1.1.3" 1970 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.3.tgz#c601c7f168b62374541a07ddbd3e2d5e4f7711a6" 1971 | integrity sha512-ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg== 1972 | dependencies: 1973 | call-bind "^1.0.0" 1974 | define-properties "^1.1.3" 1975 | es-abstract "^1.18.0-next.1" 1976 | has "^1.0.3" 1977 | 1978 | object.fromentries@^2.0.2: 1979 | version "2.0.4" 1980 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.4.tgz#26e1ba5c4571c5c6f0890cef4473066456a120b8" 1981 | integrity sha512-EsFBshs5RUUpQEY1D4q/m59kMfz4YJvxuNCJcv/jWwOJr34EaVnG11ZrZa0UHB3wnzV1wx8m58T4hQL8IuNXlQ== 1982 | dependencies: 1983 | call-bind "^1.0.2" 1984 | define-properties "^1.1.3" 1985 | es-abstract "^1.18.0-next.2" 1986 | has "^1.0.3" 1987 | 1988 | object.values@^1.1.1: 1989 | version "1.1.3" 1990 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.3.tgz#eaa8b1e17589f02f698db093f7c62ee1699742ee" 1991 | integrity sha512-nkF6PfDB9alkOUxpf1HNm/QlkeW3SReqL5WXeBLpEJJnlPSvRaDQpW3gQTksTN3fgJX4hL42RzKyOin6ff3tyw== 1992 | dependencies: 1993 | call-bind "^1.0.2" 1994 | define-properties "^1.1.3" 1995 | es-abstract "^1.18.0-next.2" 1996 | has "^1.0.3" 1997 | 1998 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 1999 | version "1.4.0" 2000 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2001 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 2002 | dependencies: 2003 | wrappy "1" 2004 | 2005 | onetime@^5.1.0: 2006 | version "5.1.2" 2007 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" 2008 | integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== 2009 | dependencies: 2010 | mimic-fn "^2.1.0" 2011 | 2012 | optionator@^0.9.1: 2013 | version "0.9.1" 2014 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" 2015 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 2016 | dependencies: 2017 | deep-is "^0.1.3" 2018 | fast-levenshtein "^2.0.6" 2019 | levn "^0.4.1" 2020 | prelude-ls "^1.2.1" 2021 | type-check "^0.4.0" 2022 | word-wrap "^1.2.3" 2023 | 2024 | p-map@^4.0.0: 2025 | version "4.0.0" 2026 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" 2027 | integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== 2028 | dependencies: 2029 | aggregate-error "^3.0.0" 2030 | 2031 | parent-module@^1.0.0: 2032 | version "1.0.1" 2033 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 2034 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 2035 | dependencies: 2036 | callsites "^3.0.0" 2037 | 2038 | parse-json@^5.0.0: 2039 | version "5.2.0" 2040 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" 2041 | integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== 2042 | dependencies: 2043 | "@babel/code-frame" "^7.0.0" 2044 | error-ex "^1.3.1" 2045 | json-parse-even-better-errors "^2.3.0" 2046 | lines-and-columns "^1.1.6" 2047 | 2048 | path-is-absolute@^1.0.0: 2049 | version "1.0.1" 2050 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2051 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2052 | 2053 | path-key@^3.0.0, path-key@^3.1.0: 2054 | version "3.1.1" 2055 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 2056 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 2057 | 2058 | path-parse@^1.0.6: 2059 | version "1.0.6" 2060 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 2061 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 2062 | 2063 | path-type@^4.0.0: 2064 | version "4.0.0" 2065 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 2066 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 2067 | 2068 | picomatch@^2.0.5: 2069 | version "2.2.2" 2070 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" 2071 | integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== 2072 | 2073 | please-upgrade-node@^3.2.0: 2074 | version "3.2.0" 2075 | resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942" 2076 | integrity sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg== 2077 | dependencies: 2078 | semver-compare "^1.0.0" 2079 | 2080 | prelude-ls@^1.2.1: 2081 | version "1.2.1" 2082 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 2083 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 2084 | 2085 | prettier-linter-helpers@^1.0.0: 2086 | version "1.0.0" 2087 | resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" 2088 | integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== 2089 | dependencies: 2090 | fast-diff "^1.1.2" 2091 | 2092 | prettier@^2.0.2, prettier@^2.2.1: 2093 | version "2.2.1" 2094 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.2.1.tgz#795a1a78dd52f073da0cd42b21f9c91381923ff5" 2095 | integrity sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q== 2096 | 2097 | progress@^2.0.0: 2098 | version "2.0.3" 2099 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 2100 | integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== 2101 | 2102 | prop-types@^15.6.2, prop-types@^15.7.2: 2103 | version "15.7.2" 2104 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" 2105 | integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ== 2106 | dependencies: 2107 | loose-envify "^1.4.0" 2108 | object-assign "^4.1.1" 2109 | react-is "^16.8.1" 2110 | 2111 | pump@^3.0.0: 2112 | version "3.0.0" 2113 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 2114 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 2115 | dependencies: 2116 | end-of-stream "^1.1.0" 2117 | once "^1.3.1" 2118 | 2119 | punycode@^2.1.0: 2120 | version "2.1.1" 2121 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 2122 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 2123 | 2124 | react-is@^16.8.1: 2125 | version "16.13.1" 2126 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" 2127 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== 2128 | 2129 | react-native-animatable@1.3.3: 2130 | version "1.3.3" 2131 | resolved "https://registry.yarnpkg.com/react-native-animatable/-/react-native-animatable-1.3.3.tgz#a13a4af8258e3bb14d0a9d839917e9bb9274ec8a" 2132 | integrity sha512-2ckIxZQAsvWn25Ho+DK3d1mXIgj7tITkrS4pYDvx96WyOttSvzzFeQnM2od0+FUMzILbdHDsDEqZvnz1DYNQ1w== 2133 | dependencies: 2134 | prop-types "^15.7.2" 2135 | 2136 | react-native-modal@^13.0.1: 2137 | version "13.0.1" 2138 | resolved "https://registry.yarnpkg.com/react-native-modal/-/react-native-modal-13.0.1.tgz#691f1e646abb96fa82c1788bf18a16d585da37cd" 2139 | integrity sha512-UB+mjmUtf+miaG/sDhOikRfBOv0gJdBU2ZE1HtFWp6UixW9jCk/bhGdHUgmZljbPpp0RaO/6YiMmQSSK3kkMaw== 2140 | dependencies: 2141 | prop-types "^15.6.2" 2142 | react-native-animatable "1.3.3" 2143 | 2144 | react-refresh@^0.4.0: 2145 | version "0.4.3" 2146 | resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.4.3.tgz#966f1750c191672e76e16c2efa569150cc73ab53" 2147 | integrity sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA== 2148 | 2149 | regenerate-unicode-properties@^8.2.0: 2150 | version "8.2.0" 2151 | resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec" 2152 | integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA== 2153 | dependencies: 2154 | regenerate "^1.4.0" 2155 | 2156 | regenerate@^1.4.0: 2157 | version "1.4.2" 2158 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" 2159 | integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== 2160 | 2161 | regenerator-runtime@^0.13.4: 2162 | version "0.13.7" 2163 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55" 2164 | integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew== 2165 | 2166 | regenerator-transform@^0.14.2: 2167 | version "0.14.5" 2168 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4" 2169 | integrity sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw== 2170 | dependencies: 2171 | "@babel/runtime" "^7.8.4" 2172 | 2173 | regexp.prototype.flags@^1.3.1: 2174 | version "1.3.1" 2175 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz#7ef352ae8d159e758c0eadca6f8fcb4eef07be26" 2176 | integrity sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA== 2177 | dependencies: 2178 | call-bind "^1.0.2" 2179 | define-properties "^1.1.3" 2180 | 2181 | regexpp@^3.0.0, regexpp@^3.1.0: 2182 | version "3.1.0" 2183 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2" 2184 | integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q== 2185 | 2186 | regexpu-core@^4.7.1: 2187 | version "4.7.1" 2188 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.1.tgz#2dea5a9a07233298fbf0db91fa9abc4c6e0f8ad6" 2189 | integrity sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ== 2190 | dependencies: 2191 | regenerate "^1.4.0" 2192 | regenerate-unicode-properties "^8.2.0" 2193 | regjsgen "^0.5.1" 2194 | regjsparser "^0.6.4" 2195 | unicode-match-property-ecmascript "^1.0.4" 2196 | unicode-match-property-value-ecmascript "^1.2.0" 2197 | 2198 | regjsgen@^0.5.1: 2199 | version "0.5.2" 2200 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733" 2201 | integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A== 2202 | 2203 | regjsparser@^0.6.4: 2204 | version "0.6.7" 2205 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.7.tgz#c00164e1e6713c2e3ee641f1701c4b7aa0a7f86c" 2206 | integrity sha512-ib77G0uxsA2ovgiYbCVGx4Pv3PSttAx2vIwidqQzbL2U5S4Q+j00HdSAneSBuyVcMvEnTXMjiGgB+DlXozVhpQ== 2207 | dependencies: 2208 | jsesc "~0.5.0" 2209 | 2210 | require-from-string@^2.0.2: 2211 | version "2.0.2" 2212 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" 2213 | integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== 2214 | 2215 | resolve-from@^4.0.0: 2216 | version "4.0.0" 2217 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 2218 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 2219 | 2220 | resolve@^1.12.0, resolve@^1.14.2, resolve@^1.18.1: 2221 | version "1.20.0" 2222 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" 2223 | integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== 2224 | dependencies: 2225 | is-core-module "^2.2.0" 2226 | path-parse "^1.0.6" 2227 | 2228 | restore-cursor@^3.1.0: 2229 | version "3.1.0" 2230 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" 2231 | integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== 2232 | dependencies: 2233 | onetime "^5.1.0" 2234 | signal-exit "^3.0.2" 2235 | 2236 | rimraf@^3.0.2: 2237 | version "3.0.2" 2238 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 2239 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 2240 | dependencies: 2241 | glob "^7.1.3" 2242 | 2243 | rxjs@^6.6.6: 2244 | version "6.6.6" 2245 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.6.tgz#14d8417aa5a07c5e633995b525e1e3c0dec03b70" 2246 | integrity sha512-/oTwee4N4iWzAMAL9xdGKjkEHmIwupR3oXbQjCKywF1BeFohswF3vZdogbmEF6pZkOsXTzWkrZszrWpQTByYVg== 2247 | dependencies: 2248 | tslib "^1.9.0" 2249 | 2250 | safe-buffer@~5.1.1: 2251 | version "5.1.2" 2252 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2253 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 2254 | 2255 | semver-compare@^1.0.0: 2256 | version "1.0.0" 2257 | resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" 2258 | integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w= 2259 | 2260 | semver@7.0.0: 2261 | version "7.0.0" 2262 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" 2263 | integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== 2264 | 2265 | semver@^6.1.1, semver@^6.1.2, semver@^6.3.0: 2266 | version "6.3.0" 2267 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 2268 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 2269 | 2270 | semver@^7.2.1, semver@^7.3.2: 2271 | version "7.3.4" 2272 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.4.tgz#27aaa7d2e4ca76452f98d3add093a72c943edc97" 2273 | integrity sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw== 2274 | dependencies: 2275 | lru-cache "^6.0.0" 2276 | 2277 | shebang-command@^2.0.0: 2278 | version "2.0.0" 2279 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 2280 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 2281 | dependencies: 2282 | shebang-regex "^3.0.0" 2283 | 2284 | shebang-regex@^3.0.0: 2285 | version "3.0.0" 2286 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 2287 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 2288 | 2289 | side-channel@^1.0.4: 2290 | version "1.0.4" 2291 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" 2292 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== 2293 | dependencies: 2294 | call-bind "^1.0.0" 2295 | get-intrinsic "^1.0.2" 2296 | object-inspect "^1.9.0" 2297 | 2298 | signal-exit@^3.0.2: 2299 | version "3.0.3" 2300 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" 2301 | integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== 2302 | 2303 | slice-ansi@^3.0.0: 2304 | version "3.0.0" 2305 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787" 2306 | integrity sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ== 2307 | dependencies: 2308 | ansi-styles "^4.0.0" 2309 | astral-regex "^2.0.0" 2310 | is-fullwidth-code-point "^3.0.0" 2311 | 2312 | slice-ansi@^4.0.0: 2313 | version "4.0.0" 2314 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" 2315 | integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== 2316 | dependencies: 2317 | ansi-styles "^4.0.0" 2318 | astral-regex "^2.0.0" 2319 | is-fullwidth-code-point "^3.0.0" 2320 | 2321 | source-map@^0.5.0: 2322 | version "0.5.7" 2323 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2324 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 2325 | 2326 | sprintf-js@~1.0.2: 2327 | version "1.0.3" 2328 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2329 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 2330 | 2331 | string-argv@0.3.1: 2332 | version "0.3.1" 2333 | resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da" 2334 | integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg== 2335 | 2336 | string-width@^4.1.0, string-width@^4.2.0: 2337 | version "4.2.2" 2338 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5" 2339 | integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA== 2340 | dependencies: 2341 | emoji-regex "^8.0.0" 2342 | is-fullwidth-code-point "^3.0.0" 2343 | strip-ansi "^6.0.0" 2344 | 2345 | string.prototype.matchall@^4.0.2: 2346 | version "4.0.4" 2347 | resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.4.tgz#608f255e93e072107f5de066f81a2dfb78cf6b29" 2348 | integrity sha512-pknFIWVachNcyqRfaQSeu/FUfpvJTe4uskUSZ9Wc1RijsPuzbZ8TyYT8WCNnntCjUEqQ3vUHMAfVj2+wLAisPQ== 2349 | dependencies: 2350 | call-bind "^1.0.2" 2351 | define-properties "^1.1.3" 2352 | es-abstract "^1.18.0-next.2" 2353 | has-symbols "^1.0.1" 2354 | internal-slot "^1.0.3" 2355 | regexp.prototype.flags "^1.3.1" 2356 | side-channel "^1.0.4" 2357 | 2358 | string.prototype.trimend@^1.0.4: 2359 | version "1.0.4" 2360 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80" 2361 | integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A== 2362 | dependencies: 2363 | call-bind "^1.0.2" 2364 | define-properties "^1.1.3" 2365 | 2366 | string.prototype.trimstart@^1.0.4: 2367 | version "1.0.4" 2368 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed" 2369 | integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw== 2370 | dependencies: 2371 | call-bind "^1.0.2" 2372 | define-properties "^1.1.3" 2373 | 2374 | stringify-object@^3.3.0: 2375 | version "3.3.0" 2376 | resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629" 2377 | integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw== 2378 | dependencies: 2379 | get-own-enumerable-property-symbols "^3.0.0" 2380 | is-obj "^1.0.1" 2381 | is-regexp "^1.0.0" 2382 | 2383 | strip-ansi@^6.0.0: 2384 | version "6.0.0" 2385 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 2386 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== 2387 | dependencies: 2388 | ansi-regex "^5.0.0" 2389 | 2390 | strip-final-newline@^2.0.0: 2391 | version "2.0.0" 2392 | resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" 2393 | integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== 2394 | 2395 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: 2396 | version "3.1.1" 2397 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 2398 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 2399 | 2400 | supports-color@^5.3.0: 2401 | version "5.5.0" 2402 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2403 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 2404 | dependencies: 2405 | has-flag "^3.0.0" 2406 | 2407 | supports-color@^7.1.0: 2408 | version "7.2.0" 2409 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 2410 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 2411 | dependencies: 2412 | has-flag "^4.0.0" 2413 | 2414 | table@^6.0.4: 2415 | version "6.0.7" 2416 | resolved "https://registry.yarnpkg.com/table/-/table-6.0.7.tgz#e45897ffbcc1bcf9e8a87bf420f2c9e5a7a52a34" 2417 | integrity sha512-rxZevLGTUzWna/qBLObOe16kB2RTnnbhciwgPbMMlazz1yZGVEgnZK762xyVdVznhqxrfCeBMmMkgOOaPwjH7g== 2418 | dependencies: 2419 | ajv "^7.0.2" 2420 | lodash "^4.17.20" 2421 | slice-ansi "^4.0.0" 2422 | string-width "^4.2.0" 2423 | 2424 | text-table@^0.2.0: 2425 | version "0.2.0" 2426 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2427 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= 2428 | 2429 | through@^2.3.8: 2430 | version "2.3.8" 2431 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2432 | integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= 2433 | 2434 | to-fast-properties@^2.0.0: 2435 | version "2.0.0" 2436 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 2437 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 2438 | 2439 | to-regex-range@^5.0.1: 2440 | version "5.0.1" 2441 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 2442 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 2443 | dependencies: 2444 | is-number "^7.0.0" 2445 | 2446 | tslib@^1.8.1, tslib@^1.9.0: 2447 | version "1.14.1" 2448 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" 2449 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== 2450 | 2451 | tsutils@^3.17.1: 2452 | version "3.21.0" 2453 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" 2454 | integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== 2455 | dependencies: 2456 | tslib "^1.8.1" 2457 | 2458 | type-check@^0.4.0, type-check@~0.4.0: 2459 | version "0.4.0" 2460 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 2461 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 2462 | dependencies: 2463 | prelude-ls "^1.2.1" 2464 | 2465 | type-fest@^0.11.0: 2466 | version "0.11.0" 2467 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1" 2468 | integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ== 2469 | 2470 | type-fest@^0.20.2: 2471 | version "0.20.2" 2472 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 2473 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 2474 | 2475 | type-fest@^0.8.1: 2476 | version "0.8.1" 2477 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" 2478 | integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== 2479 | 2480 | unbox-primitive@^1.0.0: 2481 | version "1.0.0" 2482 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.0.tgz#eeacbc4affa28e9b3d36b5eaeccc50b3251b1d3f" 2483 | integrity sha512-P/51NX+JXyxK/aigg1/ZgyccdAxm5K1+n8+tvqSntjOivPt19gvm1VC49RWYetsiub8WViUchdxl/KWHHB0kzA== 2484 | dependencies: 2485 | function-bind "^1.1.1" 2486 | has-bigints "^1.0.0" 2487 | has-symbols "^1.0.0" 2488 | which-boxed-primitive "^1.0.1" 2489 | 2490 | unicode-canonical-property-names-ecmascript@^1.0.4: 2491 | version "1.0.4" 2492 | resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" 2493 | integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ== 2494 | 2495 | unicode-match-property-ecmascript@^1.0.4: 2496 | version "1.0.4" 2497 | resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" 2498 | integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg== 2499 | dependencies: 2500 | unicode-canonical-property-names-ecmascript "^1.0.4" 2501 | unicode-property-aliases-ecmascript "^1.0.4" 2502 | 2503 | unicode-match-property-value-ecmascript@^1.2.0: 2504 | version "1.2.0" 2505 | resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531" 2506 | integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ== 2507 | 2508 | unicode-property-aliases-ecmascript@^1.0.4: 2509 | version "1.1.0" 2510 | resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4" 2511 | integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg== 2512 | 2513 | uri-js@^4.2.2: 2514 | version "4.4.1" 2515 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 2516 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 2517 | dependencies: 2518 | punycode "^2.1.0" 2519 | 2520 | v8-compile-cache@^2.0.3: 2521 | version "2.3.0" 2522 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" 2523 | integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== 2524 | 2525 | which-boxed-primitive@^1.0.1: 2526 | version "1.0.2" 2527 | resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" 2528 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 2529 | dependencies: 2530 | is-bigint "^1.0.1" 2531 | is-boolean-object "^1.1.0" 2532 | is-number-object "^1.0.4" 2533 | is-string "^1.0.5" 2534 | is-symbol "^1.0.3" 2535 | 2536 | which@^2.0.1: 2537 | version "2.0.2" 2538 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 2539 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2540 | dependencies: 2541 | isexe "^2.0.0" 2542 | 2543 | word-wrap@^1.2.3: 2544 | version "1.2.3" 2545 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 2546 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 2547 | 2548 | wrap-ansi@^6.2.0: 2549 | version "6.2.0" 2550 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" 2551 | integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== 2552 | dependencies: 2553 | ansi-styles "^4.0.0" 2554 | string-width "^4.1.0" 2555 | strip-ansi "^6.0.0" 2556 | 2557 | wrap-ansi@^7.0.0: 2558 | version "7.0.0" 2559 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 2560 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 2561 | dependencies: 2562 | ansi-styles "^4.0.0" 2563 | string-width "^4.1.0" 2564 | strip-ansi "^6.0.0" 2565 | 2566 | wrappy@1: 2567 | version "1.0.2" 2568 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2569 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 2570 | 2571 | yallist@^4.0.0: 2572 | version "4.0.0" 2573 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 2574 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 2575 | 2576 | yaml@^1.10.0: 2577 | version "1.10.2" 2578 | resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" 2579 | integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== 2580 | --------------------------------------------------------------------------------