mirror of
				https://github.com/Blair-SGA-Dev-Team/blazerapp.git
				synced 2025-10-31 15:01:11 -04:00 
			
		
		
		
	added spanish translation
This commit is contained in:
		
							parent
							
								
									04fb03c8ac
								
							
						
					
					
						commit
						4c5d37b90e
					
				
							
								
								
									
										0
									
								
								android/app/src/main/assets/fonts/Fontisto.ttf
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
									
										0
									
								
								android/app/src/main/assets/fonts/Fontisto.ttf
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
								
								
									
										34
									
								
								app/App.js
									
									
									
									
									
								
							
							
						
						
									
										34
									
								
								app/App.js
									
									
									
									
									
								
							| @ -19,21 +19,27 @@ import { | ||||
| 
 | ||||
| import { NavigationContainer } from '@react-navigation/native' | ||||
| import { createBottomTabNavigator } from '@react-navigation/bottom-tabs' | ||||
| import SplashScreen from 'react-native-splash-screen'; | ||||
| import Home from './Home' | ||||
| import Calendar from './Calendar' | ||||
| import Poll from './Poll' | ||||
| import Clubs from './Clubs' | ||||
| import More from './More' | ||||
| import Staff from './Staff' | ||||
| import OpeningPage from './OpeningPage'; | ||||
| import OpenPage from './OpenPage'; | ||||
| import styles from './styles/morestyles'; | ||||
| import Ionicons from 'react-native-vector-icons/Ionicons'; | ||||
| import I18n from './i18n'; | ||||
| import AsyncStorage from '@react-native-community/async-storage' | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
| const Tab = createBottomTabNavigator(); | ||||
| 
 | ||||
| AsyncStorage.getItem('language') | ||||
|   .then((token) => {  | ||||
| 	console.log("lang: " + token); | ||||
| 	I18n.locale = token; | ||||
|   }); | ||||
| 
 | ||||
| class App extends React.Component { | ||||
| 	state = { | ||||
| 		loaded: false | ||||
| @ -52,17 +58,15 @@ class App extends React.Component { | ||||
| 					tabBarIcon: ({ focused, color, size }) => { | ||||
| 						let iconName; | ||||
| 			 | ||||
| 						if (route.name === 'Home') { | ||||
| 						if (route.name === 'Home' || route.name === 'Casa') { | ||||
| 							iconName = focused ? 'ios-home' : 'ios-home-outline'; | ||||
| 						} else if (route.name === 'Calendar') { | ||||
| 						} else if (route.name === 'Calendar' || route.name === 'Calendario') { | ||||
| 							iconName = focused ? 'ios-calendar' : 'ios-calendar-outline'; | ||||
| 						} else if (route.name === 'Polls') { | ||||
| 							iconName = focused ? 'ios-pie-chart' : 'ios-pie-chart-outline'; | ||||
| 						} else if (route.name === 'Clubs') { | ||||
| 						} else if (route.name === 'Clubs' || route.name === 'Clubes') { | ||||
| 							iconName = focused ? 'ios-people-circle' : 'ios-people-circle-outline'; | ||||
| 						} else if (route.name === 'Staff') { | ||||
| 						} else if (route.name === 'Staff' || route.name === 'Personal') { | ||||
| 							iconName = focused ? 'ios-nutrition' : 'ios-nutrition-outline'; | ||||
| 						} else if (route.name === 'More') { | ||||
| 						} else if (route.name === 'More' || route.name === 'Más') { | ||||
| 							iconName = focused ? 'ios-ellipsis-horizontal' : 'ios-ellipsis-horizontal-outline'; | ||||
| 						} | ||||
| 
 | ||||
| @ -75,11 +79,11 @@ class App extends React.Component { | ||||
| 						fontSize:16 | ||||
| 					}}} | ||||
| 				>	 | ||||
| 					<Tab.Screen name="Home" component={Home}/> | ||||
| 					<Tab.Screen name="Calendar" component={Calendar} /> | ||||
| 					<Tab.Screen name="Clubs" component={Clubs} options ={{title: 'Clubs'}}/> | ||||
| 					<Tab.Screen name="Staff" component={Staff} /> | ||||
| 					<Tab.Screen name="More" component={More} /> | ||||
| 					<Tab.Screen name={I18n.t('app.home')} component={Home}/> | ||||
| 					<Tab.Screen name={I18n.t('app.calendar')} component={Calendar}/> | ||||
| 					<Tab.Screen name={I18n.t('app.clubs')} component={Clubs}/> | ||||
| 					<Tab.Screen name={I18n.t('app.staff')} component={Staff}/> | ||||
| 					<Tab.Screen name={I18n.t('app.more')} component={More}/> | ||||
| 				</Tab.Navigator> | ||||
| 				: <OpenPage />} | ||||
| 			</NavigationContainer> | ||||
|  | ||||
| @ -16,7 +16,7 @@ import { | ||||
| } from 'react-native/Libraries/NewAppScreen'; | ||||
| 
 | ||||
| import LinearGradient from 'react-native-linear-gradient'; | ||||
| 
 | ||||
| import I18n from './i18n'; | ||||
| import styles from './styles/liststyles' | ||||
| import { url } from './resources/fetchInfo.json' | ||||
| 
 | ||||
| @ -138,7 +138,7 @@ class Calendar extends React.Component { | ||||
|             colors={['#f99', 'white']} | ||||
|             style = {{height: '100%', borderBottomColor:'black', borderBottomWidth:0.5, display: 'flex', justifyContent: 'flex-end', paddingBottom: '2.5%'}} | ||||
|           > | ||||
|             <Text style = {{fontSize: 24, fontWeight: 'bold', alignSelf: 'center'}}>Calendar Events</Text> | ||||
|             <Text style = {{fontSize: 24, fontWeight: 'bold', alignSelf: 'center'}}>{I18n.t('calendar.calendarEvents')}</Text> | ||||
|           </LinearGradient> | ||||
|           | ||||
|         </View> | ||||
|  | ||||
| @ -28,6 +28,7 @@ import styles from './styles/liststyles' | ||||
| import morestyles from './styles/morestyles' | ||||
| import { url } from './resources/fetchInfo.json' | ||||
| import LinearGradient from 'react-native-linear-gradient'; | ||||
| import I18n from './i18n'; | ||||
| 
 | ||||
| const Stack = createStackNavigator(); | ||||
| 
 | ||||
| @ -159,7 +160,7 @@ class Clubs extends React.Component { | ||||
|       <SafeAreaView style={styles.container}> | ||||
|         <SearchBar | ||||
|         lightTheme | ||||
|         placeholder="Search Clubs" | ||||
|         placeholder={I18n.t('clubs.searchClubs')} | ||||
|         onChangeText={this.updateSearch} | ||||
|         onCancel={this.clearSearch} | ||||
|         onClear={this.clearSearch} | ||||
|  | ||||
							
								
								
									
										21
									
								
								app/Home.js
									
									
									
									
									
								
							
							
						
						
									
										21
									
								
								app/Home.js
									
									
									
									
									
								
							| @ -30,6 +30,7 @@ import { NavigationContainer } from '@react-navigation/native' | ||||
| import { createStackNavigator } from '@react-navigation/stack' | ||||
| import Announcements from './Announcements' | ||||
| import AsyncStorage from '@react-native-community/async-storage' | ||||
| import I18n from './i18n'; | ||||
| 
 | ||||
| 
 | ||||
| const getCurrentDate=()=>{ | ||||
| @ -259,7 +260,7 @@ const New = ({item}) => { | ||||
| } | ||||
| 
 | ||||
| function Home1() { | ||||
|   const [modalVisible, setModalVisible] = useState(true); | ||||
|   const [modalVisible, setModalVisible] = useState(false); | ||||
| 
 | ||||
|   return ( | ||||
|     <View> | ||||
| @ -338,9 +339,9 @@ function HomeScreen (props) { | ||||
|     <ScrollView style={{height: '100%', backgroundColor: 'white'}}> | ||||
|       <View style={{height: 275, backgroundColor: 'white', padding: '2%'}}> | ||||
|         <View style={{display: 'flex', flexDirection: 'row', alignItems: 'center', justifyContent: 'space-between', marginBottom: '2%'}}> | ||||
|           <Text style={liststyles.homeTitle}>What's New?</Text> | ||||
|           <Text style={liststyles.homeTitle}>{I18n.t('home.whatsNew')}</Text> | ||||
|           <TouchableOpacity onPress={()=>props.navigation.navigate('new', {data:props.data})}> | ||||
|             <Text style={{color: 'blue', textDecorationLine: 'underline'}}>View All</Text> | ||||
|             <Text style={{color: 'blue', textDecorationLine: 'underline'}}>{I18n.t('home.viewAll')}</Text> | ||||
|           </TouchableOpacity> | ||||
|         </View> | ||||
|         <ScrollView horizontal='true' style={{display: 'flex', flexDirection: 'row', paddingHorizontal: '2%'}}></ScrollView> | ||||
| @ -356,7 +357,7 @@ function HomeScreen (props) { | ||||
|       </View> | ||||
| 
 | ||||
|       <View style={{height: 275, backgroundColor: 'white', padding: '2%'}}> | ||||
|         <Text style={liststyles.homeTitle}>Student of the Week</Text> | ||||
|         <Text style={liststyles.homeTitle}>{I18n.t('home.SOTW')}</Text> | ||||
|         <View style={{display: 'flex', flexDirection: 'row', paddingTop: '5%', paddingHorizontal: '2%', justifyContent: 'space-between'}}> | ||||
|           <View style={{display: 'flex', borderWidth: 1, borderColor: 'black', borderRadius: 8, width: '32%', height: '100%'}}> | ||||
|             <View style={{height:'70%'}}> | ||||
| @ -364,22 +365,22 @@ function HomeScreen (props) { | ||||
|             </View> | ||||
|             <View style ={{paddingHorizontal: '2%', height: '15%', borderTopWidth: 1}}> | ||||
|               <Text style={{fontWeight: 'bold', fontSize: 18}}>{props.studentData.name}</Text> | ||||
|               <Text>Grade {props.studentData.year}</Text> | ||||
|               <Text>{I18n.t('home.Grade')} {props.studentData.year}</Text> | ||||
|             </View> | ||||
|           </View> | ||||
|           <View style={{borderWidth: 1, borderColor: 'black', borderRadius: 8, width: '64%', height: '100%', padding: '2%'}}> | ||||
|             <Text style={{fontSize: 16}}><Text style={{fontWeight: 'bold'}}>Hobbies: </Text>{props.studentData.hobbies}</Text> | ||||
|             <Text style={{fontSize: 16}}><Text style={{fontWeight: 'bold'}}>Achievements: </Text>{props.studentData.achievements}</Text> | ||||
|             <Text style={{fontSize: 16}}><Text style={{fontWeight: 'bold'}}>Messages: </Text>{props.studentData.messages}</Text> | ||||
|             <Text style={{fontSize: 16}}><Text style={{fontWeight: 'bold'}}>{I18n.t('home.Hobbies')}: </Text>{props.studentData.hobbies}</Text> | ||||
|             <Text style={{fontSize: 16}}><Text style={{fontWeight: 'bold'}}>{I18n.t('home.Achievements')}: </Text>{props.studentData.achievements}</Text> | ||||
|             <Text style={{fontSize: 16}}><Text style={{fontWeight: 'bold'}}>{I18n.t('home.Messages')}: </Text>{props.studentData.messages}</Text> | ||||
|           </View> | ||||
|         </View> | ||||
|       </View> | ||||
| 
 | ||||
|       <View style={{padding: '2%'}}> | ||||
|         <View style ={{display: 'flex', flexDirection: 'row', alignItems: 'center', justifyContent: 'space-between', marginBottom: '2%'}}> | ||||
|           <Text style={liststyles.homeTitle}>Announcements</Text> | ||||
|           <Text style={liststyles.homeTitle}>{I18n.t('home.Announcements')}</Text> | ||||
|           <TouchableOpacity onPress={()=>props.navigation.navigate(Announcements)}> | ||||
|             <Text style={{color: 'blue', textDecorationLine: 'underline'}}>View All</Text> | ||||
|             <Text style={{color: 'blue', textDecorationLine: 'underline'}}>{I18n.t('home.viewAll')}</Text> | ||||
|           </TouchableOpacity> | ||||
|         </View> | ||||
|         <FlatList | ||||
|  | ||||
							
								
								
									
										74
									
								
								app/Language.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										74
									
								
								app/Language.js
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,74 @@ | ||||
| import React, { Component } from 'react'; | ||||
| import { DevSettings } from 'react-native'; | ||||
| import { Platform, StyleSheet, TouchableOpacity, Text, ScrollView, View } from 'react-native'; | ||||
| import I18n from './i18n'; | ||||
| import AsyncStorage from '@react-native-community/async-storage' | ||||
| 
 | ||||
| const STORAGE_KEY = "language" | ||||
| 
 | ||||
| const language = [ | ||||
|       {lang: <Text>{I18n.t('language.English')}</Text>, code: "en"}, | ||||
|       {lang: <Text>{I18n.t('language.Spanish')}</Text>, code: "es"}, | ||||
|     ] | ||||
| 
 | ||||
| export default class extends Component { | ||||
|   constructor() { | ||||
|     super(); | ||||
|     this.state = { | ||||
|       languages: [], | ||||
|       value: false, | ||||
|        | ||||
|       select: I18n.t('language.SelectLanguage'), | ||||
|     } | ||||
|     this.onLanguage=this.onLanguage.bind(this); | ||||
|   } | ||||
| 
 | ||||
|   onSelectLanguage() { | ||||
|     return( | ||||
|       language.map((data, i)=>{ | ||||
|         return ( | ||||
|            <View key={i} style={{backgroundColor: "#f99", padding: 10}}> | ||||
|              <TouchableOpacity onPress={()=>this.onSelectedLang(data)}> | ||||
|                <Text style={{paddingTop: 2, color: "#fff", fontSize: 18}}>{data.lang}</Text> | ||||
|              </TouchableOpacity> | ||||
|            </View> | ||||
|         ) | ||||
|       }) | ||||
|     ) | ||||
|   } | ||||
| 
 | ||||
|   onSelectedLang(text) { | ||||
|     this.setState({ | ||||
|       value: false, | ||||
|       select: text.lang, | ||||
|     }), | ||||
| 
 | ||||
|     I18n.locale = text.code | ||||
|     AsyncStorage.setItem('language', text.code) | ||||
|     DevSettings.reload() | ||||
|   } | ||||
|   onLanguage() { | ||||
|     this.setState({ | ||||
|       value: true, | ||||
|     }) | ||||
|   } | ||||
| 
 | ||||
|   render() { | ||||
|     return ( | ||||
|       <View style={{flex: 1, backgroundColor: 'white', padding: 24}}> | ||||
|         <Text style ={{marginBottom: 5}}>{I18n.t('language.note')}</Text> | ||||
|         <View> | ||||
|           <TouchableOpacity onPress={this.onLanguage}> | ||||
|             <View style={{backgroundColor: "red", padding: 10}}> | ||||
|               <Text style={{color: "white", fontSize: 18, fontWeight: 'bold'}}>{this.state.select}</Text> | ||||
|             </View> | ||||
|           </TouchableOpacity> | ||||
|           <View> | ||||
|             {(this.state.value) ? this.onSelectLanguage() : null} | ||||
|           </View> | ||||
|            | ||||
|         </View> | ||||
|      </View> | ||||
|    ); | ||||
|   } | ||||
| } | ||||
							
								
								
									
										58
									
								
								app/Languages/en.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										58
									
								
								app/Languages/en.js
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,58 @@ | ||||
| export default { | ||||
|     home: { | ||||
|         whatsNew: "What's New?", | ||||
|         viewAll: "View All", | ||||
|         SOTW: "Student of the Week", | ||||
|         Grade: "Grade", | ||||
|         Hobbies: "Hobbies", | ||||
|         Achievements: "Achievements", | ||||
|         Messages: "Messages", | ||||
|         Announcements: "Announcements" | ||||
|     }, | ||||
|     app: { | ||||
|         home: "Home", | ||||
|         calendar: "Calendar", | ||||
|         clubs: "Clubs", | ||||
|         staff: "Staff", | ||||
|         more: "More" | ||||
|     }, | ||||
|     calendar: { | ||||
|         calendarEvents: "Calendar Events" | ||||
|     }, | ||||
|     clubs: { | ||||
|         searchClubs: "Search Clubs" | ||||
|     }, | ||||
|     staff: { | ||||
|         searchStaff: "Search Staff" | ||||
|     }, | ||||
|     student: { | ||||
|         Grade: "Grade", | ||||
|         Hobbies: "Hobbies", | ||||
|         Achievements: "Achievements", | ||||
|         Messages: "Messages", | ||||
|     }, | ||||
|     polls: { | ||||
|         textInPoll: "Press the image to take the poll!" | ||||
|     }, | ||||
|     more: { | ||||
|         Announcements: "Announcements", | ||||
|         Resources: "Resources", | ||||
|         SOTW: "Student of the Week", | ||||
|         lunch: "LunchEvents", | ||||
|         ssl: "SSL Opportunities", | ||||
|         COTW: "Challenge of the Week", | ||||
|         Polls: "Polls", | ||||
|         Settings: "Settings", | ||||
|         More: "More" | ||||
|     }, | ||||
|     settings: { | ||||
|         settings: "Settings", | ||||
|         language: "Language" | ||||
|     }, | ||||
|     language: { | ||||
|         SelectLanguage: "Select Language", | ||||
|         English: "English", | ||||
|         Spanish: "Spanish", | ||||
|         note: "*App will reload on language change" | ||||
|     } | ||||
| } | ||||
							
								
								
									
										58
									
								
								app/Languages/es.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										58
									
								
								app/Languages/es.js
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,58 @@ | ||||
| export default { | ||||
|     home: { | ||||
|         whatsNew: "¿Qué hay de nuevo?", | ||||
|         viewAll: "Ver todo", | ||||
|         SOTW: "Alumno de la semana", | ||||
|         Grade: "El año", | ||||
|         Hobbies: "El pasatiempo", | ||||
|         Achievements: "Logros", | ||||
|         Messages: "Mensajes", | ||||
|         Announcements: "Anuncios" | ||||
|     }, | ||||
|     app: { | ||||
|         home: "Casa", | ||||
|         calendar: "Calendario", | ||||
|         clubs: "Clubes", | ||||
|         staff: "Personal", | ||||
|         more: "Más" | ||||
|     }, | ||||
|     calendar: { | ||||
|         calendarEvents: "Eventos del calendario" | ||||
|     }, | ||||
|     clubs: { | ||||
|         searchClubs: "Buscar clubes" | ||||
|     }, | ||||
|     staff: { | ||||
|         searchStaff: "Personal de búsqueda" | ||||
|     }, | ||||
|     student: { | ||||
|         Grade: "El año", | ||||
|         Hobbies: "El pasatiempo", | ||||
|         Achievements: "Logros", | ||||
|         Messages: "Mensajes", | ||||
|     }, | ||||
|     polls: { | ||||
|         textInPoll: "¡Pulsa la imagen para realizar la encuesta!'" | ||||
|     }, | ||||
|     more: { | ||||
|         Announcements: "Anuncios", | ||||
|         Resources: "Recursos", | ||||
|         SOTW: "Alumno de la semana", | ||||
|         lunch: "Eventos de almuerzo", | ||||
|         ssl: "Oportunidades SSL", | ||||
|         COTW: "Desafío de la semana", | ||||
|         Polls: "Centro", | ||||
|         Settings: "Configuraciones", | ||||
|         More: "Más" | ||||
|     }, | ||||
|     settings: { | ||||
|         settings: "Configuraciones", | ||||
|         language: "Idioma" | ||||
|     }, | ||||
|     language: { | ||||
|         SelectLanguage: "Seleccione el idioma", | ||||
|         English: "Inglés", | ||||
|         Spanish: "Español", | ||||
|         note: "*La aplicación se recargará al cambiar de idioma" | ||||
|     } | ||||
| } | ||||
							
								
								
									
										31
									
								
								app/More.js
									
									
									
									
									
								
							
							
						
						
									
										31
									
								
								app/More.js
									
									
									
									
									
								
							| @ -33,6 +33,7 @@ import Settings from './Settings' | ||||
| import Poll from './Poll' | ||||
| import Images from './Images' | ||||
| import LinearGradient from 'react-native-linear-gradient' | ||||
| import I18n from './i18n'; | ||||
| 
 | ||||
| const Stack = createStackNavigator() | ||||
| 
 | ||||
| @ -47,12 +48,12 @@ class MoreSwitch extends React.Component { | ||||
| 			<View style={{flex:1,backgroundColor:'red'}}> | ||||
| 				<FlatList | ||||
| 					data={[ | ||||
| 						{name:"Announcements",key:"announce", img:Images.announcements}, | ||||
| 						{name:'Announcements',key:"announce", img:Images.announcements}, | ||||
| 						{name:"Resources",key:"resources", img:Images.resources}, | ||||
| 						{name:"Student of the Week",key:"studentweek", img:Images.student}, | ||||
| 						{name:"Lunch Events",key:"lunchevent", img:Images.lunch}, | ||||
| 						{name:"SSL Opportunities",key:"sslopps", img:Images.sslopps}, | ||||
| 						{name:"Challenge of the Week",key:"challengeweek", img:Images.challenge}, | ||||
| 						{name:"SOTW",key:"studentweek", img:Images.student}, | ||||
| 						{name:"lunch",key:"lunchevent", img:Images.lunch}, | ||||
| 						{name:"ssl",key:"sslopps", img:Images.sslopps}, | ||||
| 						{name:"COTW",key:"challengeweek", img:Images.challenge}, | ||||
| 						{name:"Polls", key:"polls", img: Images.polls}, | ||||
| 						{name:"Settings", key:"settings", img: Images.settings}, | ||||
| 					]} | ||||
| @ -60,7 +61,7 @@ class MoreSwitch extends React.Component { | ||||
| 						 | ||||
| 						<TouchableOpacity style={styles.moreitem} onPress={()=>this.props.navigation.navigate(item.key)}> | ||||
| 							<Image source = {item.img} style = {{height: 40, width: 40, marginRight: 10, tintColor: '#e3e3e3'}}/> | ||||
| 							<Text style={styles.moretext}>{item.name}</Text> | ||||
| 							<Text style={styles.moretext}>{I18n.t('more.'+item.name)}</Text> | ||||
| 						</TouchableOpacity> | ||||
| 					} | ||||
| 				/> | ||||
| @ -83,7 +84,7 @@ class More extends React.Component { | ||||
| 						name="Chooser"  | ||||
| 						component={MoreSwitch} | ||||
| 						options={{ | ||||
| 							title:'More', | ||||
| 							title:I18n.t('more.More'), | ||||
| 							headerTitleStyle:styles.headerTitle, | ||||
| 							headerBackground: ()=>background | ||||
| 						}} | ||||
| @ -92,7 +93,7 @@ class More extends React.Component { | ||||
| 						name="announce"  | ||||
| 						component={Announcements} | ||||
| 						options={{ | ||||
| 							title:'Announcements', | ||||
| 							title:I18n.t('more.Announcements'), | ||||
| 							headerTitleStyle:[styles.headerTitle,{alignSelf:'center'}], | ||||
| 							headerLeft:null, | ||||
| 							headerBackground: ()=>background | ||||
| @ -102,7 +103,7 @@ class More extends React.Component { | ||||
| 						name="resources"  | ||||
| 						component={Resources} | ||||
| 						options={{ | ||||
| 							title:'Resources', | ||||
| 							title:I18n.t('more.Resources'), | ||||
| 							headerTitleStyle:[styles.headerTitle,{alignSelf:'center'}], | ||||
| 							headerLeft:null, | ||||
| 							headerBackground: ()=>background | ||||
| @ -112,7 +113,7 @@ class More extends React.Component { | ||||
| 						name="studentweek"  | ||||
| 						component={StudentWeek} | ||||
| 						options={{ | ||||
| 							title:'Student of the Week', | ||||
| 							title:I18n.t('more.SOTW'), | ||||
| 							headerTitleStyle:[styles.headerTitle,{alignSelf:'center'}], | ||||
| 							headerLeft:null, | ||||
| 							headerBackground: ()=>background | ||||
| @ -122,7 +123,7 @@ class More extends React.Component { | ||||
| 						name="lunchevent"  | ||||
| 						component={LunchEvents} | ||||
| 						options={{ | ||||
| 							title:'Lunch Events', | ||||
| 							title:I18n.t('more.lunch'), | ||||
| 							headerTitleStyle:[styles.headerTitle,{alignSelf:'center'}], | ||||
| 							headerLeft:null, | ||||
| 							headerBackground: ()=>background | ||||
| @ -132,7 +133,7 @@ class More extends React.Component { | ||||
| 						name="sslopps"  | ||||
| 						component={SSLOps} | ||||
| 						options={{ | ||||
| 							title:'SSL Opportunities', | ||||
| 							title:I18n.t('more.ssl'), | ||||
| 							headerTitleStyle:[styles.headerTitle,{alignSelf:'center'}], | ||||
| 							headerLeft:null, | ||||
| 							headerBackground: ()=>background | ||||
| @ -142,7 +143,7 @@ class More extends React.Component { | ||||
| 						name="challengeweek"  | ||||
| 						component={ChallengeWeek} | ||||
| 						options={{ | ||||
| 							title:'Challenge of the Week', | ||||
| 							title:I18n.t('more.COTW'), | ||||
| 							headerTitleStyle:[styles.headerTitle,{alignSelf:'center'}], | ||||
| 							headerLeft:null, | ||||
| 							headerBackground: ()=>background | ||||
| @ -152,7 +153,7 @@ class More extends React.Component { | ||||
| 						name="polls"  | ||||
| 						component={Poll} | ||||
| 						options={{ | ||||
| 							title:'Polls', | ||||
| 							title:I18n.t('more.Polls'), | ||||
| 							headerTitleStyle:[styles.headerTitle,{alignSelf:'center'}], | ||||
| 							headerLeft:null, | ||||
| 							headerBackground: ()=>background | ||||
| @ -162,7 +163,7 @@ class More extends React.Component { | ||||
| 						name="settings"  | ||||
| 						component={Settings} | ||||
| 						options={{ | ||||
| 							title:'Settings', | ||||
| 							title:I18n.t('more.Settings'), | ||||
| 							headerTitleStyle:[styles.headerTitle,{alignSelf:'center'}], | ||||
| 							headerLeft:null, | ||||
| 							headerBackground: ()=>background | ||||
|  | ||||
| @ -21,6 +21,7 @@ import {WebView} from 'react-native-webview'; | ||||
| import LinearGradient from 'react-native-linear-gradient'; | ||||
| import { Linking } from 'react-native'; | ||||
| import { url } from './resources/fetchInfo.json' | ||||
| import I18n from './i18n'; | ||||
| 
 | ||||
| class Poll extends React.Component { | ||||
| 
 | ||||
| @ -54,7 +55,7 @@ componentDidMount() { | ||||
|           <TouchableOpacity  onPress={()=>Linking.openURL("https://google.com")}> | ||||
|             <Image source={require('./assets/polls.png')} style={{marginTop: 50, height: 300, width: 300, tintColor: 'red'}}/> | ||||
|           </TouchableOpacity> | ||||
|           <Text style ={{fontSize: 20, marginTop: 30}}>Press the image to take the poll!</Text> | ||||
|           <Text style ={{fontSize: 20, marginTop: 30}}>{I18n.t('polls.textInPoll')}</Text> | ||||
|         </View> | ||||
|       </View> | ||||
| 		) | ||||
|  | ||||
| @ -37,7 +37,6 @@ class Resources extends React.Component { | ||||
| 			<ScrollView style = {{backgroundColor: 'white'}}> | ||||
| 				<ResourceLink url='https://classroom.mcpsmd.org/' img={require('./assets/canvaslogo.png')} name='MyMCPS Classroom'/> | ||||
| 				<ResourceLink url='https://md-mcps-psv.edupoint.com/Home_PXP2.aspx' img={require('./assets/studentvue.jpg')} name='StudentVUE'/> | ||||
| 				<ResourceLink url='https://mbhs.edu/newsevents/Announcements/Montgomery%20Blair%20High%20School%20Final%20Bell%20Schedule%20.pdf' img={require('./assets/schedule.jpg')} name='1st Semester Schedule'/> | ||||
| 				<ResourceLink url='https://student.naviance.com/mbhs' img={require('./assets/naviance.png')} name='Naviance'/> | ||||
| 				<ResourceLink url='https://blairblazersathletics.com/' img={require('./assets/athletics.jpg')} name='Blair Athletics'/> | ||||
| 				<ResourceLink url='https://classroom.google.com/u/0/h' img={require('./assets/googleclassroom.jpg')} name='Google Classroom'/> | ||||
|  | ||||
| @ -22,6 +22,7 @@ import { NavigationContainer } from '@react-navigation/native' | ||||
| import { createStackNavigator } from '@react-navigation/stack' | ||||
| import styles from './styles/liststyles'; | ||||
| import { url } from './resources/fetchInfo.json'; | ||||
| import I18n from './i18n'; | ||||
| 
 | ||||
| const Stack = createStackNavigator(); | ||||
| 
 | ||||
|  | ||||
| @ -1,4 +1,4 @@ | ||||
| import React, { useState } from 'react'; | ||||
| import React from 'react'; | ||||
| import { | ||||
|   SafeAreaView, | ||||
|   StyleSheet, | ||||
| @ -9,6 +9,8 @@ import { | ||||
|   Modal, | ||||
|   TouchableHighlight, | ||||
|   Image, | ||||
|   FlatList, | ||||
|   TouchableOpacity, | ||||
| } from 'react-native'; | ||||
| 
 | ||||
| import { | ||||
| @ -18,24 +20,74 @@ import { | ||||
|   DebugInstructions, | ||||
|   ReloadInstructions, | ||||
| } from 'react-native/Libraries/NewAppScreen'; | ||||
| 
 | ||||
| import styles from './styles/morestyles' | ||||
| import LinearGradient from 'react-native-linear-gradient' | ||||
| 
 | ||||
| import { NavigationContainer } from '@react-navigation/native' | ||||
| import { createStackNavigator } from '@react-navigation/stack' | ||||
| import I18n from './i18n'; | ||||
| import Language from './Language' | ||||
| 
 | ||||
| class Settings extends React.Component { | ||||
|   constructor(props) { | ||||
| const Stack = createStackNavigator() | ||||
| 
 | ||||
| class SettingSwitch extends React.Component { | ||||
| 	constructor(props) { | ||||
| 		super(props) | ||||
| 		this.state = { | ||||
| 			data: [], | ||||
| 			isLoading:true | ||||
| 		} | ||||
| 		this.props = props | ||||
| 	} | ||||
|    | ||||
| 	 | ||||
| 	render() { | ||||
| 		return ( | ||||
|       <View> | ||||
| 
 | ||||
|       </View> | ||||
| 			<View style={{flex:1,backgroundColor:'red'}}> | ||||
| 				<FlatList | ||||
| 					data={[ | ||||
| 						{name:"Language",key:"language"}, | ||||
| 					]} | ||||
| 					renderItem={({item})=> | ||||
| 						<TouchableOpacity style={styles.moreitem} onPress={()=>this.props.navigation.navigate(item.key)}> | ||||
| 							<Text style={styles.moretext}>{I18n.t('settings.' + item.key)}</Text> | ||||
| 						</TouchableOpacity> | ||||
| 					} | ||||
| 				/> | ||||
| 			</View> | ||||
| 		) | ||||
| 	} | ||||
| } | ||||
| 
 | ||||
| const background = (<LinearGradient | ||||
|                     colors={['#f99', 'white']} | ||||
|                     style = {{flex:1,borderBottomColor:'black',borderBottomWidth:0.5}} | ||||
|                     />) | ||||
| 
 | ||||
| class Settings extends React.Component { | ||||
| 	render() { | ||||
| 		return ( | ||||
| 			<NavigationContainer independent={true}> | ||||
| 				<Stack.Navigator> | ||||
| 					<Stack.Screen  | ||||
| 						name="Chooser"  | ||||
| 						component={SettingSwitch} | ||||
| 						options={{ | ||||
| 							title:'Settingss', | ||||
| 							headerTitleStyle:styles.headerTitle, | ||||
| 							headerBackground: ()=>background | ||||
| 						}} | ||||
| 					/> | ||||
| 					<Stack.Screen  | ||||
| 						name="language"  | ||||
| 						component={Language} | ||||
| 						options={{ | ||||
| 							title:'Language', | ||||
| 							headerTitleStyle:[styles.headerTitle,{alignSelf:'center'}], | ||||
| 							headerLeft:null, | ||||
| 							headerBackground: ()=>background | ||||
| 						}} | ||||
| 					/> | ||||
| 				</Stack.Navigator> | ||||
| 			</NavigationContainer> | ||||
| 		) | ||||
| 	} | ||||
| } | ||||
| 
 | ||||
| export default Settings; | ||||
| @ -23,6 +23,7 @@ import { | ||||
| import { SearchBar } from 'react-native-elements'; | ||||
| import styles from './styles/liststyles' | ||||
| import { url } from './resources/fetchInfo.json' | ||||
| import I18n from './i18n'; | ||||
| 
 | ||||
| const StaffElement = ({item}) => { | ||||
|   const [visible, setVisible] = useState(false) | ||||
| @ -107,7 +108,7 @@ class Staff extends React.Component { | ||||
|       <SafeAreaView style={styles.container}> | ||||
|         <SearchBar | ||||
|         lightTheme | ||||
|         placeholder="Search Staff" | ||||
|         placeholder={I18n.t('staff.searchStaff')} | ||||
|         onChangeText={this.updateSearch} | ||||
|         onCancel={this.clearSearch} | ||||
|         onClear={this.clearSearch} | ||||
|  | ||||
| @ -16,7 +16,7 @@ import { | ||||
|   DebugInstructions, | ||||
|   ReloadInstructions, | ||||
| } from 'react-native/Libraries/NewAppScreen'; | ||||
| 
 | ||||
| import I18n from './i18n'; | ||||
| import { url } from './resources/fetchInfo.json' | ||||
| 
 | ||||
| class StudentWeek extends React.Component { | ||||
| @ -49,7 +49,7 @@ class StudentWeek extends React.Component { | ||||
| 					<View style = {{display: 'flex', flexDirection: 'row', justifyContent: 'space-between'}}> | ||||
| 						<View> | ||||
| 							<Text style={{fontSize:28,marginBottom:'10%',textAlign:'center'}}>{this.state.data.name}</Text>	 | ||||
| 							<Text style={{fontSize:20}}>{'\t'}Grade {this.state.data.year}</Text> | ||||
| 							<Text style={{fontSize:20}}>{'\t'}{I18n.t('student.Grade')} {this.state.data.year}</Text> | ||||
| 						</View> | ||||
| 						<View style = {{height: 150, width: 150}}> | ||||
| 							<Image style = {{height: '100%', width:'100%', borderRadius: 6}}source={{iconURI}} /> | ||||
| @ -59,15 +59,15 @@ class StudentWeek extends React.Component { | ||||
| 					 | ||||
| 					<View style = {{paddingTop:'10%', height: '55%', display: 'flex', flexDirection: 'column', justifyContent: 'space-between'}}> | ||||
| 						<View> | ||||
| 							<Text style={{fontSize: 20, fontWeight: 'bold'}}>{"\n"}Hobbies</Text> | ||||
| 							<Text style={{fontSize: 20, fontWeight: 'bold'}}>{"\n"}{I18n.t('student.Hobbies')}</Text> | ||||
| 							<Text style={{fontSize: 20}}>{'\t'}{this.state.data.hobbies}</Text> | ||||
| 						</View> | ||||
| 						<View> | ||||
| 							<Text style={{fontSize: 20, fontWeight: 'bold'}}>{"\n"}Achievements </Text> | ||||
| 							<Text style={{fontSize: 20, fontWeight: 'bold'}}>{"\n"}{I18n.t('student.Achievements')} </Text> | ||||
| 							<Text style={{fontSize: 20}}>{'\t'}{this.state.data.achievements}</Text> | ||||
| 						</View> | ||||
| 						<View> | ||||
| 							<Text style={{fontSize: 20, fontWeight: 'bold'}}>{"\n"}Message</Text> | ||||
| 							<Text style={{fontSize: 20, fontWeight: 'bold'}}>{"\n"}{I18n.t('student.Messages')}</Text> | ||||
| 							<Text style={{fontSize: 20}}>{'\t'}{this.state.data.messages}</Text> | ||||
| 						</View> | ||||
| 					</View> | ||||
|  | ||||
							
								
								
									
										12
									
								
								app/i18n.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								app/i18n.js
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,12 @@ | ||||
| 'use strict'; | ||||
| import I18n from 'react-native-i18n'; | ||||
| import en from './Languages/en' | ||||
| import es from './Languages/es' | ||||
| 
 | ||||
| I18n.fallbacks = true; | ||||
| I18n.translations = { | ||||
|   en, | ||||
|   es, | ||||
| }; | ||||
| 
 | ||||
| export default I18n; | ||||
| @ -14,7 +14,6 @@ target 'blazerapp' do | ||||
| 
 | ||||
|   pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons' | ||||
| 
 | ||||
|   pod 'react-native-webview', :path => '../node_modules/react-native-webview' | ||||
| 
 | ||||
|   target 'blazerappTests' do | ||||
|     inherit! :complete | ||||
|  | ||||
| @ -2,7 +2,7 @@ PODS: | ||||
|   - boost-for-react-native (1.63.0) | ||||
|   - BVLinearGradient (2.5.6): | ||||
|     - React | ||||
|   - CocoaAsyncSocket (7.6.4) | ||||
|   - CocoaAsyncSocket (7.6.5) | ||||
|   - CocoaLibEvent (1.0.0) | ||||
|   - DoubleConversion (1.1.6) | ||||
|   - FBLazyVector (0.63.2) | ||||
| @ -240,6 +240,10 @@ PODS: | ||||
|   - React-jsinspector (0.63.2) | ||||
|   - react-native-safe-area-context (3.1.4): | ||||
|     - React | ||||
|   - react-native-splash-screen (3.2.0): | ||||
|     - React | ||||
|   - react-native-webview (11.0.2): | ||||
|     - React-Core | ||||
|   - React-RCTActionSheet (0.63.2): | ||||
|     - React-Core/RCTActionSheetHeaders (= 0.63.2) | ||||
|   - React-RCTAnimation (0.63.2): | ||||
| @ -300,12 +304,14 @@ PODS: | ||||
|     - React-Core (= 0.63.2) | ||||
|     - React-cxxreact (= 0.63.2) | ||||
|     - React-jsi (= 0.63.2) | ||||
|   - RNCAsyncStorage (1.12.0): | ||||
|   - RNCAsyncStorage (1.13.0): | ||||
|     - React | ||||
|   - RNCMaskedView (0.1.10): | ||||
|     - React | ||||
|   - RNGestureHandler (1.7.0): | ||||
|     - React | ||||
|   - RNI18n (2.0.15): | ||||
|     - React | ||||
|   - RNReanimated (1.10.2): | ||||
|     - React | ||||
|   - RNScreens (2.10.1): | ||||
| @ -355,6 +361,8 @@ DEPENDENCIES: | ||||
|   - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`) | ||||
|   - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`) | ||||
|   - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`) | ||||
|   - react-native-splash-screen (from `../node_modules/react-native-splash-screen`) | ||||
|   - react-native-webview (from `../node_modules/react-native-webview`) | ||||
|   - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`) | ||||
|   - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`) | ||||
|   - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`) | ||||
| @ -368,6 +376,7 @@ DEPENDENCIES: | ||||
|   - "RNCAsyncStorage (from `../node_modules/@react-native-community/async-storage`)" | ||||
|   - "RNCMaskedView (from `../node_modules/@react-native-community/masked-view`)" | ||||
|   - RNGestureHandler (from `../node_modules/react-native-gesture-handler`) | ||||
|   - RNI18n (from `../node_modules/react-native-i18n`) | ||||
|   - RNReanimated (from `../node_modules/react-native-reanimated`) | ||||
|   - RNScreens (from `../node_modules/react-native-screens`) | ||||
|   - RNVectorIcons (from `../node_modules/react-native-vector-icons`) | ||||
| @ -423,6 +432,10 @@ EXTERNAL SOURCES: | ||||
|     :path: "../node_modules/react-native/ReactCommon/jsinspector" | ||||
|   react-native-safe-area-context: | ||||
|     :path: "../node_modules/react-native-safe-area-context" | ||||
|   react-native-splash-screen: | ||||
|     :path: "../node_modules/react-native-splash-screen" | ||||
|   react-native-webview: | ||||
|     :path: "../node_modules/react-native-webview" | ||||
|   React-RCTActionSheet: | ||||
|     :path: "../node_modules/react-native/Libraries/ActionSheetIOS" | ||||
|   React-RCTAnimation: | ||||
| @ -449,6 +462,8 @@ EXTERNAL SOURCES: | ||||
|     :path: "../node_modules/@react-native-community/masked-view" | ||||
|   RNGestureHandler: | ||||
|     :path: "../node_modules/react-native-gesture-handler" | ||||
|   RNI18n: | ||||
|     :path: "../node_modules/react-native-i18n" | ||||
|   RNReanimated: | ||||
|     :path: "../node_modules/react-native-reanimated" | ||||
|   RNScreens: | ||||
| @ -461,7 +476,7 @@ EXTERNAL SOURCES: | ||||
| SPEC CHECKSUMS: | ||||
|   boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c | ||||
|   BVLinearGradient: e3aad03778a456d77928f594a649e96995f1c872 | ||||
|   CocoaAsyncSocket: 694058e7c0ed05a9e217d1b3c7ded962f4180845 | ||||
|   CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99 | ||||
|   CocoaLibEvent: 2fab71b8bd46dd33ddb959f7928ec5909f838e3f | ||||
|   DoubleConversion: cde416483dac037923206447da6e1454df403714 | ||||
|   FBLazyVector: 3ef4a7f62e7db01092f9d517d2ebc0d0677c4a37 | ||||
| @ -487,6 +502,8 @@ SPEC CHECKSUMS: | ||||
|   React-jsiexecutor: 8ca588cc921e70590820ce72b8789b02c67cce38 | ||||
|   React-jsinspector: b14e62ebe7a66e9231e9581279909f2fc3db6606 | ||||
|   react-native-safe-area-context: 0ed9288ed4409beabb0817b54efc047286fc84da | ||||
|   react-native-splash-screen: 200d11d188e2e78cea3ad319964f6142b6384865 | ||||
|   react-native-webview: b2542d6fd424bcc3e3b2ec5f854f0abb4ec86c87 | ||||
|   React-RCTActionSheet: 910163b6b09685a35c4ebbc52b66d1bfbbe39fc5 | ||||
|   React-RCTAnimation: 9a883bbe1e9d2e158d4fb53765ed64c8dc2200c6 | ||||
|   React-RCTBlob: 39cf0ece1927996c4466510e25d2105f67010e13 | ||||
| @ -497,15 +514,16 @@ SPEC CHECKSUMS: | ||||
|   React-RCTText: 1b6773e776e4b33f90468c20fe3b16ca3e224bb8 | ||||
|   React-RCTVibration: 4d2e726957f4087449739b595f107c0d4b6c2d2d | ||||
|   ReactCommon: a0a1edbebcac5e91338371b72ffc66aa822792ce | ||||
|   RNCAsyncStorage: 3eea36d9460c5159b592f9ecbe5a77f8aca98006 | ||||
|   RNCAsyncStorage: b34c5db7bd4b2ef9a7ced5b59b1e6a0c5c6eb24e | ||||
|   RNCMaskedView: f5c7d14d6847b7b44853f7acb6284c1da30a3459 | ||||
|   RNGestureHandler: b6b359bb800ae399a9c8b27032bdbf7c18f08a08 | ||||
|   RNI18n: e2f7e76389fcc6e84f2c8733ea89b92502351fd8 | ||||
|   RNReanimated: 7de2dca51deacff78bb880f63c1389a24311b376 | ||||
|   RNScreens: b748efec66e095134c7166ca333b628cd7e6f3e2 | ||||
|   RNVectorIcons: da6fe858f5a65d7bbc3379540a889b0b12aa5976 | ||||
|   Yoga: 7740b94929bbacbddda59bf115b5317e9a161598 | ||||
|   YogaKit: f782866e155069a2cca2517aafea43200b01fd5a | ||||
| 
 | ||||
| PODFILE CHECKSUM: 4760393ab8ae9e52d87d28b5036ea120108b0712 | ||||
| PODFILE CHECKSUM: 06472af1eb4acd0770fd4d29e23ee525801f7cd1 | ||||
| 
 | ||||
| COCOAPODS: 1.9.3 | ||||
|  | ||||
| @ -761,6 +761,7 @@ | ||||
| 				CURRENT_PROJECT_VERSION = 1; | ||||
| 				ENABLE_BITCODE = NO; | ||||
| 				INFOPLIST_FILE = blazerapp/Info.plist; | ||||
| 				IPHONEOS_DEPLOYMENT_TARGET = 11.0; | ||||
| 				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; | ||||
| 				OTHER_LDFLAGS = ( | ||||
| 					"$(inherited)", | ||||
| @ -783,6 +784,7 @@ | ||||
| 				CLANG_ENABLE_MODULES = YES; | ||||
| 				CURRENT_PROJECT_VERSION = 1; | ||||
| 				INFOPLIST_FILE = blazerapp/Info.plist; | ||||
| 				IPHONEOS_DEPLOYMENT_TARGET = 11.0; | ||||
| 				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; | ||||
| 				OTHER_LDFLAGS = ( | ||||
| 					"$(inherited)", | ||||
| @ -820,7 +822,7 @@ | ||||
| 				PRODUCT_NAME = "$(TARGET_NAME)"; | ||||
| 				SDKROOT = appletvos; | ||||
| 				TARGETED_DEVICE_FAMILY = 3; | ||||
| 				TVOS_DEPLOYMENT_TARGET = 10.0; | ||||
| 				TVOS_DEPLOYMENT_TARGET = 11.0; | ||||
| 			}; | ||||
| 			name = Debug; | ||||
| 		}; | ||||
| @ -848,7 +850,7 @@ | ||||
| 				PRODUCT_NAME = "$(TARGET_NAME)"; | ||||
| 				SDKROOT = appletvos; | ||||
| 				TARGETED_DEVICE_FAMILY = 3; | ||||
| 				TVOS_DEPLOYMENT_TARGET = 10.0; | ||||
| 				TVOS_DEPLOYMENT_TARGET = 11.0; | ||||
| 			}; | ||||
| 			name = Release; | ||||
| 		}; | ||||
| @ -953,7 +955,7 @@ | ||||
| 				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; | ||||
| 				GCC_WARN_UNUSED_FUNCTION = YES; | ||||
| 				GCC_WARN_UNUSED_VARIABLE = YES; | ||||
| 				IPHONEOS_DEPLOYMENT_TARGET = 10.0; | ||||
| 				IPHONEOS_DEPLOYMENT_TARGET = 11.0; | ||||
| 				LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)"; | ||||
| 				LIBRARY_SEARCH_PATHS = ( | ||||
| 					"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", | ||||
| @ -1006,7 +1008,7 @@ | ||||
| 				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; | ||||
| 				GCC_WARN_UNUSED_FUNCTION = YES; | ||||
| 				GCC_WARN_UNUSED_VARIABLE = YES; | ||||
| 				IPHONEOS_DEPLOYMENT_TARGET = 10.0; | ||||
| 				IPHONEOS_DEPLOYMENT_TARGET = 11.0; | ||||
| 				LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)"; | ||||
| 				LIBRARY_SEARCH_PATHS = ( | ||||
| 					"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", | ||||
|  | ||||
							
								
								
									
										625
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										625
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							| @ -2292,6 +2292,117 @@ | ||||
|         "chalk": "^3.0.0" | ||||
|       } | ||||
|     }, | ||||
|     "@k3rn31p4nic/google-translate-api": { | ||||
|       "version": "github:k3rn31p4nic/google-translate-api#b15b464fb0a8fa4d58bc90d3d251250a8a71e907", | ||||
|       "from": "github:k3rn31p4nic/google-translate-api", | ||||
|       "requires": { | ||||
|         "got": "^11.1.1" | ||||
|       }, | ||||
|       "dependencies": { | ||||
|         "@sindresorhus/is": { | ||||
|           "version": "4.0.0", | ||||
|           "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.0.0.tgz", | ||||
|           "integrity": "sha512-FyD2meJpDPjyNQejSjvnhpgI/azsQkA4lGbuu5BQZfjvJ9cbRZXzeWL2HceCekW4lixO9JPesIIQkSoLjeJHNQ==" | ||||
|         }, | ||||
|         "@szmarczak/http-timer": { | ||||
|           "version": "4.0.5", | ||||
|           "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.5.tgz", | ||||
|           "integrity": "sha512-PyRA9sm1Yayuj5OIoJ1hGt2YISX45w9WcFbh6ddT0Z/0yaFxOtGLInr4jUfU1EAFVs0Yfyfev4RNwBlUaHdlDQ==", | ||||
|           "requires": { | ||||
|             "defer-to-connect": "^2.0.0" | ||||
|           } | ||||
|         }, | ||||
|         "cacheable-request": { | ||||
|           "version": "7.0.1", | ||||
|           "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.1.tgz", | ||||
|           "integrity": "sha512-lt0mJ6YAnsrBErpTMWeu5kl/tg9xMAWjavYTN6VQXM1A/teBITuNcccXsCxF0tDQQJf9DfAaX5O4e0zp0KlfZw==", | ||||
|           "requires": { | ||||
|             "clone-response": "^1.0.2", | ||||
|             "get-stream": "^5.1.0", | ||||
|             "http-cache-semantics": "^4.0.0", | ||||
|             "keyv": "^4.0.0", | ||||
|             "lowercase-keys": "^2.0.0", | ||||
|             "normalize-url": "^4.1.0", | ||||
|             "responselike": "^2.0.0" | ||||
|           } | ||||
|         }, | ||||
|         "decompress-response": { | ||||
|           "version": "6.0.0", | ||||
|           "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", | ||||
|           "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", | ||||
|           "requires": { | ||||
|             "mimic-response": "^3.1.0" | ||||
|           } | ||||
|         }, | ||||
|         "defer-to-connect": { | ||||
|           "version": "2.0.0", | ||||
|           "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.0.tgz", | ||||
|           "integrity": "sha512-bYL2d05vOSf1JEZNx5vSAtPuBMkX8K9EUutg7zlKvTqKXHt7RhWJFbmd7qakVuf13i+IkGmp6FwSsONOf6VYIg==" | ||||
|         }, | ||||
|         "get-stream": { | ||||
|           "version": "5.2.0", | ||||
|           "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", | ||||
|           "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", | ||||
|           "requires": { | ||||
|             "pump": "^3.0.0" | ||||
|           } | ||||
|         }, | ||||
|         "got": { | ||||
|           "version": "11.8.1", | ||||
|           "resolved": "https://registry.npmjs.org/got/-/got-11.8.1.tgz", | ||||
|           "integrity": "sha512-9aYdZL+6nHmvJwHALLwKSUZ0hMwGaJGYv3hoPLPgnT8BoBXm1SjnZeky+91tfwJaDzun2s4RsBRy48IEYv2q2Q==", | ||||
|           "requires": { | ||||
|             "@sindresorhus/is": "^4.0.0", | ||||
|             "@szmarczak/http-timer": "^4.0.5", | ||||
|             "@types/cacheable-request": "^6.0.1", | ||||
|             "@types/responselike": "^1.0.0", | ||||
|             "cacheable-lookup": "^5.0.3", | ||||
|             "cacheable-request": "^7.0.1", | ||||
|             "decompress-response": "^6.0.0", | ||||
|             "http2-wrapper": "^1.0.0-beta.5.2", | ||||
|             "lowercase-keys": "^2.0.0", | ||||
|             "p-cancelable": "^2.0.0", | ||||
|             "responselike": "^2.0.0" | ||||
|           } | ||||
|         }, | ||||
|         "json-buffer": { | ||||
|           "version": "3.0.1", | ||||
|           "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", | ||||
|           "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" | ||||
|         }, | ||||
|         "keyv": { | ||||
|           "version": "4.0.3", | ||||
|           "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.0.3.tgz", | ||||
|           "integrity": "sha512-zdGa2TOpSZPq5mU6iowDARnMBZgtCqJ11dJROFi6tg6kTn4nuUdU09lFyLFSaHrWqpIJ+EBq4E8/Dc0Vx5vLdA==", | ||||
|           "requires": { | ||||
|             "json-buffer": "3.0.1" | ||||
|           } | ||||
|         }, | ||||
|         "lowercase-keys": { | ||||
|           "version": "2.0.0", | ||||
|           "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", | ||||
|           "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" | ||||
|         }, | ||||
|         "mimic-response": { | ||||
|           "version": "3.1.0", | ||||
|           "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", | ||||
|           "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==" | ||||
|         }, | ||||
|         "p-cancelable": { | ||||
|           "version": "2.0.0", | ||||
|           "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.0.0.tgz", | ||||
|           "integrity": "sha512-wvPXDmbMmu2ksjkB4Z3nZWTSkJEb9lqVdMaCKpZUGJG9TMiNp9XcbG3fn9fPKjem04fJMJnXoyFPk2FmgiaiNg==" | ||||
|         }, | ||||
|         "responselike": { | ||||
|           "version": "2.0.0", | ||||
|           "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.0.tgz", | ||||
|           "integrity": "sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==", | ||||
|           "requires": { | ||||
|             "lowercase-keys": "^2.0.0" | ||||
|           } | ||||
|         } | ||||
|       } | ||||
|     }, | ||||
|     "@react-native-community/async-storage": { | ||||
|       "version": "github:react-native-community/async-storage#3f868caa6e8a2b15b8bf8bea1e0f48eda9736fde", | ||||
|       "from": "github:react-native-community/async-storage", | ||||
| @ -2491,6 +2602,11 @@ | ||||
|         "react-native-iphone-x-helper": "^1.2.1" | ||||
|       } | ||||
|     }, | ||||
|     "@sindresorhus/is": { | ||||
|       "version": "0.14.0", | ||||
|       "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", | ||||
|       "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==" | ||||
|     }, | ||||
|     "@sinonjs/commons": { | ||||
|       "version": "1.8.1", | ||||
|       "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.1.tgz", | ||||
| @ -2500,6 +2616,14 @@ | ||||
|         "type-detect": "4.0.8" | ||||
|       } | ||||
|     }, | ||||
|     "@szmarczak/http-timer": { | ||||
|       "version": "1.1.2", | ||||
|       "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", | ||||
|       "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", | ||||
|       "requires": { | ||||
|         "defer-to-connect": "^1.0.1" | ||||
|       } | ||||
|     }, | ||||
|     "@types/babel__core": { | ||||
|       "version": "7.1.9", | ||||
|       "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.9.tgz", | ||||
| @ -2541,6 +2665,17 @@ | ||||
|         "@babel/types": "^7.3.0" | ||||
|       } | ||||
|     }, | ||||
|     "@types/cacheable-request": { | ||||
|       "version": "6.0.1", | ||||
|       "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.1.tgz", | ||||
|       "integrity": "sha512-ykFq2zmBGOCbpIXtoVbz4SKY5QriWPh3AjyU4G74RYbtt5yOc5OfaY75ftjg7mikMOla1CTGpX3lLbuJh8DTrQ==", | ||||
|       "requires": { | ||||
|         "@types/http-cache-semantics": "*", | ||||
|         "@types/keyv": "*", | ||||
|         "@types/node": "*", | ||||
|         "@types/responselike": "*" | ||||
|       } | ||||
|     }, | ||||
|     "@types/color-name": { | ||||
|       "version": "1.1.1", | ||||
|       "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz", | ||||
| @ -2566,6 +2701,11 @@ | ||||
|       "resolved": "https://registry.npmjs.org/@types/hammerjs/-/hammerjs-2.0.36.tgz", | ||||
|       "integrity": "sha512-7TUK/k2/QGpEAv/BCwSHlYu3NXZhQ9ZwBYpzr9tjlPIL2C5BeGhH3DmVavRx3ZNyELX5TLC91JTz/cen6AAtIQ==" | ||||
|     }, | ||||
|     "@types/http-cache-semantics": { | ||||
|       "version": "4.0.0", | ||||
|       "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.0.tgz", | ||||
|       "integrity": "sha512-c3Xy026kOF7QOTn00hbIllV1dLR9hG9NkSrLQgCVs8NF6sBU+VGWjD3wLPhmh1TYAc7ugCFsvHYMN4VcBN1U1A==" | ||||
|     }, | ||||
|     "@types/istanbul-lib-coverage": { | ||||
|       "version": "2.0.3", | ||||
|       "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz", | ||||
| @ -2594,11 +2734,18 @@ | ||||
|       "integrity": "sha512-7+2BITlgjgDhH0vvwZU/HZJVyk+2XUlvxXe8dFMedNX/aMkaOq++rMAFXc0tM7ij15QaWlbdQASBR9dihi+bDQ==", | ||||
|       "dev": true | ||||
|     }, | ||||
|     "@types/keyv": { | ||||
|       "version": "3.1.1", | ||||
|       "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.1.tgz", | ||||
|       "integrity": "sha512-MPtoySlAZQ37VoLaPcTHCu1RWJ4llDkULYZIzOYxlhxBqYPB0RsRlmMU0R6tahtFe27mIdkHV+551ZWV4PLmVw==", | ||||
|       "requires": { | ||||
|         "@types/node": "*" | ||||
|       } | ||||
|     }, | ||||
|     "@types/node": { | ||||
|       "version": "14.0.27", | ||||
|       "resolved": "https://registry.npmjs.org/@types/node/-/node-14.0.27.tgz", | ||||
|       "integrity": "sha512-kVrqXhbclHNHGu9ztnAwSncIgJv/FaxmzXJvGXNdcCpV1b8u1/Mi6z6m0vwy0LzKeXFTPLH0NzwmoJ3fNCIq0g==", | ||||
|       "dev": true | ||||
|       "integrity": "sha512-kVrqXhbclHNHGu9ztnAwSncIgJv/FaxmzXJvGXNdcCpV1b8u1/Mi6z6m0vwy0LzKeXFTPLH0NzwmoJ3fNCIq0g==" | ||||
|     }, | ||||
|     "@types/normalize-package-data": { | ||||
|       "version": "2.4.0", | ||||
| @ -2643,6 +2790,14 @@ | ||||
|         "@types/react-native": "*" | ||||
|       } | ||||
|     }, | ||||
|     "@types/responselike": { | ||||
|       "version": "1.0.0", | ||||
|       "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz", | ||||
|       "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==", | ||||
|       "requires": { | ||||
|         "@types/node": "*" | ||||
|       } | ||||
|     }, | ||||
|     "@types/stack-utils": { | ||||
|       "version": "1.0.1", | ||||
|       "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz", | ||||
| @ -2729,6 +2884,160 @@ | ||||
|         } | ||||
|       } | ||||
|     }, | ||||
|     "@vitalets/google-translate-api": { | ||||
|       "version": "4.0.0", | ||||
|       "resolved": "https://registry.npmjs.org/@vitalets/google-translate-api/-/google-translate-api-4.0.0.tgz", | ||||
|       "integrity": "sha512-qFGQos1frg5u1JuIDI+Qbkau2a0COANbBvTJjmPjbKxQZEvO010fd/4x0ruMEeEMxf+096GiGd4d4hdYw0NLfw==", | ||||
|       "requires": { | ||||
|         "@vitalets/google-translate-token": "^1.2.0", | ||||
|         "configstore": "^5.0.1", | ||||
|         "got": "^9.6.0" | ||||
|       }, | ||||
|       "dependencies": { | ||||
|         "configstore": { | ||||
|           "version": "5.0.1", | ||||
|           "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", | ||||
|           "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", | ||||
|           "requires": { | ||||
|             "dot-prop": "^5.2.0", | ||||
|             "graceful-fs": "^4.1.2", | ||||
|             "make-dir": "^3.0.0", | ||||
|             "unique-string": "^2.0.0", | ||||
|             "write-file-atomic": "^3.0.0", | ||||
|             "xdg-basedir": "^4.0.0" | ||||
|           } | ||||
|         }, | ||||
|         "dot-prop": { | ||||
|           "version": "5.3.0", | ||||
|           "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", | ||||
|           "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", | ||||
|           "requires": { | ||||
|             "is-obj": "^2.0.0" | ||||
|           } | ||||
|         }, | ||||
|         "got": { | ||||
|           "version": "9.6.0", | ||||
|           "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", | ||||
|           "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", | ||||
|           "requires": { | ||||
|             "@sindresorhus/is": "^0.14.0", | ||||
|             "@szmarczak/http-timer": "^1.1.2", | ||||
|             "cacheable-request": "^6.0.0", | ||||
|             "decompress-response": "^3.3.0", | ||||
|             "duplexer3": "^0.1.4", | ||||
|             "get-stream": "^4.1.0", | ||||
|             "lowercase-keys": "^1.0.1", | ||||
|             "mimic-response": "^1.0.1", | ||||
|             "p-cancelable": "^1.0.0", | ||||
|             "to-readable-stream": "^1.0.0", | ||||
|             "url-parse-lax": "^3.0.0" | ||||
|           } | ||||
|         }, | ||||
|         "is-obj": { | ||||
|           "version": "2.0.0", | ||||
|           "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", | ||||
|           "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" | ||||
|         }, | ||||
|         "make-dir": { | ||||
|           "version": "3.1.0", | ||||
|           "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", | ||||
|           "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", | ||||
|           "requires": { | ||||
|             "semver": "^6.0.0" | ||||
|           } | ||||
|         }, | ||||
|         "prepend-http": { | ||||
|           "version": "2.0.0", | ||||
|           "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", | ||||
|           "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=" | ||||
|         }, | ||||
|         "url-parse-lax": { | ||||
|           "version": "3.0.0", | ||||
|           "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", | ||||
|           "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", | ||||
|           "requires": { | ||||
|             "prepend-http": "^2.0.0" | ||||
|           } | ||||
|         }, | ||||
|         "write-file-atomic": { | ||||
|           "version": "3.0.3", | ||||
|           "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", | ||||
|           "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", | ||||
|           "requires": { | ||||
|             "imurmurhash": "^0.1.4", | ||||
|             "is-typedarray": "^1.0.0", | ||||
|             "signal-exit": "^3.0.2", | ||||
|             "typedarray-to-buffer": "^3.1.5" | ||||
|           } | ||||
|         }, | ||||
|         "xdg-basedir": { | ||||
|           "version": "4.0.0", | ||||
|           "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", | ||||
|           "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==" | ||||
|         } | ||||
|       } | ||||
|     }, | ||||
|     "@vitalets/google-translate-token": { | ||||
|       "version": "1.2.0", | ||||
|       "resolved": "https://registry.npmjs.org/@vitalets/google-translate-token/-/google-translate-token-1.2.0.tgz", | ||||
|       "integrity": "sha512-7MXRjMIWTH8XdIWRWj9IUwgYnd+VB5/herOgxNemSRzIJ6oaIeAxOSe0htw5S+OSm/gvCcUz2gq3SNBO0TufDA==", | ||||
|       "requires": { | ||||
|         "configstore": "^5.0.1", | ||||
|         "got": "^6.3.0" | ||||
|       }, | ||||
|       "dependencies": { | ||||
|         "configstore": { | ||||
|           "version": "5.0.1", | ||||
|           "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", | ||||
|           "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", | ||||
|           "requires": { | ||||
|             "dot-prop": "^5.2.0", | ||||
|             "graceful-fs": "^4.1.2", | ||||
|             "make-dir": "^3.0.0", | ||||
|             "unique-string": "^2.0.0", | ||||
|             "write-file-atomic": "^3.0.0", | ||||
|             "xdg-basedir": "^4.0.0" | ||||
|           } | ||||
|         }, | ||||
|         "dot-prop": { | ||||
|           "version": "5.3.0", | ||||
|           "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", | ||||
|           "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", | ||||
|           "requires": { | ||||
|             "is-obj": "^2.0.0" | ||||
|           } | ||||
|         }, | ||||
|         "is-obj": { | ||||
|           "version": "2.0.0", | ||||
|           "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", | ||||
|           "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" | ||||
|         }, | ||||
|         "make-dir": { | ||||
|           "version": "3.1.0", | ||||
|           "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", | ||||
|           "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", | ||||
|           "requires": { | ||||
|             "semver": "^6.0.0" | ||||
|           } | ||||
|         }, | ||||
|         "write-file-atomic": { | ||||
|           "version": "3.0.3", | ||||
|           "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", | ||||
|           "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", | ||||
|           "requires": { | ||||
|             "imurmurhash": "^0.1.4", | ||||
|             "is-typedarray": "^1.0.0", | ||||
|             "signal-exit": "^3.0.2", | ||||
|             "typedarray-to-buffer": "^3.1.5" | ||||
|           } | ||||
|         }, | ||||
|         "xdg-basedir": { | ||||
|           "version": "4.0.0", | ||||
|           "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", | ||||
|           "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==" | ||||
|         } | ||||
|       } | ||||
|     }, | ||||
|     "abab": { | ||||
|       "version": "2.0.4", | ||||
|       "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.4.tgz", | ||||
| @ -3011,6 +3320,14 @@ | ||||
|       "integrity": "sha512-3YDiu347mtVtjpyV3u5kVqQLP242c06zwDOgpeRnybmXlYYsLbtTrUBUm8i8srONt+FWobl5aibnU1030PeeuA==", | ||||
|       "dev": true | ||||
|     }, | ||||
|     "axios": { | ||||
|       "version": "0.20.0", | ||||
|       "resolved": "https://registry.npmjs.org/axios/-/axios-0.20.0.tgz", | ||||
|       "integrity": "sha512-ANA4rr2BDcmmAQLOKft2fufrtuvlqR+cXNNinUmvfeSNCOF98PZL+7M/v1zIdGo7OLjEA9J2gXJL+j4zGsl0bA==", | ||||
|       "requires": { | ||||
|         "follow-redirects": "^1.10.0" | ||||
|       } | ||||
|     }, | ||||
|     "babel-eslint": { | ||||
|       "version": "10.1.0", | ||||
|       "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz", | ||||
| @ -3346,6 +3663,40 @@ | ||||
|         "unset-value": "^1.0.0" | ||||
|       } | ||||
|     }, | ||||
|     "cacheable-lookup": { | ||||
|       "version": "5.0.4", | ||||
|       "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", | ||||
|       "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==" | ||||
|     }, | ||||
|     "cacheable-request": { | ||||
|       "version": "6.1.0", | ||||
|       "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", | ||||
|       "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", | ||||
|       "requires": { | ||||
|         "clone-response": "^1.0.2", | ||||
|         "get-stream": "^5.1.0", | ||||
|         "http-cache-semantics": "^4.0.0", | ||||
|         "keyv": "^3.0.0", | ||||
|         "lowercase-keys": "^2.0.0", | ||||
|         "normalize-url": "^4.1.0", | ||||
|         "responselike": "^1.0.2" | ||||
|       }, | ||||
|       "dependencies": { | ||||
|         "get-stream": { | ||||
|           "version": "5.2.0", | ||||
|           "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", | ||||
|           "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", | ||||
|           "requires": { | ||||
|             "pump": "^3.0.0" | ||||
|           } | ||||
|         }, | ||||
|         "lowercase-keys": { | ||||
|           "version": "2.0.0", | ||||
|           "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", | ||||
|           "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" | ||||
|         } | ||||
|       } | ||||
|     }, | ||||
|     "caller-callsite": { | ||||
|       "version": "2.0.0", | ||||
|       "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", | ||||
| @ -3380,6 +3731,11 @@ | ||||
|         "rsvp": "^4.8.4" | ||||
|       } | ||||
|     }, | ||||
|     "capture-stack-trace": { | ||||
|       "version": "1.0.1", | ||||
|       "resolved": "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz", | ||||
|       "integrity": "sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw==" | ||||
|     }, | ||||
|     "caseless": { | ||||
|       "version": "0.12.0", | ||||
|       "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", | ||||
| @ -3469,6 +3825,14 @@ | ||||
|       "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", | ||||
|       "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=" | ||||
|     }, | ||||
|     "clone-response": { | ||||
|       "version": "1.0.2", | ||||
|       "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", | ||||
|       "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", | ||||
|       "requires": { | ||||
|         "mimic-response": "^1.0.0" | ||||
|       } | ||||
|     }, | ||||
|     "co": { | ||||
|       "version": "4.6.0", | ||||
|       "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", | ||||
| @ -3664,6 +4028,14 @@ | ||||
|         "parse-json": "^4.0.0" | ||||
|       } | ||||
|     }, | ||||
|     "create-error-class": { | ||||
|       "version": "3.0.2", | ||||
|       "resolved": "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz", | ||||
|       "integrity": "sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=", | ||||
|       "requires": { | ||||
|         "capture-stack-trace": "^1.0.0" | ||||
|       } | ||||
|     }, | ||||
|     "cross-spawn": { | ||||
|       "version": "6.0.5", | ||||
|       "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", | ||||
| @ -3683,6 +4055,11 @@ | ||||
|         } | ||||
|       } | ||||
|     }, | ||||
|     "crypto-random-string": { | ||||
|       "version": "2.0.0", | ||||
|       "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", | ||||
|       "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==" | ||||
|     }, | ||||
|     "cssom": { | ||||
|       "version": "0.4.4", | ||||
|       "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", | ||||
| @ -3761,6 +4138,14 @@ | ||||
|       "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", | ||||
|       "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=" | ||||
|     }, | ||||
|     "decompress-response": { | ||||
|       "version": "3.3.0", | ||||
|       "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", | ||||
|       "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", | ||||
|       "requires": { | ||||
|         "mimic-response": "^1.0.0" | ||||
|       } | ||||
|     }, | ||||
|     "deep-assign": { | ||||
|       "version": "3.0.0", | ||||
|       "resolved": "https://registry.npmjs.org/deep-assign/-/deep-assign-3.0.0.tgz", | ||||
| @ -3788,6 +4173,11 @@ | ||||
|         "clone": "^1.0.2" | ||||
|       } | ||||
|     }, | ||||
|     "defer-to-connect": { | ||||
|       "version": "1.1.3", | ||||
|       "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", | ||||
|       "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==" | ||||
|     }, | ||||
|     "define-properties": { | ||||
|       "version": "1.1.3", | ||||
|       "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", | ||||
| @ -3884,6 +4274,11 @@ | ||||
|         "webidl-conversions": "^4.0.2" | ||||
|       } | ||||
|     }, | ||||
|     "duplexer3": { | ||||
|       "version": "0.1.4", | ||||
|       "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", | ||||
|       "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=" | ||||
|     }, | ||||
|     "ecc-jsbn": { | ||||
|       "version": "0.1.2", | ||||
|       "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", | ||||
| @ -4578,6 +4973,11 @@ | ||||
|       "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.2.tgz", | ||||
|       "integrity": "sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==" | ||||
|     }, | ||||
|     "events": { | ||||
|       "version": "3.2.0", | ||||
|       "resolved": "https://registry.npmjs.org/events/-/events-3.2.0.tgz", | ||||
|       "integrity": "sha512-/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg==" | ||||
|     }, | ||||
|     "exec-sh": { | ||||
|       "version": "0.3.4", | ||||
|       "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.4.tgz", | ||||
| @ -5034,6 +5434,11 @@ | ||||
|       "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==", | ||||
|       "dev": true | ||||
|     }, | ||||
|     "follow-redirects": { | ||||
|       "version": "1.13.1", | ||||
|       "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.1.tgz", | ||||
|       "integrity": "sha512-SSG5xmZh1mkPGyKzjZP8zLjltIfpW32Y5QpdNJyjcfGxK3qo3NDDkZOZSFiGn1A6SclQxY9GzEwAHQ3dmYRWpg==" | ||||
|     }, | ||||
|     "for-in": { | ||||
|       "version": "1.0.2", | ||||
|       "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", | ||||
| @ -5176,6 +5581,31 @@ | ||||
|       "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", | ||||
|       "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" | ||||
|     }, | ||||
|     "got": { | ||||
|       "version": "6.7.1", | ||||
|       "resolved": "https://registry.npmjs.org/got/-/got-6.7.1.tgz", | ||||
|       "integrity": "sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=", | ||||
|       "requires": { | ||||
|         "create-error-class": "^3.0.0", | ||||
|         "duplexer3": "^0.1.4", | ||||
|         "get-stream": "^3.0.0", | ||||
|         "is-redirect": "^1.0.0", | ||||
|         "is-retry-allowed": "^1.0.0", | ||||
|         "is-stream": "^1.0.0", | ||||
|         "lowercase-keys": "^1.0.0", | ||||
|         "safe-buffer": "^5.0.1", | ||||
|         "timed-out": "^4.0.0", | ||||
|         "unzip-response": "^2.0.1", | ||||
|         "url-parse-lax": "^1.0.0" | ||||
|       }, | ||||
|       "dependencies": { | ||||
|         "get-stream": { | ||||
|           "version": "3.0.0", | ||||
|           "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", | ||||
|           "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=" | ||||
|         } | ||||
|       } | ||||
|     }, | ||||
|     "graceful-fs": { | ||||
|       "version": "4.2.4", | ||||
|       "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz", | ||||
| @ -5298,6 +5728,19 @@ | ||||
|       "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", | ||||
|       "dev": true | ||||
|     }, | ||||
|     "html-parse-stringify2": { | ||||
|       "version": "2.0.1", | ||||
|       "resolved": "https://registry.npmjs.org/html-parse-stringify2/-/html-parse-stringify2-2.0.1.tgz", | ||||
|       "integrity": "sha1-3FZwtyksoVi3vJFsmmc1rIhyg0o=", | ||||
|       "requires": { | ||||
|         "void-elements": "^2.0.1" | ||||
|       } | ||||
|     }, | ||||
|     "http-cache-semantics": { | ||||
|       "version": "4.1.0", | ||||
|       "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", | ||||
|       "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==" | ||||
|     }, | ||||
|     "http-errors": { | ||||
|       "version": "1.7.3", | ||||
|       "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz", | ||||
| @ -5321,12 +5764,49 @@ | ||||
|         "sshpk": "^1.7.0" | ||||
|       } | ||||
|     }, | ||||
|     "http2-wrapper": { | ||||
|       "version": "1.0.0-beta.5.2", | ||||
|       "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.0-beta.5.2.tgz", | ||||
|       "integrity": "sha512-xYz9goEyBnC8XwXDTuC/MZ6t+MrKVQZOk4s7+PaDkwIsQd8IwqvM+0M6bA/2lvG8GHXcPdf+MejTUeO2LCPCeQ==", | ||||
|       "requires": { | ||||
|         "quick-lru": "^5.1.1", | ||||
|         "resolve-alpn": "^1.0.0" | ||||
|       } | ||||
|     }, | ||||
|     "human-signals": { | ||||
|       "version": "1.1.1", | ||||
|       "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", | ||||
|       "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", | ||||
|       "dev": true | ||||
|     }, | ||||
|     "i18n-js": { | ||||
|       "version": "3.0.11", | ||||
|       "resolved": "https://registry.npmjs.org/i18n-js/-/i18n-js-3.0.11.tgz", | ||||
|       "integrity": "sha512-v7dG3kYJTQTyox3NqDabPDE/ZotWntyMI9kh4cYi+XlCSnsIR+KBTS2opPyObL8WndnklcLzbNU92FP/mLge3Q==" | ||||
|     }, | ||||
|     "i18next": { | ||||
|       "version": "19.8.4", | ||||
|       "resolved": "https://registry.npmjs.org/i18next/-/i18next-19.8.4.tgz", | ||||
|       "integrity": "sha512-FfVPNWv+felJObeZ6DSXZkj9QM1Ivvh7NcFCgA8XPtJWHz0iXVa9BUy+QY8EPrCLE+vWgDfV/sc96BgXVo6HAA==", | ||||
|       "requires": { | ||||
|         "@babel/runtime": "^7.12.0" | ||||
|       }, | ||||
|       "dependencies": { | ||||
|         "@babel/runtime": { | ||||
|           "version": "7.12.5", | ||||
|           "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz", | ||||
|           "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==", | ||||
|           "requires": { | ||||
|             "regenerator-runtime": "^0.13.4" | ||||
|           } | ||||
|         } | ||||
|       } | ||||
|     }, | ||||
|     "i18next-react-native-language-detector": { | ||||
|       "version": "1.0.2", | ||||
|       "resolved": "https://registry.npmjs.org/i18next-react-native-language-detector/-/i18next-react-native-language-detector-1.0.2.tgz", | ||||
|       "integrity": "sha1-XEdIJhGkQmIwKjY9W+NKQrEd38Y=" | ||||
|     }, | ||||
|     "iconv-lite": { | ||||
|       "version": "0.4.24", | ||||
|       "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", | ||||
| @ -5671,6 +6151,11 @@ | ||||
|         "isobject": "^3.0.1" | ||||
|       } | ||||
|     }, | ||||
|     "is-redirect": { | ||||
|       "version": "1.0.0", | ||||
|       "resolved": "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz", | ||||
|       "integrity": "sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ=" | ||||
|     }, | ||||
|     "is-regex": { | ||||
|       "version": "1.1.1", | ||||
|       "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz", | ||||
| @ -5680,6 +6165,11 @@ | ||||
|         "has-symbols": "^1.0.1" | ||||
|       } | ||||
|     }, | ||||
|     "is-retry-allowed": { | ||||
|       "version": "1.2.0", | ||||
|       "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", | ||||
|       "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==" | ||||
|     }, | ||||
|     "is-stream": { | ||||
|       "version": "1.1.0", | ||||
|       "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", | ||||
| @ -5703,8 +6193,7 @@ | ||||
|     "is-typedarray": { | ||||
|       "version": "1.0.0", | ||||
|       "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", | ||||
|       "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", | ||||
|       "dev": true | ||||
|       "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" | ||||
|     }, | ||||
|     "is-windows": { | ||||
|       "version": "1.0.2", | ||||
| @ -8294,6 +8783,11 @@ | ||||
|       "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", | ||||
|       "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" | ||||
|     }, | ||||
|     "json-buffer": { | ||||
|       "version": "3.0.0", | ||||
|       "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", | ||||
|       "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=" | ||||
|     }, | ||||
|     "json-parse-better-errors": { | ||||
|       "version": "1.0.2", | ||||
|       "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", | ||||
| @ -8374,6 +8868,14 @@ | ||||
|         "object.assign": "^4.1.0" | ||||
|       } | ||||
|     }, | ||||
|     "keyv": { | ||||
|       "version": "3.1.0", | ||||
|       "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", | ||||
|       "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", | ||||
|       "requires": { | ||||
|         "json-buffer": "3.0.0" | ||||
|       } | ||||
|     }, | ||||
|     "kind-of": { | ||||
|       "version": "6.0.3", | ||||
|       "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", | ||||
| @ -8524,6 +9026,11 @@ | ||||
|         "js-tokens": "^3.0.0 || ^4.0.0" | ||||
|       } | ||||
|     }, | ||||
|     "lowercase-keys": { | ||||
|       "version": "1.0.1", | ||||
|       "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", | ||||
|       "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" | ||||
|     }, | ||||
|     "lru-cache": { | ||||
|       "version": "4.1.5", | ||||
|       "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", | ||||
| @ -9323,6 +9830,11 @@ | ||||
|       "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", | ||||
|       "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==" | ||||
|     }, | ||||
|     "mimic-response": { | ||||
|       "version": "1.0.1", | ||||
|       "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", | ||||
|       "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" | ||||
|     }, | ||||
|     "minimatch": { | ||||
|       "version": "3.0.4", | ||||
|       "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", | ||||
| @ -9497,6 +10009,11 @@ | ||||
|         "remove-trailing-separator": "^1.0.1" | ||||
|       } | ||||
|     }, | ||||
|     "normalize-url": { | ||||
|       "version": "4.5.0", | ||||
|       "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz", | ||||
|       "integrity": "sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==" | ||||
|     }, | ||||
|     "npm-run-path": { | ||||
|       "version": "2.0.2", | ||||
|       "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", | ||||
| @ -9758,6 +10275,11 @@ | ||||
|       "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", | ||||
|       "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=" | ||||
|     }, | ||||
|     "p-cancelable": { | ||||
|       "version": "1.1.0", | ||||
|       "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", | ||||
|       "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==" | ||||
|     }, | ||||
|     "p-each-series": { | ||||
|       "version": "2.1.0", | ||||
|       "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-2.1.0.tgz", | ||||
| @ -9990,6 +10512,11 @@ | ||||
|       "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", | ||||
|       "dev": true | ||||
|     }, | ||||
|     "prepend-http": { | ||||
|       "version": "1.0.4", | ||||
|       "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", | ||||
|       "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=" | ||||
|     }, | ||||
|     "prettier": { | ||||
|       "version": "2.0.5", | ||||
|       "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.0.5.tgz", | ||||
| @ -10143,6 +10670,16 @@ | ||||
|         "strict-uri-encode": "^2.0.0" | ||||
|       } | ||||
|     }, | ||||
|     "querystring": { | ||||
|       "version": "0.2.0", | ||||
|       "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", | ||||
|       "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" | ||||
|     }, | ||||
|     "quick-lru": { | ||||
|       "version": "5.1.1", | ||||
|       "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", | ||||
|       "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" | ||||
|     }, | ||||
|     "range-parser": { | ||||
|       "version": "1.2.1", | ||||
|       "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", | ||||
| @ -10174,6 +10711,15 @@ | ||||
|         } | ||||
|       } | ||||
|     }, | ||||
|     "react-i18next": { | ||||
|       "version": "11.8.5", | ||||
|       "resolved": "https://registry.npmjs.org/react-i18next/-/react-i18next-11.8.5.tgz", | ||||
|       "integrity": "sha512-2jY/8NkhNv2KWBnZuhHxTn13aMxAbvhiDUNskm+1xVVnrPId78l8fA7fCyVeO3XU1kptM0t4MtvxV1Nu08cjLw==", | ||||
|       "requires": { | ||||
|         "@babel/runtime": "^7.3.1", | ||||
|         "html-parse-stringify2": "2.0.1" | ||||
|       } | ||||
|     }, | ||||
|     "react-is": { | ||||
|       "version": "16.13.1", | ||||
|       "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", | ||||
| @ -10375,6 +10921,14 @@ | ||||
|         "prop-types": "^15.7.2" | ||||
|       } | ||||
|     }, | ||||
|     "react-native-i18n": { | ||||
|       "version": "2.0.15", | ||||
|       "resolved": "https://registry.npmjs.org/react-native-i18n/-/react-native-i18n-2.0.15.tgz", | ||||
|       "integrity": "sha512-V8VwUP0TLda3oJvgt5tdnFaOV7WXPhTjCTLO7sXI3C2SHggSbD4bCUryMzNJhesimJidH21V2Owvj4zAylHoQQ==", | ||||
|       "requires": { | ||||
|         "i18n-js": "3.0.11" | ||||
|       } | ||||
|     }, | ||||
|     "react-native-iphone-x-helper": { | ||||
|       "version": "1.2.1", | ||||
|       "resolved": "https://registry.npmjs.org/react-native-iphone-x-helper/-/react-native-iphone-x-helper-1.2.1.tgz", | ||||
| @ -10385,6 +10939,11 @@ | ||||
|       "resolved": "https://registry.npmjs.org/react-native-linear-gradient/-/react-native-linear-gradient-2.5.6.tgz", | ||||
|       "integrity": "sha512-HDwEaXcQIuXXCV70O+bK1rizFong3wj+5Q/jSyifKFLg0VWF95xh8XQgfzXwtq0NggL9vNjPKXa016KuFu+VFg==" | ||||
|     }, | ||||
|     "react-native-locale-detector": { | ||||
|       "version": "1.0.1", | ||||
|       "resolved": "https://registry.npmjs.org/react-native-locale-detector/-/react-native-locale-detector-1.0.1.tgz", | ||||
|       "integrity": "sha1-wAImHstgYZ5ZUiV8jH+jHCwV7TA=" | ||||
|     }, | ||||
|     "react-native-ratings": { | ||||
|       "version": "7.2.0", | ||||
|       "resolved": "https://registry.npmjs.org/react-native-ratings/-/react-native-ratings-7.2.0.tgz", | ||||
| @ -10802,6 +11361,11 @@ | ||||
|         "path-parse": "^1.0.6" | ||||
|       } | ||||
|     }, | ||||
|     "resolve-alpn": { | ||||
|       "version": "1.0.0", | ||||
|       "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.0.0.tgz", | ||||
|       "integrity": "sha512-rTuiIEqFmGxne4IovivKSDzld2lWW9QCjqv80SYjPgf+gS35eaCAjaP54CCwGAwBtnCsvNLYtqxe1Nw+i6JEmA==" | ||||
|     }, | ||||
|     "resolve-cwd": { | ||||
|       "version": "3.0.0", | ||||
|       "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", | ||||
| @ -10829,6 +11393,14 @@ | ||||
|       "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", | ||||
|       "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=" | ||||
|     }, | ||||
|     "responselike": { | ||||
|       "version": "1.0.2", | ||||
|       "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", | ||||
|       "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", | ||||
|       "requires": { | ||||
|         "lowercase-keys": "^1.0.0" | ||||
|       } | ||||
|     }, | ||||
|     "restore-cursor": { | ||||
|       "version": "2.0.0", | ||||
|       "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", | ||||
| @ -11654,6 +12226,11 @@ | ||||
|       "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz", | ||||
|       "integrity": "sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=" | ||||
|     }, | ||||
|     "timed-out": { | ||||
|       "version": "4.0.1", | ||||
|       "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", | ||||
|       "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=" | ||||
|     }, | ||||
|     "tmp": { | ||||
|       "version": "0.0.33", | ||||
|       "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", | ||||
| @ -11690,6 +12267,11 @@ | ||||
|         } | ||||
|       } | ||||
|     }, | ||||
|     "to-readable-stream": { | ||||
|       "version": "1.0.0", | ||||
|       "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", | ||||
|       "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==" | ||||
|     }, | ||||
|     "to-regex": { | ||||
|       "version": "3.0.2", | ||||
|       "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", | ||||
| @ -11735,6 +12317,14 @@ | ||||
|         "punycode": "^2.1.0" | ||||
|       } | ||||
|     }, | ||||
|     "translate-google-api": { | ||||
|       "version": "1.0.4", | ||||
|       "resolved": "https://registry.npmjs.org/translate-google-api/-/translate-google-api-1.0.4.tgz", | ||||
|       "integrity": "sha512-KVXmo4+64/H1vIbnzf2zNiJ2JLeEB3jrEnNRP2EFNAGNqna/5bmw/Cps3pCHu0n3BzTOoWh9u6wFvrRYdzQ6Iw==", | ||||
|       "requires": { | ||||
|         "axios": "^0.20.0" | ||||
|       } | ||||
|     }, | ||||
|     "tslib": { | ||||
|       "version": "1.13.0", | ||||
|       "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz", | ||||
| @ -11794,7 +12384,6 @@ | ||||
|       "version": "3.1.5", | ||||
|       "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", | ||||
|       "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", | ||||
|       "dev": true, | ||||
|       "requires": { | ||||
|         "is-typedarray": "^1.0.0" | ||||
|       } | ||||
| @ -11865,6 +12454,14 @@ | ||||
|         "set-value": "^2.0.1" | ||||
|       } | ||||
|     }, | ||||
|     "unique-string": { | ||||
|       "version": "2.0.0", | ||||
|       "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", | ||||
|       "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", | ||||
|       "requires": { | ||||
|         "crypto-random-string": "^2.0.0" | ||||
|       } | ||||
|     }, | ||||
|     "universalify": { | ||||
|       "version": "0.1.2", | ||||
|       "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", | ||||
| @ -11911,6 +12508,11 @@ | ||||
|         } | ||||
|       } | ||||
|     }, | ||||
|     "unzip-response": { | ||||
|       "version": "2.0.1", | ||||
|       "resolved": "https://registry.npmjs.org/unzip-response/-/unzip-response-2.0.1.tgz", | ||||
|       "integrity": "sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c=" | ||||
|     }, | ||||
|     "uri-js": { | ||||
|       "version": "4.2.2", | ||||
|       "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", | ||||
| @ -11925,6 +12527,14 @@ | ||||
|       "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", | ||||
|       "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=" | ||||
|     }, | ||||
|     "url-parse-lax": { | ||||
|       "version": "1.0.0", | ||||
|       "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", | ||||
|       "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=", | ||||
|       "requires": { | ||||
|         "prepend-http": "^1.0.1" | ||||
|       } | ||||
|     }, | ||||
|     "use": { | ||||
|       "version": "3.1.1", | ||||
|       "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", | ||||
| @ -12009,6 +12619,11 @@ | ||||
|       "resolved": "https://registry.npmjs.org/vlq/-/vlq-1.0.1.tgz", | ||||
|       "integrity": "sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==" | ||||
|     }, | ||||
|     "void-elements": { | ||||
|       "version": "2.0.1", | ||||
|       "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz", | ||||
|       "integrity": "sha1-wGavtYK7HLQSjWDqkjkulNXp2+w=" | ||||
|     }, | ||||
|     "w3c-hr-time": { | ||||
|       "version": "1.0.2", | ||||
|       "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", | ||||
|  | ||||
							
								
								
									
										13
									
								
								package.json
									
									
									
									
									
								
							
							
						
						
									
										13
									
								
								package.json
									
									
									
									
									
								
							| @ -10,22 +10,33 @@ | ||||
|     "lint": "eslint ." | ||||
|   }, | ||||
|   "dependencies": { | ||||
|     "@k3rn31p4nic/google-translate-api": "github:k3rn31p4nic/google-translate-api", | ||||
|     "@react-native-community/async-storage": "github:react-native-community/async-storage", | ||||
|     "@react-native-community/masked-view": "^0.1.10", | ||||
|     "@react-navigation/bottom-tabs": "^5.8.0", | ||||
|     "@react-navigation/native": "^5.7.3", | ||||
|     "@react-navigation/stack": "^5.9.0", | ||||
|     "@vitalets/google-translate-api": "^4.0.0", | ||||
|     "events": "^3.2.0", | ||||
|     "i18next": "^19.8.4", | ||||
|     "i18next-react-native-language-detector": "^1.0.2", | ||||
|     "querystring": "^0.2.0", | ||||
|     "react": "16.13.1", | ||||
|     "react-i18next": "^11.8.5", | ||||
|     "react-native": "^0.63.2", | ||||
|     "react-native-elements": "^2.2.0", | ||||
|     "react-native-gesture-handler": "^1.7.0", | ||||
|     "react-native-i18n": "^2.0.15", | ||||
|     "react-native-linear-gradient": "^2.5.6", | ||||
|     "react-native-locale-detector": "^1.0.1", | ||||
|     "react-native-reanimated": "^1.10.2", | ||||
|     "react-native-safe-area-context": "^3.1.4", | ||||
|     "react-native-screens": "^2.10.1", | ||||
|     "react-native-splash-screen": "^3.2.0", | ||||
|     "react-native-vector-icons": "^7.0.0", | ||||
|     "react-native-webview": "^11.0.2" | ||||
|     "react-native-webview": "^11.0.2", | ||||
|     "translate-google-api": "^1.0.4", | ||||
|     "url": "^0.11.0" | ||||
|   }, | ||||
|   "devDependencies": { | ||||
|     "@babel/core": "7.11.1", | ||||
|  | ||||
							
								
								
									
										422
									
								
								yarn.lock
									
									
									
									
									
								
							
							
						
						
									
										422
									
								
								yarn.lock
									
									
									
									
									
								
							| @ -1025,6 +1025,13 @@ | ||||
|     "@types/yargs" "^15.0.0" | ||||
|     chalk "^3.0.0" | ||||
| 
 | ||||
| "@k3rn31p4nic/google-translate-api@^1.1.1": | ||||
|   version "1.1.1" | ||||
|   resolved "https://registry.yarnpkg.com/@k3rn31p4nic/google-translate-api/-/google-translate-api-1.1.1.tgz#3869854f7540bbb82afc1b61890281f5513e1717" | ||||
|   integrity sha512-vg3zLYXhUmdwrNxmoKOfYSJzB8lHKDnqR7L/SYQQKCYkxsj2syK/cJMAcK5fQC0hfwgexxUaWhR2p2gGEe3nVw== | ||||
|   dependencies: | ||||
|     got "^11.1.1" | ||||
| 
 | ||||
| "@react-native-community/async-storage@github:react-native-community/async-storage": | ||||
|   version "1.12.1" | ||||
|   resolved "https://codeload.github.com/react-native-community/async-storage/tar.gz/2f504f3e3493002c34a0cd3d96c4bb75fac6db82" | ||||
| @ -1223,6 +1230,16 @@ | ||||
|     color "^3.1.2" | ||||
|     react-native-iphone-x-helper "^1.2.1" | ||||
| 
 | ||||
| "@sindresorhus/is@^0.14.0": | ||||
|   version "0.14.0" | ||||
|   resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea" | ||||
|   integrity sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ== | ||||
| 
 | ||||
| "@sindresorhus/is@^4.0.0": | ||||
|   version "4.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.0.0.tgz#2ff674e9611b45b528896d820d3d7a812de2f0e4" | ||||
|   integrity sha512-FyD2meJpDPjyNQejSjvnhpgI/azsQkA4lGbuu5BQZfjvJ9cbRZXzeWL2HceCekW4lixO9JPesIIQkSoLjeJHNQ== | ||||
| 
 | ||||
| "@sinonjs/commons@^1.7.0": | ||||
|   version "1.8.1" | ||||
|   resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.1.tgz#e7df00f98a203324f6dc7cc606cad9d4a8ab2217" | ||||
| @ -1230,6 +1247,20 @@ | ||||
|   dependencies: | ||||
|     type-detect "4.0.8" | ||||
| 
 | ||||
| "@szmarczak/http-timer@^1.1.2": | ||||
|   version "1.1.2" | ||||
|   resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-1.1.2.tgz#b1665e2c461a2cd92f4c1bbf50d5454de0d4b421" | ||||
|   integrity sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA== | ||||
|   dependencies: | ||||
|     defer-to-connect "^1.0.1" | ||||
| 
 | ||||
| "@szmarczak/http-timer@^4.0.5": | ||||
|   version "4.0.5" | ||||
|   resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-4.0.5.tgz#bfbd50211e9dfa51ba07da58a14cdfd333205152" | ||||
|   integrity sha512-PyRA9sm1Yayuj5OIoJ1hGt2YISX45w9WcFbh6ddT0Z/0yaFxOtGLInr4jUfU1EAFVs0Yfyfev4RNwBlUaHdlDQ== | ||||
|   dependencies: | ||||
|     defer-to-connect "^2.0.0" | ||||
| 
 | ||||
| "@types/babel__core@^7.1.7": | ||||
|   version "7.1.10" | ||||
|   resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.10.tgz#ca58fc195dd9734e77e57c6f2df565623636ab40" | ||||
| @ -1263,6 +1294,16 @@ | ||||
|   dependencies: | ||||
|     "@babel/types" "^7.3.0" | ||||
| 
 | ||||
| "@types/cacheable-request@^6.0.1": | ||||
|   version "6.0.1" | ||||
|   resolved "https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.1.tgz#5d22f3dded1fd3a84c0bbeb5039a7419c2c91976" | ||||
|   integrity sha512-ykFq2zmBGOCbpIXtoVbz4SKY5QriWPh3AjyU4G74RYbtt5yOc5OfaY75ftjg7mikMOla1CTGpX3lLbuJh8DTrQ== | ||||
|   dependencies: | ||||
|     "@types/http-cache-semantics" "*" | ||||
|     "@types/keyv" "*" | ||||
|     "@types/node" "*" | ||||
|     "@types/responselike" "*" | ||||
| 
 | ||||
| "@types/eslint-visitor-keys@^1.0.0": | ||||
|   version "1.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#1ee30d79544ca84d68d4b3cdb0af4f205663dd2d" | ||||
| @ -1280,6 +1321,11 @@ | ||||
|   resolved "https://registry.yarnpkg.com/@types/hammerjs/-/hammerjs-2.0.36.tgz#17ce0a235e9ffbcdcdf5095646b374c2bf615a4c" | ||||
|   integrity sha512-7TUK/k2/QGpEAv/BCwSHlYu3NXZhQ9ZwBYpzr9tjlPIL2C5BeGhH3DmVavRx3ZNyELX5TLC91JTz/cen6AAtIQ== | ||||
| 
 | ||||
| "@types/http-cache-semantics@*": | ||||
|   version "4.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.0.tgz#9140779736aa2655635ee756e2467d787cfe8a2a" | ||||
|   integrity sha512-c3Xy026kOF7QOTn00hbIllV1dLR9hG9NkSrLQgCVs8NF6sBU+VGWjD3wLPhmh1TYAc7ugCFsvHYMN4VcBN1U1A== | ||||
| 
 | ||||
| "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": | ||||
|   version "2.0.3" | ||||
|   resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#4ba8ddb720221f432e443bd5f9117fd22cfd4762" | ||||
| @ -1305,6 +1351,13 @@ | ||||
|   resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.6.tgz#f4c7ec43e81b319a9815115031709f26987891f0" | ||||
|   integrity sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw== | ||||
| 
 | ||||
| "@types/keyv@*": | ||||
|   version "3.1.1" | ||||
|   resolved "https://registry.yarnpkg.com/@types/keyv/-/keyv-3.1.1.tgz#e45a45324fca9dab716ab1230ee249c9fb52cfa7" | ||||
|   integrity sha512-MPtoySlAZQ37VoLaPcTHCu1RWJ4llDkULYZIzOYxlhxBqYPB0RsRlmMU0R6tahtFe27mIdkHV+551ZWV4PLmVw== | ||||
|   dependencies: | ||||
|     "@types/node" "*" | ||||
| 
 | ||||
| "@types/node@*": | ||||
|   version "14.11.10" | ||||
|   resolved "https://registry.yarnpkg.com/@types/node/-/node-14.11.10.tgz#8c102aba13bf5253f35146affbf8b26275069bef" | ||||
| @ -1348,6 +1401,13 @@ | ||||
|     "@types/prop-types" "*" | ||||
|     csstype "^3.0.2" | ||||
| 
 | ||||
| "@types/responselike@*", "@types/responselike@^1.0.0": | ||||
|   version "1.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/@types/responselike/-/responselike-1.0.0.tgz#251f4fe7d154d2bad125abe1b429b23afd262e29" | ||||
|   integrity sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA== | ||||
|   dependencies: | ||||
|     "@types/node" "*" | ||||
| 
 | ||||
| "@types/stack-utils@^1.0.1": | ||||
|   version "1.0.1" | ||||
|   resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e" | ||||
| @ -1415,6 +1475,23 @@ | ||||
|     semver "^7.3.2" | ||||
|     tsutils "^3.17.1" | ||||
| 
 | ||||
| "@vitalets/google-translate-api@^4.0.0": | ||||
|   version "4.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/@vitalets/google-translate-api/-/google-translate-api-4.0.0.tgz#e33d4e44ef75f2595a9f7179a6a0baed9b61cd3d" | ||||
|   integrity sha512-qFGQos1frg5u1JuIDI+Qbkau2a0COANbBvTJjmPjbKxQZEvO010fd/4x0ruMEeEMxf+096GiGd4d4hdYw0NLfw== | ||||
|   dependencies: | ||||
|     "@vitalets/google-translate-token" "^1.2.0" | ||||
|     configstore "^5.0.1" | ||||
|     got "^9.6.0" | ||||
| 
 | ||||
| "@vitalets/google-translate-token@^1.2.0": | ||||
|   version "1.2.0" | ||||
|   resolved "https://registry.yarnpkg.com/@vitalets/google-translate-token/-/google-translate-token-1.2.0.tgz#a7581d15644e2a60027850c60e45efdc15646dda" | ||||
|   integrity sha512-7MXRjMIWTH8XdIWRWj9IUwgYnd+VB5/herOgxNemSRzIJ6oaIeAxOSe0htw5S+OSm/gvCcUz2gq3SNBO0TufDA== | ||||
|   dependencies: | ||||
|     configstore "^5.0.1" | ||||
|     got "^6.3.0" | ||||
| 
 | ||||
| abab@^2.0.0: | ||||
|   version "2.0.5" | ||||
|   resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a" | ||||
| @ -1962,6 +2039,37 @@ cache-base@^1.0.1: | ||||
|     union-value "^1.0.0" | ||||
|     unset-value "^1.0.0" | ||||
| 
 | ||||
| cacheable-lookup@^5.0.3: | ||||
|   version "5.0.4" | ||||
|   resolved "https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz#5a6b865b2c44357be3d5ebc2a467b032719a7005" | ||||
|   integrity sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA== | ||||
| 
 | ||||
| cacheable-request@^6.0.0: | ||||
|   version "6.1.0" | ||||
|   resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-6.1.0.tgz#20ffb8bd162ba4be11e9567d823db651052ca912" | ||||
|   integrity sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg== | ||||
|   dependencies: | ||||
|     clone-response "^1.0.2" | ||||
|     get-stream "^5.1.0" | ||||
|     http-cache-semantics "^4.0.0" | ||||
|     keyv "^3.0.0" | ||||
|     lowercase-keys "^2.0.0" | ||||
|     normalize-url "^4.1.0" | ||||
|     responselike "^1.0.2" | ||||
| 
 | ||||
| cacheable-request@^7.0.1: | ||||
|   version "7.0.1" | ||||
|   resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-7.0.1.tgz#062031c2856232782ed694a257fa35da93942a58" | ||||
|   integrity sha512-lt0mJ6YAnsrBErpTMWeu5kl/tg9xMAWjavYTN6VQXM1A/teBITuNcccXsCxF0tDQQJf9DfAaX5O4e0zp0KlfZw== | ||||
|   dependencies: | ||||
|     clone-response "^1.0.2" | ||||
|     get-stream "^5.1.0" | ||||
|     http-cache-semantics "^4.0.0" | ||||
|     keyv "^4.0.0" | ||||
|     lowercase-keys "^2.0.0" | ||||
|     normalize-url "^4.1.0" | ||||
|     responselike "^2.0.0" | ||||
| 
 | ||||
| caller-callsite@^2.0.0: | ||||
|   version "2.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" | ||||
| @ -1998,6 +2106,11 @@ capture-exit@^2.0.0: | ||||
|   dependencies: | ||||
|     rsvp "^4.8.4" | ||||
| 
 | ||||
| capture-stack-trace@^1.0.0: | ||||
|   version "1.0.1" | ||||
|   resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz#a6c0bbe1f38f3aa0b92238ecb6ff42c344d4135d" | ||||
|   integrity sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw== | ||||
| 
 | ||||
| caseless@~0.12.0: | ||||
|   version "0.12.0" | ||||
|   resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" | ||||
| @ -2100,6 +2213,13 @@ cliui@^6.0.0: | ||||
|     strip-ansi "^6.0.0" | ||||
|     wrap-ansi "^6.2.0" | ||||
| 
 | ||||
| clone-response@^1.0.2: | ||||
|   version "1.0.2" | ||||
|   resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b" | ||||
|   integrity sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws= | ||||
|   dependencies: | ||||
|     mimic-response "^1.0.0" | ||||
| 
 | ||||
| clone@^1.0.2: | ||||
|   version "1.0.4" | ||||
|   resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" | ||||
| @ -2240,6 +2360,18 @@ concat-stream@^1.6.0: | ||||
|     readable-stream "^2.2.2" | ||||
|     typedarray "^0.0.6" | ||||
| 
 | ||||
| configstore@^5.0.1: | ||||
|   version "5.0.1" | ||||
|   resolved "https://registry.yarnpkg.com/configstore/-/configstore-5.0.1.tgz#d365021b5df4b98cdd187d6a3b0e3f6a7cc5ed96" | ||||
|   integrity sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA== | ||||
|   dependencies: | ||||
|     dot-prop "^5.2.0" | ||||
|     graceful-fs "^4.1.2" | ||||
|     make-dir "^3.0.0" | ||||
|     unique-string "^2.0.0" | ||||
|     write-file-atomic "^3.0.0" | ||||
|     xdg-basedir "^4.0.0" | ||||
| 
 | ||||
| connect@^3.6.5: | ||||
|   version "3.7.0" | ||||
|   resolved "https://registry.yarnpkg.com/connect/-/connect-3.7.0.tgz#5d49348910caa5e07a01800b030d0c35f20484f8" | ||||
| @ -2287,6 +2419,13 @@ cosmiconfig@^5.0.5, cosmiconfig@^5.1.0: | ||||
|     js-yaml "^3.13.1" | ||||
|     parse-json "^4.0.0" | ||||
| 
 | ||||
| create-error-class@^3.0.0: | ||||
|   version "3.0.2" | ||||
|   resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" | ||||
|   integrity sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y= | ||||
|   dependencies: | ||||
|     capture-stack-trace "^1.0.0" | ||||
| 
 | ||||
| cross-spawn@^5.1.0: | ||||
|   version "5.1.0" | ||||
|   resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" | ||||
| @ -2316,6 +2455,11 @@ cross-spawn@^7.0.0: | ||||
|     shebang-command "^2.0.0" | ||||
|     which "^2.0.1" | ||||
| 
 | ||||
| crypto-random-string@^2.0.0: | ||||
|   version "2.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5" | ||||
|   integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== | ||||
| 
 | ||||
| cssom@^0.4.1: | ||||
|   version "0.4.4" | ||||
|   resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10" | ||||
| @ -2383,6 +2527,20 @@ decode-uri-component@^0.2.0: | ||||
|   resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" | ||||
|   integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= | ||||
| 
 | ||||
| decompress-response@^3.3.0: | ||||
|   version "3.3.0" | ||||
|   resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" | ||||
|   integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M= | ||||
|   dependencies: | ||||
|     mimic-response "^1.0.0" | ||||
| 
 | ||||
| decompress-response@^6.0.0: | ||||
|   version "6.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" | ||||
|   integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ== | ||||
|   dependencies: | ||||
|     mimic-response "^3.1.0" | ||||
| 
 | ||||
| deep-assign@^3.0.0: | ||||
|   version "3.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/deep-assign/-/deep-assign-3.0.0.tgz#c8e4c4d401cba25550a2f0f486a2e75bc5f219a2" | ||||
| @ -2412,6 +2570,16 @@ defaults@^1.0.3: | ||||
|   dependencies: | ||||
|     clone "^1.0.2" | ||||
| 
 | ||||
| defer-to-connect@^1.0.1: | ||||
|   version "1.1.3" | ||||
|   resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-1.1.3.tgz#331ae050c08dcf789f8c83a7b81f0ed94f4ac591" | ||||
|   integrity sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ== | ||||
| 
 | ||||
| defer-to-connect@^2.0.0: | ||||
|   version "2.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.0.tgz#83d6b199db041593ac84d781b5222308ccf4c2c1" | ||||
|   integrity sha512-bYL2d05vOSf1JEZNx5vSAtPuBMkX8K9EUutg7zlKvTqKXHt7RhWJFbmd7qakVuf13i+IkGmp6FwSsONOf6VYIg== | ||||
| 
 | ||||
| define-properties@^1.1.3: | ||||
|   version "1.1.3" | ||||
|   resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" | ||||
| @ -2492,6 +2660,18 @@ domexception@^1.0.1: | ||||
|   dependencies: | ||||
|     webidl-conversions "^4.0.2" | ||||
| 
 | ||||
| dot-prop@^5.2.0: | ||||
|   version "5.3.0" | ||||
|   resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" | ||||
|   integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== | ||||
|   dependencies: | ||||
|     is-obj "^2.0.0" | ||||
| 
 | ||||
| duplexer3@^0.1.4: | ||||
|   version "0.1.4" | ||||
|   resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" | ||||
|   integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= | ||||
| 
 | ||||
| ecc-jsbn@~0.1.1: | ||||
|   version "0.1.2" | ||||
|   resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" | ||||
| @ -3223,14 +3403,19 @@ get-stdin@^6.0.0: | ||||
|   resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" | ||||
|   integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g== | ||||
| 
 | ||||
| get-stream@^4.0.0: | ||||
| get-stream@^3.0.0: | ||||
|   version "3.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" | ||||
|   integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= | ||||
| 
 | ||||
| get-stream@^4.0.0, get-stream@^4.1.0: | ||||
|   version "4.1.0" | ||||
|   resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" | ||||
|   integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== | ||||
|   dependencies: | ||||
|     pump "^3.0.0" | ||||
| 
 | ||||
| get-stream@^5.0.0: | ||||
| get-stream@^5.0.0, get-stream@^5.1.0: | ||||
|   version "5.2.0" | ||||
|   resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" | ||||
|   integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== | ||||
| @ -3280,6 +3465,57 @@ globals@^12.1.0: | ||||
|   dependencies: | ||||
|     type-fest "^0.8.1" | ||||
| 
 | ||||
| got@^11.1.1: | ||||
|   version "11.8.1" | ||||
|   resolved "https://registry.yarnpkg.com/got/-/got-11.8.1.tgz#df04adfaf2e782babb3daabc79139feec2f7e85d" | ||||
|   integrity sha512-9aYdZL+6nHmvJwHALLwKSUZ0hMwGaJGYv3hoPLPgnT8BoBXm1SjnZeky+91tfwJaDzun2s4RsBRy48IEYv2q2Q== | ||||
|   dependencies: | ||||
|     "@sindresorhus/is" "^4.0.0" | ||||
|     "@szmarczak/http-timer" "^4.0.5" | ||||
|     "@types/cacheable-request" "^6.0.1" | ||||
|     "@types/responselike" "^1.0.0" | ||||
|     cacheable-lookup "^5.0.3" | ||||
|     cacheable-request "^7.0.1" | ||||
|     decompress-response "^6.0.0" | ||||
|     http2-wrapper "^1.0.0-beta.5.2" | ||||
|     lowercase-keys "^2.0.0" | ||||
|     p-cancelable "^2.0.0" | ||||
|     responselike "^2.0.0" | ||||
| 
 | ||||
| got@^6.3.0: | ||||
|   version "6.7.1" | ||||
|   resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" | ||||
|   integrity sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA= | ||||
|   dependencies: | ||||
|     create-error-class "^3.0.0" | ||||
|     duplexer3 "^0.1.4" | ||||
|     get-stream "^3.0.0" | ||||
|     is-redirect "^1.0.0" | ||||
|     is-retry-allowed "^1.0.0" | ||||
|     is-stream "^1.0.0" | ||||
|     lowercase-keys "^1.0.0" | ||||
|     safe-buffer "^5.0.1" | ||||
|     timed-out "^4.0.0" | ||||
|     unzip-response "^2.0.1" | ||||
|     url-parse-lax "^1.0.0" | ||||
| 
 | ||||
| got@^9.6.0: | ||||
|   version "9.6.0" | ||||
|   resolved "https://registry.yarnpkg.com/got/-/got-9.6.0.tgz#edf45e7d67f99545705de1f7bbeeeb121765ed85" | ||||
|   integrity sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q== | ||||
|   dependencies: | ||||
|     "@sindresorhus/is" "^0.14.0" | ||||
|     "@szmarczak/http-timer" "^1.1.2" | ||||
|     cacheable-request "^6.0.0" | ||||
|     decompress-response "^3.3.0" | ||||
|     duplexer3 "^0.1.4" | ||||
|     get-stream "^4.1.0" | ||||
|     lowercase-keys "^1.0.1" | ||||
|     mimic-response "^1.0.1" | ||||
|     p-cancelable "^1.0.0" | ||||
|     to-readable-stream "^1.0.0" | ||||
|     url-parse-lax "^3.0.0" | ||||
| 
 | ||||
| graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.0, graceful-fs@^4.2.4: | ||||
|   version "4.2.4" | ||||
|   resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" | ||||
| @ -3392,6 +3628,11 @@ html-escaper@^2.0.0: | ||||
|   resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" | ||||
|   integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== | ||||
| 
 | ||||
| http-cache-semantics@^4.0.0: | ||||
|   version "4.1.0" | ||||
|   resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390" | ||||
|   integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ== | ||||
| 
 | ||||
| http-errors@~1.7.2: | ||||
|   version "1.7.3" | ||||
|   resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" | ||||
| @ -3412,6 +3653,14 @@ http-signature@~1.2.0: | ||||
|     jsprim "^1.2.2" | ||||
|     sshpk "^1.7.0" | ||||
| 
 | ||||
| http2-wrapper@^1.0.0-beta.5.2: | ||||
|   version "1.0.0-beta.5.2" | ||||
|   resolved "https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-1.0.0-beta.5.2.tgz#8b923deb90144aea65cf834b016a340fc98556f3" | ||||
|   integrity sha512-xYz9goEyBnC8XwXDTuC/MZ6t+MrKVQZOk4s7+PaDkwIsQd8IwqvM+0M6bA/2lvG8GHXcPdf+MejTUeO2LCPCeQ== | ||||
|   dependencies: | ||||
|     quick-lru "^5.1.1" | ||||
|     resolve-alpn "^1.0.0" | ||||
| 
 | ||||
| human-signals@^1.1.1: | ||||
|   version "1.1.1" | ||||
|   resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" | ||||
| @ -3702,6 +3951,11 @@ is-obj@^1.0.0: | ||||
|   resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" | ||||
|   integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= | ||||
| 
 | ||||
| is-obj@^2.0.0: | ||||
|   version "2.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" | ||||
|   integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== | ||||
| 
 | ||||
| is-plain-object@^2.0.3, is-plain-object@^2.0.4: | ||||
|   version "2.0.4" | ||||
|   resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" | ||||
| @ -3709,6 +3963,11 @@ is-plain-object@^2.0.3, is-plain-object@^2.0.4: | ||||
|   dependencies: | ||||
|     isobject "^3.0.1" | ||||
| 
 | ||||
| is-redirect@^1.0.0: | ||||
|   version "1.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" | ||||
|   integrity sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ= | ||||
| 
 | ||||
| is-regex@^1.1.1: | ||||
|   version "1.1.1" | ||||
|   resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.1.tgz#c6f98aacc546f6cec5468a07b7b153ab564a57b9" | ||||
| @ -3716,7 +3975,12 @@ is-regex@^1.1.1: | ||||
|   dependencies: | ||||
|     has-symbols "^1.0.1" | ||||
| 
 | ||||
| is-stream@^1.0.1, is-stream@^1.1.0: | ||||
| is-retry-allowed@^1.0.0: | ||||
|   version "1.2.0" | ||||
|   resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4" | ||||
|   integrity sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg== | ||||
| 
 | ||||
| is-stream@^1.0.0, is-stream@^1.0.1, is-stream@^1.1.0: | ||||
|   version "1.1.0" | ||||
|   resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" | ||||
|   integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= | ||||
| @ -4358,6 +4622,16 @@ jsesc@~0.5.0: | ||||
|   resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" | ||||
|   integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= | ||||
| 
 | ||||
| json-buffer@3.0.0: | ||||
|   version "3.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" | ||||
|   integrity sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg= | ||||
| 
 | ||||
| json-buffer@3.0.1: | ||||
|   version "3.0.1" | ||||
|   resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" | ||||
|   integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== | ||||
| 
 | ||||
| json-parse-better-errors@^1.0.1: | ||||
|   version "1.0.2" | ||||
|   resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" | ||||
| @ -4439,6 +4713,20 @@ jsx-ast-utils@^2.2.3: | ||||
|     array-includes "^3.1.1" | ||||
|     object.assign "^4.1.0" | ||||
| 
 | ||||
| keyv@^3.0.0: | ||||
|   version "3.1.0" | ||||
|   resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.1.0.tgz#ecc228486f69991e49e9476485a5be1e8fc5c4d9" | ||||
|   integrity sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA== | ||||
|   dependencies: | ||||
|     json-buffer "3.0.0" | ||||
| 
 | ||||
| keyv@^4.0.0: | ||||
|   version "4.0.3" | ||||
|   resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.0.3.tgz#4f3aa98de254803cafcd2896734108daa35e4254" | ||||
|   integrity sha512-zdGa2TOpSZPq5mU6iowDARnMBZgtCqJ11dJROFi6tg6kTn4nuUdU09lFyLFSaHrWqpIJ+EBq4E8/Dc0Vx5vLdA== | ||||
|   dependencies: | ||||
|     json-buffer "3.0.1" | ||||
| 
 | ||||
| kind-of@^1.1.0: | ||||
|   version "1.1.0" | ||||
|   resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-1.1.0.tgz#140a3d2d41a36d2efcfa9377b62c24f8495a5c44" | ||||
| @ -4603,6 +4891,16 @@ loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0: | ||||
|   dependencies: | ||||
|     js-tokens "^3.0.0 || ^4.0.0" | ||||
| 
 | ||||
| lowercase-keys@^1.0.0, lowercase-keys@^1.0.1: | ||||
|   version "1.0.1" | ||||
|   resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" | ||||
|   integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== | ||||
| 
 | ||||
| lowercase-keys@^2.0.0: | ||||
|   version "2.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" | ||||
|   integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== | ||||
| 
 | ||||
| lru-cache@^4.0.1: | ||||
|   version "4.1.5" | ||||
|   resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" | ||||
| @ -5055,6 +5353,16 @@ mimic-fn@^2.1.0: | ||||
|   resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" | ||||
|   integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== | ||||
| 
 | ||||
| mimic-response@^1.0.0, mimic-response@^1.0.1: | ||||
|   version "1.0.1" | ||||
|   resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" | ||||
|   integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== | ||||
| 
 | ||||
| mimic-response@^3.1.0: | ||||
|   version "3.1.0" | ||||
|   resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" | ||||
|   integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== | ||||
| 
 | ||||
| minimatch@^3.0.4: | ||||
|   version "3.0.4" | ||||
|   resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" | ||||
| @ -5215,6 +5523,11 @@ normalize-path@^3.0.0: | ||||
|   resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" | ||||
|   integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== | ||||
| 
 | ||||
| normalize-url@^4.1.0: | ||||
|   version "4.5.0" | ||||
|   resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.0.tgz#453354087e6ca96957bd8f5baf753f5982142129" | ||||
|   integrity sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ== | ||||
| 
 | ||||
| npm-run-path@^2.0.0: | ||||
|   version "2.0.2" | ||||
|   resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" | ||||
| @ -5410,6 +5723,16 @@ os-tmpdir@^1.0.0, os-tmpdir@~1.0.2: | ||||
|   resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" | ||||
|   integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= | ||||
| 
 | ||||
| p-cancelable@^1.0.0: | ||||
|   version "1.1.0" | ||||
|   resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-1.1.0.tgz#d078d15a3af409220c886f1d9a0ca2e441ab26cc" | ||||
|   integrity sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw== | ||||
| 
 | ||||
| p-cancelable@^2.0.0: | ||||
|   version "2.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.0.0.tgz#4a3740f5bdaf5ed5d7c3e34882c6fb5d6b266a6e" | ||||
|   integrity sha512-wvPXDmbMmu2ksjkB4Z3nZWTSkJEb9lqVdMaCKpZUGJG9TMiNp9XcbG3fn9fPKjem04fJMJnXoyFPk2FmgiaiNg== | ||||
| 
 | ||||
| p-each-series@^2.1.0: | ||||
|   version "2.1.0" | ||||
|   resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-2.1.0.tgz#961c8dd3f195ea96c747e636b262b800a6b1af48" | ||||
| @ -5597,6 +5920,16 @@ prelude-ls@~1.1.2: | ||||
|   resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" | ||||
|   integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= | ||||
| 
 | ||||
| prepend-http@^1.0.1: | ||||
|   version "1.0.4" | ||||
|   resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" | ||||
|   integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw= | ||||
| 
 | ||||
| prepend-http@^2.0.0: | ||||
|   version "2.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" | ||||
|   integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc= | ||||
| 
 | ||||
| prettier-linter-helpers@^1.0.0: | ||||
|   version "1.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" | ||||
| @ -5688,6 +6021,11 @@ pump@^3.0.0: | ||||
|     end-of-stream "^1.1.0" | ||||
|     once "^1.3.1" | ||||
| 
 | ||||
| punycode@1.3.2: | ||||
|   version "1.3.2" | ||||
|   resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" | ||||
|   integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= | ||||
| 
 | ||||
| punycode@^2.1.0, punycode@^2.1.1: | ||||
|   version "2.1.1" | ||||
|   resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" | ||||
| @ -5707,6 +6045,16 @@ query-string@^6.13.5: | ||||
|     split-on-first "^1.0.0" | ||||
|     strict-uri-encode "^2.0.0" | ||||
| 
 | ||||
| querystring@0.2.0, querystring@^0.2.0: | ||||
|   version "0.2.0" | ||||
|   resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" | ||||
|   integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= | ||||
| 
 | ||||
| quick-lru@^5.1.1: | ||||
|   version "5.1.1" | ||||
|   resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" | ||||
|   integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== | ||||
| 
 | ||||
| range-parser@~1.2.1: | ||||
|   version "1.2.1" | ||||
|   resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" | ||||
| @ -6052,6 +6400,11 @@ require-main-filename@^2.0.0: | ||||
|   resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" | ||||
|   integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== | ||||
| 
 | ||||
| resolve-alpn@^1.0.0: | ||||
|   version "1.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.0.0.tgz#745ad60b3d6aff4b4a48e01b8c0bdc70959e0e8c" | ||||
|   integrity sha512-rTuiIEqFmGxne4IovivKSDzld2lWW9QCjqv80SYjPgf+gS35eaCAjaP54CCwGAwBtnCsvNLYtqxe1Nw+i6JEmA== | ||||
| 
 | ||||
| resolve-cwd@^3.0.0: | ||||
|   version "3.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" | ||||
| @ -6091,6 +6444,20 @@ resolve@^1.10.0, resolve@^1.12.0, resolve@^1.15.1, resolve@^1.17.0, resolve@^1.3 | ||||
|   dependencies: | ||||
|     path-parse "^1.0.6" | ||||
| 
 | ||||
| responselike@^1.0.2: | ||||
|   version "1.0.2" | ||||
|   resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7" | ||||
|   integrity sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec= | ||||
|   dependencies: | ||||
|     lowercase-keys "^1.0.0" | ||||
| 
 | ||||
| responselike@^2.0.0: | ||||
|   version "2.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/responselike/-/responselike-2.0.0.tgz#26391bcc3174f750f9a79eacc40a12a5c42d7723" | ||||
|   integrity sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw== | ||||
|   dependencies: | ||||
|     lowercase-keys "^2.0.0" | ||||
| 
 | ||||
| restore-cursor@^2.0.0: | ||||
|   version "2.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" | ||||
| @ -6796,6 +7163,11 @@ time-stamp@^1.0.0: | ||||
|   resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.1.0.tgz#764a5a11af50561921b133f3b44e618687e0f5c3" | ||||
|   integrity sha1-dkpaEa9QVhkhsTPztE5hhofg9cM= | ||||
| 
 | ||||
| timed-out@^4.0.0: | ||||
|   version "4.0.1" | ||||
|   resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" | ||||
|   integrity sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8= | ||||
| 
 | ||||
| tmp@^0.0.33: | ||||
|   version "0.0.33" | ||||
|   resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" | ||||
| @ -6820,6 +7192,11 @@ to-object-path@^0.3.0: | ||||
|   dependencies: | ||||
|     kind-of "^3.0.2" | ||||
| 
 | ||||
| to-readable-stream@^1.0.0: | ||||
|   version "1.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/to-readable-stream/-/to-readable-stream-1.0.0.tgz#ce0aa0c2f3df6adf852efb404a783e77c0475771" | ||||
|   integrity sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q== | ||||
| 
 | ||||
| to-regex-range@^2.1.0: | ||||
|   version "2.1.1" | ||||
|   resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" | ||||
| @ -6993,6 +7370,13 @@ union-value@^1.0.0: | ||||
|     is-extendable "^0.1.1" | ||||
|     set-value "^2.0.1" | ||||
| 
 | ||||
| unique-string@^2.0.0: | ||||
|   version "2.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d" | ||||
|   integrity sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg== | ||||
|   dependencies: | ||||
|     crypto-random-string "^2.0.0" | ||||
| 
 | ||||
| universalify@^0.1.0: | ||||
|   version "0.1.2" | ||||
|   resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" | ||||
| @ -7011,6 +7395,11 @@ unset-value@^1.0.0: | ||||
|     has-value "^0.3.1" | ||||
|     isobject "^3.0.0" | ||||
| 
 | ||||
| unzip-response@^2.0.1: | ||||
|   version "2.0.1" | ||||
|   resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" | ||||
|   integrity sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c= | ||||
| 
 | ||||
| uri-js@^4.2.2: | ||||
|   version "4.4.0" | ||||
|   resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.0.tgz#aa714261de793e8a82347a7bcc9ce74e86f28602" | ||||
| @ -7023,6 +7412,28 @@ urix@^0.1.0: | ||||
|   resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" | ||||
|   integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= | ||||
| 
 | ||||
| url-parse-lax@^1.0.0: | ||||
|   version "1.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" | ||||
|   integrity sha1-evjzA2Rem9eaJy56FKxovAYJ2nM= | ||||
|   dependencies: | ||||
|     prepend-http "^1.0.1" | ||||
| 
 | ||||
| url-parse-lax@^3.0.0: | ||||
|   version "3.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c" | ||||
|   integrity sha1-FrXK/Afb42dsGxmZF3gj1lA6yww= | ||||
|   dependencies: | ||||
|     prepend-http "^2.0.0" | ||||
| 
 | ||||
| url@^0.11.0: | ||||
|   version "0.11.0" | ||||
|   resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" | ||||
|   integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE= | ||||
|   dependencies: | ||||
|     punycode "1.3.2" | ||||
|     querystring "0.2.0" | ||||
| 
 | ||||
| use-subscription@^1.0.0, use-subscription@^1.4.0: | ||||
|   version "1.4.1" | ||||
|   resolved "https://registry.yarnpkg.com/use-subscription/-/use-subscription-1.4.1.tgz#edcbcc220f1adb2dd4fa0b2f61b6cc308e620069" | ||||
| @ -7251,6 +7662,11 @@ xcode@^2.0.0: | ||||
|     simple-plist "^1.0.0" | ||||
|     uuid "^3.3.2" | ||||
| 
 | ||||
| xdg-basedir@^4.0.0: | ||||
|   version "4.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13" | ||||
|   integrity sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q== | ||||
| 
 | ||||
| xml-name-validator@^3.0.0: | ||||
|   version "3.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user