diff --git a/.DS_Store b/.DS_Store
new file mode 100644
index 0000000..5109701
Binary files /dev/null and b/.DS_Store differ
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..e7a2344
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+
+App/FollowApp/.eslintrc.js
+App/FollowApp/package-lock.json
+App/FollowApp/.eslintrc.js
diff --git a/App/.DS_Store b/App/.DS_Store
new file mode 100644
index 0000000..aed9677
Binary files /dev/null and b/App/.DS_Store differ
diff --git a/App/FollowApp/.eslintrc.js b/App/FollowApp/.eslintrc.js
index 40c6dcd..6ec76d2 100644
--- a/App/FollowApp/.eslintrc.js
+++ b/App/FollowApp/.eslintrc.js
@@ -1,4 +1,13 @@
module.exports = {
- root: true,
- extends: '@react-native-community',
+ root: true,
+ extends: '@react-native-community',
+ lintonsave: false, // 삭제 해야함.
+ rules: {
+ 'prettier/prettier': [
+ 'error',
+ {
+ endOfLine: 'auto',
+ },
+ ],
+ },
};
diff --git a/App/FollowApp/.prettierrc.js b/App/FollowApp/.prettierrc.js
index 8b51da0..337bbff 100644
--- a/App/FollowApp/.prettierrc.js
+++ b/App/FollowApp/.prettierrc.js
@@ -1,8 +1,8 @@
module.exports = {
- bracketSpacing: false,
- jsxBracketSameLine: true,
- singleQuote: true,
- trailingComma: 'all',
- arrowParens: 'avoid',
- tabWidth: 4,
+ bracketSpacing: false,
+ jsxBracketSameLine: true,
+ singleQuote: true,
+ trailingComma: 'all',
+ arrowParens: 'avoid',
+ tabWidth: 4,
};
diff --git a/App/FollowApp/App.js b/App/FollowApp/App.js
index d1fa601..e842bba 100644
--- a/App/FollowApp/App.js
+++ b/App/FollowApp/App.js
@@ -1,115 +1,27 @@
/**
- * Sample React Native App
- * https://github.com/facebook/react-native
- *
* @format
* @flow strict-local
*/
import React from 'react';
-import {
- SafeAreaView,
- ScrollView,
- StatusBar,
- StyleSheet,
- Text,
- useColorScheme,
- View,
-} from 'react-native';
-
-import {
- Colors,
- DebugInstructions,
- Header,
- LearnMoreLinks,
- ReloadInstructions,
-} from 'react-native/Libraries/NewAppScreen';
-
-const Section = ({children, title}) => {
- const isDarkMode = useColorScheme() === 'dark';
- return (
-
-
- {title}
-
-
- {children}
-
-
- );
-};
+import {StatusBar} from 'react-native';
+import {ThemeProvider} from 'styled-components';
+import {theme} from './src/theme';
+import Navigation from './src/navigations/navigation';
+import {SafeAreaProvider} from 'react-native-safe-area-context';
+import {UserContextProvider} from './src/context/UserContext';
const App = () => {
- const isDarkMode = useColorScheme() === 'dark';
-
- const backgroundStyle = {
- backgroundColor: isDarkMode ? Colors.darker : Colors.lighter,
- };
-
return (
-
-
-
-
-
-
- Edit App.js to
- change this screen and then come back to see your edits.
-
-
-
-
- Read the docs to discover what to do next:
-
-
-
-
-
+
+
+
+
+
+
+
+
);
};
-const styles = StyleSheet.create({
- sectionContainer: {
- marginTop: 32,
- paddingHorizontal: 24,
- },
- sectionTitle: {
- fontSize: 24,
- fontWeight: '600',
- },
- sectionDescription: {
- marginTop: 8,
- fontSize: 18,
- fontWeight: '400',
- },
- highlight: {
- fontWeight: '700',
- },
-});
-
export default App;
diff --git a/App/FollowApp/__tests__/App-test.js b/App/FollowApp/__tests__/App-test.js
index 1784766..090aefa 100644
--- a/App/FollowApp/__tests__/App-test.js
+++ b/App/FollowApp/__tests__/App-test.js
@@ -10,5 +10,5 @@ import App from '../App';
import renderer from 'react-test-renderer';
it('renders correctly', () => {
- renderer.create();
+ renderer.create();
});
diff --git a/App/FollowApp/android/app/src/main/assets/fonts/AntDesign.ttf b/App/FollowApp/android/app/src/main/assets/fonts/AntDesign.ttf
new file mode 100644
index 0000000..2abf035
Binary files /dev/null and b/App/FollowApp/android/app/src/main/assets/fonts/AntDesign.ttf differ
diff --git a/App/FollowApp/android/app/src/main/assets/fonts/Entypo.ttf b/App/FollowApp/android/app/src/main/assets/fonts/Entypo.ttf
new file mode 100644
index 0000000..1c8f5e9
Binary files /dev/null and b/App/FollowApp/android/app/src/main/assets/fonts/Entypo.ttf differ
diff --git a/App/FollowApp/android/app/src/main/assets/fonts/EvilIcons.ttf b/App/FollowApp/android/app/src/main/assets/fonts/EvilIcons.ttf
new file mode 100644
index 0000000..6868f7b
Binary files /dev/null and b/App/FollowApp/android/app/src/main/assets/fonts/EvilIcons.ttf differ
diff --git a/App/FollowApp/android/app/src/main/assets/fonts/Feather.ttf b/App/FollowApp/android/app/src/main/assets/fonts/Feather.ttf
new file mode 100644
index 0000000..a3c58c5
Binary files /dev/null and b/App/FollowApp/android/app/src/main/assets/fonts/Feather.ttf differ
diff --git a/App/FollowApp/android/app/src/main/assets/fonts/FontAwesome.ttf b/App/FollowApp/android/app/src/main/assets/fonts/FontAwesome.ttf
new file mode 100644
index 0000000..35acda2
Binary files /dev/null and b/App/FollowApp/android/app/src/main/assets/fonts/FontAwesome.ttf differ
diff --git a/App/FollowApp/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf b/App/FollowApp/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf
new file mode 100644
index 0000000..948a2a6
Binary files /dev/null and b/App/FollowApp/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf differ
diff --git a/App/FollowApp/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf b/App/FollowApp/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf
new file mode 100644
index 0000000..abe99e2
Binary files /dev/null and b/App/FollowApp/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf differ
diff --git a/App/FollowApp/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf b/App/FollowApp/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf
new file mode 100644
index 0000000..5b97903
Binary files /dev/null and b/App/FollowApp/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf differ
diff --git a/App/FollowApp/android/app/src/main/assets/fonts/Fontisto.ttf b/App/FollowApp/android/app/src/main/assets/fonts/Fontisto.ttf
new file mode 100644
index 0000000..96e2e81
Binary files /dev/null and b/App/FollowApp/android/app/src/main/assets/fonts/Fontisto.ttf differ
diff --git a/App/FollowApp/android/app/src/main/assets/fonts/Foundation.ttf b/App/FollowApp/android/app/src/main/assets/fonts/Foundation.ttf
new file mode 100644
index 0000000..6cce217
Binary files /dev/null and b/App/FollowApp/android/app/src/main/assets/fonts/Foundation.ttf differ
diff --git a/App/FollowApp/android/app/src/main/assets/fonts/Ionicons.ttf b/App/FollowApp/android/app/src/main/assets/fonts/Ionicons.ttf
new file mode 100644
index 0000000..719442d
Binary files /dev/null and b/App/FollowApp/android/app/src/main/assets/fonts/Ionicons.ttf differ
diff --git a/App/FollowApp/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf b/App/FollowApp/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf
new file mode 100644
index 0000000..522dc31
Binary files /dev/null and b/App/FollowApp/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf differ
diff --git a/App/FollowApp/android/app/src/main/assets/fonts/MaterialIcons.ttf b/App/FollowApp/android/app/src/main/assets/fonts/MaterialIcons.ttf
new file mode 100644
index 0000000..e50801b
Binary files /dev/null and b/App/FollowApp/android/app/src/main/assets/fonts/MaterialIcons.ttf differ
diff --git a/App/FollowApp/android/app/src/main/assets/fonts/Octicons.ttf b/App/FollowApp/android/app/src/main/assets/fonts/Octicons.ttf
new file mode 100644
index 0000000..ceac75d
Binary files /dev/null and b/App/FollowApp/android/app/src/main/assets/fonts/Octicons.ttf differ
diff --git a/App/FollowApp/android/app/src/main/assets/fonts/SimpleLineIcons.ttf b/App/FollowApp/android/app/src/main/assets/fonts/SimpleLineIcons.ttf
new file mode 100644
index 0000000..6ecb686
Binary files /dev/null and b/App/FollowApp/android/app/src/main/assets/fonts/SimpleLineIcons.ttf differ
diff --git a/App/FollowApp/android/app/src/main/assets/fonts/Zocial.ttf b/App/FollowApp/android/app/src/main/assets/fonts/Zocial.ttf
new file mode 100644
index 0000000..e4ae46c
Binary files /dev/null and b/App/FollowApp/android/app/src/main/assets/fonts/Zocial.ttf differ
diff --git a/App/FollowApp/android/app/src/main/java/com/followapp/MainApplication.java b/App/FollowApp/android/app/src/main/java/com/followapp/MainApplication.java
index f0b116f..57d3d32 100644
--- a/App/FollowApp/android/app/src/main/java/com/followapp/MainApplication.java
+++ b/App/FollowApp/android/app/src/main/java/com/followapp/MainApplication.java
@@ -4,6 +4,7 @@
import android.content.Context;
import com.facebook.react.PackageList;
import com.facebook.react.ReactApplication;
+import com.oblador.vectoricons.VectorIconsPackage;
import com.facebook.react.ReactInstanceManager;
import com.facebook.react.ReactNativeHost;
import com.facebook.react.ReactPackage;
diff --git a/App/FollowApp/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/App/FollowApp/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
index a2f5908..a692a58 100644
Binary files a/App/FollowApp/android/app/src/main/res/mipmap-hdpi/ic_launcher.png and b/App/FollowApp/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/App/FollowApp/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/App/FollowApp/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
index 1b52399..ac67499 100644
Binary files a/App/FollowApp/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png and b/App/FollowApp/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png differ
diff --git a/App/FollowApp/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/App/FollowApp/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
index ff10afd..909d1d5 100644
Binary files a/App/FollowApp/android/app/src/main/res/mipmap-mdpi/ic_launcher.png and b/App/FollowApp/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/App/FollowApp/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/App/FollowApp/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
index 115a4c7..9b94e71 100644
Binary files a/App/FollowApp/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png and b/App/FollowApp/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png differ
diff --git a/App/FollowApp/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/App/FollowApp/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
index dcd3cd8..579e1fe 100644
Binary files a/App/FollowApp/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png and b/App/FollowApp/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/App/FollowApp/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/App/FollowApp/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
index 459ca60..7b114b7 100644
Binary files a/App/FollowApp/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png and b/App/FollowApp/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png differ
diff --git a/App/FollowApp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/App/FollowApp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
index 8ca12fe..60e8cfd 100644
Binary files a/App/FollowApp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png and b/App/FollowApp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/App/FollowApp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/App/FollowApp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
index 8e19b41..034b990 100644
Binary files a/App/FollowApp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png and b/App/FollowApp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png differ
diff --git a/App/FollowApp/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/App/FollowApp/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
index b824ebd..2c6bc2c 100644
Binary files a/App/FollowApp/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png and b/App/FollowApp/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ
diff --git a/App/FollowApp/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/App/FollowApp/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
index 4c19a13..984a8ea 100644
Binary files a/App/FollowApp/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png and b/App/FollowApp/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png differ
diff --git a/App/FollowApp/android/app/src/main/res/values/strings.xml b/App/FollowApp/android/app/src/main/res/values/strings.xml
index 6a20469..bfd55e3 100644
--- a/App/FollowApp/android/app/src/main/res/values/strings.xml
+++ b/App/FollowApp/android/app/src/main/res/values/strings.xml
@@ -1,3 +1,3 @@
- FollowApp
+ LookON
diff --git a/App/FollowApp/android/gradle.properties b/App/FollowApp/android/gradle.properties
index d21d03f..0b0860f 100644
--- a/App/FollowApp/android/gradle.properties
+++ b/App/FollowApp/android/gradle.properties
@@ -26,3 +26,8 @@ android.enableJetifier=true
# Version of flipper SDK to use with React Native
FLIPPER_VERSION=0.75.1
+
+MYAPP_RELEASE_STORE_FILE=my-release-key.keystore
+MYAPP_RELEASE_KEY_ALIAS=my-key-alias
+MYAPP_RELEASE_STORE_PASSWORD=*****
+MYAPP_RELEASE_KEY_PASSWORD=*****
diff --git a/App/FollowApp/android/gradlew b/App/FollowApp/android/gradlew
old mode 100644
new mode 100755
diff --git a/App/FollowApp/android/settings.gradle b/App/FollowApp/android/settings.gradle
index d801829..4c06453 100644
--- a/App/FollowApp/android/settings.gradle
+++ b/App/FollowApp/android/settings.gradle
@@ -1,3 +1,5 @@
-rootProject.name = 'FollowApp'
+rootProject.name = 'LookON'
+include ':react-native-vector-icons'
+project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android')
apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings)
include ':app'
diff --git a/App/FollowApp/app.json b/App/FollowApp/app.json
index c70a434..060f20d 100644
--- a/App/FollowApp/app.json
+++ b/App/FollowApp/app.json
@@ -1,4 +1,5 @@
{
- "name": "FollowApp",
- "displayName": "FollowApp"
-}
\ No newline at end of file
+ "name": "FollowApp",
+ "displayName": "LookON",
+ "icon": "./asset/icon.png"
+}
diff --git a/App/FollowApp/asset/img/FindImage/Clothes/1.jpg b/App/FollowApp/asset/img/FindImage/Clothes/1.jpg
new file mode 100644
index 0000000..394040f
Binary files /dev/null and b/App/FollowApp/asset/img/FindImage/Clothes/1.jpg differ
diff --git a/App/FollowApp/asset/img/FindImage/Clothes/2.jpg b/App/FollowApp/asset/img/FindImage/Clothes/2.jpg
new file mode 100644
index 0000000..8c7fc47
Binary files /dev/null and b/App/FollowApp/asset/img/FindImage/Clothes/2.jpg differ
diff --git a/App/FollowApp/asset/img/FindImage/Clothes/3.jpg b/App/FollowApp/asset/img/FindImage/Clothes/3.jpg
new file mode 100644
index 0000000..93c762d
Binary files /dev/null and b/App/FollowApp/asset/img/FindImage/Clothes/3.jpg differ
diff --git a/App/FollowApp/asset/img/HomeScreen/1.jpg b/App/FollowApp/asset/img/HomeScreen/1.jpg
new file mode 100644
index 0000000..53736c8
Binary files /dev/null and b/App/FollowApp/asset/img/HomeScreen/1.jpg differ
diff --git a/App/FollowApp/asset/img/HomeScreen/2.jpg b/App/FollowApp/asset/img/HomeScreen/2.jpg
new file mode 100644
index 0000000..d79b6bd
Binary files /dev/null and b/App/FollowApp/asset/img/HomeScreen/2.jpg differ
diff --git a/App/FollowApp/asset/img/HomeScreen/3.jpg b/App/FollowApp/asset/img/HomeScreen/3.jpg
new file mode 100644
index 0000000..1a4220c
Binary files /dev/null and b/App/FollowApp/asset/img/HomeScreen/3.jpg differ
diff --git a/App/FollowApp/asset/img/HomeScreen/4.jpg b/App/FollowApp/asset/img/HomeScreen/4.jpg
new file mode 100644
index 0000000..3483acf
Binary files /dev/null and b/App/FollowApp/asset/img/HomeScreen/4.jpg differ
diff --git a/App/FollowApp/asset/img/HomeScreen/5.jpg b/App/FollowApp/asset/img/HomeScreen/5.jpg
new file mode 100644
index 0000000..af91b48
Binary files /dev/null and b/App/FollowApp/asset/img/HomeScreen/5.jpg differ
diff --git a/App/FollowApp/asset/img/MyCloset/MyAvatar/1.png b/App/FollowApp/asset/img/MyCloset/MyAvatar/1.png
new file mode 100644
index 0000000..c995fd9
Binary files /dev/null and b/App/FollowApp/asset/img/MyCloset/MyAvatar/1.png differ
diff --git a/App/FollowApp/asset/img/MyCloset/MyAvatar/2.png b/App/FollowApp/asset/img/MyCloset/MyAvatar/2.png
new file mode 100644
index 0000000..7bd1a4a
Binary files /dev/null and b/App/FollowApp/asset/img/MyCloset/MyAvatar/2.png differ
diff --git a/App/FollowApp/asset/img/MyCloset/profile.png b/App/FollowApp/asset/img/MyCloset/profile.png
new file mode 100644
index 0000000..c2a9666
Binary files /dev/null and b/App/FollowApp/asset/img/MyCloset/profile.png differ
diff --git a/App/FollowApp/asset/img/MyLook/6298b026a65cf80bcf9dce061e9b79c9.png b/App/FollowApp/asset/img/MyLook/6298b026a65cf80bcf9dce061e9b79c9.png
new file mode 100644
index 0000000..8bcbf30
Binary files /dev/null and b/App/FollowApp/asset/img/MyLook/6298b026a65cf80bcf9dce061e9b79c9.png differ
diff --git a/App/FollowApp/asset/img/MyLook/MyLookTest.png b/App/FollowApp/asset/img/MyLook/MyLookTest.png
new file mode 100644
index 0000000..3aa2aed
Binary files /dev/null and b/App/FollowApp/asset/img/MyLook/MyLookTest.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Avatar/0_0.png b/App/FollowApp/asset/img/TryOn/Avatar/0_0.png
new file mode 100644
index 0000000..364335d
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Avatar/0_0.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Avatar/0_1.png b/App/FollowApp/asset/img/TryOn/Avatar/0_1.png
new file mode 100644
index 0000000..0e9f18a
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Avatar/0_1.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Avatar/0_2.png b/App/FollowApp/asset/img/TryOn/Avatar/0_2.png
new file mode 100644
index 0000000..812de90
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Avatar/0_2.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Avatar/0_3.png b/App/FollowApp/asset/img/TryOn/Avatar/0_3.png
new file mode 100644
index 0000000..cc69724
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Avatar/0_3.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Avatar/1_0.png b/App/FollowApp/asset/img/TryOn/Avatar/1_0.png
new file mode 100644
index 0000000..fa86a1b
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Avatar/1_0.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Avatar/1_1.png b/App/FollowApp/asset/img/TryOn/Avatar/1_1.png
new file mode 100644
index 0000000..854bd0e
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Avatar/1_1.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Avatar/1_2.png b/App/FollowApp/asset/img/TryOn/Avatar/1_2.png
new file mode 100644
index 0000000..b205d1e
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Avatar/1_2.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Avatar/1_3.png b/App/FollowApp/asset/img/TryOn/Avatar/1_3.png
new file mode 100644
index 0000000..6dc5dca
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Avatar/1_3.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Avatar/2_0.png b/App/FollowApp/asset/img/TryOn/Avatar/2_0.png
new file mode 100644
index 0000000..4adc2df
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Avatar/2_0.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Avatar/2_1.png b/App/FollowApp/asset/img/TryOn/Avatar/2_1.png
new file mode 100644
index 0000000..2302d44
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Avatar/2_1.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Avatar/2_2.png b/App/FollowApp/asset/img/TryOn/Avatar/2_2.png
new file mode 100644
index 0000000..067a0b6
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Avatar/2_2.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Avatar/2_3.png b/App/FollowApp/asset/img/TryOn/Avatar/2_3.png
new file mode 100644
index 0000000..76e4415
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Avatar/2_3.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Avatar/3_0.png b/App/FollowApp/asset/img/TryOn/Avatar/3_0.png
new file mode 100644
index 0000000..3d22df8
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Avatar/3_0.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Avatar/3_1.png b/App/FollowApp/asset/img/TryOn/Avatar/3_1.png
new file mode 100644
index 0000000..0a698d3
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Avatar/3_1.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Avatar/3_2.png b/App/FollowApp/asset/img/TryOn/Avatar/3_2.png
new file mode 100644
index 0000000..12287e9
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Avatar/3_2.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Avatar/3_3.png b/App/FollowApp/asset/img/TryOn/Avatar/3_3.png
new file mode 100644
index 0000000..1fd64ea
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Avatar/3_3.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Clothes/bottom1.png b/App/FollowApp/asset/img/TryOn/Clothes/bottom1.png
new file mode 100644
index 0000000..20ff168
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Clothes/bottom1.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Clothes/bottom2.png b/App/FollowApp/asset/img/TryOn/Clothes/bottom2.png
new file mode 100644
index 0000000..e24a164
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Clothes/bottom2.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Clothes/bottom3.png b/App/FollowApp/asset/img/TryOn/Clothes/bottom3.png
new file mode 100644
index 0000000..17fda44
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Clothes/bottom3.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Clothes/top1.png b/App/FollowApp/asset/img/TryOn/Clothes/top1.png
new file mode 100644
index 0000000..012dc5c
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Clothes/top1.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Clothes/top2.png b/App/FollowApp/asset/img/TryOn/Clothes/top2.png
new file mode 100644
index 0000000..2d86677
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Clothes/top2.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Clothes/top3.png b/App/FollowApp/asset/img/TryOn/Clothes/top3.png
new file mode 100644
index 0000000..5c21615
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Clothes/top3.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Look/1_1.png b/App/FollowApp/asset/img/TryOn/Look/1_1.png
new file mode 100644
index 0000000..02d1a65
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Look/1_1.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Look/1_2.png b/App/FollowApp/asset/img/TryOn/Look/1_2.png
new file mode 100644
index 0000000..3e0542d
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Look/1_2.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Look/1_3.png b/App/FollowApp/asset/img/TryOn/Look/1_3.png
new file mode 100644
index 0000000..91b4346
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Look/1_3.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Look/2_1.png b/App/FollowApp/asset/img/TryOn/Look/2_1.png
new file mode 100644
index 0000000..ecd43eb
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Look/2_1.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Look/2_2.png b/App/FollowApp/asset/img/TryOn/Look/2_2.png
new file mode 100644
index 0000000..a9bf417
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Look/2_2.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Look/2_3.png b/App/FollowApp/asset/img/TryOn/Look/2_3.png
new file mode 100644
index 0000000..2eaf843
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Look/2_3.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Look/3_1.png b/App/FollowApp/asset/img/TryOn/Look/3_1.png
new file mode 100644
index 0000000..b69c1cc
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Look/3_1.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Look/3_2.png b/App/FollowApp/asset/img/TryOn/Look/3_2.png
new file mode 100644
index 0000000..6bf95f7
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Look/3_2.png differ
diff --git a/App/FollowApp/asset/img/TryOn/Look/3_3.png b/App/FollowApp/asset/img/TryOn/Look/3_3.png
new file mode 100644
index 0000000..5bdc433
Binary files /dev/null and b/App/FollowApp/asset/img/TryOn/Look/3_3.png differ
diff --git a/App/FollowApp/asset/img/icon.png b/App/FollowApp/asset/img/icon.png
new file mode 100644
index 0000000..e16e43a
Binary files /dev/null and b/App/FollowApp/asset/img/icon.png differ
diff --git a/App/FollowApp/babel.config.js b/App/FollowApp/babel.config.js
index f842b77..80ce241 100644
--- a/App/FollowApp/babel.config.js
+++ b/App/FollowApp/babel.config.js
@@ -1,3 +1,3 @@
module.exports = {
- presets: ['module:metro-react-native-babel-preset'],
+ presets: ['module:metro-react-native-babel-preset'],
};
diff --git a/App/FollowApp/ios/FollowApp.xcodeproj/project.pbxproj b/App/FollowApp/ios/FollowApp.xcodeproj/project.pbxproj
index d6daf10..efbeb5d 100644
--- a/App/FollowApp/ios/FollowApp.xcodeproj/project.pbxproj
+++ b/App/FollowApp/ios/FollowApp.xcodeproj/project.pbxproj
@@ -12,6 +12,22 @@
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
+ 49C6352CF73E4347AF1506E1 /* AntDesign.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 043A47F8220F413B92857032 /* AntDesign.ttf */; };
+ E9BBE76B3ED049BDB4A67E91 /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 641391127B76483485A37950 /* Entypo.ttf */; };
+ A860587F5B9544A9B76E3181 /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 1A9174E263CF47A09E09E167 /* EvilIcons.ttf */; };
+ CACEA7ED97D54B608BD9EAE7 /* Feather.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 0CA6476177B64FCBA5ABBB15 /* Feather.ttf */; };
+ 2478B10A43FF4F6BA84889AD /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A844941A44DE4C7B912F23DB /* FontAwesome.ttf */; };
+ EC4379E2A1E04F3AB32D6108 /* FontAwesome5_Brands.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 0A69D86D398A43C7A61283D6 /* FontAwesome5_Brands.ttf */; };
+ D1F0730297CF40009A96EDFF /* FontAwesome5_Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 43C2C66AFE90436F91A78A60 /* FontAwesome5_Regular.ttf */; };
+ 24E6C488521D41759BFFD2DB /* FontAwesome5_Solid.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F72DEC39E7E34B5CA20326AD /* FontAwesome5_Solid.ttf */; };
+ D1DCE6331ACC4A01A414ADC3 /* Fontisto.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 124DBBC79BCE41B9B34C246B /* Fontisto.ttf */; };
+ 0D3908E595C8488382A38BA2 /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 9ADAD4B33FD94BC1A9075D6D /* Foundation.ttf */; };
+ 2D201F65BDE2408E91A6F0D1 /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 5D6E80D8251048F9B695F723 /* Ionicons.ttf */; };
+ 23F1770E892D446EB718F0DF /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A0195B56580649F69350FD73 /* MaterialCommunityIcons.ttf */; };
+ 6ED6F742E0CD4F7696960886 /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 145ED4188A594408B682E881 /* MaterialIcons.ttf */; };
+ 5C0ED0F697604969967B968D /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = E3A2C910235247AE975C712E /* Octicons.ttf */; };
+ FE3A247A82E343A4A0F11B4D /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 81C6D657EEE94E5FA65F5600 /* SimpleLineIcons.ttf */; };
+ 846F0BCE78D441AABF3AFC88 /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A981B385DD31450699B808A2 /* Zocial.ttf */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
@@ -34,8 +50,33 @@
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = FollowApp/Images.xcassets; sourceTree = ""; };
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = FollowApp/Info.plist; sourceTree = ""; };
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = FollowApp/main.m; sourceTree = ""; };
+ 4D02397062E19A4F8F0BF587 /* libPods-FollowApp-FollowAppTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-FollowApp-FollowAppTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
+ 50AFE050421E1CD0D13675B0 /* Pods-FollowApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FollowApp.release.xcconfig"; path = "Target Support Files/Pods-FollowApp/Pods-FollowApp.release.xcconfig"; sourceTree = ""; };
+ 50CA3B4780FCA4E4F291B7F1 /* Pods-FollowApp-FollowAppTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FollowApp-FollowAppTests.release.xcconfig"; path = "Target Support Files/Pods-FollowApp-FollowAppTests/Pods-FollowApp-FollowAppTests.release.xcconfig"; sourceTree = ""; };
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = FollowApp/LaunchScreen.storyboard; sourceTree = ""; };
+ 8F2E5FB2817E0BEACAE7729B /* Pods-FollowApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FollowApp.debug.xcconfig"; path = "Target Support Files/Pods-FollowApp/Pods-FollowApp.debug.xcconfig"; sourceTree = ""; };
+ B983FAE8F7E7722881A53F33 /* libPods-FollowApp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-FollowApp.a"; sourceTree = BUILT_PRODUCTS_DIR; };
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
+<<<<<<< HEAD
+ F7B5EE0AB32AB6540F3041BB /* Pods-FollowApp-FollowAppTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FollowApp-FollowAppTests.debug.xcconfig"; path = "Target Support Files/Pods-FollowApp-FollowAppTests/Pods-FollowApp-FollowAppTests.debug.xcconfig"; sourceTree = ""; };
+=======
+ 043A47F8220F413B92857032 /* AntDesign.ttf */ = {isa = PBXFileReference; name = "AntDesign.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
+ 641391127B76483485A37950 /* Entypo.ttf */ = {isa = PBXFileReference; name = "Entypo.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Entypo.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
+ 1A9174E263CF47A09E09E167 /* EvilIcons.ttf */ = {isa = PBXFileReference; name = "EvilIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
+ 0CA6476177B64FCBA5ABBB15 /* Feather.ttf */ = {isa = PBXFileReference; name = "Feather.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Feather.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
+ A844941A44DE4C7B912F23DB /* FontAwesome.ttf */ = {isa = PBXFileReference; name = "FontAwesome.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
+ 0A69D86D398A43C7A61283D6 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; name = "FontAwesome5_Brands.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
+ 43C2C66AFE90436F91A78A60 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; name = "FontAwesome5_Regular.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
+ F72DEC39E7E34B5CA20326AD /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; name = "FontAwesome5_Solid.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
+ 124DBBC79BCE41B9B34C246B /* Fontisto.ttf */ = {isa = PBXFileReference; name = "Fontisto.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Fontisto.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
+ 9ADAD4B33FD94BC1A9075D6D /* Foundation.ttf */ = {isa = PBXFileReference; name = "Foundation.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Foundation.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
+ 5D6E80D8251048F9B695F723 /* Ionicons.ttf */ = {isa = PBXFileReference; name = "Ionicons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
+ A0195B56580649F69350FD73 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; name = "MaterialCommunityIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
+ 145ED4188A594408B682E881 /* MaterialIcons.ttf */ = {isa = PBXFileReference; name = "MaterialIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
+ E3A2C910235247AE975C712E /* Octicons.ttf */ = {isa = PBXFileReference; name = "Octicons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Octicons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
+ 81C6D657EEE94E5FA65F5600 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; name = "SimpleLineIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
+ A981B385DD31450699B808A2 /* Zocial.ttf */ = {isa = PBXFileReference; name = "Zocial.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Zocial.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
+>>>>>>> 684aac5ffd0cd9898b84435fca9bb4b3cd9fa424
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
@@ -43,6 +84,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
+ C384840E33FD76A3020CFA12 /* libPods-FollowApp-FollowAppTests.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -50,6 +92,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
+ F0CB1392049AEA3E02892496 /* libPods-FollowApp.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -90,6 +133,8 @@
isa = PBXGroup;
children = (
ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
+ B983FAE8F7E7722881A53F33 /* libPods-FollowApp.a */,
+ 4D02397062E19A4F8F0BF587 /* libPods-FollowApp-FollowAppTests.a */,
);
name = Frameworks;
sourceTree = "";
@@ -109,6 +154,11 @@
00E356EF1AD99517003FC87E /* FollowAppTests */,
83CBBA001A601CBA00E9B192 /* Products */,
2D16E6871FA4F8E400B85C8A /* Frameworks */,
+<<<<<<< HEAD
+ AD4674A14EBD6C253346D786 /* Pods */,
+=======
+ E5103C815DC349789D10D92E /* Resources */,
+>>>>>>> 684aac5ffd0cd9898b84435fca9bb4b3cd9fa424
);
indentWidth = 2;
sourceTree = "";
@@ -124,6 +174,44 @@
name = Products;
sourceTree = "";
};
+<<<<<<< HEAD
+ AD4674A14EBD6C253346D786 /* Pods */ = {
+ isa = PBXGroup;
+ children = (
+ 8F2E5FB2817E0BEACAE7729B /* Pods-FollowApp.debug.xcconfig */,
+ 50AFE050421E1CD0D13675B0 /* Pods-FollowApp.release.xcconfig */,
+ F7B5EE0AB32AB6540F3041BB /* Pods-FollowApp-FollowAppTests.debug.xcconfig */,
+ 50CA3B4780FCA4E4F291B7F1 /* Pods-FollowApp-FollowAppTests.release.xcconfig */,
+ );
+ name = Pods;
+ path = Pods;
+ sourceTree = "";
+=======
+ E5103C815DC349789D10D92E /* Resources */ = {
+ isa = "PBXGroup";
+ children = (
+ 043A47F8220F413B92857032 /* AntDesign.ttf */,
+ 641391127B76483485A37950 /* Entypo.ttf */,
+ 1A9174E263CF47A09E09E167 /* EvilIcons.ttf */,
+ 0CA6476177B64FCBA5ABBB15 /* Feather.ttf */,
+ A844941A44DE4C7B912F23DB /* FontAwesome.ttf */,
+ 0A69D86D398A43C7A61283D6 /* FontAwesome5_Brands.ttf */,
+ 43C2C66AFE90436F91A78A60 /* FontAwesome5_Regular.ttf */,
+ F72DEC39E7E34B5CA20326AD /* FontAwesome5_Solid.ttf */,
+ 124DBBC79BCE41B9B34C246B /* Fontisto.ttf */,
+ 9ADAD4B33FD94BC1A9075D6D /* Foundation.ttf */,
+ 5D6E80D8251048F9B695F723 /* Ionicons.ttf */,
+ A0195B56580649F69350FD73 /* MaterialCommunityIcons.ttf */,
+ 145ED4188A594408B682E881 /* MaterialIcons.ttf */,
+ E3A2C910235247AE975C712E /* Octicons.ttf */,
+ 81C6D657EEE94E5FA65F5600 /* SimpleLineIcons.ttf */,
+ A981B385DD31450699B808A2 /* Zocial.ttf */,
+ );
+ name = Resources;
+ sourceTree = "";
+ path = "";
+>>>>>>> 684aac5ffd0cd9898b84435fca9bb4b3cd9fa424
+ };
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
@@ -131,9 +219,12 @@
isa = PBXNativeTarget;
buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "FollowAppTests" */;
buildPhases = (
+ E2AF48386C5266744040E6CF /* [CP] Check Pods Manifest.lock */,
00E356EA1AD99517003FC87E /* Sources */,
00E356EB1AD99517003FC87E /* Frameworks */,
00E356EC1AD99517003FC87E /* Resources */,
+ 1B129AD293938D2CFEC509FC /* [CP] Embed Pods Frameworks */,
+ 55DF056C735845180BF65285 /* [CP] Copy Pods Resources */,
);
buildRules = (
);
@@ -149,11 +240,14 @@
isa = PBXNativeTarget;
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "FollowApp" */;
buildPhases = (
+ 9DDA687B161A6C89BF088BE4 /* [CP] Check Pods Manifest.lock */,
FD10A7F022414F080027D42C /* Start Packager */,
13B07F871A680F5B00A75B9A /* Sources */,
13B07F8C1A680F5B00A75B9A /* Frameworks */,
13B07F8E1A680F5B00A75B9A /* Resources */,
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
+ 0747D23FE5CDCF1C30E654F0 /* [CP] Embed Pods Frameworks */,
+ D9C1B19CEFE6F1776700429A /* [CP] Copy Pods Resources */,
);
buildRules = (
);
@@ -214,6 +308,22 @@
files = (
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
+ 49C6352CF73E4347AF1506E1 /* AntDesign.ttf in Resources */,
+ E9BBE76B3ED049BDB4A67E91 /* Entypo.ttf in Resources */,
+ A860587F5B9544A9B76E3181 /* EvilIcons.ttf in Resources */,
+ CACEA7ED97D54B608BD9EAE7 /* Feather.ttf in Resources */,
+ 2478B10A43FF4F6BA84889AD /* FontAwesome.ttf in Resources */,
+ EC4379E2A1E04F3AB32D6108 /* FontAwesome5_Brands.ttf in Resources */,
+ D1F0730297CF40009A96EDFF /* FontAwesome5_Regular.ttf in Resources */,
+ 24E6C488521D41759BFFD2DB /* FontAwesome5_Solid.ttf in Resources */,
+ D1DCE6331ACC4A01A414ADC3 /* Fontisto.ttf in Resources */,
+ 0D3908E595C8488382A38BA2 /* Foundation.ttf in Resources */,
+ 2D201F65BDE2408E91A6F0D1 /* Ionicons.ttf in Resources */,
+ 23F1770E892D446EB718F0DF /* MaterialCommunityIcons.ttf in Resources */,
+ 6ED6F742E0CD4F7696960886 /* MaterialIcons.ttf in Resources */,
+ 5C0ED0F697604969967B968D /* Octicons.ttf in Resources */,
+ FE3A247A82E343A4A0F11B4D /* SimpleLineIcons.ttf in Resources */,
+ 846F0BCE78D441AABF3AFC88 /* Zocial.ttf in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -234,6 +344,118 @@
shellPath = /bin/sh;
shellScript = "set -e\n\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n";
};
+ 0747D23FE5CDCF1C30E654F0 /* [CP] Embed Pods Frameworks */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputFileListPaths = (
+ "${PODS_ROOT}/Target Support Files/Pods-FollowApp/Pods-FollowApp-frameworks-${CONFIGURATION}-input-files.xcfilelist",
+ );
+ name = "[CP] Embed Pods Frameworks";
+ outputFileListPaths = (
+ "${PODS_ROOT}/Target Support Files/Pods-FollowApp/Pods-FollowApp-frameworks-${CONFIGURATION}-output-files.xcfilelist",
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-FollowApp/Pods-FollowApp-frameworks.sh\"\n";
+ showEnvVarsInLog = 0;
+ };
+ 1B129AD293938D2CFEC509FC /* [CP] Embed Pods Frameworks */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputFileListPaths = (
+ "${PODS_ROOT}/Target Support Files/Pods-FollowApp-FollowAppTests/Pods-FollowApp-FollowAppTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
+ );
+ name = "[CP] Embed Pods Frameworks";
+ outputFileListPaths = (
+ "${PODS_ROOT}/Target Support Files/Pods-FollowApp-FollowAppTests/Pods-FollowApp-FollowAppTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-FollowApp-FollowAppTests/Pods-FollowApp-FollowAppTests-frameworks.sh\"\n";
+ showEnvVarsInLog = 0;
+ };
+ 55DF056C735845180BF65285 /* [CP] Copy Pods Resources */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputFileListPaths = (
+ "${PODS_ROOT}/Target Support Files/Pods-FollowApp-FollowAppTests/Pods-FollowApp-FollowAppTests-resources-${CONFIGURATION}-input-files.xcfilelist",
+ );
+ name = "[CP] Copy Pods Resources";
+ outputFileListPaths = (
+ "${PODS_ROOT}/Target Support Files/Pods-FollowApp-FollowAppTests/Pods-FollowApp-FollowAppTests-resources-${CONFIGURATION}-output-files.xcfilelist",
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-FollowApp-FollowAppTests/Pods-FollowApp-FollowAppTests-resources.sh\"\n";
+ showEnvVarsInLog = 0;
+ };
+ 9DDA687B161A6C89BF088BE4 /* [CP] Check Pods Manifest.lock */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputFileListPaths = (
+ );
+ inputPaths = (
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
+ "${PODS_ROOT}/Manifest.lock",
+ );
+ name = "[CP] Check Pods Manifest.lock";
+ outputFileListPaths = (
+ );
+ outputPaths = (
+ "$(DERIVED_FILE_DIR)/Pods-FollowApp-checkManifestLockResult.txt",
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
+ showEnvVarsInLog = 0;
+ };
+ D9C1B19CEFE6F1776700429A /* [CP] Copy Pods Resources */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputFileListPaths = (
+ "${PODS_ROOT}/Target Support Files/Pods-FollowApp/Pods-FollowApp-resources-${CONFIGURATION}-input-files.xcfilelist",
+ );
+ name = "[CP] Copy Pods Resources";
+ outputFileListPaths = (
+ "${PODS_ROOT}/Target Support Files/Pods-FollowApp/Pods-FollowApp-resources-${CONFIGURATION}-output-files.xcfilelist",
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-FollowApp/Pods-FollowApp-resources.sh\"\n";
+ showEnvVarsInLog = 0;
+ };
+ E2AF48386C5266744040E6CF /* [CP] Check Pods Manifest.lock */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputFileListPaths = (
+ );
+ inputPaths = (
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
+ "${PODS_ROOT}/Manifest.lock",
+ );
+ name = "[CP] Check Pods Manifest.lock";
+ outputFileListPaths = (
+ );
+ outputPaths = (
+ "$(DERIVED_FILE_DIR)/Pods-FollowApp-FollowAppTests-checkManifestLockResult.txt",
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
+ showEnvVarsInLog = 0;
+ };
FD10A7F022414F080027D42C /* Start Packager */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
@@ -286,6 +508,7 @@
/* Begin XCBuildConfiguration section */
00E356F61AD99517003FC87E /* Debug */ = {
isa = XCBuildConfiguration;
+ baseConfigurationReference = F7B5EE0AB32AB6540F3041BB /* Pods-FollowApp-FollowAppTests.debug.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
GCC_PREPROCESSOR_DEFINITIONS = (
@@ -312,6 +535,7 @@
};
00E356F71AD99517003FC87E /* Release */ = {
isa = XCBuildConfiguration;
+ baseConfigurationReference = 50CA3B4780FCA4E4F291B7F1 /* Pods-FollowApp-FollowAppTests.release.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
COPY_PHASE_STRIP = NO;
@@ -335,6 +559,7 @@
};
13B07F941A680F5B00A75B9A /* Debug */ = {
isa = XCBuildConfiguration;
+ baseConfigurationReference = 8F2E5FB2817E0BEACAE7729B /* Pods-FollowApp.debug.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
@@ -360,6 +585,7 @@
};
13B07F951A680F5B00A75B9A /* Release */ = {
isa = XCBuildConfiguration;
+ baseConfigurationReference = 50AFE050421E1CD0D13675B0 /* Pods-FollowApp.release.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
@@ -414,6 +640,7 @@
COPY_PHASE_STRIP = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 ";
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
@@ -478,6 +705,7 @@
COPY_PHASE_STRIP = YES;
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 ";
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
diff --git a/App/FollowApp/ios/FollowApp.xcworkspace/contents.xcworkspacedata b/App/FollowApp/ios/FollowApp.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 0000000..53cd835
--- /dev/null
+++ b/App/FollowApp/ios/FollowApp.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
diff --git a/App/FollowApp/ios/FollowApp/Info.plist b/App/FollowApp/ios/FollowApp/Info.plist
index a046a25..3686587 100644
--- a/App/FollowApp/ios/FollowApp/Info.plist
+++ b/App/FollowApp/ios/FollowApp/Info.plist
@@ -36,7 +36,7 @@
NSLocationWhenInUseUsageDescription
-
+
UILaunchStoryboardName
LaunchScreen
UIRequiredDeviceCapabilities
@@ -51,5 +51,24 @@
UIViewControllerBasedStatusBarAppearance
+ UIAppFonts
+
+ AntDesign.ttf
+ Entypo.ttf
+ EvilIcons.ttf
+ Feather.ttf
+ FontAwesome.ttf
+ FontAwesome5_Brands.ttf
+ FontAwesome5_Regular.ttf
+ FontAwesome5_Solid.ttf
+ Fontisto.ttf
+ Foundation.ttf
+ Ionicons.ttf
+ MaterialCommunityIcons.ttf
+ MaterialIcons.ttf
+ Octicons.ttf
+ SimpleLineIcons.ttf
+ Zocial.ttf
+
diff --git a/App/FollowApp/ios/Podfile b/App/FollowApp/ios/Podfile
index 16255f0..eb373fe 100644
--- a/App/FollowApp/ios/Podfile
+++ b/App/FollowApp/ios/Podfile
@@ -12,6 +12,8 @@ target 'FollowApp' do
:hermes_enabled => false
)
+ pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
+
target 'FollowAppTests' do
inherit! :complete
# Pods for testing
diff --git a/App/FollowApp/ios/Podfile.lock b/App/FollowApp/ios/Podfile.lock
new file mode 100644
index 0000000..d67de70
--- /dev/null
+++ b/App/FollowApp/ios/Podfile.lock
@@ -0,0 +1,510 @@
+PODS:
+ - boost-for-react-native (1.63.0)
+ - CocoaAsyncSocket (7.6.5)
+ - DoubleConversion (1.1.6)
+ - FBLazyVector (0.64.2)
+ - FBReactNativeSpec (0.64.2):
+ - RCT-Folly (= 2020.01.13.00)
+ - RCTRequired (= 0.64.2)
+ - RCTTypeSafety (= 0.64.2)
+ - React-Core (= 0.64.2)
+ - React-jsi (= 0.64.2)
+ - ReactCommon/turbomodule/core (= 0.64.2)
+ - Flipper (0.75.1):
+ - Flipper-Folly (~> 2.5)
+ - Flipper-RSocket (~> 1.3)
+ - Flipper-DoubleConversion (1.1.7)
+ - Flipper-Folly (2.5.3):
+ - boost-for-react-native
+ - Flipper-DoubleConversion
+ - Flipper-Glog
+ - libevent (~> 2.1.12)
+ - OpenSSL-Universal (= 1.1.180)
+ - Flipper-Glog (0.3.6)
+ - Flipper-PeerTalk (0.0.4)
+ - Flipper-RSocket (1.3.1):
+ - Flipper-Folly (~> 2.5)
+ - FlipperKit (0.75.1):
+ - FlipperKit/Core (= 0.75.1)
+ - FlipperKit/Core (0.75.1):
+ - Flipper (~> 0.75.1)
+ - FlipperKit/CppBridge
+ - FlipperKit/FBCxxFollyDynamicConvert
+ - FlipperKit/FBDefines
+ - FlipperKit/FKPortForwarding
+ - FlipperKit/CppBridge (0.75.1):
+ - Flipper (~> 0.75.1)
+ - FlipperKit/FBCxxFollyDynamicConvert (0.75.1):
+ - Flipper-Folly (~> 2.5)
+ - FlipperKit/FBDefines (0.75.1)
+ - FlipperKit/FKPortForwarding (0.75.1):
+ - CocoaAsyncSocket (~> 7.6)
+ - Flipper-PeerTalk (~> 0.0.4)
+ - FlipperKit/FlipperKitHighlightOverlay (0.75.1)
+ - FlipperKit/FlipperKitLayoutPlugin (0.75.1):
+ - FlipperKit/Core
+ - FlipperKit/FlipperKitHighlightOverlay
+ - FlipperKit/FlipperKitLayoutTextSearchable
+ - YogaKit (~> 1.18)
+ - FlipperKit/FlipperKitLayoutTextSearchable (0.75.1)
+ - FlipperKit/FlipperKitNetworkPlugin (0.75.1):
+ - FlipperKit/Core
+ - FlipperKit/FlipperKitReactPlugin (0.75.1):
+ - FlipperKit/Core
+ - FlipperKit/FlipperKitUserDefaultsPlugin (0.75.1):
+ - FlipperKit/Core
+ - FlipperKit/SKIOSNetworkPlugin (0.75.1):
+ - FlipperKit/Core
+ - FlipperKit/FlipperKitNetworkPlugin
+ - glog (0.3.5)
+ - libevent (2.1.12)
+ - OpenSSL-Universal (1.1.180)
+ - RCT-Folly (2020.01.13.00):
+ - boost-for-react-native
+ - DoubleConversion
+ - glog
+ - RCT-Folly/Default (= 2020.01.13.00)
+ - RCT-Folly/Default (2020.01.13.00):
+ - boost-for-react-native
+ - DoubleConversion
+ - glog
+ - RCTRequired (0.64.2)
+ - RCTTypeSafety (0.64.2):
+ - FBLazyVector (= 0.64.2)
+ - RCT-Folly (= 2020.01.13.00)
+ - RCTRequired (= 0.64.2)
+ - React-Core (= 0.64.2)
+ - React (0.64.2):
+ - React-Core (= 0.64.2)
+ - React-Core/DevSupport (= 0.64.2)
+ - React-Core/RCTWebSocket (= 0.64.2)
+ - React-RCTActionSheet (= 0.64.2)
+ - React-RCTAnimation (= 0.64.2)
+ - React-RCTBlob (= 0.64.2)
+ - React-RCTImage (= 0.64.2)
+ - React-RCTLinking (= 0.64.2)
+ - React-RCTNetwork (= 0.64.2)
+ - React-RCTSettings (= 0.64.2)
+ - React-RCTText (= 0.64.2)
+ - React-RCTVibration (= 0.64.2)
+ - React-callinvoker (0.64.2)
+ - React-Core (0.64.2):
+ - glog
+ - RCT-Folly (= 2020.01.13.00)
+ - React-Core/Default (= 0.64.2)
+ - React-cxxreact (= 0.64.2)
+ - React-jsi (= 0.64.2)
+ - React-jsiexecutor (= 0.64.2)
+ - React-perflogger (= 0.64.2)
+ - Yoga
+ - React-Core/CoreModulesHeaders (0.64.2):
+ - glog
+ - RCT-Folly (= 2020.01.13.00)
+ - React-Core/Default
+ - React-cxxreact (= 0.64.2)
+ - React-jsi (= 0.64.2)
+ - React-jsiexecutor (= 0.64.2)
+ - React-perflogger (= 0.64.2)
+ - Yoga
+ - React-Core/Default (0.64.2):
+ - glog
+ - RCT-Folly (= 2020.01.13.00)
+ - React-cxxreact (= 0.64.2)
+ - React-jsi (= 0.64.2)
+ - React-jsiexecutor (= 0.64.2)
+ - React-perflogger (= 0.64.2)
+ - Yoga
+ - React-Core/DevSupport (0.64.2):
+ - glog
+ - RCT-Folly (= 2020.01.13.00)
+ - React-Core/Default (= 0.64.2)
+ - React-Core/RCTWebSocket (= 0.64.2)
+ - React-cxxreact (= 0.64.2)
+ - React-jsi (= 0.64.2)
+ - React-jsiexecutor (= 0.64.2)
+ - React-jsinspector (= 0.64.2)
+ - React-perflogger (= 0.64.2)
+ - Yoga
+ - React-Core/RCTActionSheetHeaders (0.64.2):
+ - glog
+ - RCT-Folly (= 2020.01.13.00)
+ - React-Core/Default
+ - React-cxxreact (= 0.64.2)
+ - React-jsi (= 0.64.2)
+ - React-jsiexecutor (= 0.64.2)
+ - React-perflogger (= 0.64.2)
+ - Yoga
+ - React-Core/RCTAnimationHeaders (0.64.2):
+ - glog
+ - RCT-Folly (= 2020.01.13.00)
+ - React-Core/Default
+ - React-cxxreact (= 0.64.2)
+ - React-jsi (= 0.64.2)
+ - React-jsiexecutor (= 0.64.2)
+ - React-perflogger (= 0.64.2)
+ - Yoga
+ - React-Core/RCTBlobHeaders (0.64.2):
+ - glog
+ - RCT-Folly (= 2020.01.13.00)
+ - React-Core/Default
+ - React-cxxreact (= 0.64.2)
+ - React-jsi (= 0.64.2)
+ - React-jsiexecutor (= 0.64.2)
+ - React-perflogger (= 0.64.2)
+ - Yoga
+ - React-Core/RCTImageHeaders (0.64.2):
+ - glog
+ - RCT-Folly (= 2020.01.13.00)
+ - React-Core/Default
+ - React-cxxreact (= 0.64.2)
+ - React-jsi (= 0.64.2)
+ - React-jsiexecutor (= 0.64.2)
+ - React-perflogger (= 0.64.2)
+ - Yoga
+ - React-Core/RCTLinkingHeaders (0.64.2):
+ - glog
+ - RCT-Folly (= 2020.01.13.00)
+ - React-Core/Default
+ - React-cxxreact (= 0.64.2)
+ - React-jsi (= 0.64.2)
+ - React-jsiexecutor (= 0.64.2)
+ - React-perflogger (= 0.64.2)
+ - Yoga
+ - React-Core/RCTNetworkHeaders (0.64.2):
+ - glog
+ - RCT-Folly (= 2020.01.13.00)
+ - React-Core/Default
+ - React-cxxreact (= 0.64.2)
+ - React-jsi (= 0.64.2)
+ - React-jsiexecutor (= 0.64.2)
+ - React-perflogger (= 0.64.2)
+ - Yoga
+ - React-Core/RCTSettingsHeaders (0.64.2):
+ - glog
+ - RCT-Folly (= 2020.01.13.00)
+ - React-Core/Default
+ - React-cxxreact (= 0.64.2)
+ - React-jsi (= 0.64.2)
+ - React-jsiexecutor (= 0.64.2)
+ - React-perflogger (= 0.64.2)
+ - Yoga
+ - React-Core/RCTTextHeaders (0.64.2):
+ - glog
+ - RCT-Folly (= 2020.01.13.00)
+ - React-Core/Default
+ - React-cxxreact (= 0.64.2)
+ - React-jsi (= 0.64.2)
+ - React-jsiexecutor (= 0.64.2)
+ - React-perflogger (= 0.64.2)
+ - Yoga
+ - React-Core/RCTVibrationHeaders (0.64.2):
+ - glog
+ - RCT-Folly (= 2020.01.13.00)
+ - React-Core/Default
+ - React-cxxreact (= 0.64.2)
+ - React-jsi (= 0.64.2)
+ - React-jsiexecutor (= 0.64.2)
+ - React-perflogger (= 0.64.2)
+ - Yoga
+ - React-Core/RCTWebSocket (0.64.2):
+ - glog
+ - RCT-Folly (= 2020.01.13.00)
+ - React-Core/Default (= 0.64.2)
+ - React-cxxreact (= 0.64.2)
+ - React-jsi (= 0.64.2)
+ - React-jsiexecutor (= 0.64.2)
+ - React-perflogger (= 0.64.2)
+ - Yoga
+ - React-CoreModules (0.64.2):
+ - FBReactNativeSpec (= 0.64.2)
+ - RCT-Folly (= 2020.01.13.00)
+ - RCTTypeSafety (= 0.64.2)
+ - React-Core/CoreModulesHeaders (= 0.64.2)
+ - React-jsi (= 0.64.2)
+ - React-RCTImage (= 0.64.2)
+ - ReactCommon/turbomodule/core (= 0.64.2)
+ - React-cxxreact (0.64.2):
+ - boost-for-react-native (= 1.63.0)
+ - DoubleConversion
+ - glog
+ - RCT-Folly (= 2020.01.13.00)
+ - React-callinvoker (= 0.64.2)
+ - React-jsi (= 0.64.2)
+ - React-jsinspector (= 0.64.2)
+ - React-perflogger (= 0.64.2)
+ - React-runtimeexecutor (= 0.64.2)
+ - React-jsi (0.64.2):
+ - boost-for-react-native (= 1.63.0)
+ - DoubleConversion
+ - glog
+ - RCT-Folly (= 2020.01.13.00)
+ - React-jsi/Default (= 0.64.2)
+ - React-jsi/Default (0.64.2):
+ - boost-for-react-native (= 1.63.0)
+ - DoubleConversion
+ - glog
+ - RCT-Folly (= 2020.01.13.00)
+ - React-jsiexecutor (0.64.2):
+ - DoubleConversion
+ - glog
+ - RCT-Folly (= 2020.01.13.00)
+ - React-cxxreact (= 0.64.2)
+ - React-jsi (= 0.64.2)
+ - React-perflogger (= 0.64.2)
+ - React-jsinspector (0.64.2)
+ - react-native-safe-area-context (3.3.0):
+ - React-Core
+ - React-perflogger (0.64.2)
+ - React-RCTActionSheet (0.64.2):
+ - React-Core/RCTActionSheetHeaders (= 0.64.2)
+ - React-RCTAnimation (0.64.2):
+ - FBReactNativeSpec (= 0.64.2)
+ - RCT-Folly (= 2020.01.13.00)
+ - RCTTypeSafety (= 0.64.2)
+ - React-Core/RCTAnimationHeaders (= 0.64.2)
+ - React-jsi (= 0.64.2)
+ - ReactCommon/turbomodule/core (= 0.64.2)
+ - React-RCTBlob (0.64.2):
+ - FBReactNativeSpec (= 0.64.2)
+ - RCT-Folly (= 2020.01.13.00)
+ - React-Core/RCTBlobHeaders (= 0.64.2)
+ - React-Core/RCTWebSocket (= 0.64.2)
+ - React-jsi (= 0.64.2)
+ - React-RCTNetwork (= 0.64.2)
+ - ReactCommon/turbomodule/core (= 0.64.2)
+ - React-RCTImage (0.64.2):
+ - FBReactNativeSpec (= 0.64.2)
+ - RCT-Folly (= 2020.01.13.00)
+ - RCTTypeSafety (= 0.64.2)
+ - React-Core/RCTImageHeaders (= 0.64.2)
+ - React-jsi (= 0.64.2)
+ - React-RCTNetwork (= 0.64.2)
+ - ReactCommon/turbomodule/core (= 0.64.2)
+ - React-RCTLinking (0.64.2):
+ - FBReactNativeSpec (= 0.64.2)
+ - React-Core/RCTLinkingHeaders (= 0.64.2)
+ - React-jsi (= 0.64.2)
+ - ReactCommon/turbomodule/core (= 0.64.2)
+ - React-RCTNetwork (0.64.2):
+ - FBReactNativeSpec (= 0.64.2)
+ - RCT-Folly (= 2020.01.13.00)
+ - RCTTypeSafety (= 0.64.2)
+ - React-Core/RCTNetworkHeaders (= 0.64.2)
+ - React-jsi (= 0.64.2)
+ - ReactCommon/turbomodule/core (= 0.64.2)
+ - React-RCTSettings (0.64.2):
+ - FBReactNativeSpec (= 0.64.2)
+ - RCT-Folly (= 2020.01.13.00)
+ - RCTTypeSafety (= 0.64.2)
+ - React-Core/RCTSettingsHeaders (= 0.64.2)
+ - React-jsi (= 0.64.2)
+ - ReactCommon/turbomodule/core (= 0.64.2)
+ - React-RCTText (0.64.2):
+ - React-Core/RCTTextHeaders (= 0.64.2)
+ - React-RCTVibration (0.64.2):
+ - FBReactNativeSpec (= 0.64.2)
+ - RCT-Folly (= 2020.01.13.00)
+ - React-Core/RCTVibrationHeaders (= 0.64.2)
+ - React-jsi (= 0.64.2)
+ - ReactCommon/turbomodule/core (= 0.64.2)
+ - React-runtimeexecutor (0.64.2):
+ - React-jsi (= 0.64.2)
+ - ReactCommon/turbomodule/core (0.64.2):
+ - DoubleConversion
+ - glog
+ - RCT-Folly (= 2020.01.13.00)
+ - React-callinvoker (= 0.64.2)
+ - React-Core (= 0.64.2)
+ - React-cxxreact (= 0.64.2)
+ - React-jsi (= 0.64.2)
+ - React-perflogger (= 0.64.2)
+ - RNGestureHandler (1.10.3):
+ - React-Core
+ - RNScreens (3.5.0):
+ - React-Core
+ - React-RCTImage
+ - Yoga (1.14.0)
+ - YogaKit (1.18.1):
+ - Yoga (~> 1.14)
+
+DEPENDENCIES:
+ - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
+ - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
+ - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
+ - Flipper (~> 0.75.1)
+ - Flipper-DoubleConversion (= 1.1.7)
+ - Flipper-Folly (~> 2.5.3)
+ - Flipper-Glog (= 0.3.6)
+ - Flipper-PeerTalk (~> 0.0.4)
+ - Flipper-RSocket (~> 1.3)
+ - FlipperKit (~> 0.75.1)
+ - FlipperKit/Core (~> 0.75.1)
+ - FlipperKit/CppBridge (~> 0.75.1)
+ - FlipperKit/FBCxxFollyDynamicConvert (~> 0.75.1)
+ - FlipperKit/FBDefines (~> 0.75.1)
+ - FlipperKit/FKPortForwarding (~> 0.75.1)
+ - FlipperKit/FlipperKitHighlightOverlay (~> 0.75.1)
+ - FlipperKit/FlipperKitLayoutPlugin (~> 0.75.1)
+ - FlipperKit/FlipperKitLayoutTextSearchable (~> 0.75.1)
+ - FlipperKit/FlipperKitNetworkPlugin (~> 0.75.1)
+ - FlipperKit/FlipperKitReactPlugin (~> 0.75.1)
+ - FlipperKit/FlipperKitUserDefaultsPlugin (~> 0.75.1)
+ - FlipperKit/SKIOSNetworkPlugin (~> 0.75.1)
+ - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
+ - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
+ - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
+ - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
+ - React (from `../node_modules/react-native/`)
+ - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
+ - React-Core (from `../node_modules/react-native/`)
+ - React-Core/DevSupport (from `../node_modules/react-native/`)
+ - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
+ - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
+ - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
+ - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
+ - 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-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
+ - 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`)
+ - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
+ - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
+ - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
+ - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
+ - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
+ - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
+ - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
+ - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
+ - RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
+ - RNScreens (from `../node_modules/react-native-screens`)
+ - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
+
+SPEC REPOS:
+ trunk:
+ - boost-for-react-native
+ - CocoaAsyncSocket
+ - Flipper
+ - Flipper-DoubleConversion
+ - Flipper-Folly
+ - Flipper-Glog
+ - Flipper-PeerTalk
+ - Flipper-RSocket
+ - FlipperKit
+ - libevent
+ - OpenSSL-Universal
+ - YogaKit
+
+EXTERNAL SOURCES:
+ DoubleConversion:
+ :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
+ FBLazyVector:
+ :path: "../node_modules/react-native/Libraries/FBLazyVector"
+ FBReactNativeSpec:
+ :path: "../node_modules/react-native/React/FBReactNativeSpec"
+ glog:
+ :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
+ RCT-Folly:
+ :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
+ RCTRequired:
+ :path: "../node_modules/react-native/Libraries/RCTRequired"
+ RCTTypeSafety:
+ :path: "../node_modules/react-native/Libraries/TypeSafety"
+ React:
+ :path: "../node_modules/react-native/"
+ React-callinvoker:
+ :path: "../node_modules/react-native/ReactCommon/callinvoker"
+ React-Core:
+ :path: "../node_modules/react-native/"
+ React-CoreModules:
+ :path: "../node_modules/react-native/React/CoreModules"
+ React-cxxreact:
+ :path: "../node_modules/react-native/ReactCommon/cxxreact"
+ React-jsi:
+ :path: "../node_modules/react-native/ReactCommon/jsi"
+ React-jsiexecutor:
+ :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
+ React-jsinspector:
+ :path: "../node_modules/react-native/ReactCommon/jsinspector"
+ react-native-safe-area-context:
+ :path: "../node_modules/react-native-safe-area-context"
+ React-perflogger:
+ :path: "../node_modules/react-native/ReactCommon/reactperflogger"
+ React-RCTActionSheet:
+ :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
+ React-RCTAnimation:
+ :path: "../node_modules/react-native/Libraries/NativeAnimation"
+ React-RCTBlob:
+ :path: "../node_modules/react-native/Libraries/Blob"
+ React-RCTImage:
+ :path: "../node_modules/react-native/Libraries/Image"
+ React-RCTLinking:
+ :path: "../node_modules/react-native/Libraries/LinkingIOS"
+ React-RCTNetwork:
+ :path: "../node_modules/react-native/Libraries/Network"
+ React-RCTSettings:
+ :path: "../node_modules/react-native/Libraries/Settings"
+ React-RCTText:
+ :path: "../node_modules/react-native/Libraries/Text"
+ React-RCTVibration:
+ :path: "../node_modules/react-native/Libraries/Vibration"
+ React-runtimeexecutor:
+ :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
+ ReactCommon:
+ :path: "../node_modules/react-native/ReactCommon"
+ RNGestureHandler:
+ :path: "../node_modules/react-native-gesture-handler"
+ RNScreens:
+ :path: "../node_modules/react-native-screens"
+ Yoga:
+ :path: "../node_modules/react-native/ReactCommon/yoga"
+
+SPEC CHECKSUMS:
+ boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c
+ CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
+ DoubleConversion: cf9b38bf0b2d048436d9a82ad2abe1404f11e7de
+ FBLazyVector: e686045572151edef46010a6f819ade377dfeb4b
+ FBReactNativeSpec: d626b125513bf674705a8d5a9ca0917592ea3534
+ Flipper: d3da1aa199aad94455ae725e9f3aa43f3ec17021
+ Flipper-DoubleConversion: 38631e41ef4f9b12861c67d17cb5518d06badc41
+ Flipper-Folly: 755929a4f851b2fb2c347d533a23f191b008554c
+ Flipper-Glog: 1dfd6abf1e922806c52ceb8701a3599a79a200a6
+ Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
+ Flipper-RSocket: 127954abe8b162fcaf68d2134d34dc2bd7076154
+ FlipperKit: 8a20b5c5fcf9436cac58551dc049867247f64b00
+ glog: 73c2498ac6884b13ede40eda8228cb1eee9d9d62
+ libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
+ OpenSSL-Universal: 1aa4f6a6ee7256b83db99ec1ccdaa80d10f9af9b
+ RCT-Folly: ec7a233ccc97cc556cf7237f0db1ff65b986f27c
+ RCTRequired: 6d3e854f0e7260a648badd0d44fc364bc9da9728
+ RCTTypeSafety: c1f31d19349c6b53085766359caac425926fafaa
+ React: bda6b6d7ae912de97d7a61aa5c160db24aa2ad69
+ React-callinvoker: 9840ea7e8e88ed73d438edb725574820b29b5baa
+ React-Core: b5e385da7ce5f16a220fc60fd0749eae2c6120f0
+ React-CoreModules: 17071a4e2c5239b01585f4aa8070141168ab298f
+ React-cxxreact: 9be7b6340ed9f7c53e53deca7779f07cd66525ba
+ React-jsi: 67747b9722f6dab2ffe15b011bcf6b3f2c3f1427
+ React-jsiexecutor: 80c46bd381fd06e418e0d4f53672dc1d1945c4c3
+ React-jsinspector: cc614ec18a9ca96fd275100c16d74d62ee11f0ae
+ react-native-safe-area-context: 61c8c484a3a9e7d1fda19f7b1794b35bbfd2262a
+ React-perflogger: 25373e382fed75ce768a443822f07098a15ab737
+ React-RCTActionSheet: af7796ba49ffe4ca92e7277a5d992d37203f7da5
+ React-RCTAnimation: 6a2e76ab50c6f25b428d81b76a5a45351c4d77aa
+ React-RCTBlob: 02a2887023e0eed99391b6445b2e23a2a6f9226d
+ React-RCTImage: ce5bf8e7438f2286d9b646a05d6ab11f38b0323d
+ React-RCTLinking: ccd20742de14e020cb5f99d5c7e0bf0383aefbd9
+ React-RCTNetwork: dfb9d089ab0753e5e5f55fc4b1210858f7245647
+ React-RCTSettings: b14aef2d83699e48b410fb7c3ba5b66cd3291ae2
+ React-RCTText: 41a2e952dd9adc5caf6fb68ed46b275194d5da5f
+ React-RCTVibration: 24600e3b1aaa77126989bc58b6747509a1ba14f3
+ React-runtimeexecutor: a9904c6d0218fb9f8b19d6dd88607225927668f9
+ ReactCommon: 149906e01aa51142707a10665185db879898e966
+ RNGestureHandler: a479ebd5ed4221a810967000735517df0d2db211
+ RNScreens: 01ab149b5dd5c27f5ff26741b1d2bdf2cee1af35
+ Yoga: 575c581c63e0d35c9a83f4b46d01d63abc1100ac
+ YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
+
+PODFILE CHECKSUM: a2abd69d69a571fe2ed4fd37370c6948daced2d4
+
+COCOAPODS: 1.10.1
diff --git a/App/FollowApp/metro.config.js b/App/FollowApp/metro.config.js
index e91aba9..715c7bc 100644
--- a/App/FollowApp/metro.config.js
+++ b/App/FollowApp/metro.config.js
@@ -6,12 +6,12 @@
*/
module.exports = {
- transformer: {
- getTransformOptions: async () => ({
- transform: {
- experimentalImportSupport: false,
- inlineRequires: true,
- },
- }),
- },
+ transformer: {
+ getTransformOptions: async () => ({
+ transform: {
+ experimentalImportSupport: false,
+ inlineRequires: true,
+ },
+ }),
+ },
};
diff --git a/App/FollowApp/package-lock.json b/App/FollowApp/package-lock.json
index 2412bee..8cefdeb 100644
--- a/App/FollowApp/package-lock.json
+++ b/App/FollowApp/package-lock.json
@@ -9,27 +9,108 @@
"version": "0.0.1",
"dependencies": {
"@react-navigation/bottom-tabs": "^5.11.11",
- "@react-navigation/native": "^5.9.4",
- "@react-navigation/stack": "^5.14.5",
+ "@react-navigation/native": "^5.9.6",
+ "@react-navigation/stack": "^5.14.7",
"prop-types": "^15.7.2",
- "react": "17.0.1",
- "react-native": "0.64.2",
+ "react": "^17.0.1",
+ "react-native": "^0.64.2",
+ "react-native-drop-shadow": "^0.0.2",
+ "react-native-elements": "^3.4.2",
+ "react-native-gesture-handler": "^1.10.3",
+ "react-native-image-zoom-viewer": "^3.0.1",
"react-native-keyboard-aware-scroll-view": "^0.9.4",
+ "react-native-safe-area-context": "^3.3.0",
+ "react-native-screens": "^3.4.0",
+ "react-native-segment-tab": "^0.1.1",
+ "react-native-segmented-control-tab": "^3.4.1",
+ "react-native-vector-icons": "^8.1.0",
"styled-components": "^5.3.0"
},
"devDependencies": {
- "@babel/core": "^7.12.9",
+ "@babel/cli": "^7.14.8",
+ "@babel/core": "^7.14.8",
+ "@babel/preset-flow": "^7.14.5",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"babel-jest": "^26.6.3",
"eslint": "7.14.0",
"eslint-plugin-prettier": "^3.4.0",
+ "flow-bin": "^0.156.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.64.0",
"prettier": "^2.3.2",
"react-test-renderer": "17.0.1"
}
},
+ "node_modules/@babel/cli": {
+ "version": "7.14.8",
+ "resolved": "https://registry.npmjs.org/@babel/cli/-/cli-7.14.8.tgz",
+ "integrity": "sha512-lcy6Lymft9Rpfqmrqdd4oTDdUx9ZwaAhAfywVrHG4771Pa6PPT0danJ1kDHBXYqh4HHSmIdA+nlmfxfxSDPtBg==",
+ "dev": true,
+ "dependencies": {
+ "commander": "^4.0.1",
+ "convert-source-map": "^1.1.0",
+ "fs-readdir-recursive": "^1.1.0",
+ "glob": "^7.0.0",
+ "make-dir": "^2.1.0",
+ "slash": "^2.0.0",
+ "source-map": "^0.5.0"
+ },
+ "bin": {
+ "babel": "bin/babel.js",
+ "babel-external-helpers": "bin/babel-external-helpers.js"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "optionalDependencies": {
+ "@nicolo-ribaudo/chokidar-2": "2.1.8-no-fsevents.2",
+ "chokidar": "^3.4.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/cli/node_modules/commander": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
+ "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
+ "dev": true,
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/@babel/cli/node_modules/make-dir": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz",
+ "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==",
+ "dev": true,
+ "dependencies": {
+ "pify": "^4.0.1",
+ "semver": "^5.6.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/@babel/cli/node_modules/semver": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
+ "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
+ "dev": true,
+ "bin": {
+ "semver": "bin/semver"
+ }
+ },
+ "node_modules/@babel/cli/node_modules/slash": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz",
+ "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
"node_modules/@babel/code-frame": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz",
@@ -1273,7 +1354,6 @@
"version": "2.0.17",
"resolved": "https://registry.npmjs.org/@egjs/hammerjs/-/hammerjs-2.0.17.tgz",
"integrity": "sha512-XQsZgjm2EcVUiZQf11UBJQfmZeEmOW8DpI1gsFeln6w0ae0ii4dMQEQ0kjl6DspdWX1aGY1/loyXnP0JS06e/A==",
- "peer": true,
"dependencies": {
"@types/hammerjs": "^2.0.36"
},
@@ -2010,6 +2090,189 @@
"node": ">=8"
}
},
+ "node_modules/@nicolo-ribaudo/chokidar-2": {
+ "version": "2.1.8-no-fsevents.2",
+ "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.2.tgz",
+ "integrity": "sha512-Fb8WxUFOBQVl+CX4MWet5o7eCc6Pj04rXIwVKZ6h1NnqTo45eOQW6aWyhG25NIODvWFwTDMwBsYxrQ3imxpetg==",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "anymatch": "^2.0.0",
+ "async-each": "^1.0.1",
+ "braces": "^2.3.2",
+ "glob-parent": "^5.1.2",
+ "inherits": "^2.0.3",
+ "is-binary-path": "^1.0.0",
+ "is-glob": "^4.0.0",
+ "normalize-path": "^3.0.0",
+ "path-is-absolute": "^1.0.0",
+ "readdirp": "^2.2.1",
+ "upath": "^1.1.1"
+ }
+ },
+ "node_modules/@nicolo-ribaudo/chokidar-2/node_modules/anymatch": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz",
+ "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "micromatch": "^3.1.4",
+ "normalize-path": "^2.1.1"
+ }
+ },
+ "node_modules/@nicolo-ribaudo/chokidar-2/node_modules/anymatch/node_modules/normalize-path": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
+ "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "remove-trailing-separator": "^1.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/@nicolo-ribaudo/chokidar-2/node_modules/braces": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
+ "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "arr-flatten": "^1.1.0",
+ "array-unique": "^0.3.2",
+ "extend-shallow": "^2.0.1",
+ "fill-range": "^4.0.0",
+ "isobject": "^3.0.1",
+ "repeat-element": "^1.1.2",
+ "snapdragon": "^0.8.1",
+ "snapdragon-node": "^2.0.1",
+ "split-string": "^3.0.2",
+ "to-regex": "^3.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/@nicolo-ribaudo/chokidar-2/node_modules/braces/node_modules/extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "is-extendable": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/@nicolo-ribaudo/chokidar-2/node_modules/fill-range": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
+ "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "extend-shallow": "^2.0.1",
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1",
+ "to-regex-range": "^2.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/@nicolo-ribaudo/chokidar-2/node_modules/fill-range/node_modules/extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "is-extendable": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/@nicolo-ribaudo/chokidar-2/node_modules/is-extendable": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+ "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+ "dev": true,
+ "optional": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/@nicolo-ribaudo/chokidar-2/node_modules/is-number": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
+ "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "kind-of": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/@nicolo-ribaudo/chokidar-2/node_modules/is-number/node_modules/kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "is-buffer": "^1.1.5"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/@nicolo-ribaudo/chokidar-2/node_modules/micromatch": {
+ "version": "3.1.10",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
+ "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "arr-diff": "^4.0.0",
+ "array-unique": "^0.3.2",
+ "braces": "^2.3.1",
+ "define-property": "^2.0.2",
+ "extend-shallow": "^3.0.2",
+ "extglob": "^2.0.4",
+ "fragment-cache": "^0.2.1",
+ "kind-of": "^6.0.2",
+ "nanomatch": "^1.2.9",
+ "object.pick": "^1.3.0",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/@nicolo-ribaudo/chokidar-2/node_modules/to-regex-range": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz",
+ "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
"node_modules/@react-native-community/cli": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/@react-native-community/cli/-/cli-5.0.1.tgz",
@@ -2754,16 +3017,6 @@
"integrity": "sha512-W/J0fNYVO01tioHjvYWQ9m6RgndVtbElzYozBq1ZPrHO/iCzlqoySHl4gO/fpCl9QEFjvJfjPgtPMTMlsoq5DQ==",
"dev": true
},
- "node_modules/@react-native-community/masked-view": {
- "version": "0.1.11",
- "resolved": "https://registry.npmjs.org/@react-native-community/masked-view/-/masked-view-0.1.11.tgz",
- "integrity": "sha512-rQfMIGSR/1r/SyN87+VD8xHHzDYeHaJq6elOSCAD+0iLagXkSI2pfA0LmSXP21uw5i3em7GkkRjfJ8wpqWXZNw==",
- "peer": true,
- "peerDependencies": {
- "react": ">=16.0",
- "react-native": ">=0.57"
- }
- },
"node_modules/@react-native/assets": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@react-native/assets/-/assets-1.0.0.tgz",
@@ -2795,26 +3048,12 @@
"react-native-screens": ">= 2.0.0-alpha.0 || >= 2.0.0-beta.0 || >= 2.0.0"
}
},
- "node_modules/@react-navigation/native": {
- "version": "5.9.4",
- "resolved": "https://registry.npmjs.org/@react-navigation/native/-/native-5.9.4.tgz",
- "integrity": "sha512-BUCrOXfZDdKWBqM8OhOKQhCX5we4HUo5XG6tCQtVqQAep+7UcApZmMUuemUXDxVe8NPESUpoUlB0RaEpyIdfTQ==",
- "dependencies": {
- "@react-navigation/core": "^5.15.3",
- "escape-string-regexp": "^4.0.0",
- "nanoid": "^3.1.15"
- },
- "peerDependencies": {
- "react": "*",
- "react-native": "*"
- }
- },
- "node_modules/@react-navigation/native/node_modules/@react-navigation/core": {
- "version": "5.15.3",
- "resolved": "https://registry.npmjs.org/@react-navigation/core/-/core-5.15.3.tgz",
- "integrity": "sha512-3ZdyDInh8qg1kygCNkmh9lFgpDf29lTvPsaMe2mm/qvmxLKSgttWBz07P2fc181aV9jTdgQpzYfWZ5KWT036zw==",
+ "node_modules/@react-navigation/core": {
+ "version": "5.15.5",
+ "resolved": "https://registry.npmjs.org/@react-navigation/core/-/core-5.15.5.tgz",
+ "integrity": "sha512-xrUQ0xVQTMuuMiILRhhRpBzoI4TaFh4dJ4INCy6uwK9dwHjLwtsx+++ZefV/K4tbMQmGFxq4zSnLtTRtfMZKrA==",
"dependencies": {
- "@react-navigation/routers": "^5.7.2",
+ "@react-navigation/routers": "^5.7.4",
"escape-string-regexp": "^4.0.0",
"nanoid": "^3.1.15",
"query-string": "^6.13.6",
@@ -2824,7 +3063,7 @@
"react": "*"
}
},
- "node_modules/@react-navigation/native/node_modules/escape-string-regexp": {
+ "node_modules/@react-navigation/core/node_modules/escape-string-regexp": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
"integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
@@ -2835,23 +3074,48 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/@react-navigation/native/node_modules/react-is": {
+ "node_modules/@react-navigation/core/node_modules/react-is": {
"version": "16.13.1",
"resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
"integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
},
+ "node_modules/@react-navigation/native": {
+ "version": "5.9.6",
+ "resolved": "https://registry.npmjs.org/@react-navigation/native/-/native-5.9.6.tgz",
+ "integrity": "sha512-m2F2AWBr0qbi4a5MBk2puGNWyVQnfmVHcpuIzQ37juptX6QCCuXjmOxvtdyqRzh2gKGnUlIeNaQKcACYj4zG/w==",
+ "dependencies": {
+ "@react-navigation/core": "^5.15.5",
+ "escape-string-regexp": "^4.0.0",
+ "nanoid": "^3.1.15"
+ },
+ "peerDependencies": {
+ "react": "*",
+ "react-native": "*"
+ }
+ },
+ "node_modules/@react-navigation/native/node_modules/escape-string-regexp": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
"node_modules/@react-navigation/routers": {
- "version": "5.7.2",
- "resolved": "https://registry.npmjs.org/@react-navigation/routers/-/routers-5.7.2.tgz",
- "integrity": "sha512-BxNSMLHpU+oS37Xok0ql6rc9U7IC8aUD4+U5ZPbjDJ0pwzZxGGh0YOEBzfV4k/Ig3cbPdvVWbc1C9HHbCVr2oQ==",
+ "version": "5.7.4",
+ "resolved": "https://registry.npmjs.org/@react-navigation/routers/-/routers-5.7.4.tgz",
+ "integrity": "sha512-0N202XAqsU/FlE53Nmh6GHyMtGm7g6TeC93mrFAFJOqGRKznT0/ail+cYlU6tNcPA9AHzZu1Modw1eoDINSliQ==",
"dependencies": {
"nanoid": "^3.1.15"
}
},
"node_modules/@react-navigation/stack": {
- "version": "5.14.5",
- "resolved": "https://registry.npmjs.org/@react-navigation/stack/-/stack-5.14.5.tgz",
- "integrity": "sha512-hpdn1SS0tc3/3atkV2Q2y++n5B4e0rUcCj4W43PODMu72yX2m0LkKAAcpkPDCWAvwnLLIoLAEl5BEifZigl/6A==",
+ "version": "5.14.7",
+ "resolved": "https://registry.npmjs.org/@react-navigation/stack/-/stack-5.14.7.tgz",
+ "integrity": "sha512-Ew+MYaJGvJUpZ3XYIilSCRruldr3JXNOWYM8bqE21EeJ5d3mfynpTPihck5ol0AN8uFEAeskQzoixGWh5eMYuA==",
"dependencies": {
"color": "^3.1.3",
"react-native-iphone-x-helper": "^1.3.0"
@@ -2969,8 +3233,7 @@
"node_modules/@types/hammerjs": {
"version": "2.0.40",
"resolved": "https://registry.npmjs.org/@types/hammerjs/-/hammerjs-2.0.40.tgz",
- "integrity": "sha512-VbjwR1fhsn2h2KXAY4oy1fm7dCxaKy0D+deTb8Ilc3Eo3rc5+5eA4rfYmZaHgNJKxVyI0f6WIXzO2zLkVmQPHA==",
- "peer": true
+ "integrity": "sha512-VbjwR1fhsn2h2KXAY4oy1fm7dCxaKy0D+deTb8Ilc3Eo3rc5+5eA4rfYmZaHgNJKxVyI0f6WIXzO2zLkVmQPHA=="
},
"node_modules/@types/istanbul-lib-coverage": {
"version": "2.0.3",
@@ -3016,6 +3279,43 @@
"integrity": "sha512-eI5Yrz3Qv4KPUa/nSIAi0h+qX0XyewOliug5F2QAtuRg6Kjg6jfmxe1GIwoIRhZspD1A0RP8ANrPwvEXXtRFog==",
"dev": true
},
+ "node_modules/@types/prop-types": {
+ "version": "15.7.4",
+ "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.4.tgz",
+ "integrity": "sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ=="
+ },
+ "node_modules/@types/react": {
+ "version": "17.0.15",
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.15.tgz",
+ "integrity": "sha512-uTKHDK9STXFHLaKv6IMnwp52fm0hwU+N89w/p9grdUqcFA6WuqDyPhaWopbNyE1k/VhgzmHl8pu1L4wITtmlLw==",
+ "dependencies": {
+ "@types/prop-types": "*",
+ "@types/scheduler": "*",
+ "csstype": "^3.0.2"
+ }
+ },
+ "node_modules/@types/react-native": {
+ "version": "0.64.12",
+ "resolved": "https://registry.npmjs.org/@types/react-native/-/react-native-0.64.12.tgz",
+ "integrity": "sha512-sw6WGSaL219zqrgdb4kQUtFB9iGXC/LmecLZ+UUWEgwYvD0YH81FqWYmONa2HuTkOFAsxu2bK4DspkWRUHIABQ==",
+ "dependencies": {
+ "@types/react": "*"
+ }
+ },
+ "node_modules/@types/react-native-vector-icons": {
+ "version": "6.4.8",
+ "resolved": "https://registry.npmjs.org/@types/react-native-vector-icons/-/react-native-vector-icons-6.4.8.tgz",
+ "integrity": "sha512-ImqhwVPHtcWrfwaS4vVrnN/C1mY50+Gjer4wMltUJlkt9pTJ5WXCyn8VFPmxC5h8Zy0DBN2tYdusBZ2xJP14OA==",
+ "dependencies": {
+ "@types/react": "*",
+ "@types/react-native": "*"
+ }
+ },
+ "node_modules/@types/scheduler": {
+ "version": "0.16.2",
+ "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz",
+ "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew=="
+ },
"node_modules/@types/stack-utils": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz",
@@ -3531,6 +3831,13 @@
"lodash": "^4.17.14"
}
},
+ "node_modules/async-each": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz",
+ "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==",
+ "dev": true,
+ "optional": true
+ },
"node_modules/async-limiter": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz",
@@ -3909,6 +4216,16 @@
"node": ">=0.6"
}
},
+ "node_modules/binary-extensions": {
+ "version": "1.13.1",
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz",
+ "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==",
+ "dev": true,
+ "optional": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
"node_modules/bplist-creator": {
"version": "0.0.8",
"resolved": "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.0.8.tgz",
@@ -4122,6 +4439,64 @@
"node": ">=10"
}
},
+ "node_modules/chokidar": {
+ "version": "3.5.2",
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz",
+ "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "anymatch": "~3.1.2",
+ "braces": "~3.0.2",
+ "glob-parent": "~5.1.2",
+ "is-binary-path": "~2.1.0",
+ "is-glob": "~4.0.1",
+ "normalize-path": "~3.0.0",
+ "readdirp": "~3.6.0"
+ },
+ "engines": {
+ "node": ">= 8.10.0"
+ },
+ "optionalDependencies": {
+ "fsevents": "~2.3.2"
+ }
+ },
+ "node_modules/chokidar/node_modules/binary-extensions": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz",
+ "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==",
+ "dev": true,
+ "optional": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/chokidar/node_modules/is-binary-path": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
+ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "binary-extensions": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/chokidar/node_modules/readdirp": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "picomatch": "^2.2.1"
+ },
+ "engines": {
+ "node": ">=8.10.0"
+ }
+ },
"node_modules/ci-info": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz",
@@ -4559,7 +4934,6 @@
"version": "3.1.4",
"resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.4.tgz",
"integrity": "sha512-1eAtFWdIubi6T4XPy6ei9iUFoKpUkIF971QLN8lIvvvwueI65+Nw5haMNKUwfJxabqlIIDODJKGrQ66gxC0PbQ==",
- "peer": true,
"dependencies": {
"node-fetch": "2.6.1"
}
@@ -4620,6 +4994,11 @@
"integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==",
"dev": true
},
+ "node_modules/csstype": {
+ "version": "3.0.8",
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.8.tgz",
+ "integrity": "sha512-jXKhWqXPmlUeoQnF/EhTtTl4C9SnrxSH/jZUih3jmO6lBKr99rP3/+FmrMj4EFpOXzMtXHAZkd3x0E6h6Fgflw=="
+ },
"node_modules/data-urls": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz",
@@ -4687,7 +5066,6 @@
"version": "4.2.2",
"resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz",
"integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==",
- "dev": true,
"engines": {
"node": ">=0.10.0"
}
@@ -5849,7 +6227,6 @@
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.0.tgz",
"integrity": "sha512-dJd4PiDOFuhe7vk4F80Mba83Vr2QuK86FoxtgPmzBqEJahncp+13YCmfoa53KHCo6OnlXLG7eeMWPfB5CrpVKg==",
- "peer": true,
"dependencies": {
"cross-fetch": "^3.0.4",
"fbjs-css-vars": "^1.0.0",
@@ -5863,14 +6240,12 @@
"node_modules/fbjs-css-vars": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz",
- "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==",
- "peer": true
+ "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ=="
},
"node_modules/fbjs/node_modules/promise": {
"version": "7.3.1",
"resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz",
"integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==",
- "peer": true,
"dependencies": {
"asap": "~2.0.3"
}
@@ -6054,6 +6429,18 @@
"integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==",
"dev": true
},
+ "node_modules/flow-bin": {
+ "version": "0.156.0",
+ "resolved": "https://registry.npmjs.org/flow-bin/-/flow-bin-0.156.0.tgz",
+ "integrity": "sha512-KEEsKV7/bePZM3Ja7rYlAaSx8GPiTGr7pt0IJcX5S3GSEIZ2ieayF6JWNjbyLiu7ZUJuWe4ITDnPvyqimUpYww==",
+ "dev": true,
+ "bin": {
+ "flow": "cli.js"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
"node_modules/flow-parser": {
"version": "0.121.0",
"resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.121.0.tgz",
@@ -6116,6 +6503,12 @@
"node": ">=6 <7 || >=8"
}
},
+ "node_modules/fs-readdir-recursive": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz",
+ "integrity": "sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==",
+ "dev": true
+ },
"node_modules/fs.realpath": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
@@ -6630,6 +7023,19 @@
"url": "https://github.com/sponsors/ljharb"
}
},
+ "node_modules/is-binary-path": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz",
+ "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "binary-extensions": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
"node_modules/is-boolean-object": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.1.tgz",
@@ -8988,11 +9394,58 @@
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
"integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
},
+ "node_modules/lodash._reinterpolate": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz",
+ "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0="
+ },
"node_modules/lodash.debounce": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz",
"integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168="
},
+ "node_modules/lodash.frompairs": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/lodash.frompairs/-/lodash.frompairs-4.0.1.tgz",
+ "integrity": "sha1-vE5SB/onV8E25XNhTpZkUGsrG9I="
+ },
+ "node_modules/lodash.isequal": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz",
+ "integrity": "sha1-QVxEePK8wwEgwizhDtMib30+GOA="
+ },
+ "node_modules/lodash.isstring": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz",
+ "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE="
+ },
+ "node_modules/lodash.omit": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/lodash.omit/-/lodash.omit-4.5.0.tgz",
+ "integrity": "sha1-brGa5aHuHdnfC5aeZs4Lf6MLXmA="
+ },
+ "node_modules/lodash.pick": {
+ "version": "4.4.0",
+ "resolved": "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz",
+ "integrity": "sha1-UvBWEP/53tQiYRRB7R/BI6AwAbM="
+ },
+ "node_modules/lodash.template": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz",
+ "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==",
+ "dependencies": {
+ "lodash._reinterpolate": "^3.0.0",
+ "lodash.templatesettings": "^4.0.0"
+ }
+ },
+ "node_modules/lodash.templatesettings": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz",
+ "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==",
+ "dependencies": {
+ "lodash._reinterpolate": "^3.0.0"
+ }
+ },
"node_modules/lodash.throttle": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz",
@@ -10061,6 +10514,14 @@
"node": ">=4"
}
},
+ "node_modules/opencollective-postinstall": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz",
+ "integrity": "sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==",
+ "bin": {
+ "opencollective-postinstall": "index.js"
+ }
+ },
"node_modules/optionator": {
"version": "0.9.1",
"resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz",
@@ -10585,11 +11046,41 @@
"nullthrows": "^1.1.1"
}
},
+ "node_modules/react-native-drop-shadow": {
+ "version": "0.0.2",
+ "resolved": "https://registry.npmjs.org/react-native-drop-shadow/-/react-native-drop-shadow-0.0.2.tgz",
+ "integrity": "sha512-zaUCd9OwwKRK4sd6dQrl3s/W7gX43gK2XjViO60ta6oTyohUP0xcuFjO+hhgo+bNPyPgPQxkIWluaWZKnqcbhw==",
+ "dependencies": {
+ "logkitty": "^0.7.1"
+ },
+ "peerDependencies": {
+ "react-native": ">=0.61.5"
+ }
+ },
+ "node_modules/react-native-elements": {
+ "version": "3.4.2",
+ "resolved": "https://registry.npmjs.org/react-native-elements/-/react-native-elements-3.4.2.tgz",
+ "integrity": "sha512-m0eAWOn7JuR1wNTNY0WHuaqst4LI/gFE4N5Bbyfsc4DiryWsMST7aAg5w/Gos4IexWIzhLKCIkPxthND1m/8Xg==",
+ "hasInstallScript": true,
+ "dependencies": {
+ "@types/react-native-vector-icons": "^6.4.6",
+ "color": "^3.1.2",
+ "deepmerge": "^4.2.2",
+ "hoist-non-react-statics": "^3.3.2",
+ "lodash.isequal": "^4.5.0",
+ "opencollective-postinstall": "^2.0.3",
+ "react-native-ratings": "8.0.4",
+ "react-native-size-matters": "^0.3.1"
+ },
+ "peerDependencies": {
+ "react-native-safe-area-context": "^3.1.9",
+ "react-native-vector-icons": ">7.0.0"
+ }
+ },
"node_modules/react-native-gesture-handler": {
"version": "1.10.3",
"resolved": "https://registry.npmjs.org/react-native-gesture-handler/-/react-native-gesture-handler-1.10.3.tgz",
"integrity": "sha512-cBGMi1IEsIVMgoox4RvMx7V2r6bNKw0uR1Mu1o7NbuHS6BRSVLq0dP34l2ecnPlC+jpWd3le6Yg1nrdCjby2Mw==",
- "peer": true,
"dependencies": {
"@egjs/hammerjs": "^2.0.17",
"fbjs": "^3.0.0",
@@ -10598,6 +11089,27 @@
"prop-types": "^15.7.2"
}
},
+ "node_modules/react-native-image-zoom-viewer": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/react-native-image-zoom-viewer/-/react-native-image-zoom-viewer-3.0.1.tgz",
+ "integrity": "sha512-la6s5DNSuq4GCRLsi5CZ29FPjgTpdCuGIRdO5T9rUrAtxrlpBPhhSnHrbmPVxsdtOUvxHacTh2Gfa9+RraMZQA==",
+ "dependencies": {
+ "react-native-image-pan-zoom": "^2.1.12"
+ },
+ "peerDependencies": {
+ "react": "*",
+ "react-native": "*"
+ }
+ },
+ "node_modules/react-native-image-zoom-viewer/node_modules/react-native-image-pan-zoom": {
+ "version": "2.1.12",
+ "resolved": "https://registry.npmjs.org/react-native-image-pan-zoom/-/react-native-image-pan-zoom-2.1.12.tgz",
+ "integrity": "sha512-BF66XeP6dzuANsPmmFsJshM2Jyh/Mo1t8FsGc1L9Q9/sVP8MJULDabB1hms+eAoqgtyhMr5BuXV3E1hJ5U5H6Q==",
+ "peerDependencies": {
+ "react": "*",
+ "react-native": "*"
+ }
+ },
"node_modules/react-native-iphone-x-helper": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/react-native-iphone-x-helper/-/react-native-iphone-x-helper-1.3.1.tgz",
@@ -10618,11 +11130,22 @@
"react-native": ">=0.48.4"
}
},
+ "node_modules/react-native-ratings": {
+ "version": "8.0.4",
+ "resolved": "https://registry.npmjs.org/react-native-ratings/-/react-native-ratings-8.0.4.tgz",
+ "integrity": "sha512-Xczu5lskIIRD6BEdz9A0jDRpEck/SFxRqiglkXi0u67yAtI1/pcJC76P4MukCbT8K4BPVl+42w83YqXBoBRl7A==",
+ "dependencies": {
+ "lodash": "^4.17.15"
+ },
+ "peerDependencies": {
+ "react": "*",
+ "react-native": "*"
+ }
+ },
"node_modules/react-native-safe-area-context": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/react-native-safe-area-context/-/react-native-safe-area-context-3.2.0.tgz",
- "integrity": "sha512-k2Nty4PwSnrg9HwrYeeE+EYqViYJoOFwEy9LxL5RIRfoqxAq/uQXNGwpUg2/u4gnKpBbEPa9eRh15KKMe/VHkA==",
- "peer": true,
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/react-native-safe-area-context/-/react-native-safe-area-context-3.3.0.tgz",
+ "integrity": "sha512-IrCNx56LO9RJ75yCf2CSSO1ceLj3mvxTAF+HWnehaeRIfF4pIcIn3WEUlXulFiha641OKS5X0+1XZCbbQ7pITA==",
"peerDependencies": {
"react": "*",
"react-native": "*"
@@ -10632,7 +11155,6 @@
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/react-native-screens/-/react-native-screens-3.4.0.tgz",
"integrity": "sha512-cg+q9MRnVdeOcJyvJtqffoXLur/C2wHA/7IO2+FAipzTlgHbbM1mTuSM7qG+SeiQjoIs4mHOEf7A0ziPKW04sA==",
- "peer": true,
"dependencies": {
"warn-once": "^0.1.0"
},
@@ -10641,6 +11163,158 @@
"react-native": "*"
}
},
+ "node_modules/react-native-segment-tab": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/react-native-segment-tab/-/react-native-segment-tab-0.1.1.tgz",
+ "integrity": "sha1-WoWxTqtX2LdzhKvdIedkgFmCmRc="
+ },
+ "node_modules/react-native-segmented-control-tab": {
+ "version": "3.4.1",
+ "resolved": "https://registry.npmjs.org/react-native-segmented-control-tab/-/react-native-segmented-control-tab-3.4.1.tgz",
+ "integrity": "sha512-BNPdlE9Unr0Xabewn8W+FhBMLjssXy9Ey7S7AY0hXlrKrEKFdC9z0yT+eEWd5dLam4T6T4IuGL8b7ZF4uGyWNw=="
+ },
+ "node_modules/react-native-size-matters": {
+ "version": "0.3.1",
+ "resolved": "https://registry.npmjs.org/react-native-size-matters/-/react-native-size-matters-0.3.1.tgz",
+ "integrity": "sha512-mKOfBLIBFBcs9br1rlZDvxD5+mAl8Gfr5CounwJtxI6Z82rGrMO+Kgl9EIg3RMVf3G855a85YVqHJL2f5EDRlw==",
+ "peerDependencies": {
+ "react-native": "*"
+ }
+ },
+ "node_modules/react-native-vector-icons": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/react-native-vector-icons/-/react-native-vector-icons-8.1.0.tgz",
+ "integrity": "sha512-sHIdBB6Y0dHaot2fMXgy5J/hhCn5YuyN7SKDNFgPzL8KA1oF2/v7mgYMavnK7LIIs2dJoGnDANKf61dsU+TZlg==",
+ "dependencies": {
+ "lodash.frompairs": "^4.0.1",
+ "lodash.isequal": "^4.5.0",
+ "lodash.isstring": "^4.0.1",
+ "lodash.omit": "^4.5.0",
+ "lodash.pick": "^4.4.0",
+ "lodash.template": "^4.5.0",
+ "prop-types": "^15.7.2",
+ "yargs": "^16.1.1"
+ },
+ "bin": {
+ "fa5-upgrade": "bin/fa5-upgrade.sh",
+ "generate-icon": "bin/generate-icon.js"
+ }
+ },
+ "node_modules/react-native-vector-icons/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/react-native-vector-icons/node_modules/cliui": {
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
+ "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
+ "dependencies": {
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.0",
+ "wrap-ansi": "^7.0.0"
+ }
+ },
+ "node_modules/react-native-vector-icons/node_modules/color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dependencies": {
+ "color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
+ }
+ },
+ "node_modules/react-native-vector-icons/node_modules/color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
+ },
+ "node_modules/react-native-vector-icons/node_modules/emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
+ },
+ "node_modules/react-native-vector-icons/node_modules/is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/react-native-vector-icons/node_modules/string-width": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz",
+ "integrity": "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==",
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/react-native-vector-icons/node_modules/wrap-ansi": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+ "dependencies": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+ }
+ },
+ "node_modules/react-native-vector-icons/node_modules/y18n": {
+ "version": "5.0.8",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
+ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/react-native-vector-icons/node_modules/yargs": {
+ "version": "16.2.0",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
+ "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
+ "dependencies": {
+ "cliui": "^7.0.2",
+ "escalade": "^3.1.1",
+ "get-caller-file": "^2.0.5",
+ "require-directory": "^2.1.1",
+ "string-width": "^4.2.0",
+ "y18n": "^5.0.5",
+ "yargs-parser": "^20.2.2"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/react-native-vector-icons/node_modules/yargs-parser": {
+ "version": "20.2.9",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz",
+ "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==",
+ "engines": {
+ "node": ">=10"
+ }
+ },
"node_modules/react-native/node_modules/ws": {
"version": "6.2.2",
"resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz",
@@ -10758,13 +11432,167 @@
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
"integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
"dependencies": {
- "core-util-is": "~1.0.0",
- "inherits": "~2.0.3",
- "isarray": "~1.0.0",
- "process-nextick-args": "~2.0.0",
- "safe-buffer": "~5.1.1",
- "string_decoder": "~1.1.1",
- "util-deprecate": "~1.0.1"
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
+ }
+ },
+ "node_modules/readdirp": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz",
+ "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "graceful-fs": "^4.1.11",
+ "micromatch": "^3.1.10",
+ "readable-stream": "^2.0.2"
+ },
+ "engines": {
+ "node": ">=0.10"
+ }
+ },
+ "node_modules/readdirp/node_modules/braces": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
+ "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "arr-flatten": "^1.1.0",
+ "array-unique": "^0.3.2",
+ "extend-shallow": "^2.0.1",
+ "fill-range": "^4.0.0",
+ "isobject": "^3.0.1",
+ "repeat-element": "^1.1.2",
+ "snapdragon": "^0.8.1",
+ "snapdragon-node": "^2.0.1",
+ "split-string": "^3.0.2",
+ "to-regex": "^3.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/readdirp/node_modules/braces/node_modules/extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "is-extendable": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/readdirp/node_modules/fill-range": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
+ "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "extend-shallow": "^2.0.1",
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1",
+ "to-regex-range": "^2.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/readdirp/node_modules/fill-range/node_modules/extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "is-extendable": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/readdirp/node_modules/is-extendable": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+ "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+ "dev": true,
+ "optional": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/readdirp/node_modules/is-number": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
+ "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "kind-of": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/readdirp/node_modules/is-number/node_modules/kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "is-buffer": "^1.1.5"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/readdirp/node_modules/micromatch": {
+ "version": "3.1.10",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
+ "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "arr-diff": "^4.0.0",
+ "array-unique": "^0.3.2",
+ "braces": "^2.3.1",
+ "define-property": "^2.0.2",
+ "extend-shallow": "^3.0.2",
+ "extglob": "^2.0.4",
+ "fragment-cache": "^0.2.1",
+ "kind-of": "^6.0.2",
+ "nanomatch": "^1.2.9",
+ "object.pick": "^1.3.0",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/readdirp/node_modules/to-regex-range": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz",
+ "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
}
},
"node_modules/recast": {
@@ -11480,8 +12308,7 @@
"node_modules/setimmediate": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz",
- "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=",
- "peer": true
+ "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU="
},
"node_modules/setprototypeof": {
"version": "1.1.1",
@@ -12550,7 +13377,6 @@
"url": "https://paypal.me/faisalman"
}
],
- "peer": true,
"engines": {
"node": "*"
}
@@ -12722,6 +13548,17 @@
"node": ">=0.10.0"
}
},
+ "node_modules/upath": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz",
+ "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==",
+ "dev": true,
+ "optional": true,
+ "engines": {
+ "node": ">=4",
+ "yarn": "*"
+ }
+ },
"node_modules/uri-js": {
"version": "4.4.1",
"resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
@@ -12863,8 +13700,7 @@
"node_modules/warn-once": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/warn-once/-/warn-once-0.1.0.tgz",
- "integrity": "sha512-recZTSvuaH/On5ZU5ywq66y99lImWqzP93+AiUo9LUwG8gXHW+LJjhOd6REJHm7qb0niYqrEQJvbHSQfuJtTqA==",
- "peer": true
+ "integrity": "sha512-recZTSvuaH/On5ZU5ywq66y99lImWqzP93+AiUo9LUwG8gXHW+LJjhOd6REJHm7qb0niYqrEQJvbHSQfuJtTqA=="
},
"node_modules/wcwidth": {
"version": "1.0.1",
@@ -13217,6 +14053,53 @@
}
},
"dependencies": {
+ "@babel/cli": {
+ "version": "7.14.8",
+ "resolved": "https://registry.npmjs.org/@babel/cli/-/cli-7.14.8.tgz",
+ "integrity": "sha512-lcy6Lymft9Rpfqmrqdd4oTDdUx9ZwaAhAfywVrHG4771Pa6PPT0danJ1kDHBXYqh4HHSmIdA+nlmfxfxSDPtBg==",
+ "dev": true,
+ "requires": {
+ "@nicolo-ribaudo/chokidar-2": "2.1.8-no-fsevents.2",
+ "chokidar": "^3.4.0",
+ "commander": "^4.0.1",
+ "convert-source-map": "^1.1.0",
+ "fs-readdir-recursive": "^1.1.0",
+ "glob": "^7.0.0",
+ "make-dir": "^2.1.0",
+ "slash": "^2.0.0",
+ "source-map": "^0.5.0"
+ },
+ "dependencies": {
+ "commander": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
+ "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
+ "dev": true
+ },
+ "make-dir": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz",
+ "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==",
+ "dev": true,
+ "requires": {
+ "pify": "^4.0.1",
+ "semver": "^5.6.0"
+ }
+ },
+ "semver": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
+ "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
+ "dev": true
+ },
+ "slash": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz",
+ "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==",
+ "dev": true
+ }
+ }
+ },
"@babel/code-frame": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz",
@@ -14044,7 +14927,6 @@
"version": "2.0.17",
"resolved": "https://registry.npmjs.org/@egjs/hammerjs/-/hammerjs-2.0.17.tgz",
"integrity": "sha512-XQsZgjm2EcVUiZQf11UBJQfmZeEmOW8DpI1gsFeln6w0ae0ii4dMQEQ0kjl6DspdWX1aGY1/loyXnP0JS06e/A==",
- "peer": true,
"requires": {
"@types/hammerjs": "^2.0.36"
}
@@ -14616,6 +15498,169 @@
}
}
},
+ "@nicolo-ribaudo/chokidar-2": {
+ "version": "2.1.8-no-fsevents.2",
+ "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.2.tgz",
+ "integrity": "sha512-Fb8WxUFOBQVl+CX4MWet5o7eCc6Pj04rXIwVKZ6h1NnqTo45eOQW6aWyhG25NIODvWFwTDMwBsYxrQ3imxpetg==",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "anymatch": "^2.0.0",
+ "async-each": "^1.0.1",
+ "braces": "^2.3.2",
+ "glob-parent": "^5.1.2",
+ "inherits": "^2.0.3",
+ "is-binary-path": "^1.0.0",
+ "is-glob": "^4.0.0",
+ "normalize-path": "^3.0.0",
+ "path-is-absolute": "^1.0.0",
+ "readdirp": "^2.2.1",
+ "upath": "^1.1.1"
+ },
+ "dependencies": {
+ "anymatch": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz",
+ "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "micromatch": "^3.1.4",
+ "normalize-path": "^2.1.1"
+ },
+ "dependencies": {
+ "normalize-path": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
+ "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "remove-trailing-separator": "^1.0.1"
+ }
+ }
+ }
+ },
+ "braces": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
+ "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "arr-flatten": "^1.1.0",
+ "array-unique": "^0.3.2",
+ "extend-shallow": "^2.0.1",
+ "fill-range": "^4.0.0",
+ "isobject": "^3.0.1",
+ "repeat-element": "^1.1.2",
+ "snapdragon": "^0.8.1",
+ "snapdragon-node": "^2.0.1",
+ "split-string": "^3.0.2",
+ "to-regex": "^3.0.1"
+ },
+ "dependencies": {
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "is-extendable": "^0.1.0"
+ }
+ }
+ }
+ },
+ "fill-range": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
+ "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "extend-shallow": "^2.0.1",
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1",
+ "to-regex-range": "^2.1.0"
+ },
+ "dependencies": {
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "is-extendable": "^0.1.0"
+ }
+ }
+ }
+ },
+ "is-extendable": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+ "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+ "dev": true,
+ "optional": true
+ },
+ "is-number": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
+ "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "kind-of": "^3.0.2"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "micromatch": {
+ "version": "3.1.10",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
+ "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "arr-diff": "^4.0.0",
+ "array-unique": "^0.3.2",
+ "braces": "^2.3.1",
+ "define-property": "^2.0.2",
+ "extend-shallow": "^3.0.2",
+ "extglob": "^2.0.4",
+ "fragment-cache": "^0.2.1",
+ "kind-of": "^6.0.2",
+ "nanomatch": "^1.2.9",
+ "object.pick": "^1.3.0",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.2"
+ }
+ },
+ "to-regex-range": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz",
+ "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1"
+ }
+ }
+ }
+ },
"@react-native-community/cli": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/@react-native-community/cli/-/cli-5.0.1.tgz",
@@ -15198,13 +16243,6 @@
"integrity": "sha512-W/J0fNYVO01tioHjvYWQ9m6RgndVtbElzYozBq1ZPrHO/iCzlqoySHl4gO/fpCl9QEFjvJfjPgtPMTMlsoq5DQ==",
"dev": true
},
- "@react-native-community/masked-view": {
- "version": "0.1.11",
- "resolved": "https://registry.npmjs.org/@react-native-community/masked-view/-/masked-view-0.1.11.tgz",
- "integrity": "sha512-rQfMIGSR/1r/SyN87+VD8xHHzDYeHaJq6elOSCAD+0iLagXkSI2pfA0LmSXP21uw5i3em7GkkRjfJ8wpqWXZNw==",
- "peer": true,
- "requires": {}
- },
"@react-native/assets": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@react-native/assets/-/assets-1.0.0.tgz",
@@ -15229,28 +16267,18 @@
"react-native-iphone-x-helper": "^1.3.0"
}
},
- "@react-navigation/native": {
- "version": "5.9.4",
- "resolved": "https://registry.npmjs.org/@react-navigation/native/-/native-5.9.4.tgz",
- "integrity": "sha512-BUCrOXfZDdKWBqM8OhOKQhCX5we4HUo5XG6tCQtVqQAep+7UcApZmMUuemUXDxVe8NPESUpoUlB0RaEpyIdfTQ==",
+ "@react-navigation/core": {
+ "version": "5.15.5",
+ "resolved": "https://registry.npmjs.org/@react-navigation/core/-/core-5.15.5.tgz",
+ "integrity": "sha512-xrUQ0xVQTMuuMiILRhhRpBzoI4TaFh4dJ4INCy6uwK9dwHjLwtsx+++ZefV/K4tbMQmGFxq4zSnLtTRtfMZKrA==",
"requires": {
- "@react-navigation/core": "^5.15.3",
+ "@react-navigation/routers": "^5.7.4",
"escape-string-regexp": "^4.0.0",
- "nanoid": "^3.1.15"
+ "nanoid": "^3.1.15",
+ "query-string": "^6.13.6",
+ "react-is": "^16.13.0"
},
"dependencies": {
- "@react-navigation/core": {
- "version": "5.15.3",
- "resolved": "https://registry.npmjs.org/@react-navigation/core/-/core-5.15.3.tgz",
- "integrity": "sha512-3ZdyDInh8qg1kygCNkmh9lFgpDf29lTvPsaMe2mm/qvmxLKSgttWBz07P2fc181aV9jTdgQpzYfWZ5KWT036zw==",
- "requires": {
- "@react-navigation/routers": "^5.7.2",
- "escape-string-regexp": "^4.0.0",
- "nanoid": "^3.1.15",
- "query-string": "^6.13.6",
- "react-is": "^16.13.0"
- }
- },
"escape-string-regexp": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
@@ -15263,18 +16291,35 @@
}
}
},
+ "@react-navigation/native": {
+ "version": "5.9.6",
+ "resolved": "https://registry.npmjs.org/@react-navigation/native/-/native-5.9.6.tgz",
+ "integrity": "sha512-m2F2AWBr0qbi4a5MBk2puGNWyVQnfmVHcpuIzQ37juptX6QCCuXjmOxvtdyqRzh2gKGnUlIeNaQKcACYj4zG/w==",
+ "requires": {
+ "@react-navigation/core": "^5.15.5",
+ "escape-string-regexp": "^4.0.0",
+ "nanoid": "^3.1.15"
+ },
+ "dependencies": {
+ "escape-string-regexp": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="
+ }
+ }
+ },
"@react-navigation/routers": {
- "version": "5.7.2",
- "resolved": "https://registry.npmjs.org/@react-navigation/routers/-/routers-5.7.2.tgz",
- "integrity": "sha512-BxNSMLHpU+oS37Xok0ql6rc9U7IC8aUD4+U5ZPbjDJ0pwzZxGGh0YOEBzfV4k/Ig3cbPdvVWbc1C9HHbCVr2oQ==",
+ "version": "5.7.4",
+ "resolved": "https://registry.npmjs.org/@react-navigation/routers/-/routers-5.7.4.tgz",
+ "integrity": "sha512-0N202XAqsU/FlE53Nmh6GHyMtGm7g6TeC93mrFAFJOqGRKznT0/ail+cYlU6tNcPA9AHzZu1Modw1eoDINSliQ==",
"requires": {
"nanoid": "^3.1.15"
}
},
"@react-navigation/stack": {
- "version": "5.14.5",
- "resolved": "https://registry.npmjs.org/@react-navigation/stack/-/stack-5.14.5.tgz",
- "integrity": "sha512-hpdn1SS0tc3/3atkV2Q2y++n5B4e0rUcCj4W43PODMu72yX2m0LkKAAcpkPDCWAvwnLLIoLAEl5BEifZigl/6A==",
+ "version": "5.14.7",
+ "resolved": "https://registry.npmjs.org/@react-navigation/stack/-/stack-5.14.7.tgz",
+ "integrity": "sha512-Ew+MYaJGvJUpZ3XYIilSCRruldr3JXNOWYM8bqE21EeJ5d3mfynpTPihck5ol0AN8uFEAeskQzoixGWh5eMYuA==",
"requires": {
"color": "^3.1.3",
"react-native-iphone-x-helper": "^1.3.0"
@@ -15380,8 +16425,7 @@
"@types/hammerjs": {
"version": "2.0.40",
"resolved": "https://registry.npmjs.org/@types/hammerjs/-/hammerjs-2.0.40.tgz",
- "integrity": "sha512-VbjwR1fhsn2h2KXAY4oy1fm7dCxaKy0D+deTb8Ilc3Eo3rc5+5eA4rfYmZaHgNJKxVyI0f6WIXzO2zLkVmQPHA==",
- "peer": true
+ "integrity": "sha512-VbjwR1fhsn2h2KXAY4oy1fm7dCxaKy0D+deTb8Ilc3Eo3rc5+5eA4rfYmZaHgNJKxVyI0f6WIXzO2zLkVmQPHA=="
},
"@types/istanbul-lib-coverage": {
"version": "2.0.3",
@@ -15427,6 +16471,43 @@
"integrity": "sha512-eI5Yrz3Qv4KPUa/nSIAi0h+qX0XyewOliug5F2QAtuRg6Kjg6jfmxe1GIwoIRhZspD1A0RP8ANrPwvEXXtRFog==",
"dev": true
},
+ "@types/prop-types": {
+ "version": "15.7.4",
+ "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.4.tgz",
+ "integrity": "sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ=="
+ },
+ "@types/react": {
+ "version": "17.0.15",
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.15.tgz",
+ "integrity": "sha512-uTKHDK9STXFHLaKv6IMnwp52fm0hwU+N89w/p9grdUqcFA6WuqDyPhaWopbNyE1k/VhgzmHl8pu1L4wITtmlLw==",
+ "requires": {
+ "@types/prop-types": "*",
+ "@types/scheduler": "*",
+ "csstype": "^3.0.2"
+ }
+ },
+ "@types/react-native": {
+ "version": "0.64.12",
+ "resolved": "https://registry.npmjs.org/@types/react-native/-/react-native-0.64.12.tgz",
+ "integrity": "sha512-sw6WGSaL219zqrgdb4kQUtFB9iGXC/LmecLZ+UUWEgwYvD0YH81FqWYmONa2HuTkOFAsxu2bK4DspkWRUHIABQ==",
+ "requires": {
+ "@types/react": "*"
+ }
+ },
+ "@types/react-native-vector-icons": {
+ "version": "6.4.8",
+ "resolved": "https://registry.npmjs.org/@types/react-native-vector-icons/-/react-native-vector-icons-6.4.8.tgz",
+ "integrity": "sha512-ImqhwVPHtcWrfwaS4vVrnN/C1mY50+Gjer4wMltUJlkt9pTJ5WXCyn8VFPmxC5h8Zy0DBN2tYdusBZ2xJP14OA==",
+ "requires": {
+ "@types/react": "*",
+ "@types/react-native": "*"
+ }
+ },
+ "@types/scheduler": {
+ "version": "0.16.2",
+ "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz",
+ "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew=="
+ },
"@types/stack-utils": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz",
@@ -15788,6 +16869,13 @@
"lodash": "^4.17.14"
}
},
+ "async-each": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz",
+ "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==",
+ "dev": true,
+ "optional": true
+ },
"async-limiter": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz",
@@ -16075,6 +17163,13 @@
"resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.48.tgz",
"integrity": "sha512-j51egjPa7/i+RdiRuJbPdJ2FIUYYPhvYLjzoYbcMMm62ooO6F94fETG4MTs46zPAF9Brs04OajboA/qTGuz78w=="
},
+ "binary-extensions": {
+ "version": "1.13.1",
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz",
+ "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==",
+ "dev": true,
+ "optional": true
+ },
"bplist-creator": {
"version": "0.0.8",
"resolved": "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.0.8.tgz",
@@ -16231,12 +17326,58 @@
"supports-color": "^5.3.0"
}
},
- "char-regex": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz",
- "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==",
- "dev": true
- },
+ "char-regex": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz",
+ "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==",
+ "dev": true
+ },
+ "chokidar": {
+ "version": "3.5.2",
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz",
+ "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "anymatch": "~3.1.2",
+ "braces": "~3.0.2",
+ "fsevents": "~2.3.2",
+ "glob-parent": "~5.1.2",
+ "is-binary-path": "~2.1.0",
+ "is-glob": "~4.0.1",
+ "normalize-path": "~3.0.0",
+ "readdirp": "~3.6.0"
+ },
+ "dependencies": {
+ "binary-extensions": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz",
+ "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==",
+ "dev": true,
+ "optional": true
+ },
+ "is-binary-path": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
+ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "binary-extensions": "^2.0.0"
+ }
+ },
+ "readdirp": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "picomatch": "^2.2.1"
+ }
+ }
+ }
+ },
"ci-info": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz",
@@ -16604,7 +17745,6 @@
"version": "3.1.4",
"resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.4.tgz",
"integrity": "sha512-1eAtFWdIubi6T4XPy6ei9iUFoKpUkIF971QLN8lIvvvwueI65+Nw5haMNKUwfJxabqlIIDODJKGrQ66gxC0PbQ==",
- "peer": true,
"requires": {
"node-fetch": "2.6.1"
}
@@ -16658,6 +17798,11 @@
}
}
},
+ "csstype": {
+ "version": "3.0.8",
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.8.tgz",
+ "integrity": "sha512-jXKhWqXPmlUeoQnF/EhTtTl4C9SnrxSH/jZUih3jmO6lBKr99rP3/+FmrMj4EFpOXzMtXHAZkd3x0E6h6Fgflw=="
+ },
"data-urls": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz",
@@ -16707,8 +17852,7 @@
"deepmerge": {
"version": "4.2.2",
"resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz",
- "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==",
- "dev": true
+ "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg=="
},
"defaults": {
"version": "1.0.3",
@@ -17577,7 +18721,6 @@
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.0.tgz",
"integrity": "sha512-dJd4PiDOFuhe7vk4F80Mba83Vr2QuK86FoxtgPmzBqEJahncp+13YCmfoa53KHCo6OnlXLG7eeMWPfB5CrpVKg==",
- "peer": true,
"requires": {
"cross-fetch": "^3.0.4",
"fbjs-css-vars": "^1.0.0",
@@ -17592,7 +18735,6 @@
"version": "7.3.1",
"resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz",
"integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==",
- "peer": true,
"requires": {
"asap": "~2.0.3"
}
@@ -17602,8 +18744,7 @@
"fbjs-css-vars": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz",
- "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==",
- "peer": true
+ "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ=="
},
"file-entry-cache": {
"version": "5.0.1",
@@ -17746,6 +18887,12 @@
"integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==",
"dev": true
},
+ "flow-bin": {
+ "version": "0.156.0",
+ "resolved": "https://registry.npmjs.org/flow-bin/-/flow-bin-0.156.0.tgz",
+ "integrity": "sha512-KEEsKV7/bePZM3Ja7rYlAaSx8GPiTGr7pt0IJcX5S3GSEIZ2ieayF6JWNjbyLiu7ZUJuWe4ITDnPvyqimUpYww==",
+ "dev": true
+ },
"flow-parser": {
"version": "0.121.0",
"resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.121.0.tgz",
@@ -17790,6 +18937,12 @@
"universalify": "^0.1.0"
}
},
+ "fs-readdir-recursive": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz",
+ "integrity": "sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==",
+ "dev": true
+ },
"fs.realpath": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
@@ -18178,6 +19331,16 @@
"integrity": "sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA==",
"dev": true
},
+ "is-binary-path": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz",
+ "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "binary-extensions": "^1.0.0"
+ }
+ },
"is-boolean-object": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.1.tgz",
@@ -19935,11 +21098,58 @@
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
"integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
},
+ "lodash._reinterpolate": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz",
+ "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0="
+ },
"lodash.debounce": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz",
"integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168="
},
+ "lodash.frompairs": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/lodash.frompairs/-/lodash.frompairs-4.0.1.tgz",
+ "integrity": "sha1-vE5SB/onV8E25XNhTpZkUGsrG9I="
+ },
+ "lodash.isequal": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz",
+ "integrity": "sha1-QVxEePK8wwEgwizhDtMib30+GOA="
+ },
+ "lodash.isstring": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz",
+ "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE="
+ },
+ "lodash.omit": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/lodash.omit/-/lodash.omit-4.5.0.tgz",
+ "integrity": "sha1-brGa5aHuHdnfC5aeZs4Lf6MLXmA="
+ },
+ "lodash.pick": {
+ "version": "4.4.0",
+ "resolved": "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz",
+ "integrity": "sha1-UvBWEP/53tQiYRRB7R/BI6AwAbM="
+ },
+ "lodash.template": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz",
+ "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==",
+ "requires": {
+ "lodash._reinterpolate": "^3.0.0",
+ "lodash.templatesettings": "^4.0.0"
+ }
+ },
+ "lodash.templatesettings": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz",
+ "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==",
+ "requires": {
+ "lodash._reinterpolate": "^3.0.0"
+ }
+ },
"lodash.throttle": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz",
@@ -20811,6 +22021,11 @@
}
}
},
+ "opencollective-postinstall": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz",
+ "integrity": "sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q=="
+ },
"optionator": {
"version": "0.9.1",
"resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz",
@@ -21216,11 +22431,33 @@
"nullthrows": "^1.1.1"
}
},
+ "react-native-drop-shadow": {
+ "version": "0.0.2",
+ "resolved": "https://registry.npmjs.org/react-native-drop-shadow/-/react-native-drop-shadow-0.0.2.tgz",
+ "integrity": "sha512-zaUCd9OwwKRK4sd6dQrl3s/W7gX43gK2XjViO60ta6oTyohUP0xcuFjO+hhgo+bNPyPgPQxkIWluaWZKnqcbhw==",
+ "requires": {
+ "logkitty": "^0.7.1"
+ }
+ },
+ "react-native-elements": {
+ "version": "3.4.2",
+ "resolved": "https://registry.npmjs.org/react-native-elements/-/react-native-elements-3.4.2.tgz",
+ "integrity": "sha512-m0eAWOn7JuR1wNTNY0WHuaqst4LI/gFE4N5Bbyfsc4DiryWsMST7aAg5w/Gos4IexWIzhLKCIkPxthND1m/8Xg==",
+ "requires": {
+ "@types/react-native-vector-icons": "^6.4.6",
+ "color": "^3.1.2",
+ "deepmerge": "^4.2.2",
+ "hoist-non-react-statics": "^3.3.2",
+ "lodash.isequal": "^4.5.0",
+ "opencollective-postinstall": "^2.0.3",
+ "react-native-ratings": "8.0.4",
+ "react-native-size-matters": "^0.3.1"
+ }
+ },
"react-native-gesture-handler": {
"version": "1.10.3",
"resolved": "https://registry.npmjs.org/react-native-gesture-handler/-/react-native-gesture-handler-1.10.3.tgz",
"integrity": "sha512-cBGMi1IEsIVMgoox4RvMx7V2r6bNKw0uR1Mu1o7NbuHS6BRSVLq0dP34l2ecnPlC+jpWd3le6Yg1nrdCjby2Mw==",
- "peer": true,
"requires": {
"@egjs/hammerjs": "^2.0.17",
"fbjs": "^3.0.0",
@@ -21229,6 +22466,22 @@
"prop-types": "^15.7.2"
}
},
+ "react-native-image-zoom-viewer": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/react-native-image-zoom-viewer/-/react-native-image-zoom-viewer-3.0.1.tgz",
+ "integrity": "sha512-la6s5DNSuq4GCRLsi5CZ29FPjgTpdCuGIRdO5T9rUrAtxrlpBPhhSnHrbmPVxsdtOUvxHacTh2Gfa9+RraMZQA==",
+ "requires": {
+ "react-native-image-pan-zoom": "^2.1.12"
+ },
+ "dependencies": {
+ "react-native-image-pan-zoom": {
+ "version": "2.1.12",
+ "resolved": "https://registry.npmjs.org/react-native-image-pan-zoom/-/react-native-image-pan-zoom-2.1.12.tgz",
+ "integrity": "sha512-BF66XeP6dzuANsPmmFsJshM2Jyh/Mo1t8FsGc1L9Q9/sVP8MJULDabB1hms+eAoqgtyhMr5BuXV3E1hJ5U5H6Q==",
+ "requires": {}
+ }
+ }
+ },
"react-native-iphone-x-helper": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/react-native-iphone-x-helper/-/react-native-iphone-x-helper-1.3.1.tgz",
@@ -21244,22 +22497,146 @@
"react-native-iphone-x-helper": "^1.0.3"
}
},
+ "react-native-ratings": {
+ "version": "8.0.4",
+ "resolved": "https://registry.npmjs.org/react-native-ratings/-/react-native-ratings-8.0.4.tgz",
+ "integrity": "sha512-Xczu5lskIIRD6BEdz9A0jDRpEck/SFxRqiglkXi0u67yAtI1/pcJC76P4MukCbT8K4BPVl+42w83YqXBoBRl7A==",
+ "requires": {
+ "lodash": "^4.17.15"
+ }
+ },
"react-native-safe-area-context": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/react-native-safe-area-context/-/react-native-safe-area-context-3.2.0.tgz",
- "integrity": "sha512-k2Nty4PwSnrg9HwrYeeE+EYqViYJoOFwEy9LxL5RIRfoqxAq/uQXNGwpUg2/u4gnKpBbEPa9eRh15KKMe/VHkA==",
- "peer": true,
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/react-native-safe-area-context/-/react-native-safe-area-context-3.3.0.tgz",
+ "integrity": "sha512-IrCNx56LO9RJ75yCf2CSSO1ceLj3mvxTAF+HWnehaeRIfF4pIcIn3WEUlXulFiha641OKS5X0+1XZCbbQ7pITA==",
"requires": {}
},
"react-native-screens": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/react-native-screens/-/react-native-screens-3.4.0.tgz",
"integrity": "sha512-cg+q9MRnVdeOcJyvJtqffoXLur/C2wHA/7IO2+FAipzTlgHbbM1mTuSM7qG+SeiQjoIs4mHOEf7A0ziPKW04sA==",
- "peer": true,
"requires": {
"warn-once": "^0.1.0"
}
},
+ "react-native-segment-tab": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/react-native-segment-tab/-/react-native-segment-tab-0.1.1.tgz",
+ "integrity": "sha1-WoWxTqtX2LdzhKvdIedkgFmCmRc="
+ },
+ "react-native-segmented-control-tab": {
+ "version": "3.4.1",
+ "resolved": "https://registry.npmjs.org/react-native-segmented-control-tab/-/react-native-segmented-control-tab-3.4.1.tgz",
+ "integrity": "sha512-BNPdlE9Unr0Xabewn8W+FhBMLjssXy9Ey7S7AY0hXlrKrEKFdC9z0yT+eEWd5dLam4T6T4IuGL8b7ZF4uGyWNw=="
+ },
+ "react-native-size-matters": {
+ "version": "0.3.1",
+ "resolved": "https://registry.npmjs.org/react-native-size-matters/-/react-native-size-matters-0.3.1.tgz",
+ "integrity": "sha512-mKOfBLIBFBcs9br1rlZDvxD5+mAl8Gfr5CounwJtxI6Z82rGrMO+Kgl9EIg3RMVf3G855a85YVqHJL2f5EDRlw==",
+ "requires": {}
+ },
+ "react-native-vector-icons": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/react-native-vector-icons/-/react-native-vector-icons-8.1.0.tgz",
+ "integrity": "sha512-sHIdBB6Y0dHaot2fMXgy5J/hhCn5YuyN7SKDNFgPzL8KA1oF2/v7mgYMavnK7LIIs2dJoGnDANKf61dsU+TZlg==",
+ "requires": {
+ "lodash.frompairs": "^4.0.1",
+ "lodash.isequal": "^4.5.0",
+ "lodash.isstring": "^4.0.1",
+ "lodash.omit": "^4.5.0",
+ "lodash.pick": "^4.4.0",
+ "lodash.template": "^4.5.0",
+ "prop-types": "^15.7.2",
+ "yargs": "^16.1.1"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "cliui": {
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
+ "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
+ "requires": {
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.0",
+ "wrap-ansi": "^7.0.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
+ },
+ "emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
+ },
+ "is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="
+ },
+ "string-width": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz",
+ "integrity": "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==",
+ "requires": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.0"
+ }
+ },
+ "wrap-ansi": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+ "requires": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ }
+ },
+ "y18n": {
+ "version": "5.0.8",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
+ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA=="
+ },
+ "yargs": {
+ "version": "16.2.0",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
+ "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
+ "requires": {
+ "cliui": "^7.0.2",
+ "escalade": "^3.1.1",
+ "get-caller-file": "^2.0.5",
+ "require-directory": "^2.1.1",
+ "string-width": "^4.2.0",
+ "y18n": "^5.0.5",
+ "yargs-parser": "^20.2.2"
+ }
+ },
+ "yargs-parser": {
+ "version": "20.2.9",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz",
+ "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w=="
+ }
+ }
+ },
"react-refresh": {
"version": "0.4.3",
"resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.4.3.tgz",
@@ -21352,6 +22729,138 @@
"util-deprecate": "~1.0.1"
}
},
+ "readdirp": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz",
+ "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "graceful-fs": "^4.1.11",
+ "micromatch": "^3.1.10",
+ "readable-stream": "^2.0.2"
+ },
+ "dependencies": {
+ "braces": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
+ "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "arr-flatten": "^1.1.0",
+ "array-unique": "^0.3.2",
+ "extend-shallow": "^2.0.1",
+ "fill-range": "^4.0.0",
+ "isobject": "^3.0.1",
+ "repeat-element": "^1.1.2",
+ "snapdragon": "^0.8.1",
+ "snapdragon-node": "^2.0.1",
+ "split-string": "^3.0.2",
+ "to-regex": "^3.0.1"
+ },
+ "dependencies": {
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "is-extendable": "^0.1.0"
+ }
+ }
+ }
+ },
+ "fill-range": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
+ "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "extend-shallow": "^2.0.1",
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1",
+ "to-regex-range": "^2.1.0"
+ },
+ "dependencies": {
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "is-extendable": "^0.1.0"
+ }
+ }
+ }
+ },
+ "is-extendable": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+ "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+ "dev": true,
+ "optional": true
+ },
+ "is-number": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
+ "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "kind-of": "^3.0.2"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "micromatch": {
+ "version": "3.1.10",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
+ "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "arr-diff": "^4.0.0",
+ "array-unique": "^0.3.2",
+ "braces": "^2.3.1",
+ "define-property": "^2.0.2",
+ "extend-shallow": "^3.0.2",
+ "extglob": "^2.0.4",
+ "fragment-cache": "^0.2.1",
+ "kind-of": "^6.0.2",
+ "nanomatch": "^1.2.9",
+ "object.pick": "^1.3.0",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.2"
+ }
+ },
+ "to-regex-range": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz",
+ "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1"
+ }
+ }
+ }
+ },
"recast": {
"version": "0.20.5",
"resolved": "https://registry.npmjs.org/recast/-/recast-0.20.5.tgz",
@@ -21915,8 +23424,7 @@
"setimmediate": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz",
- "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=",
- "peer": true
+ "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU="
},
"setprototypeof": {
"version": "1.1.1",
@@ -22762,8 +24270,7 @@
"ua-parser-js": {
"version": "0.7.28",
"resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.28.tgz",
- "integrity": "sha512-6Gurc1n//gjp9eQNXjD9O3M/sMwVtN5S8Lv9bvOYBfKfDNiIIhqiyi01vMBO45u4zkDE420w/e0se7Vs+sIg+g==",
- "peer": true
+ "integrity": "sha512-6Gurc1n//gjp9eQNXjD9O3M/sMwVtN5S8Lv9bvOYBfKfDNiIIhqiyi01vMBO45u4zkDE420w/e0se7Vs+sIg+g=="
},
"uglify-es": {
"version": "3.3.9",
@@ -22891,6 +24398,13 @@
}
}
},
+ "upath": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz",
+ "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==",
+ "dev": true,
+ "optional": true
+ },
"uri-js": {
"version": "4.4.1",
"resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
@@ -23009,8 +24523,7 @@
"warn-once": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/warn-once/-/warn-once-0.1.0.tgz",
- "integrity": "sha512-recZTSvuaH/On5ZU5ywq66y99lImWqzP93+AiUo9LUwG8gXHW+LJjhOd6REJHm7qb0niYqrEQJvbHSQfuJtTqA==",
- "peer": true
+ "integrity": "sha512-recZTSvuaH/On5ZU5ywq66y99lImWqzP93+AiUo9LUwG8gXHW+LJjhOd6REJHm7qb0niYqrEQJvbHSQfuJtTqA=="
},
"wcwidth": {
"version": "1.0.1",
diff --git a/App/FollowApp/package.json b/App/FollowApp/package.json
index 1d0403c..46e2081 100644
--- a/App/FollowApp/package.json
+++ b/App/FollowApp/package.json
@@ -11,21 +11,33 @@
},
"dependencies": {
"@react-navigation/bottom-tabs": "^5.11.11",
- "@react-navigation/native": "^5.9.4",
- "@react-navigation/stack": "^5.14.5",
+ "@react-navigation/native": "^5.9.6",
+ "@react-navigation/stack": "^5.14.7",
"prop-types": "^15.7.2",
- "react": "17.0.1",
- "react-native": "0.64.2",
+ "react": "^17.0.1",
+ "react-native": "^0.64.2",
+ "react-native-drop-shadow": "^0.0.2",
+ "react-native-elements": "^3.4.2",
+ "react-native-gesture-handler": "^1.10.3",
+ "react-native-image-zoom-viewer": "^3.0.1",
"react-native-keyboard-aware-scroll-view": "^0.9.4",
+ "react-native-safe-area-context": "^3.3.0",
+ "react-native-screens": "^3.4.0",
+ "react-native-segment-tab": "^0.1.1",
+ "react-native-segmented-control-tab": "^3.4.1",
+ "react-native-vector-icons": "^8.1.0",
"styled-components": "^5.3.0"
},
"devDependencies": {
- "@babel/core": "^7.12.9",
+ "@babel/cli": "^7.14.8",
+ "@babel/core": "^7.14.8",
+ "@babel/preset-flow": "^7.14.5",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"babel-jest": "^26.6.3",
"eslint": "7.14.0",
"eslint-plugin-prettier": "^3.4.0",
+ "flow-bin": "^0.156.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.64.0",
"prettier": "^2.3.2",
diff --git a/App/FollowApp/src/components/ClothSearch/SearchResultBox.js b/App/FollowApp/src/components/ClothSearch/SearchResultBox.js
index 954cadf..a51d285 100644
--- a/App/FollowApp/src/components/ClothSearch/SearchResultBox.js
+++ b/App/FollowApp/src/components/ClothSearch/SearchResultBox.js
@@ -1,7 +1,8 @@
-import View from "react-native-gesture-handler/lib/typescript/GestureHandlerRootView";
+import React from 'react';
+import {Image, Text, View} from 'react-native';
import PropTypes from 'prop-types';
-const ResultBox = (clothObj) => {
+const ResultBox = clothObj => {
return (
${clothObj.getName()}
@@ -9,9 +10,8 @@ const ResultBox = (clothObj) => {
);
-}
-
+};
ResultBox.propTypes = {
clothObj: PropTypes.object.isRequired,
-}
+};
diff --git a/App/FollowApp/src/components/FindImageScreen/bottomSheet/MyClothesModal.js b/App/FollowApp/src/components/FindImageScreen/bottomSheet/MyClothesModal.js
new file mode 100644
index 0000000..3d65598
--- /dev/null
+++ b/App/FollowApp/src/components/FindImageScreen/bottomSheet/MyClothesModal.js
@@ -0,0 +1,150 @@
+import React, {useEffect, useRef} from 'react';
+import {
+ View,
+ StyleSheet,
+ Modal,
+ Animated,
+ TouchableWithoutFeedback,
+ Dimensions,
+ PanResponder,
+} from 'react-native';
+import {MyClosetProvider} from '../../../context/MyClosetContext';
+import ImgLoader from '../contextLoader/MyClothesContextLoader';
+const BottomSheet = props => {
+ const {modalVisible, setModalVisible} = props;
+ const screenHeight = Dimensions.get('screen').height;
+ const panY = useRef(new Animated.Value(screenHeight)).current;
+ const translateY = panY.interpolate({
+ inputRange: [-1, 0, 1],
+ outputRange: [0, 0, 1],
+ });
+
+ const resetBottomSheet = Animated.timing(panY, {
+ toValue: 0,
+ duration: 300,
+ useNativeDriver: true,
+ });
+
+ const closeBottomSheet = Animated.timing(panY, {
+ toValue: screenHeight,
+ duration: 300,
+ useNativeDriver: true,
+ });
+
+ const panResponders = useRef(
+ PanResponder.create({
+ onStartShouldSetPanResponder: () => true,
+ onMoveShouldSetPanResponder: () => false,
+ onPanResponderMove: (event, gestureState) => {
+ panY.setValue(gestureState.dy);
+ },
+ onPanResponderRelease: (event, gestureState) => {
+ if (gestureState.dy > 0 && gestureState.vy > 1.5) {
+ closeModal();
+ } else {
+ resetBottomSheet.start();
+ }
+ },
+ }),
+ ).current;
+
+ useEffect(() => {
+ if (props.modalVisible) {
+ resetBottomSheet.start();
+ }
+ }, [props.modalVisible, resetBottomSheet]);
+
+ const closeModal = () => {
+ closeBottomSheet.start(() => {
+ setModalVisible(false);
+ });
+ };
+
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+};
+
+const styles = StyleSheet.create({
+ overlay: {
+ flex: 1,
+ justifyContent: 'flex-end',
+ backgroundColor: 'rgba(0, 0, 0, 0.4)',
+ },
+ background: {
+ flex: 1,
+ },
+ bottomSheetContainer: {
+ height: 300,
+ justifyContent: 'center',
+ alignItems: 'center',
+ backgroundColor: 'white',
+ borderTopLeftRadius: 10,
+ borderTopRightRadius: 10,
+ },
+});
+
+// const ClothesList = [
+// {
+// id: '1',
+// src: require('../../../asset/test/TryOn/Clothes/1.png'),
+// },
+// {
+// id: '2',
+// src: require('../../../asset/test/TryOn/Clothes/2.png'),
+// },
+// {
+// id: '3',
+// src: require('../../../asset/test/TryOn/Clothes/3.png'),
+// },
+// {
+// id: '4',
+// src: require('../../../asset/test/TryOn/Clothes/4.png'),
+// },
+// {
+// id: '5',
+// src: require('../../../asset/test/TryOn/Clothes/5.png'),
+// },
+// {
+// id: '6',
+// src: require('../../../asset/test/TryOn/Clothes/6.png'),
+// },
+// {
+// id: '7',
+// src: require('../../../asset/test/TryOn/Clothes/7.png'),
+// },
+// {
+// id: '8',
+// src: require('../../../asset/test/TryOn/Clothes/8.png'),
+// },
+// {
+// id: '9',
+// src: require('../../../asset/test/TryOn/Clothes/9.png'),
+// },
+// {
+// id: '10',
+// src: require('../../../asset/test/TryOn/Clothes/10.png'),
+// },
+// ];
+
+export default BottomSheet;
diff --git a/App/FollowApp/src/components/FindImageScreen/contextLoader/MyClothesContextLoader.js b/App/FollowApp/src/components/FindImageScreen/contextLoader/MyClothesContextLoader.js
new file mode 100644
index 0000000..fd5f594
--- /dev/null
+++ b/App/FollowApp/src/components/FindImageScreen/contextLoader/MyClothesContextLoader.js
@@ -0,0 +1,48 @@
+import React, {useContext} from 'react';
+import {View, FlatList, TouchableOpacity, Image} from 'react-native';
+import {MyClosetContext} from '../../../context/MyClosetContext';
+import {FindImageConsumer} from '../../../context/FindImageContext';
+
+const ImgLoader = props => {
+ const clothesList = useContext(MyClosetContext);
+ // const init = item => {
+ // setClothData(item);
+ // console.log(clothData);
+ // };
+ return (
+
+ (
+
+
+ {({actions}) => (
+ actions.setClothes(item)}
+ style={{
+ flex: 1,
+ alignItems: 'center',
+ margin: 15,
+ }}>
+
+
+ )}
+
+
+ )}
+ keyExtractor={item => String(item.id)}
+ numColumns={3}
+ horizontal={false}
+ />
+
+ );
+};
+
+export default ImgLoader;
diff --git a/App/FollowApp/src/components/HomeScreen/CardView.js b/App/FollowApp/src/components/HomeScreen/CardView.js
new file mode 100644
index 0000000..df0880a
--- /dev/null
+++ b/App/FollowApp/src/components/HomeScreen/CardView.js
@@ -0,0 +1,42 @@
+import React from 'react';
+import { TouchableOpacity } from 'react-native';
+import {StyleSheet, Text, View, Image} from 'react-native';
+
+const CardView = ({data}) => (
+
+
+
+ {data.name}
+ {data.type}
+
+
+);
+
+const styles = StyleSheet.create({
+ CardContainer: {
+ backgroundColor:'white',
+ borderRadius: 10,
+ borderWidth: 1,
+ borderColor: '#d6d7da',
+ margin: 20,
+ alignItems:'center',
+ },
+ CardTitle: {
+ alignSelf:'center',
+ fontWeight: 'bold',
+ fontSize: 18,
+ padding: 5,
+ },
+ CardContent: {
+ alignSelf:'center',
+ fontSize: 15,
+ padding: 5,
+
+ },
+});
+
+export default CardView;
diff --git a/App/FollowApp/src/components/HomeScreen/CardViewComponents.js b/App/FollowApp/src/components/HomeScreen/CardViewComponents.js
new file mode 100644
index 0000000..16f0deb
--- /dev/null
+++ b/App/FollowApp/src/components/HomeScreen/CardViewComponents.js
@@ -0,0 +1,4 @@
+import Header from './Header';
+import CardView from './CardView';
+
+export {Header, CardView};
diff --git a/App/FollowApp/src/components/HomeScreen/Header.js b/App/FollowApp/src/components/HomeScreen/Header.js
new file mode 100644
index 0000000..fbdaa0b
--- /dev/null
+++ b/App/FollowApp/src/components/HomeScreen/Header.js
@@ -0,0 +1,26 @@
+import React from 'react';
+import {StyleSheet, Text, View} from 'react-native';
+
+const Header = (props) => (
+
+ {props.title}
+
+);
+
+const styles = StyleSheet.create({
+ HeaderContainer: {
+
+ backgroundColor: '#FAFAFA',
+ width: '100%',
+ padding: 8,
+
+ },
+ HeaderText: {
+ fontSize: 24,
+ fontWeight: 'bold',
+ color: 'black',
+ textAlign: 'center',
+ },
+});
+
+export default Header;
diff --git a/App/FollowApp/src/components/InputArea.js b/App/FollowApp/src/components/InputArea.js
new file mode 100644
index 0000000..0b4e703
--- /dev/null
+++ b/App/FollowApp/src/components/InputArea.js
@@ -0,0 +1,84 @@
+import React, {useState, forwardRef} from 'react';
+import styled from 'styled-components/native';
+import PropTypes from 'prop-types';
+import DropShadow from 'react-native-drop-shadow';
+
+const Container = styled.View`
+ width: 90%;
+ margin: 10px 0;
+`;
+const Label = styled.Text`
+ color: ${({theme, isFocused}) =>
+ isFocused ? theme.text : theme.Input.label};
+`;
+const StyledTextInput = styled.TextInput.attrs(({theme}) => ({
+ placeholderTextColor: theme.Input.placeholder,
+}))`
+ background-color: ${({theme, editable}) =>
+ editable ? theme.background : theme.Input.disabledBackground};
+ color: ${({theme}) => theme.text};
+ padding: 20px 10px;
+ font-size: 16px;
+ border: 1px solid
+ ${({theme, isFocused}) => (isFocused ? theme.text : theme.Input.border)};
+ border-radius: 4px;
+`;
+
+/**
+ * Id password 입력용 칸
+ */
+const InputArea = forwardRef(
+ (
+ {label, onChangeText, placeholder, isPassword, returnKeyType, disabled},
+ ref,
+ ) => {
+ const [isFocused, setIsFocused] = useState(false);
+ const shadowStyle = {
+ shadowColor: '#000',
+ shadowOffset: {
+ width: 0,
+ height: 0,
+ },
+ shadowOpacity: isFocused ? 0.3 : 0,
+ shadowRadius: 3,
+ };
+
+ return (
+
+
+
+ {
+ setIsFocused(true);
+ }}
+ onChangeText={onChangeText}
+ onBlur={() => {
+ setIsFocused(false);
+ }}
+ secureTextEntry={isPassword}
+ placeholder={placeholder}
+ editable={!disabled}
+ returnKeyType={returnKeyType}
+ autoCapitalize="none"
+ textContentType="none"
+ underlineColorAndroid="transparent"
+ autoCorrect={false}
+ />
+
+
+ );
+ },
+);
+
+InputArea.propTypes = {
+ label: PropTypes.string.isRequired,
+ onChangeText: PropTypes.func,
+ placeholder: PropTypes.string,
+ isPassword: PropTypes.bool,
+ returnKeyType: PropTypes.oneOf(['done', 'next']),
+ disabled: PropTypes.bool,
+};
+
+export default InputArea;
diff --git a/App/FollowApp/src/components/MyClothesScreen/AllClothesContextLoader.js b/App/FollowApp/src/components/MyClothesScreen/AllClothesContextLoader.js
new file mode 100644
index 0000000..6fae789
--- /dev/null
+++ b/App/FollowApp/src/components/MyClothesScreen/AllClothesContextLoader.js
@@ -0,0 +1,34 @@
+import React, {useContext} from 'react';
+import {View, FlatList, TouchableOpacity, Image} from 'react-native';
+import {MyClosetContext} from '../../context/MyClosetContext';
+
+const ImgLoader = props => {
+ const clothesList = useContext(MyClosetContext);
+
+ return (
+
+ (
+
+
+
+
+
+ )}
+ keyExtractor={item => String(item.id)}
+ numColumns={3}
+ horizontal={false}
+ />
+
+ );
+};
+
+export default ImgLoader;
diff --git a/App/FollowApp/src/components/MyClothesScreen/ColorContextLoader.js b/App/FollowApp/src/components/MyClothesScreen/ColorContextLoader.js
new file mode 100644
index 0000000..df0fd9c
--- /dev/null
+++ b/App/FollowApp/src/components/MyClothesScreen/ColorContextLoader.js
@@ -0,0 +1,167 @@
+import React, {useContext} from 'react';
+import {
+ View,
+ TouchableOpacity,
+ Image,
+ Text,
+ FlatList,
+ ScrollView,
+} from 'react-native';
+import {MyClosetContext} from '../../context/MyClosetContext';
+
+const ImgLoader = props => {
+ const clothesList = useContext(MyClosetContext);
+ const blackDataList = clothesList.myClothList.filter(
+ item => item.color === 'black',
+ );
+ const grayDataList = clothesList.myClothList.filter(
+ item => item.color === 'gray',
+ );
+ const blueDataList = clothesList.myClothList.filter(
+ item => item.color === 'blue',
+ );
+ return (
+
+
+
+
+ BLACK
+
+
+ (
+
+
+
+
+
+ )}
+ keyExtractor={item => String(item.id)}
+ numColumns={3}
+ horizontal={false}
+ scrollEnabled={false}
+ nestedScrollEnabled={true}
+ />
+
+
+
+
+ GRAY
+
+
+ String(item.id)}
+ numColumns={3}
+ horizontal={false}
+ scrollEnabled={false}
+ nestedScrollEnabled={true}
+ />
+
+
+
+
+ BLUE
+
+
+ String(item.id)}
+ numColumns={3}
+ horizontal={false}
+ scrollEnabled={false}
+ nestedScrollEnabled={true}
+ />
+
+
+ );
+};
+
+const renderItem = ({item}) => (
+
+
+
+
+
+);
+
+export default ImgLoader;
diff --git a/App/FollowApp/src/components/MyClothesScreen/TypeContextLoader.js b/App/FollowApp/src/components/MyClothesScreen/TypeContextLoader.js
new file mode 100644
index 0000000..8e879cf
--- /dev/null
+++ b/App/FollowApp/src/components/MyClothesScreen/TypeContextLoader.js
@@ -0,0 +1,101 @@
+import React, {useContext} from 'react';
+import {View, FlatList, TouchableOpacity, Image, Text} from 'react-native';
+import {MyClosetContext} from '../../context/MyClosetContext';
+
+const ImgLoader = props => {
+ const clothesList = useContext(MyClosetContext);
+ const topDataList = clothesList.myClothList.filter(
+ item => item.type === 'top',
+ );
+ const bottomDataList = clothesList.myClothList.filter(
+ item => item.type === 'bottom',
+ );
+ return (
+
+
+
+
+ TOP
+
+
+ String(item.id)}
+ numColumns={3}
+ horizontal={false}
+ scrollEnabled={false}
+ />
+
+
+
+
+ BOTTOM
+
+
+ String(item.id)}
+ numColumns={3}
+ horizontal={false}
+ scrollEnabled={false}
+ />
+
+
+ );
+};
+
+const renderItem = ({item}) => (
+
+
+
+
+
+);
+export default ImgLoader;
diff --git a/App/FollowApp/src/components/Test.js b/App/FollowApp/src/components/Test.js
deleted file mode 100644
index df61eef..0000000
--- a/App/FollowApp/src/components/Test.js
+++ /dev/null
@@ -1,26 +0,0 @@
-import {View} from 'react-native';
-import styled, {ThemeProvider} from 'styled-components';
-import theme from '../theme';
-
-const Test = () => {
- return (
-
-
- Hi
-
-
- );
-};
-
-const TitleText = styled.text`
- width: 200px;
- height: 60px;
- margin: 5px;
- padding: 10px;
- border-radius: 10px;
- border: 2px;
- border-color: #3498db;
- font-size: 24px;
-`;
-
-export default Test;
diff --git a/App/FollowApp/src/components/buttons/Button.js b/App/FollowApp/src/components/buttons/Button.js
new file mode 100644
index 0000000..c04b919
--- /dev/null
+++ b/App/FollowApp/src/components/buttons/Button.js
@@ -0,0 +1,5 @@
+import LongButton from './LongButton';
+import ShortButton from './ShortButton';
+import MiddleButton from './MiddleButton';
+
+export default {ShortButton, LongButton, MiddleButton};
diff --git a/App/FollowApp/src/components/buttons/LongButton.js b/App/FollowApp/src/components/buttons/LongButton.js
new file mode 100644
index 0000000..43a974c
--- /dev/null
+++ b/App/FollowApp/src/components/buttons/LongButton.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import styled from 'styled-components/native';
+import {Dimensions} from 'react-native';
+
+const WindowHeight = Dimensions.get('window').width / 1.4;
+const ButtonContainer = styled.TouchableOpacity`
+ border-radius: 10px;
+ align-items: center;
+ padding: 10px 50px;
+ margin: 10px 0px;
+ justify-content: center;
+ background-color: #000000;
+ width: ${WindowHeight}px;
+`;
+
+const Title = styled.Text`
+ color: #fff;
+ font-size: 17px;
+ font-weight: 600;
+`;
+
+const LongButton = props => {
+ return (
+
+ {props.title}
+
+ );
+};
+
+export default LongButton;
diff --git a/App/FollowApp/src/components/buttons/MiddleButton.js b/App/FollowApp/src/components/buttons/MiddleButton.js
new file mode 100644
index 0000000..e5cd285
--- /dev/null
+++ b/App/FollowApp/src/components/buttons/MiddleButton.js
@@ -0,0 +1,31 @@
+import React from 'react';
+import styled from 'styled-components/native';
+import {Dimensions} from 'react-native';
+
+const WindowWidth = Dimensions.get('window').width / 3;
+
+const ButtonContainer = styled.TouchableOpacity`
+ border-radius: 10px;
+ align-items: center;
+ padding: 10px 10px;
+ margin: 10px 10px;
+ justify-content: center;
+ background-color:#000000;
+ width: ${WindowWidth}px;
+`;
+
+const Title = styled.Text`
+ color: #fff;
+ font-size: 15px;
+ font-weight: 600;
+`;
+
+const MiddleButton = props => {
+ return (
+
+ {props.title}
+
+ );
+};
+
+export default MiddleButton;
diff --git a/App/FollowApp/src/components/buttons/PressableButton.js b/App/FollowApp/src/components/buttons/PressableButton.js
new file mode 100644
index 0000000..b85565c
--- /dev/null
+++ b/App/FollowApp/src/components/buttons/PressableButton.js
@@ -0,0 +1,36 @@
+import React from 'react';
+import styled from 'styled-components/native';
+import PropTypes from 'prop-types';
+
+const Container = styled.TouchableOpacity`
+ background-color: ${({theme}) => theme.Button.background};
+ align-items: center;
+ border-radius: 4px;
+ width: 70%;
+ padding: 10px;
+ margin-top: 30px;
+ opacity: ${({disabled}) => (disabled ? 0.4 : 1)};
+
+`;
+const Text = styled.Text`
+ font-size: 15px;
+ padding: 10px;
+ color: ${({theme}) => theme.Button.title};
+`;
+
+const PressableButton = ({containerStyle, title, onPress, disabled}) => {
+ return (
+
+ {title}
+
+ );
+};
+
+PressableButton.propTypes = {
+ containerStyle: PropTypes.object,
+ title: PropTypes.string,
+ onPress: PropTypes.func.isRequired,
+ disabled: PropTypes.bool,
+};
+
+export default PressableButton;
diff --git a/App/FollowApp/src/components/buttons/ShortButton.js b/App/FollowApp/src/components/buttons/ShortButton.js
new file mode 100644
index 0000000..c9a427c
--- /dev/null
+++ b/App/FollowApp/src/components/buttons/ShortButton.js
@@ -0,0 +1,32 @@
+import React from 'react';
+import styled from 'styled-components/native';
+import {Dimensions} from 'react-native';
+
+const WindowWidth = Dimensions.get('window').width / 5;
+const ButtonContainer = styled.TouchableOpacity`
+ border-radius: 40px;
+ align-items: center;
+ padding: 0px 0px;
+ margin: 20px 20px;
+ justify-content: center;
+ background-color: #000000;
+ width: ${WindowWidth}px;
+ height: 3.5%;
+ align-self: flex-end;
+`;
+
+const Title = styled.Text`
+ font-size: 15px;
+ font-weight: 600;
+ color: #fff;
+`;
+
+const ShortButton = props => {
+ return (
+
+ {props.title}
+
+ );
+};
+
+export default ShortButton;
diff --git a/App/FollowApp/src/components/tryonScreen/bottomSheet/MyBottomModal.js b/App/FollowApp/src/components/tryonScreen/bottomSheet/MyBottomModal.js
new file mode 100644
index 0000000..a1231b4
--- /dev/null
+++ b/App/FollowApp/src/components/tryonScreen/bottomSheet/MyBottomModal.js
@@ -0,0 +1,150 @@
+import React, {useEffect, useRef} from 'react';
+import {
+ View,
+ StyleSheet,
+ Modal,
+ Animated,
+ TouchableWithoutFeedback,
+ Dimensions,
+ PanResponder,
+} from 'react-native';
+import {MyClosetProvider} from '../../../context/MyClosetContext';
+import ImgLoader from '../contextLoader/MyBottomContextLoader';
+const BottomSheet = props => {
+ const {modalVisible, setModalVisible} = props;
+ const screenHeight = Dimensions.get('screen').height;
+ const panY = useRef(new Animated.Value(screenHeight)).current;
+ const translateY = panY.interpolate({
+ inputRange: [-1, 0, 1],
+ outputRange: [0, 0, 1],
+ });
+
+ const resetBottomSheet = Animated.timing(panY, {
+ toValue: 0,
+ duration: 300,
+ useNativeDriver: true,
+ });
+
+ const closeBottomSheet = Animated.timing(panY, {
+ toValue: screenHeight,
+ duration: 300,
+ useNativeDriver: true,
+ });
+
+ const panResponders = useRef(
+ PanResponder.create({
+ onStartShouldSetPanResponder: () => true,
+ onMoveShouldSetPanResponder: () => false,
+ onPanResponderMove: (event, gestureState) => {
+ panY.setValue(gestureState.dy);
+ },
+ onPanResponderRelease: (event, gestureState) => {
+ if (gestureState.dy > 0 && gestureState.vy > 1.5) {
+ closeModal();
+ } else {
+ resetBottomSheet.start();
+ }
+ },
+ }),
+ ).current;
+
+ useEffect(() => {
+ if (props.modalVisible) {
+ resetBottomSheet.start();
+ }
+ }, [props.modalVisible, resetBottomSheet]);
+
+ const closeModal = () => {
+ closeBottomSheet.start(() => {
+ setModalVisible(false);
+ });
+ };
+
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+};
+
+const styles = StyleSheet.create({
+ overlay: {
+ flex: 1,
+ justifyContent: 'flex-end',
+ backgroundColor: 'rgba(0, 0, 0, 0.4)',
+ },
+ background: {
+ flex: 1,
+ },
+ bottomSheetContainer: {
+ height: 300,
+ justifyContent: 'center',
+ alignItems: 'center',
+ backgroundColor: 'white',
+ borderTopLeftRadius: 10,
+ borderTopRightRadius: 10,
+ },
+});
+
+// const ClothesList = [
+// {
+// id: '1',
+// src: require('../../../asset/test/TryOn/Clothes/1.png'),
+// },
+// {
+// id: '2',
+// src: require('../../../asset/test/TryOn/Clothes/2.png'),
+// },
+// {
+// id: '3',
+// src: require('../../../asset/test/TryOn/Clothes/3.png'),
+// },
+// {
+// id: '4',
+// src: require('../../../asset/test/TryOn/Clothes/4.png'),
+// },
+// {
+// id: '5',
+// src: require('../../../asset/test/TryOn/Clothes/5.png'),
+// },
+// {
+// id: '6',
+// src: require('../../../asset/test/TryOn/Clothes/6.png'),
+// },
+// {
+// id: '7',
+// src: require('../../../asset/test/TryOn/Clothes/7.png'),
+// },
+// {
+// id: '8',
+// src: require('../../../asset/test/TryOn/Clothes/8.png'),
+// },
+// {
+// id: '9',
+// src: require('../../../asset/test/TryOn/Clothes/9.png'),
+// },
+// {
+// id: '10',
+// src: require('../../../asset/test/TryOn/Clothes/10.png'),
+// },
+// ];
+
+export default BottomSheet;
diff --git a/App/FollowApp/src/components/tryonScreen/bottomSheet/MyLooksModal.js b/App/FollowApp/src/components/tryonScreen/bottomSheet/MyLooksModal.js
new file mode 100644
index 0000000..6e100c1
--- /dev/null
+++ b/App/FollowApp/src/components/tryonScreen/bottomSheet/MyLooksModal.js
@@ -0,0 +1,150 @@
+import React, {useEffect, useRef} from 'react';
+import {
+ View,
+ StyleSheet,
+ Modal,
+ Animated,
+ TouchableWithoutFeedback,
+ Dimensions,
+ PanResponder,
+} from 'react-native';
+import {MyLookProvider} from '../../../context/MyLookContext';
+import ImgLoader from '../contextLoader/MyLookContextLoader';
+const BottomSheet = props => {
+ const {modalVisible, setModalVisible} = props;
+ const screenHeight = Dimensions.get('screen').height;
+ const panY = useRef(new Animated.Value(screenHeight)).current;
+ const translateY = panY.interpolate({
+ inputRange: [-1, 0, 1],
+ outputRange: [0, 0, 1],
+ });
+
+ const resetBottomSheet = Animated.timing(panY, {
+ toValue: 0,
+ duration: 300,
+ useNativeDriver: true,
+ });
+
+ const closeBottomSheet = Animated.timing(panY, {
+ toValue: screenHeight,
+ duration: 300,
+ useNativeDriver: true,
+ });
+
+ const panResponders = useRef(
+ PanResponder.create({
+ onStartShouldSetPanResponder: () => true,
+ onMoveShouldSetPanResponder: () => false,
+ onPanResponderMove: (event, gestureState) => {
+ panY.setValue(gestureState.dy);
+ },
+ onPanResponderRelease: (event, gestureState) => {
+ if (gestureState.dy > 0 && gestureState.vy > 1.5) {
+ closeModal();
+ } else {
+ resetBottomSheet.start();
+ }
+ },
+ }),
+ ).current;
+
+ useEffect(() => {
+ if (props.modalVisible) {
+ resetBottomSheet.start();
+ }
+ }, [props.modalVisible, resetBottomSheet]);
+
+ const closeModal = () => {
+ closeBottomSheet.start(() => {
+ setModalVisible(false);
+ });
+ };
+
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+};
+
+const styles = StyleSheet.create({
+ overlay: {
+ flex: 1,
+ justifyContent: 'flex-end',
+ backgroundColor: 'rgba(0, 0, 0, 0.4)',
+ },
+ background: {
+ flex: 1,
+ },
+ bottomSheetContainer: {
+ height: 300,
+ justifyContent: 'center',
+ alignItems: 'center',
+ backgroundColor: 'white',
+ borderTopLeftRadius: 10,
+ borderTopRightRadius: 10,
+ },
+});
+
+// const ClothesList = [
+// {
+// id: '1',
+// src: require('../../../asset/test/TryOn/Clothes/1.png'),
+// },
+// {
+// id: '2',
+// src: require('../../../asset/test/TryOn/Clothes/2.png'),
+// },
+// {
+// id: '3',
+// src: require('../../../asset/test/TryOn/Clothes/3.png'),
+// },
+// {
+// id: '4',
+// src: require('../../../asset/test/TryOn/Clothes/4.png'),
+// },
+// {
+// id: '5',
+// src: require('../../../asset/test/TryOn/Clothes/5.png'),
+// },
+// {
+// id: '6',
+// src: require('../../../asset/test/TryOn/Clothes/6.png'),
+// },
+// {
+// id: '7',
+// src: require('../../../asset/test/TryOn/Clothes/7.png'),
+// },
+// {
+// id: '8',
+// src: require('../../../asset/test/TryOn/Clothes/8.png'),
+// },
+// {
+// id: '9',
+// src: require('../../../asset/test/TryOn/Clothes/9.png'),
+// },
+// {
+// id: '10',
+// src: require('../../../asset/test/TryOn/Clothes/10.png'),
+// },
+// ];
+
+export default BottomSheet;
diff --git a/App/FollowApp/src/components/tryonScreen/bottomSheet/MyTopModal.js b/App/FollowApp/src/components/tryonScreen/bottomSheet/MyTopModal.js
new file mode 100644
index 0000000..26875d1
--- /dev/null
+++ b/App/FollowApp/src/components/tryonScreen/bottomSheet/MyTopModal.js
@@ -0,0 +1,150 @@
+import React, {useEffect, useRef} from 'react';
+import {
+ View,
+ StyleSheet,
+ Modal,
+ Animated,
+ TouchableWithoutFeedback,
+ Dimensions,
+ PanResponder,
+} from 'react-native';
+import {MyClosetProvider} from '../../../context/MyClosetContext';
+import ImgLoader from '../contextLoader/MyTopContextLoader';
+const BottomSheet = props => {
+ const {modalVisible, setModalVisible} = props;
+ const screenHeight = Dimensions.get('screen').height;
+ const panY = useRef(new Animated.Value(screenHeight)).current;
+ const translateY = panY.interpolate({
+ inputRange: [-1, 0, 1],
+ outputRange: [0, 0, 1],
+ });
+
+ const resetBottomSheet = Animated.timing(panY, {
+ toValue: 0,
+ duration: 300,
+ useNativeDriver: true,
+ });
+
+ const closeBottomSheet = Animated.timing(panY, {
+ toValue: screenHeight,
+ duration: 300,
+ useNativeDriver: true,
+ });
+
+ const panResponders = useRef(
+ PanResponder.create({
+ onStartShouldSetPanResponder: () => true,
+ onMoveShouldSetPanResponder: () => false,
+ onPanResponderMove: (event, gestureState) => {
+ panY.setValue(gestureState.dy);
+ },
+ onPanResponderRelease: (event, gestureState) => {
+ if (gestureState.dy > 0 && gestureState.vy > 1.5) {
+ closeModal();
+ } else {
+ resetBottomSheet.start();
+ }
+ },
+ }),
+ ).current;
+
+ useEffect(() => {
+ if (props.modalVisible) {
+ resetBottomSheet.start();
+ }
+ }, [props.modalVisible, resetBottomSheet]);
+
+ const closeModal = () => {
+ closeBottomSheet.start(() => {
+ setModalVisible(false);
+ });
+ };
+
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+};
+
+const styles = StyleSheet.create({
+ overlay: {
+ flex: 1,
+ justifyContent: 'flex-end',
+ backgroundColor: 'rgba(0, 0, 0, 0.4)',
+ },
+ background: {
+ flex: 1,
+ },
+ bottomSheetContainer: {
+ height: 300,
+ justifyContent: 'center',
+ alignItems: 'center',
+ backgroundColor: 'white',
+ borderTopLeftRadius: 10,
+ borderTopRightRadius: 10,
+ },
+});
+
+// const ClothesList = [
+// {
+// id: '1',
+// src: require('../../../asset/test/TryOn/Clothes/1.png'),
+// },
+// {
+// id: '2',
+// src: require('../../../asset/test/TryOn/Clothes/2.png'),
+// },
+// {
+// id: '3',
+// src: require('../../../asset/test/TryOn/Clothes/3.png'),
+// },
+// {
+// id: '4',
+// src: require('../../../asset/test/TryOn/Clothes/4.png'),
+// },
+// {
+// id: '5',
+// src: require('../../../asset/test/TryOn/Clothes/5.png'),
+// },
+// {
+// id: '6',
+// src: require('../../../asset/test/TryOn/Clothes/6.png'),
+// },
+// {
+// id: '7',
+// src: require('../../../asset/test/TryOn/Clothes/7.png'),
+// },
+// {
+// id: '8',
+// src: require('../../../asset/test/TryOn/Clothes/8.png'),
+// },
+// {
+// id: '9',
+// src: require('../../../asset/test/TryOn/Clothes/9.png'),
+// },
+// {
+// id: '10',
+// src: require('../../../asset/test/TryOn/Clothes/10.png'),
+// },
+// ];
+
+export default BottomSheet;
diff --git a/App/FollowApp/src/components/tryonScreen/contextLoader/MyBottomContextLoader.js b/App/FollowApp/src/components/tryonScreen/contextLoader/MyBottomContextLoader.js
new file mode 100644
index 0000000..86c268e
--- /dev/null
+++ b/App/FollowApp/src/components/tryonScreen/contextLoader/MyBottomContextLoader.js
@@ -0,0 +1,47 @@
+import React, {useContext} from 'react';
+import {View, FlatList, TouchableOpacity, Image} from 'react-native';
+import {MyClosetContext} from '../../../context/MyClosetContext';
+import {MySelectionConsumer} from '../../../context/MySelectionContext';
+
+const ImgLoader = props => {
+ const clothesList = useContext(MyClosetContext);
+ const dataList = clothesList.myClothList.filter(
+ item => item.type === 'bottom',
+ );
+ // const init = item => {
+ // setClothData(item);
+ // console.log(clothData);
+ // };
+ return (
+
+ (
+
+
+ {({actions}) => (
+ actions.setBottom(item)}
+ style={{flex: 1, alignItems:'center', margin:15}}>
+
+
+ )}
+
+
+ )}
+ keyExtractor={item => String(item.id)}
+ numColumns={3}
+ horizontal={false}
+ />
+
+ );
+};
+
+export default ImgLoader;
diff --git a/App/FollowApp/src/components/tryonScreen/contextLoader/MyLookContextLoader.js b/App/FollowApp/src/components/tryonScreen/contextLoader/MyLookContextLoader.js
new file mode 100644
index 0000000..6438938
--- /dev/null
+++ b/App/FollowApp/src/components/tryonScreen/contextLoader/MyLookContextLoader.js
@@ -0,0 +1,43 @@
+import React, {useContext} from 'react';
+import {View, FlatList, TouchableOpacity, Image} from 'react-native';
+import {MyLookContext} from '../../../context/MyLookContext';
+import {MySelectionConsumer} from '../../../context/MySelectionContext';
+
+const ImgLoader = props => {
+ const lookList = useContext(MyLookContext);
+ return (
+
+ (
+
+
+ {({actions}) => (
+ {
+ actions.setTop(item.top);
+ actions.setBottom(item.bottom);
+ }}
+ style={{flex: 1, alignItems:'center', margin:15}}>
+
+
+ )}
+
+
+ )}
+ keyExtractor={item => String(item.id)}
+ numColumns={3}
+ horizontal={false}
+ />
+
+ );
+};
+
+export default ImgLoader;
diff --git a/App/FollowApp/src/components/tryonScreen/contextLoader/MyTopContextLoader.js b/App/FollowApp/src/components/tryonScreen/contextLoader/MyTopContextLoader.js
new file mode 100644
index 0000000..d40997f
--- /dev/null
+++ b/App/FollowApp/src/components/tryonScreen/contextLoader/MyTopContextLoader.js
@@ -0,0 +1,47 @@
+import React, {useContext} from 'react';
+import {View, FlatList, TouchableOpacity, Image} from 'react-native';
+import {MyClosetContext} from '../../../context/MyClosetContext';
+import {MySelectionConsumer} from '../../../context/MySelectionContext';
+
+const ImgLoader = props => {
+ const clothesList = useContext(MyClosetContext);
+ const dataList = clothesList.myClothList.filter(
+ item => item.type === 'top',
+ );
+ // const init = item => {
+ // setClothData(item);
+ // console.log(clothData);
+ // };
+ return (
+
+ (
+
+
+ {({actions}) => (
+ actions.setTop(item)}
+ style={{flex: 1, alignItems:'center', margin:15}}>
+
+
+ )}
+
+
+ )}
+ keyExtractor={item => String(item.id)}
+ numColumns={3}
+ horizontal={false}
+ />
+
+ );
+};
+
+export default ImgLoader;
diff --git a/App/FollowApp/src/context/FindImageContext.js b/App/FollowApp/src/context/FindImageContext.js
new file mode 100644
index 0000000..b8891bb
--- /dev/null
+++ b/App/FollowApp/src/context/FindImageContext.js
@@ -0,0 +1,29 @@
+import React, {useState, createContext} from 'react';
+
+const FindImageContext = createContext({
+ state: {clothes: ''},
+ actions: {
+ setClothes: () => {
+ // intentional
+ },
+ },
+});
+
+const FindImageProvider = ({children}) => {
+ const [clothes, setClothes] = useState('');
+
+ const value = {
+ state: {clothes},
+ actions: {setClothes},
+ };
+ return (
+
+ {children}
+
+ );
+};
+
+const {Consumer: FindImageConsumer} = FindImageContext;
+
+export {FindImageConsumer, FindImageProvider};
+export default FindImageContext;
diff --git a/App/FollowApp/src/context/GalleryContext.js b/App/FollowApp/src/context/GalleryContext.js
new file mode 100644
index 0000000..5a9e03d
--- /dev/null
+++ b/App/FollowApp/src/context/GalleryContext.js
@@ -0,0 +1,66 @@
+import React, { createContext, useState } from 'react';
+import { UserContext } from './UserContext';
+
+const GalleryContext = createContext({
+ myAvatar: 0,
+})
+
+const GalleryProvider = ({ children }) => {
+ const [avatar, setAvatar] = useState(0);
+ const value = { avatar: { avatar }, setAvatar }
+
+ return {children}
+};
+
+const GalleryConsumer = UserContext.Consumer;
+
+const AvatarImgContext = createContext([
+ {
+ url: '',
+ props: {
+ source: require('../../asset/img/TryOn/Avatar/0_0.png'),
+ },
+ id: 0,
+ },
+ {
+ url: '',
+ props: {
+ source: require('./avatar/avatar2.png'),
+ },
+ id: 1,
+ },
+ {
+ url: '',
+ props: {
+ source: require('./avatar/avatar3.png'),
+ },
+ id: 2,
+ },
+ {
+ url: '',
+ props: {
+ source: require('./avatar/avatar4.png'),
+ },
+ id: 3,
+ },
+ {
+ url: '',
+ props: {
+ source: require('./avatar/avatar5.png'),
+ },
+ id: 4,
+ },
+ {
+ url: '',
+ props: {
+ source: require('./avatar/avatar6.png'),
+ },
+ id: 5,
+ },
+]);
+
+
+
+// export { GalleryContext, GalleryProvider };
+
+export default { GalleryProvider, GalleryConsumer, AvatarImgContext };
diff --git a/App/FollowApp/src/context/MyClosetContext.js b/App/FollowApp/src/context/MyClosetContext.js
index 5643c76..43f7476 100644
--- a/App/FollowApp/src/context/MyClosetContext.js
+++ b/App/FollowApp/src/context/MyClosetContext.js
@@ -1,21 +1,20 @@
-import React, { useState, createContext } from 'react';
+import React, {useState, createContext} from 'react';
+import {MyClothData} from '../data/MyClothData';
const MyClosetContext = createContext({
- myClothList = new Array(),
+ myClothList: [],
+ dispatch: undefined,
});
-const MyClosetProvider = ({ children }) => {
- const [inProgress, setInProgress] = useState(false);
- const spinner = {
- start: () => setInProgress(true),
- stop: () => setInProgress(false),
- };
- const value = { inProgress, spinner };
- return (
-
- {children}
-
- );
+const MyClosetProvider = ({children}) => {
+ const [, setClothList] = useState([]);
+ const value = {myClothList: MyClothData, dispatch: setClothList};
+ return (
+
+ {children}
+
+ );
};
+
export { MyClosetContext, MyClosetProvider };
diff --git a/App/FollowApp/src/context/MyLookContext.js b/App/FollowApp/src/context/MyLookContext.js
new file mode 100644
index 0000000..9ed3817
--- /dev/null
+++ b/App/FollowApp/src/context/MyLookContext.js
@@ -0,0 +1,19 @@
+import React, {useState, createContext} from 'react';
+import {MyLooksData} from '../data/MyLooksData';
+
+const MyLookContext = createContext({
+ myLookList: [],
+ dispatch: undefined,
+});
+
+const MyLookProvider = ({children}) => {
+ const [, setLookList] = useState([]);
+ const value = {myLookList: MyLooksData, dispatch: setLookList};
+ return (
+
+ {children}
+
+ );
+};
+
+export {MyLookContext, MyLookProvider};
diff --git a/App/FollowApp/src/context/MySelectionContext.js b/App/FollowApp/src/context/MySelectionContext.js
new file mode 100644
index 0000000..fbddd92
--- /dev/null
+++ b/App/FollowApp/src/context/MySelectionContext.js
@@ -0,0 +1,32 @@
+import React, {useState, createContext} from 'react';
+
+const MySelectionContext = createContext({
+ state: {top: '', bottom: ''},
+ actions: {
+ setTop: () => {
+ // this is intentional
+ },
+ setBottom: () => {
+ // this is intentional
+ },
+ },
+});
+
+const MySelectionProvider = ({children}) => {
+ const [top, setTop] = useState('');
+ const [bottom, setBottom] = useState('');
+ const value = {
+ state: {top, bottom},
+ actions: {setTop, setBottom},
+ };
+ return (
+
+ {children}
+
+ );
+};
+
+const {Consumer: MySelectionConsumer} = MySelectionContext;
+
+export {MySelectionConsumer, MySelectionProvider};
+export default MySelectionContext;
diff --git a/App/FollowApp/src/context/UserContext.js b/App/FollowApp/src/context/UserContext.js
index e69de29..51d78ff 100644
--- a/App/FollowApp/src/context/UserContext.js
+++ b/App/FollowApp/src/context/UserContext.js
@@ -0,0 +1,32 @@
+import React, { useState, createContext } from 'react';
+
+const UserContext = createContext({
+ user: {
+ /**
+ * 로그인 여부
+ */
+ isLoggedIn: false,
+ /**
+ * 유저 이름
+ */
+ userName: '',
+ /**
+ * 유저 비밀번호
+ */
+ password: '',
+ },
+ dispatch: undefined,
+});
+
+const UserContextProvider = ({children}) => {
+ const [user, setUser] = useState({isLoggedIn: false}); // TODO 릴리즈 할 때는 false로 해놔야함
+ const dispatch = (isLoggedIn, userName, password) => {
+ setUser({ isLoggedIn, userName, password });
+ };
+ const value = { user, dispatch };
+ return (
+ {children}
+ );
+};
+
+export { UserContext, UserContextProvider };
diff --git a/App/FollowApp/src/context/avatar/AvatarSelectedContext.js b/App/FollowApp/src/context/avatar/AvatarSelectedContext.js
new file mode 100644
index 0000000..aed1c94
--- /dev/null
+++ b/App/FollowApp/src/context/avatar/AvatarSelectedContext.js
@@ -0,0 +1,29 @@
+import React, {useState, createContext} from 'react';
+
+const AvatarContext = createContext({
+ state: {avatar: ''},
+ actions: {
+ setAvatar: () => {
+ // intentional
+ },
+ },
+});
+
+const AvatarProvider = ({children}) => {
+ const [avatar, setAvatar] = useState('');
+
+ const value = {
+ state: {avatar},
+ actions: {setAvatar},
+ };
+ return (
+
+ {children}
+
+ );
+};
+
+const {Consumer: AvatarConsumer} = AvatarContext;
+
+export {AvatarConsumer, AvatarProvider};
+export default AvatarContext;
diff --git a/App/FollowApp/src/context/avatar/avatar1.png b/App/FollowApp/src/context/avatar/avatar1.png
new file mode 100644
index 0000000..47ec0d5
Binary files /dev/null and b/App/FollowApp/src/context/avatar/avatar1.png differ
diff --git a/App/FollowApp/src/context/avatar/avatar2.png b/App/FollowApp/src/context/avatar/avatar2.png
new file mode 100644
index 0000000..bb27dd0
Binary files /dev/null and b/App/FollowApp/src/context/avatar/avatar2.png differ
diff --git a/App/FollowApp/src/context/avatar/avatar3.png b/App/FollowApp/src/context/avatar/avatar3.png
new file mode 100644
index 0000000..75a2efe
Binary files /dev/null and b/App/FollowApp/src/context/avatar/avatar3.png differ
diff --git a/App/FollowApp/src/context/avatar/avatar4 copy.hex b/App/FollowApp/src/context/avatar/avatar4 copy.hex
new file mode 100644
index 0000000..2f3a3b9
Binary files /dev/null and b/App/FollowApp/src/context/avatar/avatar4 copy.hex differ
diff --git a/App/FollowApp/src/context/avatar/avatar4.jpg b/App/FollowApp/src/context/avatar/avatar4.jpg
new file mode 100644
index 0000000..2f3a3b9
Binary files /dev/null and b/App/FollowApp/src/context/avatar/avatar4.jpg differ
diff --git a/App/FollowApp/src/context/avatar/avatar4.png b/App/FollowApp/src/context/avatar/avatar4.png
new file mode 100644
index 0000000..cd33019
Binary files /dev/null and b/App/FollowApp/src/context/avatar/avatar4.png differ
diff --git a/App/FollowApp/src/context/avatar/avatar5.png b/App/FollowApp/src/context/avatar/avatar5.png
new file mode 100644
index 0000000..a21dc33
Binary files /dev/null and b/App/FollowApp/src/context/avatar/avatar5.png differ
diff --git a/App/FollowApp/src/context/avatar/avatar6.png b/App/FollowApp/src/context/avatar/avatar6.png
new file mode 100644
index 0000000..f10c7e1
Binary files /dev/null and b/App/FollowApp/src/context/avatar/avatar6.png differ
diff --git a/App/FollowApp/src/data/HomeScreenData.js b/App/FollowApp/src/data/HomeScreenData.js
new file mode 100644
index 0000000..ac00c70
--- /dev/null
+++ b/App/FollowApp/src/data/HomeScreenData.js
@@ -0,0 +1,29 @@
+import Cloth from '../object/Cloth';
+
+export const MyClothData = [
+ new Cloth(
+ '1',
+ '휠라 이탈리아 에센셜 맨투맨',
+ '59,000원',
+ 'black',
+ 'b',
+ require('../../asset/img/HomeScreen/5.jpg'),
+ ),
+ new Cloth(
+ '2',
+ 'LIFE GOES ON 루즈핏 반팔 티',
+ '39,000원',
+ 'blue',
+ 'a',
+ require('../../asset/img/HomeScreen/4.jpg'),
+ ),
+ new Cloth(
+ '3',
+ 'HERITAGE 맨투맨',
+ '53,100원',
+ 'gray',
+ 'b',
+ require('../../asset/img/HomeScreen/3.jpg'),
+ ),
+
+];
diff --git a/App/FollowApp/src/data/MyClothData.js b/App/FollowApp/src/data/MyClothData.js
new file mode 100644
index 0000000..2916848
--- /dev/null
+++ b/App/FollowApp/src/data/MyClothData.js
@@ -0,0 +1,52 @@
+import Cloth from '../object/Cloth';
+
+export const MyClothData = [
+ new Cloth(
+ 'bottom1',
+ '리바이스 청바지',
+ 'bottom',
+ 'blue',
+ 'levis',
+ require('../../asset/img/TryOn/Clothes/bottom1.png'),
+ ),
+ new Cloth(
+ 'bottom2',
+ '검정 슬랙스',
+ 'bottom',
+ 'black',
+ 'unknown',
+ require('../../asset/img/TryOn/Clothes/bottom2.png'),
+ ),
+ new Cloth(
+ 'bottom3',
+ '하늘색 청바지',
+ 'bottom',
+ 'blue',
+ 'loran',
+ require('../../asset/img/TryOn/Clothes/bottom3.png'),
+ ),
+ new Cloth(
+ 'top1',
+ '구찌티',
+ 'top',
+ 'black',
+ 'GUCCI',
+ require('../../asset/img/TryOn/Clothes/top1.png'),
+ ),
+ new Cloth(
+ 'top2',
+ '범생이 가디건',
+ 'top',
+ 'black',
+ 'tomtom',
+ require('../../asset/img/TryOn/Clothes/top2.png'),
+ ),
+ new Cloth(
+ 'top3',
+ '회색 맨투맨',
+ 'top',
+ 'gray',
+ 'lig',
+ require('../../asset/img/TryOn/Clothes/top3.png'),
+ ),
+];
diff --git a/App/FollowApp/src/data/MyLooksData.js b/App/FollowApp/src/data/MyLooksData.js
new file mode 100644
index 0000000..c3c5e65
--- /dev/null
+++ b/App/FollowApp/src/data/MyLooksData.js
@@ -0,0 +1,27 @@
+import Look from '../object/Look';
+import {MyClothData} from './MyClothData';
+
+export const MyLooksData = [
+ new Look(
+ '1_1',
+ 'Gucci & Blue Jean',
+ MyClothData[3],
+ MyClothData[0],
+ require('../../asset/img/TryOn/Look/1_1.png'),
+ ),
+ new Look(
+ '3_1',
+ 'Man2Man & Blue Jean',
+ MyClothData[5],
+ MyClothData[0],
+ require('../../asset/img/TryOn/Look/3_1.png'),
+ ),
+ new Look(
+ '2_2',
+ 'Cardigan & Black Jean',
+ MyClothData[4],
+ MyClothData[1],
+ require('../../asset/img/TryOn/Look/2_2.png'),
+ )
+
+];
diff --git a/App/FollowApp/src/navigations/ClothSearchStack.js b/App/FollowApp/src/navigations/ClothSearchStack.js
index fa29876..d1f5af6 100644
--- a/App/FollowApp/src/navigations/ClothSearchStack.js
+++ b/App/FollowApp/src/navigations/ClothSearchStack.js
@@ -1,19 +1,15 @@
-import createStackNavigator from '@react-navigation/stack';
-import {
- FindImageScreen,
- ClothSearchResultScreen,
-} from './../screens/ClothSearch/ClothSearch';
+import React from 'react';
+import {createStackNavigator} from '@react-navigation/stack';
+import FindImageScreen from '../screens/ClothSearch/FindImageScreen';
+import ResultScreen from '../screens/ClothSearch/ResultScreen';
const Stack = createStackNavigator();
const ClothSearchStack = () => {
return (
-
+
-
+
);
};
diff --git a/App/FollowApp/src/navigations/HomeStack.js b/App/FollowApp/src/navigations/HomeStack.js
new file mode 100644
index 0000000..3c12490
--- /dev/null
+++ b/App/FollowApp/src/navigations/HomeStack.js
@@ -0,0 +1,16 @@
+import React from 'react';
+import {createStackNavigator} from '@react-navigation/stack';
+import HomeScreen from '../screens/HomeScreen';
+
+const Stack = createStackNavigator();
+
+const HomeStack = () => {
+ return (
+
+
+
+ );
+};
+
+export default HomeStack;
diff --git a/App/FollowApp/src/navigations/IndexTab.js b/App/FollowApp/src/navigations/IndexTab.js
index 70e1e08..c9a175c 100644
--- a/App/FollowApp/src/navigations/IndexTab.js
+++ b/App/FollowApp/src/navigations/IndexTab.js
@@ -1,18 +1,56 @@
+import React from 'react';
import {createBottomTabNavigator} from '@react-navigation/bottom-tabs';
-import HomeScreen from '../screens/HomeScreen';
import SettingScreen from '../screens/SettingScreen';
-import MyClosetScreen from '../screens/MyCloset/MyClosetScreen';
-import ClothSearch from '../screens/ClothSearch/ClothSearch';
+import MaterialIcon from 'react-native-vector-icons/MaterialCommunityIcons';
+import IonIcons from 'react-native-vector-icons/Ionicons';
+import MyClosetStack from './MyClosetStack';
+import HomeStack from './HomeStack';
+import ClothSearchStack from './ClothSearchStack';
const Tab = createBottomTabNavigator();
const IndexTab = () => {
return (
-
-
-
-
-
+ ({
+ tabBarIcon: props => {
+ let name = '';
+ switch (route.name) {
+ case 'Home':
+ name = 'home-outline';
+ break;
+
+ case 'MyCloset':
+ name = 'wardrobe-outline';
+ break;
+
+ case 'FindImage':
+ name = 'image-search-outline';
+ break;
+
+ case 'Setting':
+ name = 'md-settings-outline';
+ return (
+
+ );
+ }
+ return (
+
+ );
+ },
+ })}>
+
+
+
+
);
};
diff --git a/App/FollowApp/src/navigations/LoginStack.js b/App/FollowApp/src/navigations/LoginStack.js
new file mode 100644
index 0000000..7f4cf4d
--- /dev/null
+++ b/App/FollowApp/src/navigations/LoginStack.js
@@ -0,0 +1,20 @@
+import React from 'react';
+import {createStackNavigator} from '@react-navigation/stack';
+import LoginScreen from '../screens/LoginScreen';
+
+const Stack = createStackNavigator();
+
+const LoginStack = () => {
+ return (
+
+
+
+ );
+};
+
+export default LoginStack;
diff --git a/App/FollowApp/src/navigations/MyClosetStack.js b/App/FollowApp/src/navigations/MyClosetStack.js
index 06f3c78..fe01760 100644
--- a/App/FollowApp/src/navigations/MyClosetStack.js
+++ b/App/FollowApp/src/navigations/MyClosetStack.js
@@ -1,16 +1,38 @@
+import React from 'react';
import {createStackNavigator} from '@react-navigation/stack';
import * as MyCloth from '../screens/MyCloset/MyCloth';
+import LookDetail from '../screens/MyCloset/MyLook/LookDetail';
const Stack = createStackNavigator();
const MyClosetStack = () => {
return (
-
-
-
-
-
-
+
+
+
+
+
+
+
+
);
};
diff --git a/App/FollowApp/src/navigations/navigation.js b/App/FollowApp/src/navigations/navigation.js
index 8cbb6ee..6d2687d 100644
--- a/App/FollowApp/src/navigations/navigation.js
+++ b/App/FollowApp/src/navigations/navigation.js
@@ -1,9 +1,17 @@
-import { NavigationContainer } from "@react-navigation/native";
+import React, {useContext} from 'react';
+import {NavigationContainer} from '@react-navigation/native';
+import LoginStack from './LoginStack';
+import {UserContext} from '../context/UserContext';
+import IndexTab from './IndexTab';
const Navigation = () => {
+ const userContext = useContext(UserContext);
+ console.log(userContext);
return (
-
+ {userContext.user.isLoggedIn ? : }
);
-}
+};
+
+export default Navigation;
diff --git a/App/FollowApp/src/object/Cloth.js b/App/FollowApp/src/object/Cloth.js
index bf5bcff..1be13ba 100644
--- a/App/FollowApp/src/object/Cloth.js
+++ b/App/FollowApp/src/object/Cloth.js
@@ -1,29 +1,10 @@
export default class Cloth {
- constructor(name, type, color, maker, imgPath) {
+ constructor(id, name, type, color, maker, imgPath) {
+ this.id = id;
this.name = name;
this.type = type;
this.color = color;
this.maker = maker;
this.imgPath = imgPath;
}
-
- getName() {
- return this.name;
- }
-
- getType() {
- return this.type;
- }
-
- getColor() {
- return this.color;
- }
-
- getMaker() {
- return this.maker;
- }
-
- getImgPath() {
- return this.imgPath;
- }
}
diff --git a/App/FollowApp/src/object/Look.js b/App/FollowApp/src/object/Look.js
new file mode 100644
index 0000000..859e25c
--- /dev/null
+++ b/App/FollowApp/src/object/Look.js
@@ -0,0 +1,9 @@
+export default class Look {
+ constructor(id, name, top, bottom, imgPath) {
+ this.id = id;
+ this.name = name;
+ this.top = top;
+ this.bottom = bottom;
+ this.imgPath = imgPath;
+ }
+}
diff --git a/App/FollowApp/src/screens/ClothSearch/ClothSearch.js b/App/FollowApp/src/screens/ClothSearch/ClothSearch.js
index d5485b8..a08990a 100644
--- a/App/FollowApp/src/screens/ClothSearch/ClothSearch.js
+++ b/App/FollowApp/src/screens/ClothSearch/ClothSearch.js
@@ -1,4 +1,4 @@
-import FindImageScreen from "./FindImageScreen";
-import ClothSearchResultScreen from "./ResultScreen";
+import FindImageScreen from './FindImageScreen';
+import ClothSearchResultScreen from './ResultScreen';
-export default { FindImageScreen, ClothSearchResultScreen };
+export default {FindImageScreen, ClothSearchResultScreen};
diff --git a/App/FollowApp/src/screens/ClothSearch/FindImageScreen.js b/App/FollowApp/src/screens/ClothSearch/FindImageScreen.js
index 51112c8..a636cad 100644
--- a/App/FollowApp/src/screens/ClothSearch/FindImageScreen.js
+++ b/App/FollowApp/src/screens/ClothSearch/FindImageScreen.js
@@ -1,6 +1,85 @@
-const FindImageScreen = () => {
+import React, {useState} from 'react';
+import {Image, Dimensions, Alert} from 'react-native';
+import styled from 'styled-components/native';
+import Buttons from '../../components/buttons/Button';
+import MyClothesModal from '../../components/FindImageScreen/bottomSheet/MyClothesModal';
+import {
+ FindImageProvider,
+ FindImageConsumer,
+} from '../../context/FindImageContext';
+import {Header} from '../../components/HomeScreen/CardViewComponents';
+
+const WindowHeight = Dimensions.get('window').height / 9;
+const Container = styled.SafeAreaView`
+ flex: 1;
+ align-items: center;
+`;
+const AvatarView = styled.View`
+ border-radius: 20px;
+ align-items: center;
+ justify-content: center;
+ width: 90%;
+ height: 50%;
+ border: 1px;
+ margin-bottom: ${WindowHeight}px;
+ margin-top: 10%;
+`;
+const ButtonContainer = styled.View`
+ flex-direction: row;
+`;
+
+const FindImageScreen = ({navigation}) => {
+ const [modalClothesVisible, setModalClothesVisible] = useState(false);
+
+ const pressMyClothesButton = () => {
+ setModalClothesVisible(true);
+ };
+
return (
- null
+
+
+ {({state, actions}) => (
+
+
+
+
+
+
+
+ {
+ actions.setClothes('undefined');
+ }}
+ />
+
+
+
+ {
+ if(state.clothes.id ==='bottom1'){
+ navigation.navigate('SearchResult');
+
+ }else{
+ Alert.alert("검색 결과","결과를 찾을 수 없습니다.");
+ }
+ }}
+ />
+
+
+ )}
+
+
);
};
diff --git a/App/FollowApp/src/screens/ClothSearch/ResultScreen.js b/App/FollowApp/src/screens/ClothSearch/ResultScreen.js
index 901156d..da0fe8e 100644
--- a/App/FollowApp/src/screens/ClothSearch/ResultScreen.js
+++ b/App/FollowApp/src/screens/ClothSearch/ResultScreen.js
@@ -1,7 +1,156 @@
-const ClothSearchResultScreen = () => {
+import React from 'react';
+import {Text, Image, Linking} from 'react-native';
+import styled from 'styled-components/native';
+import {Header} from '../../components/HomeScreen/CardViewComponents';
+
+const Container = styled.SafeAreaView`
+ flex: 1;
+`;
+const ScrollView = styled.ScrollView``;
+
+const List = styled.TouchableOpacity`
+ margin: 10px;
+ padding: 10px;
+ flex-direction: row;
+ flex: 1;
+`;
+const TextView = styled.View`
+ padding: 5px;
+ justify-content: center;
+ background-color: #f2f2f2;
+ flex: 1;
+`;
+const ImageContainer = styled.View``;
+
+const ResultScreen = () => {
return (
- null
+
+
+
+
+ Linking.openURL(
+ 'https://lookple.com/product/detail.html?product_no=4095&cafe_mkt=google_dy&gclid=CjwKCAjwyIKJBhBPEiwAu7zll2E292-a_nNF3Wjn-053e98ZwDrRmrp_68LuejpvtZS7UzyqR8-3dhoC3BoQAvD_BwE',
+ )
+ }>
+
+
+
+
+ {'룩 헤미트 777 럭키 데님팬츠'}
+
+
+ {'₩ 39,000'}
+
+
+ {'룩플'}
+
+
+
+
+ Linking.openURL(
+ 'https://www.29cm.co.kr/product/607399?utm_source=google&utm_medium=display&utm_campaign=conversion_googleshopping&utm_content=607399&BSCPN=CMCOM&BSPRG=GASA&BSCCN1=googleshopping_607399&gclid=CjwKCAjwyIKJBhBPEiwAu7zllxInMnKZOxByJeVm_Pnh2SHjKeHcupcMh-HxxnbqZucU4D00UHoirRoCr4kQAvD_BwE',
+ )
+ }>
+
+
+
+ {'플레인 아이스 라이트 블루 워싱 와이드'}
+
+
+ {'₩ 61,600'}
+
+
+ {'인로우스'}
+
+
+
+
+ Linking.openURL(
+ 'https://lookple.com/product/detail.html?product_no=2017&cafe_mkt=google_dy&gclid=CjwKCAjwyIKJBhBPEiwAu7zll_V069A5WEVqG0EnjTujsC_FzbWiiLszGMMpyqfbM5FGnO5Brwb_6xoC6LUQAvD_BwE',
+ )
+ }>
+
+
+
+ {'룩 우스피 세미와이드데님'}
+
+
+ {'₩ 33,000'}
+
+
+ {'룩플'}
+
+
+
+
+
);
};
-export default ClothSearchResultScreen;
+export default ResultScreen;
diff --git a/App/FollowApp/src/screens/HomeScreen.js b/App/FollowApp/src/screens/HomeScreen.js
index 6314973..90e2a49 100644
--- a/App/FollowApp/src/screens/HomeScreen.js
+++ b/App/FollowApp/src/screens/HomeScreen.js
@@ -1,7 +1,31 @@
+import React from 'react';
+import styled from 'styled-components/native';
+import {Header, CardView} from '../components/HomeScreen/CardViewComponents';
+import {MyClothData} from '../data/HomeScreenData';
+
+const Container = styled.SafeAreaView`
+ flex: 1;
+`;
+
+const StyledText = styled.Text``;
+
+const ScrollViewContainer = styled.ScrollView`
+ flex: 1;
+ flex-direction: column;
+ width: 100%;
+`;
+
const HomeScreen = () => {
return (
- null
+
+
+
+ {MyClothData.map((data, id) => (
+
+ ))}
+
+
);
-}
+};
export default HomeScreen;
diff --git a/App/FollowApp/src/screens/LoginScreen.js b/App/FollowApp/src/screens/LoginScreen.js
index 2802e41..775e4d5 100644
--- a/App/FollowApp/src/screens/LoginScreen.js
+++ b/App/FollowApp/src/screens/LoginScreen.js
@@ -1,7 +1,67 @@
+import React, { useState, useRef, useContext, useEffect } from 'react';
+import { Text } from 'react-native';
+import { KeyboardAwareScrollView } from 'react-native-keyboard-aware-scroll-view';
+import styled from 'styled-components';
+import PressableButton from '../components/buttons/PressableButton';
+import { UserContext } from '../context/UserContext';
+import InputArea from './../components/InputArea';
+import {Header} from '../components/HomeScreen/CardViewComponents';
+const Container = styled.View`
+ flex: 1;
+ justify-content: center;
+ align-items: center;
+`;
+
+/**
+ * 로그인 버튼 터치 콜백
+ */
+const onLoginButtonPressed = (userId, password, callback) => {
+ callback(true, userId, password);
+};
+
const LoginScreen = () => {
+ const [userId, setUserId] = useState('');
+ const [password, setPassword] = useState('');
+ const [disabled, setDisabled] = useState(true);
+ const passwordRef = useRef();
+ const userDispatch = useContext(UserContext).dispatch;
+ useEffect(() => {
+ setDisabled(!(userId && password));
+ }, [userId, password]);
+
+ const containerStyle = { flex: 1 };
+
return (
- null
+
+
+
+ Hi This is Login Page😃
+ setUserId(text)}
+ placeholder="User Id"
+ returnKeyType="next"
+ />
+ setPassword(text)}
+ placeholder="Password"
+ returnKeyType="done"
+ isPassword
+ />
+
+ onLoginButtonPressed(userId, password, userDispatch)
+ }
+ disabled={disabled}
+ />
+
+
);
-}
+};
export default LoginScreen;
diff --git a/App/FollowApp/src/screens/MyCloset/GridImage.js b/App/FollowApp/src/screens/MyCloset/GridImage.js
new file mode 100644
index 0000000..e39e3af
--- /dev/null
+++ b/App/FollowApp/src/screens/MyCloset/GridImage.js
@@ -0,0 +1,41 @@
+import React, {useState} from 'react';
+import {StyleSheet, View, Image, Text, TouchableOpacity} from 'react-native';
+import {Avatar} from 'react-native-elements/dist/avatar/Avatar';
+import {AvatarConsumer} from '../../context/avatar/AvatarSelectedContext';
+const GridImage = props => {
+ const modifyState = () => {
+ props.setRecentPicture(props.id);
+ props.setModalVisible(true);
+ };
+ return (
+
+ {({state, actions}) => (
+ {
+ modifyState();
+ actions.setAvatar(props.source);
+ }}
+ style={styles.thumbnailContainer}>
+
+
+ )}
+
+ );
+};
+
+const styles = StyleSheet.create({
+ thumbnailContainer: {
+ flex: 1,
+ },
+ imageThumbnail: {
+ height: '100%',
+ width: '100%',
+ flex: 1,
+ },
+});
+
+export default GridImage;
diff --git a/App/FollowApp/src/screens/MyCloset/MyAvatar.js b/App/FollowApp/src/screens/MyCloset/MyAvatar.js
index b8df1b1..fc44a08 100644
--- a/App/FollowApp/src/screens/MyCloset/MyAvatar.js
+++ b/App/FollowApp/src/screens/MyCloset/MyAvatar.js
@@ -1,7 +1,117 @@
-const MyAvatarScreen = () => {
+import React, {useState} from 'react';
+import styled from 'styled-components/native';
+import {View, Text, Image} from 'react-native';
+import Buttons from '../../components/buttons/Button';
+import {Header} from '../../components/HomeScreen/CardViewComponents';
+import {
+ AvatarConsumer,
+ AvatarProvider,
+} from '../../context/avatar/AvatarSelectedContext';
+
+const MyAvatarScreen = function ({navigation}) {
+ console.log('this is my avatar');
+ const [, updateThis] = useState();
+ const GalleryIcon = () => {
+ return (
+
+
+
+
+
+
+
+
+
+ );
+ };
+
+ const SelectedImage = styled.Image`
+ flex: 1;
+ resize-mode: contain;
+ `;
return (
- null
+
+
+ {({state, actions}) => {
+ return (
+
+
+
+ navigation.navigate('MyAvatarPick', {
+ myAvatarObject: updateThis,
+ dispatchAvatar: actions.setAvatar,
+ })
+ }>
+ {state.avatar === '' ? (
+
+ ) : (
+
+ )}
+
+
+ alert('아바타 변경 완료')}
+ />
+
+
+ );
+ }}
+
+
);
};
+const Container = styled.SafeAreaView`
+ flex: 1;
+ justify-content: center;
+ align-items: center;
+ background-color: white;
+`;
+
+const ChooseAvatar = styled.TouchableOpacity`
+ flex: 1;
+ justify-content: center;
+ align-items: center;
+ background-color: #f5fcff;
+ border: 1px;
+`;
+
+const ContainerPicture = styled.View`
+ flex-direction: row;
+ align-items: center;
+`;
+
+const PictureBox = styled.View`
+ flex: 1;
+ justify-content: center;
+ align-items: center;
+`;
+
+const MidLine = styled.View`
+ align-self: center;
+ border: 1px;
+ height: 50px;
+ color: #000000;
+`;
+
+const ButtonBox = styled.View`
+ flex: 0.4;
+ align-items: flex-end;
+ flex-direction: row;
+`;
+
export default MyAvatarScreen;
diff --git a/App/FollowApp/src/screens/MyCloset/MyAvatarPick.js b/App/FollowApp/src/screens/MyCloset/MyAvatarPick.js
new file mode 100644
index 0000000..2e6f40b
--- /dev/null
+++ b/App/FollowApp/src/screens/MyCloset/MyAvatarPick.js
@@ -0,0 +1,130 @@
+import React, {useState, useContext} from 'react';
+import styled from 'styled-components/native';
+import ImageViewer from 'react-native-image-zoom-viewer';
+import GridImage from './GridImage';
+import Buttons from '../../components/buttons/Button';
+import GalleryContext from '../../context/GalleryContext';
+import {Header} from '../../components/HomeScreen/CardViewComponents';
+import {
+ AvatarConsumer,
+ AvatarProvider,
+} from '../../context/avatar/AvatarSelectedContext';
+import {Alert} from 'react-native';
+
+let countable = 0;
+
+const MyAvatarScreenPick = ({navigation, route, props}) => {
+ const [modalVisible, setModalVisible] = useState(false);
+ const [recentPicture, setRecentPicture] = useState(0);
+ const images = useContext(GalleryContext.AvatarImgContext);
+
+ let GridImages = [];
+ for (let i = 0; i < images.length / 2; i++) {
+ GridImages.push(
+
+
+
+ ,
+ );
+ }
+
+ return (
+
+
+ {({state}) => (
+
+
+
+
+ setRecentPicture(id)}
+ />
+
+
+ {
+ setModalVisible(false);
+ }}
+ />
+
+
+ {GridImages}
+
+ {
+ if (state.avatar === '') {
+ Alert.alert('선택된 사진이 없습니다.');
+ } else {
+ navigation.navigate('MyAvatar');
+ route.params.dispatchAvatar(state.avatar);
+ route.params.myAvatarObject(
+ countable++,
+ );
+ }
+ }}
+ />
+
+
+ )}
+
+
+ );
+};
+
+const Container = styled.SafeAreaView`
+ flex: 1;
+ background-color: white;
+ margin-top: 1px;
+`;
+
+const AvatarModal = styled.Modal`
+ background-color: black;
+ justify-content: center;
+`;
+
+const GridContainer = styled.View`
+ flex: 4;
+ flex-direction: column;
+ margin: 0.5px;
+ border: 1px solid black;
+`;
+
+const GridView = styled.View`
+ flex: 1;
+ flex-direction: row;
+`;
+
+const ImageViewerContainer = styled.View`
+ flex: 4;
+ background-color: black;
+`;
+
+const ChooseImageButton1 = styled.View`
+ flex: 0.5;
+ flex-direction: row;
+ justify-content: center;
+ background-color: white;
+`;
+
+const ChooseImageButton2 = styled.View`
+ flex: 1;
+ flex-direction: row;
+ justify-content: center;
+ background-color: black;
+`;
+
+export default MyAvatarScreenPick;
diff --git a/App/FollowApp/src/screens/MyCloset/MyClosetScreen.js b/App/FollowApp/src/screens/MyCloset/MyClosetScreen.js
index 2556cf7..f85de87 100644
--- a/App/FollowApp/src/screens/MyCloset/MyClosetScreen.js
+++ b/App/FollowApp/src/screens/MyCloset/MyClosetScreen.js
@@ -1,7 +1,107 @@
-const MyClosetScreen = () => {
+import React from 'react';
+import {StyleSheet, View, Image, Text, TouchableOpacity} from 'react-native';
+import styled from 'styled-components';
+import {Header} from '../../components/HomeScreen/CardViewComponents';
+
+function MyClosetScreen({navigation}) {
return (
- null
+
+
+
+
+
+
+
+ 주돌이
+
+ jkworldchampion@gamil.com
+
+ navigation.navigate('MyClothes')}>
+ MyCloth
+
+ navigation.navigate('MyLook')}>
+ MyLook
+
+
+
+ navigation.navigate('MyAvatar')}>
+ MyAvatar
+
+ navigation.navigate('TryOn')}>
+ TryOn
+
+
+
);
-};
+}
+
+const ProfileContainer = styled.View`
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ align-items: center;
+ justify-content: center;
+`;
+const ProfileImage = styled.Image`
+ width: 110px;
+ height: 110px;
+ position: absolute;
+`;
+
+const styles = StyleSheet.create({
+ boxButton: {
+ justifyContent: 'flex-start',
+ backgroundColor: 'black',
+ padding: 0,
+ marginTop: 40,
+ borderRadius: 13,
+ width: 170,
+ height: 150,
+ },
+ upBox: {
+ width: '100%',
+ height: '15%',
+ backgroundColor: 'black',
+ },
+ boxText: {
+ fontSize: 16.5,
+ textAlign: 'center',
+ marginTop: 60,
+ color: 'white',
+ },
+ nameText: {
+ marginTop: 60,
+ textAlign: 'center',
+ fontWeight: 'bold',
+ fontSize: 20,
+ color: 'black',
+ },
+ emailText: {
+ marginTop: 10,
+ textAlign: 'center',
+ fontWeight: 'normal',
+ fontSize: 15,
+ color: 'black',
+ },
+});
export default MyClosetScreen;
diff --git a/App/FollowApp/src/screens/MyCloset/MyCloth.js b/App/FollowApp/src/screens/MyCloset/MyCloth.js
index 37e1d23..3efc9fb 100644
--- a/App/FollowApp/src/screens/MyCloset/MyCloth.js
+++ b/App/FollowApp/src/screens/MyCloset/MyCloth.js
@@ -1,7 +1,15 @@
-import MyAvatarScreen from "./MyAvatar"
-import MyClosetScreen from "./MyClosetScreen"
-import MyLookScreen from "./MyLookScreen"
-import TryOnScreen from "./TryOnScreen"
-import MyClothesScreen from "./MyClothesScreen"
+import MyAvatarScreen from './MyAvatar';
+import MyClosetScreen from './MyClosetScreen';
+import MyAvatarPick from './MyAvatarPick';
+import MyLookScreen from './MyLook/MyLookScreen';
+import TryOnScreen from './TryOnScreen';
+import MyClothesScreen from './MyClothesScreen';
-export default { MyAvatarScreen, MyClosetScreen, MyLookScreen, TryOnScreen, MyClothesScreen };
+export default {
+ MyAvatarScreen,
+ MyAvatarPick,
+ MyClosetScreen,
+ MyLookScreen,
+ TryOnScreen,
+ MyClothesScreen,
+};
diff --git a/App/FollowApp/src/screens/MyCloset/MyClothesScreen.js b/App/FollowApp/src/screens/MyCloset/MyClothesScreen.js
index bb98098..f99c6e6 100644
--- a/App/FollowApp/src/screens/MyCloset/MyClothesScreen.js
+++ b/App/FollowApp/src/screens/MyCloset/MyClothesScreen.js
@@ -1,7 +1,46 @@
+import React, {useState} from 'react';
+import {View} from 'react-native';
+import styled from 'styled-components/native';
+import SegmentedControlTab from 'react-native-segmented-control-tab';
+import {MyClosetProvider} from '../../context/MyClosetContext';
+import AllClothesImageLoader from '../../components/MyClothesScreen/AllClothesContextLoader';
+import TypeContextLoader from '../../components/MyClothesScreen/TypeContextLoader';
+import ColorContextLoader from '../../components/MyClothesScreen/ColorContextLoader';
+import {Header} from '../../components/HomeScreen/CardViewComponents';
+const Container = styled.SafeAreaView`
+ flex: 1;
+ align-items: center;
+`;
+
+const ClothesContainer = styled.View``;
+
const MyClothesScreen = () => {
+ const [selectedIndex, setSelectedIndex] = useState(0);
+ const handleSingleIndexSelect = index => {
+ // For single Tab Selection SegmentedControlTab
+ setSelectedIndex(index);
+ };
return (
- null
+
+
+
+
+
+
+
+ {selectedIndex === 0 && }
+ {selectedIndex === 1 && }
+ {selectedIndex === 2 && }
+
+
+
);
};
-
export default MyClothesScreen;
diff --git a/App/FollowApp/src/screens/MyCloset/MyLook/LookDetail.js b/App/FollowApp/src/screens/MyCloset/MyLook/LookDetail.js
new file mode 100644
index 0000000..17050b2
--- /dev/null
+++ b/App/FollowApp/src/screens/MyCloset/MyLook/LookDetail.js
@@ -0,0 +1,88 @@
+import React from 'react';
+import {ScrollView} from 'react-native';
+import styled from 'styled-components';
+
+/**
+ * 옷 담는 컨테이너 박스
+ * @param {Cloth} Cloth객체
+ */
+const ClothBox = ({cloth}) => {
+ const ImageContainer = styled.TouchableOpacity`
+ height: 200px;
+ width: 200px;
+ `;
+
+ const ClothImage = styled.Image`
+ height: 200px;
+ width: 200px;
+ `;
+ const ClothBoxContainer = styled.View`
+ align-items: center;
+ margin-top: 20px;
+ `;
+ const DescriptionText = styled.Text`
+ font-weight: bold;
+ font-size: 15px;
+ `;
+ return (
+
+
+
+
+ {cloth.name}
+
+ );
+};
+
+const TextBox = ({text}) => {
+ const Container = styled.View`
+ padding-left: 10px;
+ padding-right: 10px;
+ height: 35px;
+ background-color: ${({theme}) => theme.LookDetail.background};
+ align-items: center;
+ justify-content: center;
+ margin: 0 auto;
+ `;
+ const InnerText = styled.Text`
+ font-size: 17px;
+ font-weight: bold;
+ color: white;
+ `;
+ return (
+
+ {text}
+
+ );
+};
+
+/**
+ * LookDetail Screen Component
+ * @param {*} route
+ */
+const LookDetail = ({route}) => {
+ const Container = styled.View`
+ margin-bottom: 20px;
+ `;
+ const LookCombination = styled.View`
+ margin-top: 40px;
+ `;
+
+ const {top, bottom} = route.params;
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+};
+
+export default LookDetail;
diff --git a/App/FollowApp/src/screens/MyCloset/MyLook/MyLook.js b/App/FollowApp/src/screens/MyCloset/MyLook/MyLook.js
new file mode 100644
index 0000000..4489dda
--- /dev/null
+++ b/App/FollowApp/src/screens/MyCloset/MyLook/MyLook.js
@@ -0,0 +1,87 @@
+import React, {useContext, useState} from 'react';
+import {FlatList} from 'react-native';
+import {SearchBar} from 'react-native-elements';
+import styled from 'styled-components';
+import {MyLookContext} from '../../../context/MyLookContext';
+import {Header} from '../../../components/HomeScreen/CardViewComponents';
+
+const Container = styled.View`
+ flex: 1;
+`;
+
+const LookBox = ({item, navigation}) => {
+ const LookContainer = styled.TouchableOpacity`
+ margin: 10px auto;
+ height: 120px;
+ width: 90%;
+ background-color: ${({theme}) => theme.LookBox.background};
+ border-radius: 5px;
+ flex-direction: row;
+ align-items: center;
+ justify-content: flex-start;
+ `;
+
+ const ImageContainer = styled.View`
+ margin-left: 10px;
+ height: 100px;
+ width: 100px;
+ `;
+
+ const TitleContainer = styled.View`
+ flex: 1;
+ margin-left: 15px;
+ `;
+ const TitleText = styled.Text`
+ font-weight: bold;
+ font-size: 17px;
+ `;
+ const ClothImage = styled.Image`
+ height: 100px;
+ width: 100px;
+ `;
+
+ return (
+ {
+ navigation.navigate('MyLookDetail', {
+ top: item.top,
+ bottom: item.bottom,
+ });
+ }}>
+
+
+
+
+ {item.name}
+
+
+ );
+};
+
+const MyLook = ({navigation}) => {
+ const [searchVal, setSearchVal] = useState('');
+ const lookListContext = useContext(MyLookContext);
+
+ const renderItem = ({item}) => {
+ return ;
+ };
+ return (
+
+
+
+ item.id}
+ />
+
+ );
+};
+
+export default MyLook;
diff --git a/App/FollowApp/src/screens/MyCloset/MyLook/MyLookScreen.js b/App/FollowApp/src/screens/MyCloset/MyLook/MyLookScreen.js
new file mode 100644
index 0000000..6825411
--- /dev/null
+++ b/App/FollowApp/src/screens/MyCloset/MyLook/MyLookScreen.js
@@ -0,0 +1,13 @@
+import React from 'react';
+import MyLook from './MyLook';
+import {MyLookProvider} from '../../../context/MyLookContext';
+
+const MyLookScreen = ({navigation}) => {
+ return (
+
+
+
+ );
+};
+
+export default MyLookScreen;
diff --git a/App/FollowApp/src/screens/MyCloset/MyLookScreen.js b/App/FollowApp/src/screens/MyCloset/MyLookScreen.js
deleted file mode 100644
index 84c3655..0000000
--- a/App/FollowApp/src/screens/MyCloset/MyLookScreen.js
+++ /dev/null
@@ -1,7 +0,0 @@
-const MyLookScreen = () => {
- return (
- null
- );
-};
-
-export default MyLookScreen;
diff --git a/App/FollowApp/src/screens/MyCloset/TryOnScreen.js b/App/FollowApp/src/screens/MyCloset/TryOnScreen.js
index c9e238c..b156e7f 100644
--- a/App/FollowApp/src/screens/MyCloset/TryOnScreen.js
+++ b/App/FollowApp/src/screens/MyCloset/TryOnScreen.js
@@ -1,6 +1,154 @@
-const TryOnScreen = () => {
+import React, {useState} from 'react';
+import {Image, Dimensions} from 'react-native';
+import styled from 'styled-components/native';
+import Buttons from '../../components/buttons/Button';
+import MyTopModal from '../../components/tryonScreen/bottomSheet/MyTopModal';
+import MyLooksModal from '../../components/tryonScreen/bottomSheet/MyLooksModal';
+import MyBottomModal from '../../components/tryonScreen/bottomSheet/MyBottomModal';
+import {
+ MySelectionConsumer,
+ MySelectionProvider,
+} from '../../context/MySelectionContext';
+import {Header} from '../../components/HomeScreen/CardViewComponents';
+
+const WindowHeight = Dimensions.get('window').height / 9;
+const Container = styled.SafeAreaView`
+ flex: 1;
+ align-items: center;
+`;
+const AvatarView = styled.View`
+ border-radius: 20px;
+ align-items: center;
+ justify-content: center;
+ width: 90%;
+ height: 50%;
+ border: 1px;
+ margin-bottom: ${WindowHeight}px;
+ margin-top: 10%;
+`;
+const ButtonContainer = styled.View`
+ flex-direction: row;
+`;
+
+function selectedAvartar(state) {
+ if (state.top.id === undefined) {
+ switch (state.bottom.id) {
+ case undefined:
+ return require('../../../asset/img/TryOn/Avatar/0_0.png');
+ case 'bottom1':
+ return require('../../../asset/img/TryOn/Avatar/0_1.png');
+ case 'bottom2':
+ return require('../../../asset/img/TryOn/Avatar/0_2.png');
+ case 'bottom3':
+ return require('../../../asset/img/TryOn/Avatar/0_3.png');
+ }
+ }
+
+ if (state.top.id === 'top1') {
+ switch (state.bottom.id) {
+ case undefined:
+ return require('../../../asset/img/TryOn/Avatar/1_0.png');
+ case 'bottom1':
+ return require('../../../asset/img/TryOn/Avatar/1_1.png');
+ case 'bottom2':
+ return require('../../../asset/img/TryOn/Avatar/1_2.png');
+ case 'bottom3':
+ return require('../../../asset/img/TryOn/Avatar/1_3.png');
+ }
+ }
+ if (state.top.id === 'top2') {
+ switch (state.bottom.id) {
+ case undefined:
+ return require('../../../asset/img/TryOn/Avatar/2_0.png');
+ case 'bottom1':
+ return require('../../../asset/img/TryOn/Avatar/2_1.png');
+ case 'bottom2':
+ return require('../../../asset/img/TryOn/Avatar/2_2.png');
+ case 'bottom3':
+ return require('../../../asset/img/TryOn/Avatar/2_3.png');
+ }
+ }
+ if (state.top.id === 'top3') {
+ switch (state.bottom.id) {
+ case undefined:
+ return require('../../../asset/img/TryOn/Avatar/3_0.png');
+ case 'bottom1':
+ return require('../../../asset/img/TryOn/Avatar/3_1.png');
+ case 'bottom2':
+ return require('../../../asset/img/TryOn/Avatar/3_2.png');
+ case 'bottom3':
+ return require('../../../asset/img/TryOn/Avatar/3_3.png');
+ }
+ }
+}
+
+const TryOnScreen = ({props}) => {
+ const [modalTopVisible, setModalTopVisible] = useState(false);
+ const [modalBottomVisible, setModalBottomVisible] = useState(false);
+ const [modalLookVisible, setModalLookVisible] = useState(false);
+
+ const pressMyTopButton = () => {
+ setModalTopVisible(true);
+ };
+ const pressMyButtomButton = () => {
+ setModalBottomVisible(true);
+ };
+ const pressMyLooksButton = () => {
+ setModalLookVisible(true);
+ };
+
return (
- null
+
+
+ {({state, actions}) => (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {
+ actions.setTop('undefined');
+ actions.setBottom('undefined');
+ }}
+ />
+
+
+
+ )}
+
+
);
};
diff --git a/App/FollowApp/src/screens/SettingScreen.js b/App/FollowApp/src/screens/SettingScreen.js
index 7b654f4..80331d6 100644
--- a/App/FollowApp/src/screens/SettingScreen.js
+++ b/App/FollowApp/src/screens/SettingScreen.js
@@ -1,7 +1,8 @@
+import React from 'react';
+import {Text} from 'react-native';
+
const SettingScreen = () => {
- return (
- null
- );
+ return This is Setting Screen🤩;
};
export default SettingScreen;
diff --git a/App/FollowApp/src/theme.js b/App/FollowApp/src/theme.js
index 76cce66..8fb9d46 100644
--- a/App/FollowApp/src/theme.js
+++ b/App/FollowApp/src/theme.js
@@ -5,47 +5,32 @@ const colors = {
grey_1: '#a6a6a6',
red: '#e84118',
blue: '#3679fe',
- };
-
- export const theme = {
+};
+
+export const theme = {
background: colors.white,
text: colors.black,
errorText: colors.red,
-
- // Image Component
- imageBackground: colors.grey_0,
- imageButtonBackground: colors.grey_1,
- imageButtonIcon: colors.white,
-
- // Input Component
- label: colors.grey_1,
- inputPlaceholder: colors.grey_1,
- inputBorder: colors.grey_1,
- inputDisabledBackground: colors.grey_0,
-
- // Button Component
- buttonBackground: colors.blue,
- buttonTitle: colors.white,
- buttonUnfilledTitle: colors.blue,
- buttonLogout: colors.red,
-
- // Navigation
- headerTintColor: colors.black,
- tabActiveColor: colors.blue,
- tabInactiveColor: colors.grey_1,
-
- // Spinner
- spinnerBackground: colors.black,
- spinnerIndicator: colors.white,
-
- // List
- listBorder: colors.grey_0,
- listTime: colors.grey_1,
- listDescription: colors.grey_1,
- listIcon: colors.black,
-
- // GiftedChat
- sendButtonActivate: colors.blue,
- sendButtonInactivate: colors.grey_1,
- };
-
\ No newline at end of file
+ testColor: colors.black,
+
+ Button: {
+ color: colors.white,
+ background: colors.black,
+ title: colors.white,
+ unfilledTitle: colors.blue,
+ logout: colors.red,
+ },
+
+ Input: {
+ label: colors.grey_1,
+ placeholder: colors.grey_1,
+ border: colors.grey_1,
+ disabledBackground: colors.grey_0,
+ },
+ LookBox: {
+ background: '#D1E8ED',
+ },
+ LookDetail: {
+ background: 'black',
+ },
+};
diff --git a/App/FollowApp/yarn.lock b/App/FollowApp/yarn.lock
new file mode 100644
index 0000000..45b9c17
--- /dev/null
+++ b/App/FollowApp/yarn.lock
@@ -0,0 +1,7182 @@
+# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
+# yarn lockfile v1
+
+
+"@babel/cli@^7.14.8":
+ "integrity" "sha512-lcy6Lymft9Rpfqmrqdd4oTDdUx9ZwaAhAfywVrHG4771Pa6PPT0danJ1kDHBXYqh4HHSmIdA+nlmfxfxSDPtBg=="
+ "resolved" "https://registry.npmjs.org/@babel/cli/-/cli-7.14.8.tgz"
+ "version" "7.14.8"
+ dependencies:
+ "commander" "^4.0.1"
+ "convert-source-map" "^1.1.0"
+ "fs-readdir-recursive" "^1.1.0"
+ "glob" "^7.0.0"
+ "make-dir" "^2.1.0"
+ "slash" "^2.0.0"
+ "source-map" "^0.5.0"
+ optionalDependencies:
+ "@nicolo-ribaudo/chokidar-2" "2.1.8-no-fsevents.2"
+ "chokidar" "^3.4.0"
+
+"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.14.5":
+ "integrity" "sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw=="
+ "resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/highlight" "^7.14.5"
+
+"@babel/compat-data@^7.13.11", "@babel/compat-data@^7.14.5", "@babel/compat-data@^7.14.7":
+ "integrity" "sha512-nS6dZaISCXJ3+518CWiBfEr//gHyMO02uDxBkXTKZDN5POruCnOZ1N4YBRZDCabwF8nZMWBpRxIicmXtBs+fvw=="
+ "resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.14.7.tgz"
+ "version" "7.14.7"
+
+"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.1.0", "@babel/core@^7.1.6", "@babel/core@^7.14.8", "@babel/core@^7.4.0-0", "@babel/core@^7.7.5":
+ "integrity" "sha512-/AtaeEhT6ErpDhInbXmjHcUQXH0L0TEgscfcxk1qbOvLuKCa5aZT0SOOtDKFY96/CLROwbLSKyFor6idgNaU4Q=="
+ "resolved" "https://registry.npmjs.org/@babel/core/-/core-7.14.8.tgz"
+ "version" "7.14.8"
+ dependencies:
+ "@babel/code-frame" "^7.14.5"
+ "@babel/generator" "^7.14.8"
+ "@babel/helper-compilation-targets" "^7.14.5"
+ "@babel/helper-module-transforms" "^7.14.8"
+ "@babel/helpers" "^7.14.8"
+ "@babel/parser" "^7.14.8"
+ "@babel/template" "^7.14.5"
+ "@babel/traverse" "^7.14.8"
+ "@babel/types" "^7.14.8"
+ "convert-source-map" "^1.7.0"
+ "debug" "^4.1.0"
+ "gensync" "^1.0.0-beta.2"
+ "json5" "^2.1.2"
+ "semver" "^6.3.0"
+ "source-map" "^0.5.0"
+
+"@babel/generator@^7.14.8", "@babel/generator@^7.5.0":
+ "integrity" "sha512-cYDUpvIzhBVnMzRoY1fkSEhK/HmwEVwlyULYgn/tMQYd6Obag3ylCjONle3gdErfXBW61SVTlR9QR7uWlgeIkg=="
+ "resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.14.8.tgz"
+ "version" "7.14.8"
+ dependencies:
+ "@babel/types" "^7.14.8"
+ "jsesc" "^2.5.1"
+ "source-map" "^0.5.0"
+
+"@babel/helper-annotate-as-pure@^7.0.0", "@babel/helper-annotate-as-pure@^7.14.5":
+ "integrity" "sha512-EivH9EgBIb+G8ij1B2jAwSH36WnGvkQSEC6CkX/6v6ZFlw5fVOHvsgGF4uiEHO2GzMvunZb6tDLQEQSdrdocrA=="
+ "resolved" "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/types" "^7.14.5"
+
+"@babel/helper-builder-binary-assignment-operator-visitor@^7.14.5":
+ "integrity" "sha512-YTA/Twn0vBXDVGJuAX6PwW7x5zQei1luDDo2Pl6q1qZ7hVNl0RZrhHCQG/ArGpR29Vl7ETiB8eJyrvpuRp300w=="
+ "resolved" "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-explode-assignable-expression" "^7.14.5"
+ "@babel/types" "^7.14.5"
+
+"@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.14.5":
+ "integrity" "sha512-v+QtZqXEiOnpO6EYvlImB6zCD2Lel06RzOPzmkz/D/XgQiUu3C/Jb1LOqSt/AIA34TYi/Q+KlT8vTQrgdxkbLw=="
+ "resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/compat-data" "^7.14.5"
+ "@babel/helper-validator-option" "^7.14.5"
+ "browserslist" "^4.16.6"
+ "semver" "^6.3.0"
+
+"@babel/helper-create-class-features-plugin@^7.14.5", "@babel/helper-create-class-features-plugin@^7.14.6":
+ "integrity" "sha512-bpYvH8zJBWzeqi1o+co8qOrw+EXzQ/0c74gVmY205AWXy9nifHrOg77y+1zwxX5lXE7Icq4sPlSQ4O2kWBrteQ=="
+ "resolved" "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.8.tgz"
+ "version" "7.14.8"
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.14.5"
+ "@babel/helper-function-name" "^7.14.5"
+ "@babel/helper-member-expression-to-functions" "^7.14.7"
+ "@babel/helper-optimise-call-expression" "^7.14.5"
+ "@babel/helper-replace-supers" "^7.14.5"
+ "@babel/helper-split-export-declaration" "^7.14.5"
+
+"@babel/helper-create-regexp-features-plugin@^7.14.5":
+ "integrity" "sha512-TLawwqpOErY2HhWbGJ2nZT5wSkR192QpN+nBg1THfBfftrlvOh+WbhrxXCH4q4xJ9Gl16BGPR/48JA+Ryiho/A=="
+ "resolved" "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.14.5"
+ "regexpu-core" "^4.7.1"
+
+"@babel/helper-define-polyfill-provider@^0.2.2":
+ "integrity" "sha512-RH3QDAfRMzj7+0Nqu5oqgO5q9mFtQEVvCRsi8qCEfzLR9p2BHfn5FzhSB2oj1fF7I2+DcTORkYaQ6aTR9Cofew=="
+ "resolved" "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.3.tgz"
+ "version" "0.2.3"
+ dependencies:
+ "@babel/helper-compilation-targets" "^7.13.0"
+ "@babel/helper-module-imports" "^7.12.13"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/traverse" "^7.13.0"
+ "debug" "^4.1.1"
+ "lodash.debounce" "^4.0.8"
+ "resolve" "^1.14.2"
+ "semver" "^6.1.2"
+
+"@babel/helper-explode-assignable-expression@^7.14.5":
+ "integrity" "sha512-Htb24gnGJdIGT4vnRKMdoXiOIlqOLmdiUYpAQ0mYfgVT/GDm8GOYhgi4GL+hMKrkiPRohO4ts34ELFsGAPQLDQ=="
+ "resolved" "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/types" "^7.14.5"
+
+"@babel/helper-function-name@^7.14.5":
+ "integrity" "sha512-Gjna0AsXWfFvrAuX+VKcN/aNNWonizBj39yGwUzVDVTlMYJMK2Wp6xdpy72mfArFq5uK+NOuexfzZlzI1z9+AQ=="
+ "resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-get-function-arity" "^7.14.5"
+ "@babel/template" "^7.14.5"
+ "@babel/types" "^7.14.5"
+
+"@babel/helper-get-function-arity@^7.14.5":
+ "integrity" "sha512-I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg=="
+ "resolved" "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/types" "^7.14.5"
+
+"@babel/helper-hoist-variables@^7.14.5":
+ "integrity" "sha512-R1PXiz31Uc0Vxy4OEOm07x0oSjKAdPPCh3tPivn/Eo8cvz6gveAeuyUUPB21Hoiif0uoPQSSdhIPS3352nvdyQ=="
+ "resolved" "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/types" "^7.14.5"
+
+"@babel/helper-member-expression-to-functions@^7.14.5", "@babel/helper-member-expression-to-functions@^7.14.7":
+ "integrity" "sha512-TMUt4xKxJn6ccjcOW7c4hlwyJArizskAhoSTOCkA0uZ+KghIaci0Qg9R043kUMWI9mtQfgny+NQ5QATnZ+paaA=="
+ "resolved" "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.14.7.tgz"
+ "version" "7.14.7"
+ dependencies:
+ "@babel/types" "^7.14.5"
+
+"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.14.5":
+ "integrity" "sha512-SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ=="
+ "resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/types" "^7.14.5"
+
+"@babel/helper-module-transforms@^7.14.5", "@babel/helper-module-transforms@^7.14.8":
+ "integrity" "sha512-RyE+NFOjXn5A9YU1dkpeBaduagTlZ0+fccnIcAGbv1KGUlReBj7utF7oEth8IdIBQPcux0DDgW5MFBH2xu9KcA=="
+ "resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.14.8.tgz"
+ "version" "7.14.8"
+ dependencies:
+ "@babel/helper-module-imports" "^7.14.5"
+ "@babel/helper-replace-supers" "^7.14.5"
+ "@babel/helper-simple-access" "^7.14.8"
+ "@babel/helper-split-export-declaration" "^7.14.5"
+ "@babel/helper-validator-identifier" "^7.14.8"
+ "@babel/template" "^7.14.5"
+ "@babel/traverse" "^7.14.8"
+ "@babel/types" "^7.14.8"
+
+"@babel/helper-optimise-call-expression@^7.14.5":
+ "integrity" "sha512-IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA=="
+ "resolved" "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/types" "^7.14.5"
+
+"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.8.0":
+ "integrity" "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ=="
+ "resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz"
+ "version" "7.14.5"
+
+"@babel/helper-replace-supers@^7.14.5":
+ "integrity" "sha512-3i1Qe9/8x/hCHINujn+iuHy+mMRLoc77b2nI9TB0zjH1hvn9qGlXjWlggdwUcju36PkPCy/lpM7LLUdcTyH4Ow=="
+ "resolved" "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-member-expression-to-functions" "^7.14.5"
+ "@babel/helper-optimise-call-expression" "^7.14.5"
+ "@babel/traverse" "^7.14.5"
+ "@babel/types" "^7.14.5"
+
+"@babel/helper-simple-access@^7.14.5", "@babel/helper-simple-access@^7.14.8":
+ "integrity" "sha512-TrFN4RHh9gnWEU+s7JloIho2T76GPwRHhdzOWLqTrMnlas8T9O7ec+oEDNsRXndOmru9ymH9DFrEOxpzPoSbdg=="
+ "resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.14.8.tgz"
+ "version" "7.14.8"
+ dependencies:
+ "@babel/types" "^7.14.8"
+
+"@babel/helper-skip-transparent-expression-wrappers@^7.14.5":
+ "integrity" "sha512-dmqZB7mrb94PZSAOYtr+ZN5qt5owZIAgqtoTuqiFbHFtxgEcmQlRJVI+bO++fciBunXtB6MK7HrzrfcAzIz2NQ=="
+ "resolved" "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/types" "^7.14.5"
+
+"@babel/helper-split-export-declaration@^7.14.5":
+ "integrity" "sha512-hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA=="
+ "resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/types" "^7.14.5"
+
+"@babel/helper-validator-identifier@^7.14.5", "@babel/helper-validator-identifier@^7.14.8":
+ "integrity" "sha512-ZGy6/XQjllhYQrNw/3zfWRwZCTVSiBLZ9DHVZxn9n2gip/7ab8mv2TWlKPIBk26RwedCBoWdjLmn+t9na2Gcow=="
+ "resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.8.tgz"
+ "version" "7.14.8"
+
+"@babel/helper-validator-option@^7.14.5":
+ "integrity" "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow=="
+ "resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz"
+ "version" "7.14.5"
+
+"@babel/helpers@^7.14.8":
+ "integrity" "sha512-ZRDmI56pnV+p1dH6d+UN6GINGz7Krps3+270qqI9UJ4wxYThfAIcI5i7j5vXC4FJ3Wap+S9qcebxeYiqn87DZw=="
+ "resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.14.8.tgz"
+ "version" "7.14.8"
+ dependencies:
+ "@babel/template" "^7.14.5"
+ "@babel/traverse" "^7.14.8"
+ "@babel/types" "^7.14.8"
+
+"@babel/highlight@^7.14.5":
+ "integrity" "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg=="
+ "resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-validator-identifier" "^7.14.5"
+ "chalk" "^2.0.0"
+ "js-tokens" "^4.0.0"
+
+"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.1.6", "@babel/parser@^7.14.5", "@babel/parser@^7.14.8", "@babel/parser@^7.7.0":
+ "integrity" "sha512-syoCQFOoo/fzkWDeM0dLEZi5xqurb5vuyzwIMNZRNun+N/9A4cUZeQaE7dTrB8jGaKuJRBtEOajtnmw0I5hvvA=="
+ "resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.14.8.tgz"
+ "version" "7.14.8"
+
+"@babel/plugin-proposal-class-properties@^7.0.0", "@babel/plugin-proposal-class-properties@^7.1.0":
+ "integrity" "sha512-q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.14.5"
+ "@babel/helper-plugin-utils" "^7.14.5"
+
+"@babel/plugin-proposal-export-default-from@^7.0.0":
+ "integrity" "sha512-T8KZ5abXvKMjF6JcoXjgac3ElmXf0AWzJwi2O/42Jk+HmCky3D9+i1B7NPP1FblyceqTevKeV/9szeikFoaMDg=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+ "@babel/plugin-syntax-export-default-from" "^7.14.5"
+
+"@babel/plugin-proposal-nullish-coalescing-operator@^7.0.0", "@babel/plugin-proposal-nullish-coalescing-operator@^7.1.0":
+ "integrity" "sha512-gun/SOnMqjSb98Nkaq2rTKMwervfdAoz6NphdY0vTfuzMfryj+tDGb2n6UkDKwez+Y8PZDhE3D143v6Gepp4Hg=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+ "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
+
+"@babel/plugin-proposal-object-rest-spread@^7.0.0":
+ "integrity" "sha512-082hsZz+sVabfmDWo1Oct1u1AgbKbUAyVgmX4otIc7bdsRgHBXwTwb3DpDmD4Eyyx6DNiuz5UAATT655k+kL5g=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.7.tgz"
+ "version" "7.14.7"
+ dependencies:
+ "@babel/compat-data" "^7.14.7"
+ "@babel/helper-compilation-targets" "^7.14.5"
+ "@babel/helper-plugin-utils" "^7.14.5"
+ "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
+ "@babel/plugin-transform-parameters" "^7.14.5"
+
+"@babel/plugin-proposal-optional-catch-binding@^7.0.0":
+ "integrity" "sha512-3Oyiixm0ur7bzO5ybNcZFlmVsygSIQgdOa7cTfOYCMY+wEPAYhZAJxi3mixKFCTCKUhQXuCTtQ1MzrpL3WT8ZQ=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+ "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
+
+"@babel/plugin-proposal-optional-chaining@^7.0.0", "@babel/plugin-proposal-optional-chaining@^7.1.0":
+ "integrity" "sha512-ycz+VOzo2UbWNI1rQXxIuMOzrDdHGrI23fRiz/Si2R4kv2XZQ1BK8ccdHwehMKBlcH/joGW/tzrUmo67gbJHlQ=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.14.5"
+ "@babel/plugin-syntax-optional-chaining" "^7.8.3"
+
+"@babel/plugin-syntax-async-generators@^7.8.4":
+ "integrity" "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz"
+ "version" "7.8.4"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-bigint@^7.8.3":
+ "integrity" "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz"
+ "version" "7.8.3"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-class-properties@^7.0.0", "@babel/plugin-syntax-class-properties@^7.8.3":
+ "integrity" "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz"
+ "version" "7.12.13"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-syntax-dynamic-import@^7.0.0":
+ "integrity" "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz"
+ "version" "7.8.3"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-export-default-from@^7.0.0", "@babel/plugin-syntax-export-default-from@^7.14.5":
+ "integrity" "sha512-snWDxjuaPEobRBnhpqEfZ8RMxDbHt8+87fiEioGuE+Uc0xAKgSD8QiuL3lF93hPVQfZFAcYwrrf+H5qUhike3Q=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+
+"@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.14.5", "@babel/plugin-syntax-flow@^7.2.0":
+ "integrity" "sha512-9WK5ZwKCdWHxVuU13XNT6X73FGmutAXeor5lGFq6qhOFtMFUF4jkbijuyUdZZlpYq6E2hZeZf/u3959X9wsv0Q=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+
+"@babel/plugin-syntax-import-meta@^7.8.3":
+ "integrity" "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz"
+ "version" "7.10.4"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-syntax-json-strings@^7.8.3":
+ "integrity" "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz"
+ "version" "7.8.3"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.14.5":
+ "integrity" "sha512-ohuFIsOMXJnbOMRfX7/w7LocdR6R7whhuRD4ax8IipLcLPlZGJKkBxgHp++U4N/vKyU16/YDQr2f5seajD3jIw=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+
+"@babel/plugin-syntax-logical-assignment-operators@^7.8.3":
+ "integrity" "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz"
+ "version" "7.10.4"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-syntax-nullish-coalescing-operator@^7.0.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
+ "integrity" "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz"
+ "version" "7.8.3"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-numeric-separator@^7.8.3":
+ "integrity" "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz"
+ "version" "7.10.4"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3":
+ "integrity" "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz"
+ "version" "7.8.3"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-optional-catch-binding@^7.8.3":
+ "integrity" "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz"
+ "version" "7.8.3"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-optional-chaining@^7.0.0", "@babel/plugin-syntax-optional-chaining@^7.8.3":
+ "integrity" "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz"
+ "version" "7.8.3"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-top-level-await@^7.8.3":
+ "integrity" "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+
+"@babel/plugin-syntax-typescript@^7.14.5":
+ "integrity" "sha512-u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+
+"@babel/plugin-transform-arrow-functions@^7.0.0":
+ "integrity" "sha512-KOnO0l4+tD5IfOdi4x8C1XmEIRWUjNRV8wc6K2vz/3e8yAOoZZvsRXRRIF/yo/MAOFb4QjtAw9xSxMXbSMRy8A=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+
+"@babel/plugin-transform-block-scoped-functions@^7.0.0":
+ "integrity" "sha512-dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+
+"@babel/plugin-transform-block-scoping@^7.0.0":
+ "integrity" "sha512-LBYm4ZocNgoCqyxMLoOnwpsmQ18HWTQvql64t3GvMUzLQrNoV1BDG0lNftC8QKYERkZgCCT/7J5xWGObGAyHDw=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+
+"@babel/plugin-transform-classes@^7.0.0":
+ "integrity" "sha512-J4VxKAMykM06K/64z9rwiL6xnBHgB1+FVspqvlgCdwD1KUbQNfszeKVVOMh59w3sztHYIZDgnhOC4WbdEfHFDA=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.14.5"
+ "@babel/helper-function-name" "^7.14.5"
+ "@babel/helper-optimise-call-expression" "^7.14.5"
+ "@babel/helper-plugin-utils" "^7.14.5"
+ "@babel/helper-replace-supers" "^7.14.5"
+ "@babel/helper-split-export-declaration" "^7.14.5"
+ "globals" "^11.1.0"
+
+"@babel/plugin-transform-computed-properties@^7.0.0":
+ "integrity" "sha512-pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+
+"@babel/plugin-transform-destructuring@^7.0.0":
+ "integrity" "sha512-0mDE99nK+kVh3xlc5vKwB6wnP9ecuSj+zQCa/n0voENtP/zymdT4HH6QEb65wjjcbqr1Jb/7z9Qp7TF5FtwYGw=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.7.tgz"
+ "version" "7.14.7"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+
+"@babel/plugin-transform-exponentiation-operator@^7.0.0":
+ "integrity" "sha512-jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-builder-binary-assignment-operator-visitor" "^7.14.5"
+ "@babel/helper-plugin-utils" "^7.14.5"
+
+"@babel/plugin-transform-flow-strip-types@^7.0.0", "@babel/plugin-transform-flow-strip-types@^7.14.5":
+ "integrity" "sha512-KhcolBKfXbvjwI3TV7r7TkYm8oNXHNBqGOy6JDVwtecFaRoKYsUUqJdS10q0YDKW1c6aZQgO+Ys3LfGkox8pXA=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+ "@babel/plugin-syntax-flow" "^7.14.5"
+
+"@babel/plugin-transform-for-of@^7.0.0":
+ "integrity" "sha512-CfmqxSUZzBl0rSjpoQSFoR9UEj3HzbGuGNL21/iFTmjb5gFggJp3ph0xR1YBhexmLoKRHzgxuFvty2xdSt6gTA=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+
+"@babel/plugin-transform-function-name@^7.0.0":
+ "integrity" "sha512-vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-function-name" "^7.14.5"
+ "@babel/helper-plugin-utils" "^7.14.5"
+
+"@babel/plugin-transform-literals@^7.0.0":
+ "integrity" "sha512-ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+
+"@babel/plugin-transform-member-expression-literals@^7.0.0":
+ "integrity" "sha512-WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+
+"@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.1.0":
+ "integrity" "sha512-en8GfBtgnydoao2PS+87mKyw62k02k7kJ9ltbKe0fXTHrQmG6QZZflYuGI1VVG7sVpx4E1n7KBpNlPb8m78J+A=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-module-transforms" "^7.14.5"
+ "@babel/helper-plugin-utils" "^7.14.5"
+ "@babel/helper-simple-access" "^7.14.5"
+ "babel-plugin-dynamic-import-node" "^2.3.3"
+
+"@babel/plugin-transform-object-assign@^7.0.0":
+ "integrity" "sha512-lvhjk4UN9xJJYB1mI5KC0/o1D5EcJXdbhVe+4fSk08D6ZN+iuAIs7LJC+71h8av9Ew4+uRq9452v9R93SFmQlQ=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+
+"@babel/plugin-transform-object-super@^7.0.0":
+ "integrity" "sha512-MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+ "@babel/helper-replace-supers" "^7.14.5"
+
+"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.14.5":
+ "integrity" "sha512-Tl7LWdr6HUxTmzQtzuU14SqbgrSKmaR77M0OKyq4njZLQTPfOvzblNKyNkGwOfEFCEx7KeYHQHDI0P3F02IVkA=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+
+"@babel/plugin-transform-property-literals@^7.0.0":
+ "integrity" "sha512-r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+
+"@babel/plugin-transform-react-display-name@^7.0.0":
+ "integrity" "sha512-07aqY1ChoPgIxsuDviptRpVkWCSbXWmzQqcgy65C6YSFOfPFvb/DX3bBRHh7pCd/PMEEYHYWUTSVkCbkVainYQ=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+
+"@babel/plugin-transform-react-jsx-self@^7.0.0":
+ "integrity" "sha512-M/fmDX6n0cfHK/NLTcPmrfVAORKDhK8tyjDhyxlUjYyPYYO8FRWwuxBA3WBx8kWN/uBUuwGa3s/0+hQ9JIN3Tg=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+
+"@babel/plugin-transform-react-jsx-source@^7.0.0":
+ "integrity" "sha512-1TpSDnD9XR/rQ2tzunBVPThF5poaYT9GqP+of8fAtguYuI/dm2RkrMBDemsxtY0XBzvW7nXjYM0hRyKX9QYj7Q=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+
+"@babel/plugin-transform-react-jsx@^7.0.0":
+ "integrity" "sha512-7RylxNeDnxc1OleDm0F5Q/BSL+whYRbOAR+bwgCxIr0L32v7UFh/pz1DLMZideAUxKT6eMoS2zQH6fyODLEi8Q=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.14.5"
+ "@babel/helper-module-imports" "^7.14.5"
+ "@babel/helper-plugin-utils" "^7.14.5"
+ "@babel/plugin-syntax-jsx" "^7.14.5"
+ "@babel/types" "^7.14.5"
+
+"@babel/plugin-transform-regenerator@^7.0.0":
+ "integrity" "sha512-NVIY1W3ITDP5xQl50NgTKlZ0GrotKtLna08/uGY6ErQt6VEQZXla86x/CTddm5gZdcr+5GSsvMeTmWA5Ii6pkg=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "regenerator-transform" "^0.14.2"
+
+"@babel/plugin-transform-runtime@^7.0.0":
+ "integrity" "sha512-fPMBhh1AV8ZyneiCIA+wYYUH1arzlXR1UMcApjvchDhfKxhy2r2lReJv8uHEyihi4IFIGlr1Pdx7S5fkESDQsg=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-module-imports" "^7.14.5"
+ "@babel/helper-plugin-utils" "^7.14.5"
+ "babel-plugin-polyfill-corejs2" "^0.2.2"
+ "babel-plugin-polyfill-corejs3" "^0.2.2"
+ "babel-plugin-polyfill-regenerator" "^0.2.2"
+ "semver" "^6.3.0"
+
+"@babel/plugin-transform-shorthand-properties@^7.0.0":
+ "integrity" "sha512-xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+
+"@babel/plugin-transform-spread@^7.0.0":
+ "integrity" "sha512-Zr0x0YroFJku7n7+/HH3A2eIrGMjbmAIbJSVv0IZ+t3U2WUQUA64S/oeied2e+MaGSjmt4alzBCsK9E8gh+fag=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.14.6.tgz"
+ "version" "7.14.6"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.14.5"
+
+"@babel/plugin-transform-sticky-regex@^7.0.0":
+ "integrity" "sha512-Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+
+"@babel/plugin-transform-template-literals@^7.0.0":
+ "integrity" "sha512-22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+
+"@babel/plugin-transform-typescript@^7.14.5", "@babel/plugin-transform-typescript@^7.5.0":
+ "integrity" "sha512-XlTdBq7Awr4FYIzqhmYY80WN0V0azF74DMPyFqVHBvf81ZUgc4X7ZOpx6O8eLDK6iM5cCQzeyJw0ynTaefixRA=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.14.6.tgz"
+ "version" "7.14.6"
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.14.6"
+ "@babel/helper-plugin-utils" "^7.14.5"
+ "@babel/plugin-syntax-typescript" "^7.14.5"
+
+"@babel/plugin-transform-unicode-regex@^7.0.0":
+ "integrity" "sha512-UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw=="
+ "resolved" "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.14.5"
+ "@babel/helper-plugin-utils" "^7.14.5"
+
+"@babel/preset-flow@^7.0.0", "@babel/preset-flow@^7.14.5":
+ "integrity" "sha512-pP5QEb4qRUSVGzzKx9xqRuHUrM/jEzMqdrZpdMA+oUCRgd5zM1qGr5y5+ZgAL/1tVv1H0dyk5t4SKJntqyiVtg=="
+ "resolved" "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+ "@babel/helper-validator-option" "^7.14.5"
+ "@babel/plugin-transform-flow-strip-types" "^7.14.5"
+
+"@babel/preset-typescript@^7.1.0":
+ "integrity" "sha512-u4zO6CdbRKbS9TypMqrlGH7sd2TAJppZwn3c/ZRLeO/wGsbddxgbPDUZVNrie3JWYLQ9vpineKlsrWFvO6Pwkw=="
+ "resolved" "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+ "@babel/helper-validator-option" "^7.14.5"
+ "@babel/plugin-transform-typescript" "^7.14.5"
+
+"@babel/register@^7.0.0":
+ "integrity" "sha512-TjJpGz/aDjFGWsItRBQMOFTrmTI9tr79CHOK+KIvLeCkbxuOAk2M5QHjvruIMGoo9OuccMh5euplPzc5FjAKGg=="
+ "resolved" "https://registry.npmjs.org/@babel/register/-/register-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "clone-deep" "^4.0.1"
+ "find-cache-dir" "^2.0.0"
+ "make-dir" "^2.1.0"
+ "pirates" "^4.0.0"
+ "source-map-support" "^0.5.16"
+
+"@babel/runtime@^7.12.5", "@babel/runtime@^7.8.4":
+ "integrity" "sha512-twj3L8Og5SaCRCErB4x4ajbvBIVV77CGeFglHpeg5WC5FF8TZzBWXtTJ4MqaD9QszLYTtr+IsaAL2rEUevb+eg=="
+ "resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.8.tgz"
+ "version" "7.14.8"
+ dependencies:
+ "regenerator-runtime" "^0.13.4"
+
+"@babel/template@^7.0.0", "@babel/template@^7.14.5", "@babel/template@^7.3.3":
+ "integrity" "sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g=="
+ "resolved" "https://registry.npmjs.org/@babel/template/-/template-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/code-frame" "^7.14.5"
+ "@babel/parser" "^7.14.5"
+ "@babel/types" "^7.14.5"
+
+"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.13.0", "@babel/traverse@^7.14.5", "@babel/traverse@^7.14.8", "@babel/traverse@^7.4.5", "@babel/traverse@^7.7.0", "@babel/traverse@^7.7.4":
+ "integrity" "sha512-kexHhzCljJcFNn1KYAQ6A5wxMRzq9ebYpEDV4+WdNyr3i7O44tanbDOR/xjiG2F3sllan+LgwK+7OMk0EmydHg=="
+ "resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.14.8.tgz"
+ "version" "7.14.8"
+ dependencies:
+ "@babel/code-frame" "^7.14.5"
+ "@babel/generator" "^7.14.8"
+ "@babel/helper-function-name" "^7.14.5"
+ "@babel/helper-hoist-variables" "^7.14.5"
+ "@babel/helper-split-export-declaration" "^7.14.5"
+ "@babel/parser" "^7.14.8"
+ "@babel/types" "^7.14.8"
+ "debug" "^4.1.0"
+ "globals" "^11.1.0"
+
+"@babel/types@^7.0.0", "@babel/types@^7.14.5", "@babel/types@^7.14.8", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.7.0":
+ "integrity" "sha512-iob4soQa7dZw8nodR/KlOQkPh9S4I8RwCxwRIFuiMRYjOzH/KJzdUfDgz6cGi5dDaclXF4P2PAhCdrBJNIg68Q=="
+ "resolved" "https://registry.npmjs.org/@babel/types/-/types-7.14.8.tgz"
+ "version" "7.14.8"
+ dependencies:
+ "@babel/helper-validator-identifier" "^7.14.8"
+ "to-fast-properties" "^2.0.0"
+
+"@bcoe/v8-coverage@^0.2.3":
+ "integrity" "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw=="
+ "resolved" "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz"
+ "version" "0.2.3"
+
+"@cnakazawa/watch@^1.0.3":
+ "integrity" "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ=="
+ "resolved" "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz"
+ "version" "1.0.4"
+ dependencies:
+ "exec-sh" "^0.3.2"
+ "minimist" "^1.2.0"
+
+"@egjs/hammerjs@^2.0.17":
+ "integrity" "sha512-XQsZgjm2EcVUiZQf11UBJQfmZeEmOW8DpI1gsFeln6w0ae0ii4dMQEQ0kjl6DspdWX1aGY1/loyXnP0JS06e/A=="
+ "resolved" "https://registry.npmjs.org/@egjs/hammerjs/-/hammerjs-2.0.17.tgz"
+ "version" "2.0.17"
+ dependencies:
+ "@types/hammerjs" "^2.0.36"
+
+"@emotion/is-prop-valid@^0.8.8":
+ "integrity" "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA=="
+ "resolved" "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz"
+ "version" "0.8.8"
+ dependencies:
+ "@emotion/memoize" "0.7.4"
+
+"@emotion/memoize@0.7.4":
+ "integrity" "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw=="
+ "resolved" "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz"
+ "version" "0.7.4"
+
+"@emotion/stylis@^0.8.4":
+ "integrity" "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ=="
+ "resolved" "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz"
+ "version" "0.8.5"
+
+"@emotion/unitless@^0.7.4":
+ "integrity" "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg=="
+ "resolved" "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz"
+ "version" "0.7.5"
+
+"@eslint/eslintrc@^0.2.1":
+ "integrity" "sha512-EfB5OHNYp1F4px/LI/FEnGylop7nOqkQ1LRzCM0KccA2U8tvV8w01KBv37LbO7nW4H+YhKyo2LcJhRwjjV17QQ=="
+ "resolved" "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.2.2.tgz"
+ "version" "0.2.2"
+ dependencies:
+ "ajv" "^6.12.4"
+ "debug" "^4.1.1"
+ "espree" "^7.3.0"
+ "globals" "^12.1.0"
+ "ignore" "^4.0.6"
+ "import-fresh" "^3.2.1"
+ "js-yaml" "^3.13.1"
+ "lodash" "^4.17.19"
+ "minimatch" "^3.0.4"
+ "strip-json-comments" "^3.1.1"
+
+"@hapi/hoek@^9.0.0":
+ "integrity" "sha512-sqKVVVOe5ivCaXDWivIJYVSaEgdQK9ul7a4Kity5Iw7u9+wBAPbX1RMSnLLmp7O4Vzj0WOWwMAJsTL00xwaNug=="
+ "resolved" "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.2.0.tgz"
+ "version" "9.2.0"
+
+"@hapi/topo@^5.0.0":
+ "integrity" "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg=="
+ "resolved" "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz"
+ "version" "5.1.0"
+ dependencies:
+ "@hapi/hoek" "^9.0.0"
+
+"@istanbuljs/load-nyc-config@^1.0.0":
+ "integrity" "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ=="
+ "resolved" "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz"
+ "version" "1.1.0"
+ dependencies:
+ "camelcase" "^5.3.1"
+ "find-up" "^4.1.0"
+ "get-package-type" "^0.1.0"
+ "js-yaml" "^3.13.1"
+ "resolve-from" "^5.0.0"
+
+"@istanbuljs/schema@^0.1.2":
+ "integrity" "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA=="
+ "resolved" "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz"
+ "version" "0.1.3"
+
+"@jest/console@^26.6.2":
+ "integrity" "sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g=="
+ "resolved" "https://registry.npmjs.org/@jest/console/-/console-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "@jest/types" "^26.6.2"
+ "@types/node" "*"
+ "chalk" "^4.0.0"
+ "jest-message-util" "^26.6.2"
+ "jest-util" "^26.6.2"
+ "slash" "^3.0.0"
+
+"@jest/core@^26.6.3":
+ "integrity" "sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw=="
+ "resolved" "https://registry.npmjs.org/@jest/core/-/core-26.6.3.tgz"
+ "version" "26.6.3"
+ dependencies:
+ "@jest/console" "^26.6.2"
+ "@jest/reporters" "^26.6.2"
+ "@jest/test-result" "^26.6.2"
+ "@jest/transform" "^26.6.2"
+ "@jest/types" "^26.6.2"
+ "@types/node" "*"
+ "ansi-escapes" "^4.2.1"
+ "chalk" "^4.0.0"
+ "exit" "^0.1.2"
+ "graceful-fs" "^4.2.4"
+ "jest-changed-files" "^26.6.2"
+ "jest-config" "^26.6.3"
+ "jest-haste-map" "^26.6.2"
+ "jest-message-util" "^26.6.2"
+ "jest-regex-util" "^26.0.0"
+ "jest-resolve" "^26.6.2"
+ "jest-resolve-dependencies" "^26.6.3"
+ "jest-runner" "^26.6.3"
+ "jest-runtime" "^26.6.3"
+ "jest-snapshot" "^26.6.2"
+ "jest-util" "^26.6.2"
+ "jest-validate" "^26.6.2"
+ "jest-watcher" "^26.6.2"
+ "micromatch" "^4.0.2"
+ "p-each-series" "^2.1.0"
+ "rimraf" "^3.0.0"
+ "slash" "^3.0.0"
+ "strip-ansi" "^6.0.0"
+
+"@jest/create-cache-key-function@^26.5.0":
+ "integrity" "sha512-LgEuqU1f/7WEIPYqwLPIvvHuc1sB6gMVbT6zWhin3txYUNYK/kGQrC1F2WR4gR34YlI9bBtViTm5z98RqVZAaw=="
+ "resolved" "https://registry.npmjs.org/@jest/create-cache-key-function/-/create-cache-key-function-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "@jest/types" "^26.6.2"
+
+"@jest/environment@^26.6.2":
+ "integrity" "sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA=="
+ "resolved" "https://registry.npmjs.org/@jest/environment/-/environment-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "@jest/fake-timers" "^26.6.2"
+ "@jest/types" "^26.6.2"
+ "@types/node" "*"
+ "jest-mock" "^26.6.2"
+
+"@jest/fake-timers@^26.6.2":
+ "integrity" "sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA=="
+ "resolved" "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "@jest/types" "^26.6.2"
+ "@sinonjs/fake-timers" "^6.0.1"
+ "@types/node" "*"
+ "jest-message-util" "^26.6.2"
+ "jest-mock" "^26.6.2"
+ "jest-util" "^26.6.2"
+
+"@jest/globals@^26.6.2":
+ "integrity" "sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA=="
+ "resolved" "https://registry.npmjs.org/@jest/globals/-/globals-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "@jest/environment" "^26.6.2"
+ "@jest/types" "^26.6.2"
+ "expect" "^26.6.2"
+
+"@jest/reporters@^26.6.2":
+ "integrity" "sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw=="
+ "resolved" "https://registry.npmjs.org/@jest/reporters/-/reporters-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "@bcoe/v8-coverage" "^0.2.3"
+ "@jest/console" "^26.6.2"
+ "@jest/test-result" "^26.6.2"
+ "@jest/transform" "^26.6.2"
+ "@jest/types" "^26.6.2"
+ "chalk" "^4.0.0"
+ "collect-v8-coverage" "^1.0.0"
+ "exit" "^0.1.2"
+ "glob" "^7.1.2"
+ "graceful-fs" "^4.2.4"
+ "istanbul-lib-coverage" "^3.0.0"
+ "istanbul-lib-instrument" "^4.0.3"
+ "istanbul-lib-report" "^3.0.0"
+ "istanbul-lib-source-maps" "^4.0.0"
+ "istanbul-reports" "^3.0.2"
+ "jest-haste-map" "^26.6.2"
+ "jest-resolve" "^26.6.2"
+ "jest-util" "^26.6.2"
+ "jest-worker" "^26.6.2"
+ "slash" "^3.0.0"
+ "source-map" "^0.6.0"
+ "string-length" "^4.0.1"
+ "terminal-link" "^2.0.0"
+ "v8-to-istanbul" "^7.0.0"
+ optionalDependencies:
+ "node-notifier" "^8.0.0"
+
+"@jest/source-map@^26.6.2":
+ "integrity" "sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA=="
+ "resolved" "https://registry.npmjs.org/@jest/source-map/-/source-map-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "callsites" "^3.0.0"
+ "graceful-fs" "^4.2.4"
+ "source-map" "^0.6.0"
+
+"@jest/test-result@^26.6.2":
+ "integrity" "sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ=="
+ "resolved" "https://registry.npmjs.org/@jest/test-result/-/test-result-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "@jest/console" "^26.6.2"
+ "@jest/types" "^26.6.2"
+ "@types/istanbul-lib-coverage" "^2.0.0"
+ "collect-v8-coverage" "^1.0.0"
+
+"@jest/test-sequencer@^26.6.3":
+ "integrity" "sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw=="
+ "resolved" "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz"
+ "version" "26.6.3"
+ dependencies:
+ "@jest/test-result" "^26.6.2"
+ "graceful-fs" "^4.2.4"
+ "jest-haste-map" "^26.6.2"
+ "jest-runner" "^26.6.3"
+ "jest-runtime" "^26.6.3"
+
+"@jest/transform@^26.6.2":
+ "integrity" "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA=="
+ "resolved" "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "@babel/core" "^7.1.0"
+ "@jest/types" "^26.6.2"
+ "babel-plugin-istanbul" "^6.0.0"
+ "chalk" "^4.0.0"
+ "convert-source-map" "^1.4.0"
+ "fast-json-stable-stringify" "^2.0.0"
+ "graceful-fs" "^4.2.4"
+ "jest-haste-map" "^26.6.2"
+ "jest-regex-util" "^26.0.0"
+ "jest-util" "^26.6.2"
+ "micromatch" "^4.0.2"
+ "pirates" "^4.0.1"
+ "slash" "^3.0.0"
+ "source-map" "^0.6.1"
+ "write-file-atomic" "^3.0.0"
+
+"@jest/types@^26.6.2":
+ "integrity" "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ=="
+ "resolved" "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "@types/istanbul-lib-coverage" "^2.0.0"
+ "@types/istanbul-reports" "^3.0.0"
+ "@types/node" "*"
+ "@types/yargs" "^15.0.0"
+ "chalk" "^4.0.0"
+
+"@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.2":
+ "integrity" "sha512-Fb8WxUFOBQVl+CX4MWet5o7eCc6Pj04rXIwVKZ6h1NnqTo45eOQW6aWyhG25NIODvWFwTDMwBsYxrQ3imxpetg=="
+ "resolved" "https://registry.npmjs.org/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.2.tgz"
+ "version" "2.1.8-no-fsevents.2"
+ dependencies:
+ "anymatch" "^2.0.0"
+ "async-each" "^1.0.1"
+ "braces" "^2.3.2"
+ "glob-parent" "^5.1.2"
+ "inherits" "^2.0.3"
+ "is-binary-path" "^1.0.0"
+ "is-glob" "^4.0.0"
+ "normalize-path" "^3.0.0"
+ "path-is-absolute" "^1.0.0"
+ "readdirp" "^2.2.1"
+ "upath" "^1.1.1"
+
+"@react-native-community/cli-debugger-ui@^5.0.1":
+ "integrity" "sha512-5gGKaaXYOVE423BUqxIfvfAVSj5Cg1cU/TpGbeg/iqpy2CfqyWqJB3tTuVUbOOiOvR5wbU8tti6pIi1pchJ+oA=="
+ "resolved" "https://registry.npmjs.org/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-5.0.1.tgz"
+ "version" "5.0.1"
+ dependencies:
+ "serve-static" "^1.13.1"
+
+"@react-native-community/cli-hermes@^5.0.1":
+ "integrity" "sha512-nD+ZOFvu5MfjLB18eDJ01MNiFrzj8SDtENjGpf0ZRFndOWASDAmU54/UlU/wj8OzTToK1+S1KY7j2P2M1gleww=="
+ "resolved" "https://registry.npmjs.org/@react-native-community/cli-hermes/-/cli-hermes-5.0.1.tgz"
+ "version" "5.0.1"
+ dependencies:
+ "@react-native-community/cli-platform-android" "^5.0.1"
+ "@react-native-community/cli-tools" "^5.0.1"
+ "chalk" "^3.0.0"
+ "hermes-profile-transformer" "^0.0.6"
+ "ip" "^1.1.5"
+
+"@react-native-community/cli-platform-android@^5.0.1", "@react-native-community/cli-platform-android@^5.0.1-alpha.1":
+ "integrity" "sha512-qv9GJX6BJ+Y4qvV34vgxKwwN1cnveXUdP6y2YmTW7XoAYs5YUzKqHajpY58EyucAL2y++6+573t5y4U/9IIoww=="
+ "resolved" "https://registry.npmjs.org/@react-native-community/cli-platform-android/-/cli-platform-android-5.0.1.tgz"
+ "version" "5.0.1"
+ dependencies:
+ "@react-native-community/cli-tools" "^5.0.1"
+ "chalk" "^3.0.0"
+ "execa" "^1.0.0"
+ "fs-extra" "^8.1.0"
+ "glob" "^7.1.3"
+ "jetifier" "^1.6.2"
+ "lodash" "^4.17.15"
+ "logkitty" "^0.7.1"
+ "slash" "^3.0.0"
+ "xmldoc" "^1.1.2"
+
+"@react-native-community/cli-platform-ios@^5.0.1-alpha.1":
+ "integrity" "sha512-Nr/edBEYJfElgBNvjDevs2BuDicsvQaM8nYkTGgp33pyuCZRBxsYxQqfsNmnLalTzcYaebjWj6AnjUSxzQBWqg=="
+ "resolved" "https://registry.npmjs.org/@react-native-community/cli-platform-ios/-/cli-platform-ios-5.0.1.tgz"
+ "version" "5.0.1"
+ dependencies:
+ "@react-native-community/cli-tools" "^5.0.1"
+ "chalk" "^3.0.0"
+ "glob" "^7.1.3"
+ "js-yaml" "^3.13.1"
+ "lodash" "^4.17.15"
+ "plist" "^3.0.1"
+ "xcode" "^2.0.0"
+
+"@react-native-community/cli-server-api@^5.0.1":
+ "integrity" "sha512-OOxL+y9AOZayQzmSW+h5T54wQe+QBc/f67Y9QlWzzJhkKJdYx+S4VOooHoD5PFJzGbYaxhu2YF17p517pcEIIA=="
+ "resolved" "https://registry.npmjs.org/@react-native-community/cli-server-api/-/cli-server-api-5.0.1.tgz"
+ "version" "5.0.1"
+ dependencies:
+ "@react-native-community/cli-debugger-ui" "^5.0.1"
+ "@react-native-community/cli-tools" "^5.0.1"
+ "compression" "^1.7.1"
+ "connect" "^3.6.5"
+ "errorhandler" "^1.5.0"
+ "nocache" "^2.1.0"
+ "pretty-format" "^26.6.2"
+ "serve-static" "^1.13.1"
+ "ws" "^1.1.0"
+
+"@react-native-community/cli-tools@^5.0.1":
+ "integrity" "sha512-XOX5w98oSE8+KnkMZZPMRT7I5TaP8fLbDl0tCu40S7Epz+Zz924n80fmdu6nUDIfPT1nV6yH1hmHmWAWTDOR+Q=="
+ "resolved" "https://registry.npmjs.org/@react-native-community/cli-tools/-/cli-tools-5.0.1.tgz"
+ "version" "5.0.1"
+ dependencies:
+ "chalk" "^3.0.0"
+ "lodash" "^4.17.15"
+ "mime" "^2.4.1"
+ "node-fetch" "^2.6.0"
+ "open" "^6.2.0"
+ "shell-quote" "1.6.1"
+
+"@react-native-community/cli-types@^5.0.1":
+ "integrity" "sha512-BesXnuFFlU/d1F3+sHhvKt8fUxbQlAbZ3hhMEImp9A6sopl8TEtryUGJ1dbazGjRXcADutxvjwT/i3LJVTIQug=="
+ "resolved" "https://registry.npmjs.org/@react-native-community/cli-types/-/cli-types-5.0.1.tgz"
+ "version" "5.0.1"
+ dependencies:
+ "ora" "^3.4.0"
+
+"@react-native-community/cli@^5.0.1-alpha.1":
+ "integrity" "sha512-9VzSYUYSEqxEH5Ib2UNSdn2eyPiYZ4T7Y79o9DKtRBuSaUIwbCUdZtIm+UUjBpLS1XYBkW26FqL8/UdZDmQvXw=="
+ "resolved" "https://registry.npmjs.org/@react-native-community/cli/-/cli-5.0.1.tgz"
+ "version" "5.0.1"
+ dependencies:
+ "@react-native-community/cli-debugger-ui" "^5.0.1"
+ "@react-native-community/cli-hermes" "^5.0.1"
+ "@react-native-community/cli-server-api" "^5.0.1"
+ "@react-native-community/cli-tools" "^5.0.1"
+ "@react-native-community/cli-types" "^5.0.1"
+ "appdirsjs" "^1.2.4"
+ "chalk" "^3.0.0"
+ "command-exists" "^1.2.8"
+ "commander" "^2.19.0"
+ "cosmiconfig" "^5.1.0"
+ "deepmerge" "^3.2.0"
+ "envinfo" "^7.7.2"
+ "execa" "^1.0.0"
+ "find-up" "^4.1.0"
+ "fs-extra" "^8.1.0"
+ "glob" "^7.1.3"
+ "graceful-fs" "^4.1.3"
+ "joi" "^17.2.1"
+ "leven" "^3.1.0"
+ "lodash" "^4.17.15"
+ "metro" "^0.64.0"
+ "metro-config" "^0.64.0"
+ "metro-core" "^0.64.0"
+ "metro-react-native-babel-transformer" "^0.64.0"
+ "metro-resolver" "^0.64.0"
+ "metro-runtime" "^0.64.0"
+ "minimist" "^1.2.0"
+ "mkdirp" "^0.5.1"
+ "node-stream-zip" "^1.9.1"
+ "ora" "^3.4.0"
+ "pretty-format" "^26.6.2"
+ "prompts" "^2.4.0"
+ "semver" "^6.3.0"
+ "serve-static" "^1.13.1"
+ "strip-ansi" "^5.2.0"
+ "sudo-prompt" "^9.0.0"
+ "wcwidth" "^1.0.1"
+
+"@react-native-community/eslint-config@^2.0.0":
+ "integrity" "sha512-vHaMMfvMp9BWCQQ0lNIXibOJTcXIbYUQ8dSUsMOsrXgVkeVQJj88OwrKS00rQyqwMaC4/a6HuDiFzYUkGKOpVg=="
+ "resolved" "https://registry.npmjs.org/@react-native-community/eslint-config/-/eslint-config-2.0.0.tgz"
+ "version" "2.0.0"
+ dependencies:
+ "@react-native-community/eslint-plugin" "^1.1.0"
+ "@typescript-eslint/eslint-plugin" "^3.1.0"
+ "@typescript-eslint/parser" "^3.1.0"
+ "babel-eslint" "^10.1.0"
+ "eslint-config-prettier" "^6.10.1"
+ "eslint-plugin-eslint-comments" "^3.1.2"
+ "eslint-plugin-flowtype" "2.50.3"
+ "eslint-plugin-jest" "22.4.1"
+ "eslint-plugin-prettier" "3.1.2"
+ "eslint-plugin-react" "^7.20.0"
+ "eslint-plugin-react-hooks" "^4.0.4"
+ "eslint-plugin-react-native" "^3.8.1"
+ "prettier" "^2.0.2"
+
+"@react-native-community/eslint-plugin@^1.1.0":
+ "integrity" "sha512-W/J0fNYVO01tioHjvYWQ9m6RgndVtbElzYozBq1ZPrHO/iCzlqoySHl4gO/fpCl9QEFjvJfjPgtPMTMlsoq5DQ=="
+ "resolved" "https://registry.npmjs.org/@react-native-community/eslint-plugin/-/eslint-plugin-1.1.0.tgz"
+ "version" "1.1.0"
+
+"@react-native/assets@1.0.0":
+ "integrity" "sha512-KrwSpS1tKI70wuKl68DwJZYEvXktDHdZMG0k2AXD/rJVSlB23/X2CB2cutVR0HwNMJIal9HOUOBB2rVfa6UGtQ=="
+ "resolved" "https://registry.npmjs.org/@react-native/assets/-/assets-1.0.0.tgz"
+ "version" "1.0.0"
+
+"@react-native/normalize-color@1.0.0":
+ "integrity" "sha512-xUNRvNmCl3UGCPbbHvfyFMnpvLPoOjDCcp5bT9m2k+TF/ZBklEQwhPZlkrxRx2NhgFh1X3a5uL7mJ7ZR+8G7Qg=="
+ "resolved" "https://registry.npmjs.org/@react-native/normalize-color/-/normalize-color-1.0.0.tgz"
+ "version" "1.0.0"
+
+"@react-native/polyfills@1.0.0":
+ "integrity" "sha512-0jbp4RxjYopTsIdLl+/Fy2TiwVYHy4mgeu07DG4b/LyM0OS/+lPP5c9sbnt/AMlnF6qz2JRZpPpGw1eMNS6A4w=="
+ "resolved" "https://registry.npmjs.org/@react-native/polyfills/-/polyfills-1.0.0.tgz"
+ "version" "1.0.0"
+
+"@react-navigation/bottom-tabs@^5.11.11":
+ "integrity" "sha512-hThj6Vfw+ITzAVj5TgLEoxkVEcBD+gYeieWOe6FryBRgokgKNCzFQzqArJ5UCmNMxklNH0rstJfcdyHflLuPtw=="
+ "resolved" "https://registry.npmjs.org/@react-navigation/bottom-tabs/-/bottom-tabs-5.11.11.tgz"
+ "version" "5.11.11"
+ dependencies:
+ "color" "^3.1.3"
+ "react-native-iphone-x-helper" "^1.3.0"
+
+"@react-navigation/core@^5.15.5":
+ "integrity" "sha512-xrUQ0xVQTMuuMiILRhhRpBzoI4TaFh4dJ4INCy6uwK9dwHjLwtsx+++ZefV/K4tbMQmGFxq4zSnLtTRtfMZKrA=="
+ "resolved" "https://registry.npmjs.org/@react-navigation/core/-/core-5.15.5.tgz"
+ "version" "5.15.5"
+ dependencies:
+ "@react-navigation/routers" "^5.7.4"
+ "escape-string-regexp" "^4.0.0"
+ "nanoid" "^3.1.15"
+ "query-string" "^6.13.6"
+ "react-is" "^16.13.0"
+
+"@react-navigation/native@^5.0.5", "@react-navigation/native@^5.9.6":
+ "integrity" "sha512-m2F2AWBr0qbi4a5MBk2puGNWyVQnfmVHcpuIzQ37juptX6QCCuXjmOxvtdyqRzh2gKGnUlIeNaQKcACYj4zG/w=="
+ "resolved" "https://registry.npmjs.org/@react-navigation/native/-/native-5.9.6.tgz"
+ "version" "5.9.6"
+ dependencies:
+ "@react-navigation/core" "^5.15.5"
+ "escape-string-regexp" "^4.0.0"
+ "nanoid" "^3.1.15"
+
+"@react-navigation/routers@^5.7.4":
+ "integrity" "sha512-0N202XAqsU/FlE53Nmh6GHyMtGm7g6TeC93mrFAFJOqGRKznT0/ail+cYlU6tNcPA9AHzZu1Modw1eoDINSliQ=="
+ "resolved" "https://registry.npmjs.org/@react-navigation/routers/-/routers-5.7.4.tgz"
+ "version" "5.7.4"
+ dependencies:
+ "nanoid" "^3.1.15"
+
+"@react-navigation/stack@^5.14.7":
+ "integrity" "sha512-Ew+MYaJGvJUpZ3XYIilSCRruldr3JXNOWYM8bqE21EeJ5d3mfynpTPihck5ol0AN8uFEAeskQzoixGWh5eMYuA=="
+ "resolved" "https://registry.npmjs.org/@react-navigation/stack/-/stack-5.14.7.tgz"
+ "version" "5.14.7"
+ dependencies:
+ "color" "^3.1.3"
+ "react-native-iphone-x-helper" "^1.3.0"
+
+"@sideway/address@^4.1.0":
+ "integrity" "sha512-idTz8ibqWFrPU8kMirL0CoPH/A29XOzzAzpyN3zQ4kAWnzmNfFmRaoMNN6VI8ske5M73HZyhIaW4OuSFIdM4oA=="
+ "resolved" "https://registry.npmjs.org/@sideway/address/-/address-4.1.2.tgz"
+ "version" "4.1.2"
+ dependencies:
+ "@hapi/hoek" "^9.0.0"
+
+"@sideway/formula@^3.0.0":
+ "integrity" "sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg=="
+ "resolved" "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.0.tgz"
+ "version" "3.0.0"
+
+"@sideway/pinpoint@^2.0.0":
+ "integrity" "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ=="
+ "resolved" "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz"
+ "version" "2.0.0"
+
+"@sinonjs/commons@^1.7.0":
+ "integrity" "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ=="
+ "resolved" "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz"
+ "version" "1.8.3"
+ dependencies:
+ "type-detect" "4.0.8"
+
+"@sinonjs/fake-timers@^6.0.1":
+ "integrity" "sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA=="
+ "resolved" "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz"
+ "version" "6.0.1"
+ dependencies:
+ "@sinonjs/commons" "^1.7.0"
+
+"@tootallnate/once@1":
+ "integrity" "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw=="
+ "resolved" "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz"
+ "version" "1.1.2"
+
+"@types/babel__core@^7.0.0", "@types/babel__core@^7.1.7":
+ "integrity" "sha512-bxlMKPDbY8x5h6HBwVzEOk2C8fb6SLfYQ5Jw3uBYuYF1lfWk/kbLd81la82vrIkBb0l+JdmrZaDikPrNxpS/Ew=="
+ "resolved" "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.15.tgz"
+ "version" "7.1.15"
+ dependencies:
+ "@babel/parser" "^7.1.0"
+ "@babel/types" "^7.0.0"
+ "@types/babel__generator" "*"
+ "@types/babel__template" "*"
+ "@types/babel__traverse" "*"
+
+"@types/babel__generator@*":
+ "integrity" "sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA=="
+ "resolved" "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.3.tgz"
+ "version" "7.6.3"
+ dependencies:
+ "@babel/types" "^7.0.0"
+
+"@types/babel__template@*":
+ "integrity" "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g=="
+ "resolved" "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz"
+ "version" "7.4.1"
+ dependencies:
+ "@babel/parser" "^7.1.0"
+ "@babel/types" "^7.0.0"
+
+"@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6":
+ "integrity" "sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA=="
+ "resolved" "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.14.2.tgz"
+ "version" "7.14.2"
+ dependencies:
+ "@babel/types" "^7.3.0"
+
+"@types/eslint-visitor-keys@^1.0.0":
+ "integrity" "sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag=="
+ "resolved" "https://registry.npmjs.org/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz"
+ "version" "1.0.0"
+
+"@types/graceful-fs@^4.1.2":
+ "integrity" "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw=="
+ "resolved" "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz"
+ "version" "4.1.5"
+ dependencies:
+ "@types/node" "*"
+
+"@types/hammerjs@^2.0.36":
+ "integrity" "sha512-VbjwR1fhsn2h2KXAY4oy1fm7dCxaKy0D+deTb8Ilc3Eo3rc5+5eA4rfYmZaHgNJKxVyI0f6WIXzO2zLkVmQPHA=="
+ "resolved" "https://registry.npmjs.org/@types/hammerjs/-/hammerjs-2.0.40.tgz"
+ "version" "2.0.40"
+
+"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1":
+ "integrity" "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw=="
+ "resolved" "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz"
+ "version" "2.0.3"
+
+"@types/istanbul-lib-report@*":
+ "integrity" "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg=="
+ "resolved" "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz"
+ "version" "3.0.0"
+ dependencies:
+ "@types/istanbul-lib-coverage" "*"
+
+"@types/istanbul-reports@^3.0.0":
+ "integrity" "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw=="
+ "resolved" "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz"
+ "version" "3.0.1"
+ dependencies:
+ "@types/istanbul-lib-report" "*"
+
+"@types/json-schema@^7.0.3":
+ "integrity" "sha512-YSBPTLTVm2e2OoQIDYx8HaeWJ5tTToLH67kXR7zYNGupXMEHa2++G8k+DczX2cFVgalypqtyZIcU19AFcmOpmg=="
+ "resolved" "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.8.tgz"
+ "version" "7.0.8"
+
+"@types/node@*":
+ "integrity" "sha512-VL7RZyCpfYEmbyd3/Eq5RNYhZt7yoL1JThZQ3KzimzhLya2Qa86U1ZZmioNWAAjiz99z1ED1xF9NUV2srvfVrA=="
+ "resolved" "https://registry.npmjs.org/@types/node/-/node-16.4.8.tgz"
+ "version" "16.4.8"
+
+"@types/normalize-package-data@^2.4.0":
+ "integrity" "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw=="
+ "resolved" "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz"
+ "version" "2.4.1"
+
+"@types/prettier@^2.0.0":
+ "integrity" "sha512-eI5Yrz3Qv4KPUa/nSIAi0h+qX0XyewOliug5F2QAtuRg6Kjg6jfmxe1GIwoIRhZspD1A0RP8ANrPwvEXXtRFog=="
+ "resolved" "https://registry.npmjs.org/@types/prettier/-/prettier-2.3.2.tgz"
+ "version" "2.3.2"
+
+"@types/prop-types@*":
+ "integrity" "sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ=="
+ "resolved" "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.4.tgz"
+ "version" "15.7.4"
+
+"@types/react-native-vector-icons@^6.4.6":
+ "integrity" "sha512-ImqhwVPHtcWrfwaS4vVrnN/C1mY50+Gjer4wMltUJlkt9pTJ5WXCyn8VFPmxC5h8Zy0DBN2tYdusBZ2xJP14OA=="
+ "resolved" "https://registry.npmjs.org/@types/react-native-vector-icons/-/react-native-vector-icons-6.4.8.tgz"
+ "version" "6.4.8"
+ dependencies:
+ "@types/react" "*"
+ "@types/react-native" "*"
+
+"@types/react-native@*":
+ "integrity" "sha512-sw6WGSaL219zqrgdb4kQUtFB9iGXC/LmecLZ+UUWEgwYvD0YH81FqWYmONa2HuTkOFAsxu2bK4DspkWRUHIABQ=="
+ "resolved" "https://registry.npmjs.org/@types/react-native/-/react-native-0.64.12.tgz"
+ "version" "0.64.12"
+ dependencies:
+ "@types/react" "*"
+
+"@types/react@*":
+ "integrity" "sha512-uTKHDK9STXFHLaKv6IMnwp52fm0hwU+N89w/p9grdUqcFA6WuqDyPhaWopbNyE1k/VhgzmHl8pu1L4wITtmlLw=="
+ "resolved" "https://registry.npmjs.org/@types/react/-/react-17.0.15.tgz"
+ "version" "17.0.15"
+ dependencies:
+ "@types/prop-types" "*"
+ "@types/scheduler" "*"
+ "csstype" "^3.0.2"
+
+"@types/scheduler@*":
+ "integrity" "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew=="
+ "resolved" "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz"
+ "version" "0.16.2"
+
+"@types/stack-utils@^2.0.0":
+ "integrity" "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw=="
+ "resolved" "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz"
+ "version" "2.0.1"
+
+"@types/yargs-parser@*":
+ "integrity" "sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw=="
+ "resolved" "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.1.tgz"
+ "version" "20.2.1"
+
+"@types/yargs@^15.0.0":
+ "integrity" "sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ=="
+ "resolved" "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.14.tgz"
+ "version" "15.0.14"
+ dependencies:
+ "@types/yargs-parser" "*"
+
+"@typescript-eslint/eslint-plugin@^3.1.0":
+ "integrity" "sha512-PQg0emRtzZFWq6PxBcdxRH3QIQiyFO3WCVpRL3fgj5oQS3CDs3AeAKfv4DxNhzn8ITdNJGJ4D3Qw8eAJf3lXeQ=="
+ "resolved" "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-3.10.1.tgz"
+ "version" "3.10.1"
+ dependencies:
+ "@typescript-eslint/experimental-utils" "3.10.1"
+ "debug" "^4.1.1"
+ "functional-red-black-tree" "^1.0.1"
+ "regexpp" "^3.0.0"
+ "semver" "^7.3.2"
+ "tsutils" "^3.17.1"
+
+"@typescript-eslint/experimental-utils@3.10.1":
+ "integrity" "sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw=="
+ "resolved" "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-3.10.1.tgz"
+ "version" "3.10.1"
+ dependencies:
+ "@types/json-schema" "^7.0.3"
+ "@typescript-eslint/types" "3.10.1"
+ "@typescript-eslint/typescript-estree" "3.10.1"
+ "eslint-scope" "^5.0.0"
+ "eslint-utils" "^2.0.0"
+
+"@typescript-eslint/parser@^3.0.0", "@typescript-eslint/parser@^3.1.0":
+ "integrity" "sha512-Ug1RcWcrJP02hmtaXVS3axPPTTPnZjupqhgj+NnZ6BCkwSImWk/283347+x9wN+lqOdK9Eo3vsyiyDHgsmiEJw=="
+ "resolved" "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-3.10.1.tgz"
+ "version" "3.10.1"
+ dependencies:
+ "@types/eslint-visitor-keys" "^1.0.0"
+ "@typescript-eslint/experimental-utils" "3.10.1"
+ "@typescript-eslint/types" "3.10.1"
+ "@typescript-eslint/typescript-estree" "3.10.1"
+ "eslint-visitor-keys" "^1.1.0"
+
+"@typescript-eslint/types@3.10.1":
+ "integrity" "sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ=="
+ "resolved" "https://registry.npmjs.org/@typescript-eslint/types/-/types-3.10.1.tgz"
+ "version" "3.10.1"
+
+"@typescript-eslint/typescript-estree@3.10.1":
+ "integrity" "sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w=="
+ "resolved" "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-3.10.1.tgz"
+ "version" "3.10.1"
+ dependencies:
+ "@typescript-eslint/types" "3.10.1"
+ "@typescript-eslint/visitor-keys" "3.10.1"
+ "debug" "^4.1.1"
+ "glob" "^7.1.6"
+ "is-glob" "^4.0.1"
+ "lodash" "^4.17.15"
+ "semver" "^7.3.2"
+ "tsutils" "^3.17.1"
+
+"@typescript-eslint/visitor-keys@3.10.1":
+ "integrity" "sha512-9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ=="
+ "resolved" "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-3.10.1.tgz"
+ "version" "3.10.1"
+ dependencies:
+ "eslint-visitor-keys" "^1.1.0"
+
+"abab@^2.0.3", "abab@^2.0.5":
+ "integrity" "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q=="
+ "resolved" "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz"
+ "version" "2.0.5"
+
+"abort-controller@^3.0.0":
+ "integrity" "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg=="
+ "resolved" "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz"
+ "version" "3.0.0"
+ dependencies:
+ "event-target-shim" "^5.0.0"
+
+"absolute-path@^0.0.0":
+ "integrity" "sha1-p4di+9rftSl76ZsV01p4Wy8JW/c="
+ "resolved" "https://registry.npmjs.org/absolute-path/-/absolute-path-0.0.0.tgz"
+ "version" "0.0.0"
+
+"accepts@^1.3.7", "accepts@~1.3.5", "accepts@~1.3.7":
+ "integrity" "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA=="
+ "resolved" "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz"
+ "version" "1.3.7"
+ dependencies:
+ "mime-types" "~2.1.24"
+ "negotiator" "0.6.2"
+
+"acorn-globals@^6.0.0":
+ "integrity" "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg=="
+ "resolved" "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz"
+ "version" "6.0.0"
+ dependencies:
+ "acorn" "^7.1.1"
+ "acorn-walk" "^7.1.1"
+
+"acorn-jsx@^5.3.1":
+ "integrity" "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ=="
+ "resolved" "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz"
+ "version" "5.3.2"
+
+"acorn-walk@^7.1.1":
+ "integrity" "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA=="
+ "resolved" "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz"
+ "version" "7.2.0"
+
+"acorn@^6.0.0 || ^7.0.0 || ^8.0.0", "acorn@^7.1.1", "acorn@^7.4.0":
+ "integrity" "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="
+ "resolved" "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz"
+ "version" "7.4.1"
+
+"acorn@^8.2.4":
+ "integrity" "sha512-asabaBSkEKosYKMITunzX177CXxQ4Q8BSSzMTKD+FefUhipQC70gfW5SiUDhYQ3vk8G+81HqQk7Fv9OXwwn9KA=="
+ "resolved" "https://registry.npmjs.org/acorn/-/acorn-8.4.1.tgz"
+ "version" "8.4.1"
+
+"agent-base@6":
+ "integrity" "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ=="
+ "resolved" "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz"
+ "version" "6.0.2"
+ dependencies:
+ "debug" "4"
+
+"ajv@^6.10.0", "ajv@^6.10.2", "ajv@^6.12.4":
+ "integrity" "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="
+ "resolved" "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"
+ "version" "6.12.6"
+ dependencies:
+ "fast-deep-equal" "^3.1.1"
+ "fast-json-stable-stringify" "^2.0.0"
+ "json-schema-traverse" "^0.4.1"
+ "uri-js" "^4.2.2"
+
+"anser@^1.4.9":
+ "integrity" "sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww=="
+ "resolved" "https://registry.npmjs.org/anser/-/anser-1.4.10.tgz"
+ "version" "1.4.10"
+
+"ansi-colors@^4.1.1":
+ "integrity" "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA=="
+ "resolved" "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz"
+ "version" "4.1.1"
+
+"ansi-escapes@^4.2.1":
+ "integrity" "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ=="
+ "resolved" "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz"
+ "version" "4.3.2"
+ dependencies:
+ "type-fest" "^0.21.3"
+
+"ansi-fragments@^0.2.1":
+ "integrity" "sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w=="
+ "resolved" "https://registry.npmjs.org/ansi-fragments/-/ansi-fragments-0.2.1.tgz"
+ "version" "0.2.1"
+ dependencies:
+ "colorette" "^1.0.7"
+ "slice-ansi" "^2.0.0"
+ "strip-ansi" "^5.0.0"
+
+"ansi-regex@^4.1.0":
+ "integrity" "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="
+ "resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz"
+ "version" "4.1.0"
+
+"ansi-regex@^5.0.0":
+ "integrity" "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg=="
+ "resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz"
+ "version" "5.0.0"
+
+"ansi-styles@^3.2.0", "ansi-styles@^3.2.1":
+ "integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="
+ "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"
+ "version" "3.2.1"
+ dependencies:
+ "color-convert" "^1.9.0"
+
+"ansi-styles@^4.0.0":
+ "integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
+ "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
+ "version" "4.3.0"
+ dependencies:
+ "color-convert" "^2.0.1"
+
+"ansi-styles@^4.1.0":
+ "integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
+ "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
+ "version" "4.3.0"
+ dependencies:
+ "color-convert" "^2.0.1"
+
+"anymatch@^2.0.0":
+ "integrity" "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw=="
+ "resolved" "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz"
+ "version" "2.0.0"
+ dependencies:
+ "micromatch" "^3.1.4"
+ "normalize-path" "^2.1.1"
+
+"anymatch@^3.0.3", "anymatch@~3.1.2":
+ "integrity" "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg=="
+ "resolved" "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz"
+ "version" "3.1.2"
+ dependencies:
+ "normalize-path" "^3.0.0"
+ "picomatch" "^2.0.4"
+
+"appdirsjs@^1.2.4":
+ "integrity" "sha512-UyaAyzj+7XLoKhbXJi4zoAw8IDXCiLNCKfQEiuCsCCTkDmiG1vpCliQn/MoUvO3DZqCN1i6gOahokcFtNSIrVA=="
+ "resolved" "https://registry.npmjs.org/appdirsjs/-/appdirsjs-1.2.5.tgz"
+ "version" "1.2.5"
+
+"argparse@^1.0.7":
+ "integrity" "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="
+ "resolved" "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz"
+ "version" "1.0.10"
+ dependencies:
+ "sprintf-js" "~1.0.2"
+
+"arr-diff@^4.0.0":
+ "integrity" "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA="
+ "resolved" "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz"
+ "version" "4.0.0"
+
+"arr-flatten@^1.1.0":
+ "integrity" "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg=="
+ "resolved" "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz"
+ "version" "1.1.0"
+
+"arr-union@^3.1.0":
+ "integrity" "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ="
+ "resolved" "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz"
+ "version" "3.1.0"
+
+"array-filter@~0.0.0":
+ "integrity" "sha1-fajPLiZijtcygDWB/SH2fKzS7uw="
+ "resolved" "https://registry.npmjs.org/array-filter/-/array-filter-0.0.1.tgz"
+ "version" "0.0.1"
+
+"array-includes@^3.1.2", "array-includes@^3.1.3":
+ "integrity" "sha512-gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A=="
+ "resolved" "https://registry.npmjs.org/array-includes/-/array-includes-3.1.3.tgz"
+ "version" "3.1.3"
+ dependencies:
+ "call-bind" "^1.0.2"
+ "define-properties" "^1.1.3"
+ "es-abstract" "^1.18.0-next.2"
+ "get-intrinsic" "^1.1.1"
+ "is-string" "^1.0.5"
+
+"array-map@~0.0.0":
+ "integrity" "sha1-iKK6tz0c97zVwbEYoAP2b2ZfpmI="
+ "resolved" "https://registry.npmjs.org/array-map/-/array-map-0.0.0.tgz"
+ "version" "0.0.0"
+
+"array-reduce@~0.0.0":
+ "integrity" "sha1-FziZ0//Rx9k4PkR5Ul2+J4yrXys="
+ "resolved" "https://registry.npmjs.org/array-reduce/-/array-reduce-0.0.0.tgz"
+ "version" "0.0.0"
+
+"array-unique@^0.3.2":
+ "integrity" "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg="
+ "resolved" "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz"
+ "version" "0.3.2"
+
+"array.prototype.flatmap@^1.2.4":
+ "integrity" "sha512-r9Z0zYoxqHz60vvQbWEdXIEtCwHF0yxaWfno9qzXeNHvfyl3BZqygmGzb84dsubyaXLH4husF+NFgMSdpZhk2Q=="
+ "resolved" "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.2.4.tgz"
+ "version" "1.2.4"
+ dependencies:
+ "call-bind" "^1.0.0"
+ "define-properties" "^1.1.3"
+ "es-abstract" "^1.18.0-next.1"
+ "function-bind" "^1.1.1"
+
+"asap@~2.0.3", "asap@~2.0.6":
+ "integrity" "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY="
+ "resolved" "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz"
+ "version" "2.0.6"
+
+"assign-symbols@^1.0.0":
+ "integrity" "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c="
+ "resolved" "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz"
+ "version" "1.0.0"
+
+"ast-types@0.14.2":
+ "integrity" "sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA=="
+ "resolved" "https://registry.npmjs.org/ast-types/-/ast-types-0.14.2.tgz"
+ "version" "0.14.2"
+ dependencies:
+ "tslib" "^2.0.1"
+
+"astral-regex@^1.0.0":
+ "integrity" "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg=="
+ "resolved" "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz"
+ "version" "1.0.0"
+
+"async-each@^1.0.1":
+ "integrity" "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ=="
+ "resolved" "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz"
+ "version" "1.0.3"
+
+"async-limiter@~1.0.0":
+ "integrity" "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ=="
+ "resolved" "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz"
+ "version" "1.0.1"
+
+"async@^2.4.0":
+ "integrity" "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg=="
+ "resolved" "https://registry.npmjs.org/async/-/async-2.6.3.tgz"
+ "version" "2.6.3"
+ dependencies:
+ "lodash" "^4.17.14"
+
+"asynckit@^0.4.0":
+ "integrity" "sha1-x57Zf380y48robyXkLzDZkdLS3k="
+ "resolved" "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz"
+ "version" "0.4.0"
+
+"atob@^2.1.2":
+ "integrity" "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg=="
+ "resolved" "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz"
+ "version" "2.1.2"
+
+"babel-core@^7.0.0-bridge.0":
+ "integrity" "sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg=="
+ "resolved" "https://registry.npmjs.org/babel-core/-/babel-core-7.0.0-bridge.0.tgz"
+ "version" "7.0.0-bridge.0"
+
+"babel-eslint@^10.1.0":
+ "integrity" "sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg=="
+ "resolved" "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz"
+ "version" "10.1.0"
+ dependencies:
+ "@babel/code-frame" "^7.0.0"
+ "@babel/parser" "^7.7.0"
+ "@babel/traverse" "^7.7.0"
+ "@babel/types" "^7.7.0"
+ "eslint-visitor-keys" "^1.0.0"
+ "resolve" "^1.12.0"
+
+"babel-jest@^26.6.3":
+ "integrity" "sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA=="
+ "resolved" "https://registry.npmjs.org/babel-jest/-/babel-jest-26.6.3.tgz"
+ "version" "26.6.3"
+ dependencies:
+ "@jest/transform" "^26.6.2"
+ "@jest/types" "^26.6.2"
+ "@types/babel__core" "^7.1.7"
+ "babel-plugin-istanbul" "^6.0.0"
+ "babel-preset-jest" "^26.6.2"
+ "chalk" "^4.0.0"
+ "graceful-fs" "^4.2.4"
+ "slash" "^3.0.0"
+
+"babel-plugin-dynamic-import-node@^2.3.3":
+ "integrity" "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ=="
+ "resolved" "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz"
+ "version" "2.3.3"
+ dependencies:
+ "object.assign" "^4.1.0"
+
+"babel-plugin-istanbul@^6.0.0":
+ "integrity" "sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ=="
+ "resolved" "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz"
+ "version" "6.0.0"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.0.0"
+ "@istanbuljs/load-nyc-config" "^1.0.0"
+ "@istanbuljs/schema" "^0.1.2"
+ "istanbul-lib-instrument" "^4.0.0"
+ "test-exclude" "^6.0.0"
+
+"babel-plugin-jest-hoist@^26.6.2":
+ "integrity" "sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw=="
+ "resolved" "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "@babel/template" "^7.3.3"
+ "@babel/types" "^7.3.3"
+ "@types/babel__core" "^7.0.0"
+ "@types/babel__traverse" "^7.0.6"
+
+"babel-plugin-polyfill-corejs2@^0.2.2":
+ "integrity" "sha512-kISrENsJ0z5dNPq5eRvcctITNHYXWOA4DUZRFYCz3jYCcvTb/A546LIddmoGNMVYg2U38OyFeNosQwI9ENTqIQ=="
+ "resolved" "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.2.tgz"
+ "version" "0.2.2"
+ dependencies:
+ "@babel/compat-data" "^7.13.11"
+ "@babel/helper-define-polyfill-provider" "^0.2.2"
+ "semver" "^6.1.1"
+
+"babel-plugin-polyfill-corejs3@^0.2.2":
+ "integrity" "sha512-z3HnJE5TY/j4EFEa/qpQMSbcUJZ5JQi+3UFjXzn6pQCmIKc5Ug5j98SuYyH+m4xQnvKlMDIW4plLfgyVnd0IcQ=="
+ "resolved" "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.4.tgz"
+ "version" "0.2.4"
+ dependencies:
+ "@babel/helper-define-polyfill-provider" "^0.2.2"
+ "core-js-compat" "^3.14.0"
+
+"babel-plugin-polyfill-regenerator@^0.2.2":
+ "integrity" "sha512-Goy5ghsc21HgPDFtzRkSirpZVW35meGoTmTOb2bxqdl60ghub4xOidgNTHaZfQ2FaxQsKmwvXtOAkcIS4SMBWg=="
+ "resolved" "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.2.tgz"
+ "version" "0.2.2"
+ dependencies:
+ "@babel/helper-define-polyfill-provider" "^0.2.2"
+
+"babel-plugin-styled-components@>= 1.12.0":
+ "integrity" "sha512-Vb1R3d4g+MUfPQPVDMCGjm3cDocJEUTR7Xq7QS95JWWeksN1wdFRYpD2kulDgI3Huuaf1CZd+NK4KQmqUFh5dA=="
+ "resolved" "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-1.13.2.tgz"
+ "version" "1.13.2"
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.0.0"
+ "@babel/helper-module-imports" "^7.0.0"
+ "babel-plugin-syntax-jsx" "^6.18.0"
+ "lodash" "^4.17.11"
+
+"babel-plugin-syntax-jsx@^6.18.0":
+ "integrity" "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY="
+ "resolved" "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz"
+ "version" "6.18.0"
+
+"babel-plugin-syntax-trailing-function-commas@^7.0.0-beta.0":
+ "integrity" "sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ=="
+ "resolved" "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz"
+ "version" "7.0.0-beta.0"
+
+"babel-preset-current-node-syntax@^1.0.0":
+ "integrity" "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ=="
+ "resolved" "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz"
+ "version" "1.0.1"
+ dependencies:
+ "@babel/plugin-syntax-async-generators" "^7.8.4"
+ "@babel/plugin-syntax-bigint" "^7.8.3"
+ "@babel/plugin-syntax-class-properties" "^7.8.3"
+ "@babel/plugin-syntax-import-meta" "^7.8.3"
+ "@babel/plugin-syntax-json-strings" "^7.8.3"
+ "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3"
+ "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
+ "@babel/plugin-syntax-numeric-separator" "^7.8.3"
+ "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
+ "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
+ "@babel/plugin-syntax-optional-chaining" "^7.8.3"
+ "@babel/plugin-syntax-top-level-await" "^7.8.3"
+
+"babel-preset-fbjs@^3.3.0":
+ "integrity" "sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow=="
+ "resolved" "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.4.0.tgz"
+ "version" "3.4.0"
+ dependencies:
+ "@babel/plugin-proposal-class-properties" "^7.0.0"
+ "@babel/plugin-proposal-object-rest-spread" "^7.0.0"
+ "@babel/plugin-syntax-class-properties" "^7.0.0"
+ "@babel/plugin-syntax-flow" "^7.0.0"
+ "@babel/plugin-syntax-jsx" "^7.0.0"
+ "@babel/plugin-syntax-object-rest-spread" "^7.0.0"
+ "@babel/plugin-transform-arrow-functions" "^7.0.0"
+ "@babel/plugin-transform-block-scoped-functions" "^7.0.0"
+ "@babel/plugin-transform-block-scoping" "^7.0.0"
+ "@babel/plugin-transform-classes" "^7.0.0"
+ "@babel/plugin-transform-computed-properties" "^7.0.0"
+ "@babel/plugin-transform-destructuring" "^7.0.0"
+ "@babel/plugin-transform-flow-strip-types" "^7.0.0"
+ "@babel/plugin-transform-for-of" "^7.0.0"
+ "@babel/plugin-transform-function-name" "^7.0.0"
+ "@babel/plugin-transform-literals" "^7.0.0"
+ "@babel/plugin-transform-member-expression-literals" "^7.0.0"
+ "@babel/plugin-transform-modules-commonjs" "^7.0.0"
+ "@babel/plugin-transform-object-super" "^7.0.0"
+ "@babel/plugin-transform-parameters" "^7.0.0"
+ "@babel/plugin-transform-property-literals" "^7.0.0"
+ "@babel/plugin-transform-react-display-name" "^7.0.0"
+ "@babel/plugin-transform-react-jsx" "^7.0.0"
+ "@babel/plugin-transform-shorthand-properties" "^7.0.0"
+ "@babel/plugin-transform-spread" "^7.0.0"
+ "@babel/plugin-transform-template-literals" "^7.0.0"
+ "babel-plugin-syntax-trailing-function-commas" "^7.0.0-beta.0"
+
+"babel-preset-jest@^26.6.2":
+ "integrity" "sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ=="
+ "resolved" "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "babel-plugin-jest-hoist" "^26.6.2"
+ "babel-preset-current-node-syntax" "^1.0.0"
+
+"balanced-match@^1.0.0":
+ "integrity" "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
+ "resolved" "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz"
+ "version" "1.0.2"
+
+"base@^0.11.1":
+ "integrity" "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg=="
+ "resolved" "https://registry.npmjs.org/base/-/base-0.11.2.tgz"
+ "version" "0.11.2"
+ dependencies:
+ "cache-base" "^1.0.1"
+ "class-utils" "^0.3.5"
+ "component-emitter" "^1.2.1"
+ "define-property" "^1.0.0"
+ "isobject" "^3.0.1"
+ "mixin-deep" "^1.2.0"
+ "pascalcase" "^0.1.1"
+
+"base64-js@^1.1.2", "base64-js@^1.5.1":
+ "integrity" "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
+ "resolved" "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz"
+ "version" "1.5.1"
+
+"big-integer@^1.6.44":
+ "integrity" "sha512-j51egjPa7/i+RdiRuJbPdJ2FIUYYPhvYLjzoYbcMMm62ooO6F94fETG4MTs46zPAF9Brs04OajboA/qTGuz78w=="
+ "resolved" "https://registry.npmjs.org/big-integer/-/big-integer-1.6.48.tgz"
+ "version" "1.6.48"
+
+"binary-extensions@^1.0.0":
+ "integrity" "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw=="
+ "resolved" "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz"
+ "version" "1.13.1"
+
+"binary-extensions@^2.0.0":
+ "integrity" "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA=="
+ "resolved" "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz"
+ "version" "2.2.0"
+
+"bplist-creator@0.0.8":
+ "integrity" "sha512-Za9JKzD6fjLC16oX2wsXfc+qBEhJBJB1YPInoAQpMLhDuj5aVOv1baGeIQSq1Fr3OCqzvsoQcSBSwGId/Ja2PA=="
+ "resolved" "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.0.8.tgz"
+ "version" "0.0.8"
+ dependencies:
+ "stream-buffers" "~2.2.0"
+
+"bplist-parser@0.2.0":
+ "integrity" "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw=="
+ "resolved" "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz"
+ "version" "0.2.0"
+ dependencies:
+ "big-integer" "^1.6.44"
+
+"brace-expansion@^1.1.7":
+ "integrity" "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="
+ "resolved" "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"
+ "version" "1.1.11"
+ dependencies:
+ "balanced-match" "^1.0.0"
+ "concat-map" "0.0.1"
+
+"braces@^2.3.1", "braces@^2.3.2":
+ "integrity" "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w=="
+ "resolved" "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz"
+ "version" "2.3.2"
+ dependencies:
+ "arr-flatten" "^1.1.0"
+ "array-unique" "^0.3.2"
+ "extend-shallow" "^2.0.1"
+ "fill-range" "^4.0.0"
+ "isobject" "^3.0.1"
+ "repeat-element" "^1.1.2"
+ "snapdragon" "^0.8.1"
+ "snapdragon-node" "^2.0.1"
+ "split-string" "^3.0.2"
+ "to-regex" "^3.0.1"
+
+"braces@^3.0.1", "braces@~3.0.2":
+ "integrity" "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A=="
+ "resolved" "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz"
+ "version" "3.0.2"
+ dependencies:
+ "fill-range" "^7.0.1"
+
+"browser-process-hrtime@^1.0.0":
+ "integrity" "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow=="
+ "resolved" "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz"
+ "version" "1.0.0"
+
+"browserslist@^4.16.6":
+ "integrity" "sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ=="
+ "resolved" "https://registry.npmjs.org/browserslist/-/browserslist-4.16.6.tgz"
+ "version" "4.16.6"
+ dependencies:
+ "caniuse-lite" "^1.0.30001219"
+ "colorette" "^1.2.2"
+ "electron-to-chromium" "^1.3.723"
+ "escalade" "^3.1.1"
+ "node-releases" "^1.1.71"
+
+"bser@2.1.1":
+ "integrity" "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ=="
+ "resolved" "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz"
+ "version" "2.1.1"
+ dependencies:
+ "node-int64" "^0.4.0"
+
+"buffer-from@^1.0.0":
+ "integrity" "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ=="
+ "resolved" "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz"
+ "version" "1.1.2"
+
+"bytes@3.0.0":
+ "integrity" "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg="
+ "resolved" "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz"
+ "version" "3.0.0"
+
+"cache-base@^1.0.1":
+ "integrity" "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ=="
+ "resolved" "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz"
+ "version" "1.0.1"
+ dependencies:
+ "collection-visit" "^1.0.0"
+ "component-emitter" "^1.2.1"
+ "get-value" "^2.0.6"
+ "has-value" "^1.0.0"
+ "isobject" "^3.0.1"
+ "set-value" "^2.0.0"
+ "to-object-path" "^0.3.0"
+ "union-value" "^1.0.0"
+ "unset-value" "^1.0.0"
+
+"call-bind@^1.0.0", "call-bind@^1.0.2":
+ "integrity" "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA=="
+ "resolved" "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz"
+ "version" "1.0.2"
+ dependencies:
+ "function-bind" "^1.1.1"
+ "get-intrinsic" "^1.0.2"
+
+"caller-callsite@^2.0.0":
+ "integrity" "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ="
+ "resolved" "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz"
+ "version" "2.0.0"
+ dependencies:
+ "callsites" "^2.0.0"
+
+"caller-path@^2.0.0":
+ "integrity" "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ="
+ "resolved" "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz"
+ "version" "2.0.0"
+ dependencies:
+ "caller-callsite" "^2.0.0"
+
+"callsites@^2.0.0":
+ "integrity" "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA="
+ "resolved" "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz"
+ "version" "2.0.0"
+
+"callsites@^3.0.0":
+ "integrity" "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="
+ "resolved" "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz"
+ "version" "3.1.0"
+
+"camelcase@^5.0.0", "camelcase@^5.3.1":
+ "integrity" "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="
+ "resolved" "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz"
+ "version" "5.3.1"
+
+"camelcase@^6.0.0":
+ "integrity" "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg=="
+ "resolved" "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz"
+ "version" "6.2.0"
+
+"camelize@^1.0.0":
+ "integrity" "sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs="
+ "resolved" "https://registry.npmjs.org/camelize/-/camelize-1.0.0.tgz"
+ "version" "1.0.0"
+
+"caniuse-lite@^1.0.30001219":
+ "integrity" "sha512-NwlQbJkxUFJ8nMErnGtT0QTM2TJ33xgz4KXJSMIrjXIbDVdaYueGyjOrLKRtJC+rTiWfi6j5cnZN1NBiSBJGNw=="
+ "resolved" "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001248.tgz"
+ "version" "1.0.30001248"
+
+"capture-exit@^2.0.0":
+ "integrity" "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g=="
+ "resolved" "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz"
+ "version" "2.0.0"
+ dependencies:
+ "rsvp" "^4.8.4"
+
+"chalk@^2.0.0", "chalk@^2.0.1", "chalk@^2.4.2":
+ "integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="
+ "resolved" "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"
+ "version" "2.4.2"
+ dependencies:
+ "ansi-styles" "^3.2.1"
+ "escape-string-regexp" "^1.0.5"
+ "supports-color" "^5.3.0"
+
+"chalk@^3.0.0":
+ "integrity" "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg=="
+ "resolved" "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz"
+ "version" "3.0.0"
+ dependencies:
+ "ansi-styles" "^4.1.0"
+ "supports-color" "^7.1.0"
+
+"chalk@^4.0.0":
+ "integrity" "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="
+ "resolved" "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"
+ "version" "4.1.2"
+ dependencies:
+ "ansi-styles" "^4.1.0"
+ "supports-color" "^7.1.0"
+
+"char-regex@^1.0.2":
+ "integrity" "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw=="
+ "resolved" "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz"
+ "version" "1.0.2"
+
+"chokidar@^3.4.0":
+ "integrity" "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ=="
+ "resolved" "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz"
+ "version" "3.5.2"
+ dependencies:
+ "anymatch" "~3.1.2"
+ "braces" "~3.0.2"
+ "glob-parent" "~5.1.2"
+ "is-binary-path" "~2.1.0"
+ "is-glob" "~4.0.1"
+ "normalize-path" "~3.0.0"
+ "readdirp" "~3.6.0"
+ optionalDependencies:
+ "fsevents" "~2.3.2"
+
+"ci-info@^2.0.0":
+ "integrity" "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ=="
+ "resolved" "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz"
+ "version" "2.0.0"
+
+"cjs-module-lexer@^0.6.0":
+ "integrity" "sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw=="
+ "resolved" "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz"
+ "version" "0.6.0"
+
+"class-utils@^0.3.5":
+ "integrity" "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg=="
+ "resolved" "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz"
+ "version" "0.3.6"
+ dependencies:
+ "arr-union" "^3.1.0"
+ "define-property" "^0.2.5"
+ "isobject" "^3.0.0"
+ "static-extend" "^0.1.1"
+
+"cli-cursor@^2.1.0":
+ "integrity" "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU="
+ "resolved" "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz"
+ "version" "2.1.0"
+ dependencies:
+ "restore-cursor" "^2.0.0"
+
+"cli-spinners@^2.0.0":
+ "integrity" "sha512-t+4/y50K/+4xcCRosKkA7W4gTr1MySvLV0q+PxmG7FJ5g+66ChKurYjxBCjHggHH3HA5Hh9cy+lcUGWDqVH+4Q=="
+ "resolved" "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.0.tgz"
+ "version" "2.6.0"
+
+"cliui@^6.0.0":
+ "integrity" "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ=="
+ "resolved" "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz"
+ "version" "6.0.0"
+ dependencies:
+ "string-width" "^4.2.0"
+ "strip-ansi" "^6.0.0"
+ "wrap-ansi" "^6.2.0"
+
+"cliui@^7.0.2":
+ "integrity" "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ=="
+ "resolved" "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz"
+ "version" "7.0.4"
+ dependencies:
+ "string-width" "^4.2.0"
+ "strip-ansi" "^6.0.0"
+ "wrap-ansi" "^7.0.0"
+
+"clone-deep@^4.0.1":
+ "integrity" "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ=="
+ "resolved" "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz"
+ "version" "4.0.1"
+ dependencies:
+ "is-plain-object" "^2.0.4"
+ "kind-of" "^6.0.2"
+ "shallow-clone" "^3.0.0"
+
+"clone@^1.0.2":
+ "integrity" "sha1-2jCcwmPfFZlMaIypAheco8fNfH4="
+ "resolved" "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz"
+ "version" "1.0.4"
+
+"co@^4.6.0":
+ "integrity" "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ="
+ "resolved" "https://registry.npmjs.org/co/-/co-4.6.0.tgz"
+ "version" "4.6.0"
+
+"collect-v8-coverage@^1.0.0":
+ "integrity" "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg=="
+ "resolved" "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz"
+ "version" "1.0.1"
+
+"collection-visit@^1.0.0":
+ "integrity" "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA="
+ "resolved" "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz"
+ "version" "1.0.0"
+ dependencies:
+ "map-visit" "^1.0.0"
+ "object-visit" "^1.0.0"
+
+"color-convert@^1.9.0", "color-convert@^1.9.3":
+ "integrity" "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="
+ "resolved" "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"
+ "version" "1.9.3"
+ dependencies:
+ "color-name" "1.1.3"
+
+"color-convert@^2.0.1":
+ "integrity" "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="
+ "resolved" "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz"
+ "version" "2.0.1"
+ dependencies:
+ "color-name" "~1.1.4"
+
+"color-name@^1.0.0", "color-name@1.1.3":
+ "integrity" "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
+ "resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"
+ "version" "1.1.3"
+
+"color-name@~1.1.4":
+ "integrity" "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
+ "resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"
+ "version" "1.1.4"
+
+"color-string@^1.6.0":
+ "integrity" "sha512-c/hGS+kRWJutUBEngKKmk4iH3sD59MBkoxVapS/0wgpCz2u7XsNloxknyvBhzwEs1IbV36D9PwqLPJ2DTu3vMA=="
+ "resolved" "https://registry.npmjs.org/color-string/-/color-string-1.6.0.tgz"
+ "version" "1.6.0"
+ dependencies:
+ "color-name" "^1.0.0"
+ "simple-swizzle" "^0.2.2"
+
+"color@^3.1.2", "color@^3.1.3":
+ "integrity" "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA=="
+ "resolved" "https://registry.npmjs.org/color/-/color-3.2.1.tgz"
+ "version" "3.2.1"
+ dependencies:
+ "color-convert" "^1.9.3"
+ "color-string" "^1.6.0"
+
+"colorette@^1.0.7", "colorette@^1.2.2":
+ "integrity" "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w=="
+ "resolved" "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz"
+ "version" "1.2.2"
+
+"colors@^1.1.2":
+ "integrity" "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA=="
+ "resolved" "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz"
+ "version" "1.4.0"
+
+"combined-stream@^1.0.8":
+ "integrity" "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="
+ "resolved" "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz"
+ "version" "1.0.8"
+ dependencies:
+ "delayed-stream" "~1.0.0"
+
+"command-exists@^1.2.8":
+ "integrity" "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w=="
+ "resolved" "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz"
+ "version" "1.2.9"
+
+"commander@^2.19.0":
+ "integrity" "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="
+ "resolved" "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz"
+ "version" "2.20.3"
+
+"commander@^4.0.1":
+ "integrity" "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA=="
+ "resolved" "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz"
+ "version" "4.1.1"
+
+"commander@~2.13.0":
+ "integrity" "sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA=="
+ "resolved" "https://registry.npmjs.org/commander/-/commander-2.13.0.tgz"
+ "version" "2.13.0"
+
+"commondir@^1.0.1":
+ "integrity" "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs="
+ "resolved" "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz"
+ "version" "1.0.1"
+
+"component-emitter@^1.2.1":
+ "integrity" "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg=="
+ "resolved" "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz"
+ "version" "1.3.0"
+
+"compressible@~2.0.16":
+ "integrity" "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg=="
+ "resolved" "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz"
+ "version" "2.0.18"
+ dependencies:
+ "mime-db" ">= 1.43.0 < 2"
+
+"compression@^1.7.1":
+ "integrity" "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ=="
+ "resolved" "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz"
+ "version" "1.7.4"
+ dependencies:
+ "accepts" "~1.3.5"
+ "bytes" "3.0.0"
+ "compressible" "~2.0.16"
+ "debug" "2.6.9"
+ "on-headers" "~1.0.2"
+ "safe-buffer" "5.1.2"
+ "vary" "~1.1.2"
+
+"concat-map@0.0.1":
+ "integrity" "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
+ "resolved" "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"
+ "version" "0.0.1"
+
+"connect@^3.6.5":
+ "integrity" "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ=="
+ "resolved" "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz"
+ "version" "3.7.0"
+ dependencies:
+ "debug" "2.6.9"
+ "finalhandler" "1.1.2"
+ "parseurl" "~1.3.3"
+ "utils-merge" "1.0.1"
+
+"convert-source-map@^1.1.0", "convert-source-map@^1.4.0", "convert-source-map@^1.6.0", "convert-source-map@^1.7.0":
+ "integrity" "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA=="
+ "resolved" "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz"
+ "version" "1.8.0"
+ dependencies:
+ "safe-buffer" "~5.1.1"
+
+"copy-descriptor@^0.1.0":
+ "integrity" "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40="
+ "resolved" "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz"
+ "version" "0.1.1"
+
+"core-js-compat@^3.14.0":
+ "integrity" "sha512-5D9sPHCdewoUK7pSUPfTF7ZhLh8k9/CoJXWUEo+F1dZT5Z1DVgcuRqUKhjeKW+YLb8f21rTFgWwQJiNw1hoZ5Q=="
+ "resolved" "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.16.0.tgz"
+ "version" "3.16.0"
+ dependencies:
+ "browserslist" "^4.16.6"
+ "semver" "7.0.0"
+
+"core-util-is@~1.0.0":
+ "integrity" "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
+ "resolved" "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"
+ "version" "1.0.2"
+
+"cosmiconfig@^5.0.5", "cosmiconfig@^5.1.0":
+ "integrity" "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA=="
+ "resolved" "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz"
+ "version" "5.2.1"
+ dependencies:
+ "import-fresh" "^2.0.0"
+ "is-directory" "^0.3.1"
+ "js-yaml" "^3.13.1"
+ "parse-json" "^4.0.0"
+
+"cross-fetch@^3.0.4":
+ "integrity" "sha512-1eAtFWdIubi6T4XPy6ei9iUFoKpUkIF971QLN8lIvvvwueI65+Nw5haMNKUwfJxabqlIIDODJKGrQ66gxC0PbQ=="
+ "resolved" "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.4.tgz"
+ "version" "3.1.4"
+ dependencies:
+ "node-fetch" "2.6.1"
+
+"cross-spawn@^6.0.0":
+ "integrity" "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ=="
+ "resolved" "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz"
+ "version" "6.0.5"
+ dependencies:
+ "nice-try" "^1.0.4"
+ "path-key" "^2.0.1"
+ "semver" "^5.5.0"
+ "shebang-command" "^1.2.0"
+ "which" "^1.2.9"
+
+"cross-spawn@^7.0.0", "cross-spawn@^7.0.2":
+ "integrity" "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w=="
+ "resolved" "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz"
+ "version" "7.0.3"
+ dependencies:
+ "path-key" "^3.1.0"
+ "shebang-command" "^2.0.0"
+ "which" "^2.0.1"
+
+"css-color-keywords@^1.0.0":
+ "integrity" "sha1-/qJhbcZ2spYmhrOvjb2+GAskTgU="
+ "resolved" "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz"
+ "version" "1.0.0"
+
+"css-to-react-native@^3.0.0":
+ "integrity" "sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ=="
+ "resolved" "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.0.0.tgz"
+ "version" "3.0.0"
+ dependencies:
+ "camelize" "^1.0.0"
+ "css-color-keywords" "^1.0.0"
+ "postcss-value-parser" "^4.0.2"
+
+"cssom@^0.4.4":
+ "integrity" "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw=="
+ "resolved" "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz"
+ "version" "0.4.4"
+
+"cssom@~0.3.6":
+ "integrity" "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg=="
+ "resolved" "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz"
+ "version" "0.3.8"
+
+"cssstyle@^2.3.0":
+ "integrity" "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A=="
+ "resolved" "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz"
+ "version" "2.3.0"
+ dependencies:
+ "cssom" "~0.3.6"
+
+"csstype@^3.0.2":
+ "integrity" "sha512-jXKhWqXPmlUeoQnF/EhTtTl4C9SnrxSH/jZUih3jmO6lBKr99rP3/+FmrMj4EFpOXzMtXHAZkd3x0E6h6Fgflw=="
+ "resolved" "https://registry.npmjs.org/csstype/-/csstype-3.0.8.tgz"
+ "version" "3.0.8"
+
+"data-urls@^2.0.0":
+ "integrity" "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ=="
+ "resolved" "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz"
+ "version" "2.0.0"
+ dependencies:
+ "abab" "^2.0.3"
+ "whatwg-mimetype" "^2.3.0"
+ "whatwg-url" "^8.0.0"
+
+"dayjs@^1.8.15":
+ "integrity" "sha512-AztC/IOW4L1Q41A86phW5Thhcrco3xuAA+YX/BLpLWWjRcTj5TOt/QImBLmCKlrF7u7k47arTnOyL6GnbG8Hvw=="
+ "resolved" "https://registry.npmjs.org/dayjs/-/dayjs-1.10.6.tgz"
+ "version" "1.10.6"
+
+"debug@^2.2.0":
+ "integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="
+ "resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"
+ "version" "2.6.9"
+ dependencies:
+ "ms" "2.0.0"
+
+"debug@^2.3.3":
+ "integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="
+ "resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"
+ "version" "2.6.9"
+ dependencies:
+ "ms" "2.0.0"
+
+"debug@^4.0.1", "debug@^4.1.0", "debug@^4.1.1", "debug@4":
+ "integrity" "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw=="
+ "resolved" "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz"
+ "version" "4.3.2"
+ dependencies:
+ "ms" "2.1.2"
+
+"debug@2.6.9":
+ "integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="
+ "resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"
+ "version" "2.6.9"
+ dependencies:
+ "ms" "2.0.0"
+
+"decamelize@^1.2.0":
+ "integrity" "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA="
+ "resolved" "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"
+ "version" "1.2.0"
+
+"decimal.js@^10.2.1":
+ "integrity" "sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ=="
+ "resolved" "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz"
+ "version" "10.3.1"
+
+"decode-uri-component@^0.2.0":
+ "integrity" "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU="
+ "resolved" "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz"
+ "version" "0.2.0"
+
+"deep-is@^0.1.3", "deep-is@~0.1.3":
+ "integrity" "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ="
+ "resolved" "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz"
+ "version" "0.1.3"
+
+"deepmerge@^3.2.0":
+ "integrity" "sha512-GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA=="
+ "resolved" "https://registry.npmjs.org/deepmerge/-/deepmerge-3.3.0.tgz"
+ "version" "3.3.0"
+
+"deepmerge@^4.2.2":
+ "integrity" "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg=="
+ "resolved" "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz"
+ "version" "4.2.2"
+
+"defaults@^1.0.3":
+ "integrity" "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730="
+ "resolved" "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz"
+ "version" "1.0.3"
+ dependencies:
+ "clone" "^1.0.2"
+
+"define-properties@^1.1.3":
+ "integrity" "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ=="
+ "resolved" "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz"
+ "version" "1.1.3"
+ dependencies:
+ "object-keys" "^1.0.12"
+
+"define-property@^0.2.5":
+ "integrity" "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY="
+ "resolved" "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz"
+ "version" "0.2.5"
+ dependencies:
+ "is-descriptor" "^0.1.0"
+
+"define-property@^1.0.0":
+ "integrity" "sha1-dp66rz9KY6rTr56NMEybvnm/sOY="
+ "resolved" "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz"
+ "version" "1.0.0"
+ dependencies:
+ "is-descriptor" "^1.0.0"
+
+"define-property@^2.0.2":
+ "integrity" "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ=="
+ "resolved" "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz"
+ "version" "2.0.2"
+ dependencies:
+ "is-descriptor" "^1.0.2"
+ "isobject" "^3.0.1"
+
+"delayed-stream@~1.0.0":
+ "integrity" "sha1-3zrhmayt+31ECqrgsp4icrJOxhk="
+ "resolved" "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz"
+ "version" "1.0.0"
+
+"denodeify@^1.2.1":
+ "integrity" "sha1-OjYof1A05pnnV3kBBSwubJQlFjE="
+ "resolved" "https://registry.npmjs.org/denodeify/-/denodeify-1.2.1.tgz"
+ "version" "1.2.1"
+
+"depd@~1.1.2":
+ "integrity" "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak="
+ "resolved" "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz"
+ "version" "1.1.2"
+
+"destroy@~1.0.4":
+ "integrity" "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA="
+ "resolved" "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz"
+ "version" "1.0.4"
+
+"detect-newline@^3.0.0":
+ "integrity" "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA=="
+ "resolved" "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz"
+ "version" "3.1.0"
+
+"diff-sequences@^26.6.2":
+ "integrity" "sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q=="
+ "resolved" "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz"
+ "version" "26.6.2"
+
+"doctrine@^2.1.0":
+ "integrity" "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw=="
+ "resolved" "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz"
+ "version" "2.1.0"
+ dependencies:
+ "esutils" "^2.0.2"
+
+"doctrine@^3.0.0":
+ "integrity" "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w=="
+ "resolved" "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz"
+ "version" "3.0.0"
+ dependencies:
+ "esutils" "^2.0.2"
+
+"domexception@^2.0.1":
+ "integrity" "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg=="
+ "resolved" "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz"
+ "version" "2.0.1"
+ dependencies:
+ "webidl-conversions" "^5.0.0"
+
+"ee-first@1.1.1":
+ "integrity" "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0="
+ "resolved" "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz"
+ "version" "1.1.1"
+
+"electron-to-chromium@^1.3.723":
+ "integrity" "sha512-RM2O2xrNarM7Cs+XF/OE2qX/aBROyOZqqgP+8FXMXSuWuUqCfUUzg7NytQrzZU3aSqk1Qq6zqnVkJsbfMkIatg=="
+ "resolved" "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.792.tgz"
+ "version" "1.3.792"
+
+"emittery@^0.7.1":
+ "integrity" "sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ=="
+ "resolved" "https://registry.npmjs.org/emittery/-/emittery-0.7.2.tgz"
+ "version" "0.7.2"
+
+"emoji-regex@^7.0.1":
+ "integrity" "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA=="
+ "resolved" "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz"
+ "version" "7.0.3"
+
+"emoji-regex@^8.0.0":
+ "integrity" "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
+ "resolved" "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz"
+ "version" "8.0.0"
+
+"encodeurl@~1.0.2":
+ "integrity" "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k="
+ "resolved" "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz"
+ "version" "1.0.2"
+
+"end-of-stream@^1.1.0":
+ "integrity" "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q=="
+ "resolved" "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz"
+ "version" "1.4.4"
+ dependencies:
+ "once" "^1.4.0"
+
+"enquirer@^2.3.5":
+ "integrity" "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg=="
+ "resolved" "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz"
+ "version" "2.3.6"
+ dependencies:
+ "ansi-colors" "^4.1.1"
+
+"envinfo@^7.7.2":
+ "integrity" "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw=="
+ "resolved" "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz"
+ "version" "7.8.1"
+
+"error-ex@^1.3.1":
+ "integrity" "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g=="
+ "resolved" "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz"
+ "version" "1.3.2"
+ dependencies:
+ "is-arrayish" "^0.2.1"
+
+"error-stack-parser@^2.0.6":
+ "integrity" "sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ=="
+ "resolved" "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.0.6.tgz"
+ "version" "2.0.6"
+ dependencies:
+ "stackframe" "^1.1.1"
+
+"errorhandler@^1.5.0":
+ "integrity" "sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A=="
+ "resolved" "https://registry.npmjs.org/errorhandler/-/errorhandler-1.5.1.tgz"
+ "version" "1.5.1"
+ dependencies:
+ "accepts" "~1.3.7"
+ "escape-html" "~1.0.3"
+
+"es-abstract@^1.18.0-next.1", "es-abstract@^1.18.0-next.2", "es-abstract@^1.18.2":
+ "integrity" "sha512-xjDAPJRxKc1uoTkdW8MEk7Fq/2bzz3YoCADYniDV7+KITCUdu9c90fj1aKI7nEZFZxRrHlDo3wtma/C6QkhlXQ=="
+ "resolved" "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.4.tgz"
+ "version" "1.18.4"
+ dependencies:
+ "call-bind" "^1.0.2"
+ "es-to-primitive" "^1.2.1"
+ "function-bind" "^1.1.1"
+ "get-intrinsic" "^1.1.1"
+ "has" "^1.0.3"
+ "has-symbols" "^1.0.2"
+ "internal-slot" "^1.0.3"
+ "is-callable" "^1.2.3"
+ "is-negative-zero" "^2.0.1"
+ "is-regex" "^1.1.3"
+ "is-string" "^1.0.6"
+ "object-inspect" "^1.11.0"
+ "object-keys" "^1.1.1"
+ "object.assign" "^4.1.2"
+ "string.prototype.trimend" "^1.0.4"
+ "string.prototype.trimstart" "^1.0.4"
+ "unbox-primitive" "^1.0.1"
+
+"es-to-primitive@^1.2.1":
+ "integrity" "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA=="
+ "resolved" "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz"
+ "version" "1.2.1"
+ dependencies:
+ "is-callable" "^1.1.4"
+ "is-date-object" "^1.0.1"
+ "is-symbol" "^1.0.2"
+
+"escalade@^3.1.1":
+ "integrity" "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw=="
+ "resolved" "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz"
+ "version" "3.1.1"
+
+"escape-html@~1.0.3":
+ "integrity" "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg="
+ "resolved" "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz"
+ "version" "1.0.3"
+
+"escape-string-regexp@^1.0.5":
+ "integrity" "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
+ "resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"
+ "version" "1.0.5"
+
+"escape-string-regexp@^2.0.0":
+ "integrity" "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w=="
+ "resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz"
+ "version" "2.0.0"
+
+"escape-string-regexp@^4.0.0":
+ "integrity" "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="
+ "resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"
+ "version" "4.0.0"
+
+"escodegen@^2.0.0":
+ "integrity" "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw=="
+ "resolved" "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz"
+ "version" "2.0.0"
+ dependencies:
+ "esprima" "^4.0.1"
+ "estraverse" "^5.2.0"
+ "esutils" "^2.0.2"
+ "optionator" "^0.8.1"
+ optionalDependencies:
+ "source-map" "~0.6.1"
+
+"eslint-config-prettier@^6.10.1":
+ "integrity" "sha512-a1+kOYLR8wMGustcgAjdydMsQ2A/2ipRPwRKUmfYaSxc9ZPcrku080Ctl6zrZzZNs/U82MjSv+qKREkoq3bJaw=="
+ "resolved" "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-6.15.0.tgz"
+ "version" "6.15.0"
+ dependencies:
+ "get-stdin" "^6.0.0"
+
+"eslint-plugin-eslint-comments@^3.1.2":
+ "integrity" "sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ=="
+ "resolved" "https://registry.npmjs.org/eslint-plugin-eslint-comments/-/eslint-plugin-eslint-comments-3.2.0.tgz"
+ "version" "3.2.0"
+ dependencies:
+ "escape-string-regexp" "^1.0.5"
+ "ignore" "^5.0.5"
+
+"eslint-plugin-flowtype@2.50.3":
+ "integrity" "sha512-X+AoKVOr7Re0ko/yEXyM5SSZ0tazc6ffdIOocp2fFUlWoDt7DV0Bz99mngOkAFLOAWjqRA5jPwqUCbrx13XoxQ=="
+ "resolved" "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.50.3.tgz"
+ "version" "2.50.3"
+ dependencies:
+ "lodash" "^4.17.10"
+
+"eslint-plugin-jest@22.4.1":
+ "integrity" "sha512-gcLfn6P2PrFAVx3AobaOzlIEevpAEf9chTpFZz7bYfc7pz8XRv7vuKTIE4hxPKZSha6XWKKplDQ0x9Pq8xX2mg=="
+ "resolved" "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-22.4.1.tgz"
+ "version" "22.4.1"
+
+"eslint-plugin-prettier@^3.4.0":
+ "integrity" "sha512-UDK6rJT6INSfcOo545jiaOwB701uAIt2/dR7WnFQoGCVl1/EMqdANBmwUaqqQ45aXprsTGzSa39LI1PyuRBxxw=="
+ "resolved" "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.4.0.tgz"
+ "version" "3.4.0"
+ dependencies:
+ "prettier-linter-helpers" "^1.0.0"
+
+"eslint-plugin-prettier@3.1.2":
+ "integrity" "sha512-GlolCC9y3XZfv3RQfwGew7NnuFDKsfI4lbvRK+PIIo23SFH+LemGs4cKwzAaRa+Mdb+lQO/STaIayno8T5sJJA=="
+ "resolved" "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.2.tgz"
+ "version" "3.1.2"
+ dependencies:
+ "prettier-linter-helpers" "^1.0.0"
+
+"eslint-plugin-react-hooks@^4.0.4":
+ "integrity" "sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ=="
+ "resolved" "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.2.0.tgz"
+ "version" "4.2.0"
+
+"eslint-plugin-react-native-globals@^0.1.1":
+ "integrity" "sha512-9aEPf1JEpiTjcFAmmyw8eiIXmcNZOqaZyHO77wgm0/dWfT/oxC1SrIq8ET38pMxHYrcB6Uew+TzUVsBeczF88g=="
+ "resolved" "https://registry.npmjs.org/eslint-plugin-react-native-globals/-/eslint-plugin-react-native-globals-0.1.2.tgz"
+ "version" "0.1.2"
+
+"eslint-plugin-react-native@^3.8.1":
+ "integrity" "sha512-7F3OTwrtQPfPFd+VygqKA2VZ0f2fz0M4gJmry/TRE18JBb94/OtMxwbL7Oqwu7FGyrdeIOWnXQbBAveMcSTZIA=="
+ "resolved" "https://registry.npmjs.org/eslint-plugin-react-native/-/eslint-plugin-react-native-3.11.0.tgz"
+ "version" "3.11.0"
+ dependencies:
+ "@babel/traverse" "^7.7.4"
+ "eslint-plugin-react-native-globals" "^0.1.1"
+
+"eslint-plugin-react@^7.20.0":
+ "integrity" "sha512-KJJIx2SYx7PBx3ONe/mEeMz4YE0Lcr7feJTCMyyKb/341NcjuAgim3Acgan89GfPv7nxXK2+0slu0CWXYM4x+Q=="
+ "resolved" "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.24.0.tgz"
+ "version" "7.24.0"
+ dependencies:
+ "array-includes" "^3.1.3"
+ "array.prototype.flatmap" "^1.2.4"
+ "doctrine" "^2.1.0"
+ "has" "^1.0.3"
+ "jsx-ast-utils" "^2.4.1 || ^3.0.0"
+ "minimatch" "^3.0.4"
+ "object.entries" "^1.1.4"
+ "object.fromentries" "^2.0.4"
+ "object.values" "^1.1.4"
+ "prop-types" "^15.7.2"
+ "resolve" "^2.0.0-next.3"
+ "string.prototype.matchall" "^4.0.5"
+
+"eslint-scope@^5.0.0", "eslint-scope@^5.1.1":
+ "integrity" "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw=="
+ "resolved" "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz"
+ "version" "5.1.1"
+ dependencies:
+ "esrecurse" "^4.3.0"
+ "estraverse" "^4.1.1"
+
+"eslint-utils@^2.0.0", "eslint-utils@^2.1.0":
+ "integrity" "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg=="
+ "resolved" "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz"
+ "version" "2.1.0"
+ dependencies:
+ "eslint-visitor-keys" "^1.1.0"
+
+"eslint-visitor-keys@^1.0.0", "eslint-visitor-keys@^1.1.0", "eslint-visitor-keys@^1.3.0":
+ "integrity" "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ=="
+ "resolved" "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz"
+ "version" "1.3.0"
+
+"eslint-visitor-keys@^2.0.0":
+ "integrity" "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw=="
+ "resolved" "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz"
+ "version" "2.1.0"
+
+"eslint@*", "eslint@^3 || ^4 || ^5 || ^6 || ^7", "eslint@^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0", "eslint@^3.17.0 || ^4 || ^5 || ^6 || ^7", "eslint@^5.0.0 || ^6.0.0 || ^7.0.0", "eslint@>= 4.12.1", "eslint@>= 5.0.0", "eslint@>=2.0.0", "eslint@>=3.14.1", "eslint@>=4.19.1", "eslint@>=5", "eslint@>=5.0.0", "eslint@>=6", "eslint@7.14.0":
+ "integrity" "sha512-5YubdnPXrlrYAFCKybPuHIAH++PINe1pmKNc5wQRB9HSbqIK1ywAnntE3Wwua4giKu0bjligf1gLF6qxMGOYRA=="
+ "resolved" "https://registry.npmjs.org/eslint/-/eslint-7.14.0.tgz"
+ "version" "7.14.0"
+ dependencies:
+ "@babel/code-frame" "^7.0.0"
+ "@eslint/eslintrc" "^0.2.1"
+ "ajv" "^6.10.0"
+ "chalk" "^4.0.0"
+ "cross-spawn" "^7.0.2"
+ "debug" "^4.0.1"
+ "doctrine" "^3.0.0"
+ "enquirer" "^2.3.5"
+ "eslint-scope" "^5.1.1"
+ "eslint-utils" "^2.1.0"
+ "eslint-visitor-keys" "^2.0.0"
+ "espree" "^7.3.0"
+ "esquery" "^1.2.0"
+ "esutils" "^2.0.2"
+ "file-entry-cache" "^5.0.1"
+ "functional-red-black-tree" "^1.0.1"
+ "glob-parent" "^5.0.0"
+ "globals" "^12.1.0"
+ "ignore" "^4.0.6"
+ "import-fresh" "^3.0.0"
+ "imurmurhash" "^0.1.4"
+ "is-glob" "^4.0.0"
+ "js-yaml" "^3.13.1"
+ "json-stable-stringify-without-jsonify" "^1.0.1"
+ "levn" "^0.4.1"
+ "lodash" "^4.17.19"
+ "minimatch" "^3.0.4"
+ "natural-compare" "^1.4.0"
+ "optionator" "^0.9.1"
+ "progress" "^2.0.0"
+ "regexpp" "^3.1.0"
+ "semver" "^7.2.1"
+ "strip-ansi" "^6.0.0"
+ "strip-json-comments" "^3.1.0"
+ "table" "^5.2.3"
+ "text-table" "^0.2.0"
+ "v8-compile-cache" "^2.0.3"
+
+"espree@^7.3.0":
+ "integrity" "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g=="
+ "resolved" "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz"
+ "version" "7.3.1"
+ dependencies:
+ "acorn" "^7.4.0"
+ "acorn-jsx" "^5.3.1"
+ "eslint-visitor-keys" "^1.3.0"
+
+"esprima@^4.0.0", "esprima@^4.0.1", "esprima@~4.0.0":
+ "integrity" "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="
+ "resolved" "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz"
+ "version" "4.0.1"
+
+"esquery@^1.2.0":
+ "integrity" "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w=="
+ "resolved" "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz"
+ "version" "1.4.0"
+ dependencies:
+ "estraverse" "^5.1.0"
+
+"esrecurse@^4.3.0":
+ "integrity" "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag=="
+ "resolved" "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz"
+ "version" "4.3.0"
+ dependencies:
+ "estraverse" "^5.2.0"
+
+"estraverse@^4.1.1":
+ "integrity" "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw=="
+ "resolved" "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz"
+ "version" "4.3.0"
+
+"estraverse@^5.1.0":
+ "integrity" "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ=="
+ "resolved" "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz"
+ "version" "5.2.0"
+
+"estraverse@^5.2.0":
+ "integrity" "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ=="
+ "resolved" "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz"
+ "version" "5.2.0"
+
+"esutils@^2.0.2":
+ "integrity" "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="
+ "resolved" "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz"
+ "version" "2.0.3"
+
+"etag@~1.8.1":
+ "integrity" "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc="
+ "resolved" "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz"
+ "version" "1.8.1"
+
+"event-target-shim@^5.0.0", "event-target-shim@^5.0.1":
+ "integrity" "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ=="
+ "resolved" "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz"
+ "version" "5.0.1"
+
+"exec-sh@^0.3.2":
+ "integrity" "sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w=="
+ "resolved" "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.6.tgz"
+ "version" "0.3.6"
+
+"execa@^1.0.0":
+ "integrity" "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA=="
+ "resolved" "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz"
+ "version" "1.0.0"
+ dependencies:
+ "cross-spawn" "^6.0.0"
+ "get-stream" "^4.0.0"
+ "is-stream" "^1.1.0"
+ "npm-run-path" "^2.0.0"
+ "p-finally" "^1.0.0"
+ "signal-exit" "^3.0.0"
+ "strip-eof" "^1.0.0"
+
+"execa@^4.0.0":
+ "integrity" "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA=="
+ "resolved" "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz"
+ "version" "4.1.0"
+ dependencies:
+ "cross-spawn" "^7.0.0"
+ "get-stream" "^5.0.0"
+ "human-signals" "^1.1.1"
+ "is-stream" "^2.0.0"
+ "merge-stream" "^2.0.0"
+ "npm-run-path" "^4.0.0"
+ "onetime" "^5.1.0"
+ "signal-exit" "^3.0.2"
+ "strip-final-newline" "^2.0.0"
+
+"exit@^0.1.2":
+ "integrity" "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw="
+ "resolved" "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz"
+ "version" "0.1.2"
+
+"expand-brackets@^2.1.4":
+ "integrity" "sha1-t3c14xXOMPa27/D4OwQVGiJEliI="
+ "resolved" "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz"
+ "version" "2.1.4"
+ dependencies:
+ "debug" "^2.3.3"
+ "define-property" "^0.2.5"
+ "extend-shallow" "^2.0.1"
+ "posix-character-classes" "^0.1.0"
+ "regex-not" "^1.0.0"
+ "snapdragon" "^0.8.1"
+ "to-regex" "^3.0.1"
+
+"expect@^26.6.2":
+ "integrity" "sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA=="
+ "resolved" "https://registry.npmjs.org/expect/-/expect-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "@jest/types" "^26.6.2"
+ "ansi-styles" "^4.0.0"
+ "jest-get-type" "^26.3.0"
+ "jest-matcher-utils" "^26.6.2"
+ "jest-message-util" "^26.6.2"
+ "jest-regex-util" "^26.0.0"
+
+"extend-shallow@^2.0.1":
+ "integrity" "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8="
+ "resolved" "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz"
+ "version" "2.0.1"
+ dependencies:
+ "is-extendable" "^0.1.0"
+
+"extend-shallow@^3.0.0", "extend-shallow@^3.0.2":
+ "integrity" "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg="
+ "resolved" "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz"
+ "version" "3.0.2"
+ dependencies:
+ "assign-symbols" "^1.0.0"
+ "is-extendable" "^1.0.1"
+
+"extglob@^2.0.4":
+ "integrity" "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw=="
+ "resolved" "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz"
+ "version" "2.0.4"
+ dependencies:
+ "array-unique" "^0.3.2"
+ "define-property" "^1.0.0"
+ "expand-brackets" "^2.1.4"
+ "extend-shallow" "^2.0.1"
+ "fragment-cache" "^0.2.1"
+ "regex-not" "^1.0.0"
+ "snapdragon" "^0.8.1"
+ "to-regex" "^3.0.1"
+
+"fast-deep-equal@^3.1.1":
+ "integrity" "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
+ "resolved" "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz"
+ "version" "3.1.3"
+
+"fast-diff@^1.1.2":
+ "integrity" "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w=="
+ "resolved" "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz"
+ "version" "1.2.0"
+
+"fast-json-stable-stringify@^2.0.0":
+ "integrity" "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
+ "resolved" "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"
+ "version" "2.1.0"
+
+"fast-levenshtein@^2.0.6", "fast-levenshtein@~2.0.6":
+ "integrity" "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc="
+ "resolved" "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"
+ "version" "2.0.6"
+
+"fb-watchman@^2.0.0":
+ "integrity" "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg=="
+ "resolved" "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz"
+ "version" "2.0.1"
+ dependencies:
+ "bser" "2.1.1"
+
+"fbjs-css-vars@^1.0.0":
+ "integrity" "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ=="
+ "resolved" "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz"
+ "version" "1.0.2"
+
+"fbjs@^3.0.0":
+ "integrity" "sha512-dJd4PiDOFuhe7vk4F80Mba83Vr2QuK86FoxtgPmzBqEJahncp+13YCmfoa53KHCo6OnlXLG7eeMWPfB5CrpVKg=="
+ "resolved" "https://registry.npmjs.org/fbjs/-/fbjs-3.0.0.tgz"
+ "version" "3.0.0"
+ dependencies:
+ "cross-fetch" "^3.0.4"
+ "fbjs-css-vars" "^1.0.0"
+ "loose-envify" "^1.0.0"
+ "object-assign" "^4.1.0"
+ "promise" "^7.1.1"
+ "setimmediate" "^1.0.5"
+ "ua-parser-js" "^0.7.18"
+
+"file-entry-cache@^5.0.1":
+ "integrity" "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g=="
+ "resolved" "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz"
+ "version" "5.0.1"
+ dependencies:
+ "flat-cache" "^2.0.1"
+
+"fill-range@^4.0.0":
+ "integrity" "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc="
+ "resolved" "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz"
+ "version" "4.0.0"
+ dependencies:
+ "extend-shallow" "^2.0.1"
+ "is-number" "^3.0.0"
+ "repeat-string" "^1.6.1"
+ "to-regex-range" "^2.1.0"
+
+"fill-range@^7.0.1":
+ "integrity" "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ=="
+ "resolved" "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz"
+ "version" "7.0.1"
+ dependencies:
+ "to-regex-range" "^5.0.1"
+
+"filter-obj@^1.1.0":
+ "integrity" "sha1-mzERErxsYSehbgFsbF1/GeCAXFs="
+ "resolved" "https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz"
+ "version" "1.1.0"
+
+"finalhandler@1.1.2":
+ "integrity" "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA=="
+ "resolved" "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz"
+ "version" "1.1.2"
+ dependencies:
+ "debug" "2.6.9"
+ "encodeurl" "~1.0.2"
+ "escape-html" "~1.0.3"
+ "on-finished" "~2.3.0"
+ "parseurl" "~1.3.3"
+ "statuses" "~1.5.0"
+ "unpipe" "~1.0.0"
+
+"find-cache-dir@^2.0.0":
+ "integrity" "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ=="
+ "resolved" "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz"
+ "version" "2.1.0"
+ dependencies:
+ "commondir" "^1.0.1"
+ "make-dir" "^2.0.0"
+ "pkg-dir" "^3.0.0"
+
+"find-up@^3.0.0":
+ "integrity" "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg=="
+ "resolved" "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz"
+ "version" "3.0.0"
+ dependencies:
+ "locate-path" "^3.0.0"
+
+"find-up@^4.0.0", "find-up@^4.1.0":
+ "integrity" "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw=="
+ "resolved" "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz"
+ "version" "4.1.0"
+ dependencies:
+ "locate-path" "^5.0.0"
+ "path-exists" "^4.0.0"
+
+"flat-cache@^2.0.1":
+ "integrity" "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA=="
+ "resolved" "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz"
+ "version" "2.0.1"
+ dependencies:
+ "flatted" "^2.0.0"
+ "rimraf" "2.6.3"
+ "write" "1.0.3"
+
+"flatted@^2.0.0":
+ "integrity" "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA=="
+ "resolved" "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz"
+ "version" "2.0.2"
+
+"flow-bin@^0.156.0":
+ "integrity" "sha512-KEEsKV7/bePZM3Ja7rYlAaSx8GPiTGr7pt0IJcX5S3GSEIZ2ieayF6JWNjbyLiu7ZUJuWe4ITDnPvyqimUpYww=="
+ "resolved" "https://registry.npmjs.org/flow-bin/-/flow-bin-0.156.0.tgz"
+ "version" "0.156.0"
+
+"flow-parser@^0.121.0", "flow-parser@0.*":
+ "integrity" "sha512-1gIBiWJNR0tKUNv8gZuk7l9rVX06OuLzY9AoGio7y/JT4V1IZErEMEq2TJS+PFcw/y0RshZ1J/27VfK1UQzYVg=="
+ "resolved" "https://registry.npmjs.org/flow-parser/-/flow-parser-0.121.0.tgz"
+ "version" "0.121.0"
+
+"for-in@^1.0.2":
+ "integrity" "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA="
+ "resolved" "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz"
+ "version" "1.0.2"
+
+"form-data@^3.0.0":
+ "integrity" "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg=="
+ "resolved" "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz"
+ "version" "3.0.1"
+ dependencies:
+ "asynckit" "^0.4.0"
+ "combined-stream" "^1.0.8"
+ "mime-types" "^2.1.12"
+
+"fragment-cache@^0.2.1":
+ "integrity" "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk="
+ "resolved" "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz"
+ "version" "0.2.1"
+ dependencies:
+ "map-cache" "^0.2.2"
+
+"fresh@0.5.2":
+ "integrity" "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac="
+ "resolved" "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz"
+ "version" "0.5.2"
+
+"fs-extra@^1.0.0":
+ "integrity" "sha1-zTzl9+fLYUWIP8rjGR6Yd/hYeVA="
+ "resolved" "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz"
+ "version" "1.0.0"
+ dependencies:
+ "graceful-fs" "^4.1.2"
+ "jsonfile" "^2.1.0"
+ "klaw" "^1.0.0"
+
+"fs-extra@^8.1.0":
+ "integrity" "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g=="
+ "resolved" "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz"
+ "version" "8.1.0"
+ dependencies:
+ "graceful-fs" "^4.2.0"
+ "jsonfile" "^4.0.0"
+ "universalify" "^0.1.0"
+
+"fs-readdir-recursive@^1.1.0":
+ "integrity" "sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA=="
+ "resolved" "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz"
+ "version" "1.1.0"
+
+"fs.realpath@^1.0.0":
+ "integrity" "sha1-FQStJSMVjKpA20onh8sBQRmU6k8="
+ "resolved" "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"
+ "version" "1.0.0"
+
+"function-bind@^1.1.1":
+ "integrity" "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
+ "resolved" "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"
+ "version" "1.1.1"
+
+"functional-red-black-tree@^1.0.1":
+ "integrity" "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc="
+ "resolved" "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz"
+ "version" "1.0.1"
+
+"gensync@^1.0.0-beta.2":
+ "integrity" "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg=="
+ "resolved" "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz"
+ "version" "1.0.0-beta.2"
+
+"get-caller-file@^2.0.1", "get-caller-file@^2.0.5":
+ "integrity" "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="
+ "resolved" "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz"
+ "version" "2.0.5"
+
+"get-intrinsic@^1.0.2", "get-intrinsic@^1.1.0", "get-intrinsic@^1.1.1":
+ "integrity" "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q=="
+ "resolved" "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz"
+ "version" "1.1.1"
+ dependencies:
+ "function-bind" "^1.1.1"
+ "has" "^1.0.3"
+ "has-symbols" "^1.0.1"
+
+"get-package-type@^0.1.0":
+ "integrity" "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q=="
+ "resolved" "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz"
+ "version" "0.1.0"
+
+"get-stdin@^6.0.0":
+ "integrity" "sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g=="
+ "resolved" "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz"
+ "version" "6.0.0"
+
+"get-stream@^4.0.0":
+ "integrity" "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w=="
+ "resolved" "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz"
+ "version" "4.1.0"
+ dependencies:
+ "pump" "^3.0.0"
+
+"get-stream@^5.0.0":
+ "integrity" "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA=="
+ "resolved" "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz"
+ "version" "5.2.0"
+ dependencies:
+ "pump" "^3.0.0"
+
+"get-value@^2.0.3", "get-value@^2.0.6":
+ "integrity" "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg="
+ "resolved" "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz"
+ "version" "2.0.6"
+
+"glob-parent@^5.0.0", "glob-parent@^5.1.2", "glob-parent@~5.1.2":
+ "integrity" "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="
+ "resolved" "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz"
+ "version" "5.1.2"
+ dependencies:
+ "is-glob" "^4.0.1"
+
+"glob@^7.0.0", "glob@^7.1.1", "glob@^7.1.2", "glob@^7.1.3", "glob@^7.1.4", "glob@^7.1.6":
+ "integrity" "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ=="
+ "resolved" "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz"
+ "version" "7.1.7"
+ dependencies:
+ "fs.realpath" "^1.0.0"
+ "inflight" "^1.0.4"
+ "inherits" "2"
+ "minimatch" "^3.0.4"
+ "once" "^1.3.0"
+ "path-is-absolute" "^1.0.0"
+
+"globals@^11.1.0":
+ "integrity" "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="
+ "resolved" "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz"
+ "version" "11.12.0"
+
+"globals@^12.1.0":
+ "integrity" "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg=="
+ "resolved" "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz"
+ "version" "12.4.0"
+ dependencies:
+ "type-fest" "^0.8.1"
+
+"graceful-fs@^4.1.11", "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":
+ "integrity" "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ=="
+ "resolved" "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz"
+ "version" "4.2.6"
+
+"growly@^1.3.0":
+ "integrity" "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE="
+ "resolved" "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz"
+ "version" "1.3.0"
+
+"has-bigints@^1.0.1":
+ "integrity" "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA=="
+ "resolved" "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz"
+ "version" "1.0.1"
+
+"has-flag@^3.0.0":
+ "integrity" "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
+ "resolved" "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz"
+ "version" "3.0.0"
+
+"has-flag@^4.0.0":
+ "integrity" "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
+ "resolved" "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz"
+ "version" "4.0.0"
+
+"has-symbols@^1.0.1", "has-symbols@^1.0.2":
+ "integrity" "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw=="
+ "resolved" "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz"
+ "version" "1.0.2"
+
+"has-value@^0.3.1":
+ "integrity" "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8="
+ "resolved" "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz"
+ "version" "0.3.1"
+ dependencies:
+ "get-value" "^2.0.3"
+ "has-values" "^0.1.4"
+ "isobject" "^2.0.0"
+
+"has-value@^1.0.0":
+ "integrity" "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc="
+ "resolved" "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz"
+ "version" "1.0.0"
+ dependencies:
+ "get-value" "^2.0.6"
+ "has-values" "^1.0.0"
+ "isobject" "^3.0.0"
+
+"has-values@^0.1.4":
+ "integrity" "sha1-bWHeldkd/Km5oCCJrThL/49it3E="
+ "resolved" "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz"
+ "version" "0.1.4"
+
+"has-values@^1.0.0":
+ "integrity" "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8="
+ "resolved" "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz"
+ "version" "1.0.0"
+ dependencies:
+ "is-number" "^3.0.0"
+ "kind-of" "^4.0.0"
+
+"has@^1.0.3":
+ "integrity" "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw=="
+ "resolved" "https://registry.npmjs.org/has/-/has-1.0.3.tgz"
+ "version" "1.0.3"
+ dependencies:
+ "function-bind" "^1.1.1"
+
+"hermes-engine@~0.7.0":
+ "integrity" "sha512-E2DkRaO97gwL98LPhgfkMqhHiNsrAjIfEk3wWYn2Y31xdkdWn0572H7RnVcGujMJVqZNJvtknxlpsUb8Wzc3KA=="
+ "resolved" "https://registry.npmjs.org/hermes-engine/-/hermes-engine-0.7.2.tgz"
+ "version" "0.7.2"
+
+"hermes-profile-transformer@^0.0.6":
+ "integrity" "sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ=="
+ "resolved" "https://registry.npmjs.org/hermes-profile-transformer/-/hermes-profile-transformer-0.0.6.tgz"
+ "version" "0.0.6"
+ dependencies:
+ "source-map" "^0.7.3"
+
+"hoist-non-react-statics@^3.0.0", "hoist-non-react-statics@^3.3.0", "hoist-non-react-statics@^3.3.2":
+ "integrity" "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw=="
+ "resolved" "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz"
+ "version" "3.3.2"
+ dependencies:
+ "react-is" "^16.7.0"
+
+"hosted-git-info@^2.1.4":
+ "integrity" "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw=="
+ "resolved" "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz"
+ "version" "2.8.9"
+
+"html-encoding-sniffer@^2.0.1":
+ "integrity" "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ=="
+ "resolved" "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz"
+ "version" "2.0.1"
+ dependencies:
+ "whatwg-encoding" "^1.0.5"
+
+"html-escaper@^2.0.0":
+ "integrity" "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg=="
+ "resolved" "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz"
+ "version" "2.0.2"
+
+"http-errors@~1.7.2":
+ "integrity" "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw=="
+ "resolved" "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz"
+ "version" "1.7.3"
+ dependencies:
+ "depd" "~1.1.2"
+ "inherits" "2.0.4"
+ "setprototypeof" "1.1.1"
+ "statuses" ">= 1.5.0 < 2"
+ "toidentifier" "1.0.0"
+
+"http-proxy-agent@^4.0.1":
+ "integrity" "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg=="
+ "resolved" "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz"
+ "version" "4.0.1"
+ dependencies:
+ "@tootallnate/once" "1"
+ "agent-base" "6"
+ "debug" "4"
+
+"https-proxy-agent@^5.0.0":
+ "integrity" "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA=="
+ "resolved" "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz"
+ "version" "5.0.0"
+ dependencies:
+ "agent-base" "6"
+ "debug" "4"
+
+"human-signals@^1.1.1":
+ "integrity" "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw=="
+ "resolved" "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz"
+ "version" "1.1.1"
+
+"iconv-lite@0.4.24":
+ "integrity" "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="
+ "resolved" "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz"
+ "version" "0.4.24"
+ dependencies:
+ "safer-buffer" ">= 2.1.2 < 3"
+
+"ignore@^4.0.6":
+ "integrity" "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg=="
+ "resolved" "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz"
+ "version" "4.0.6"
+
+"ignore@^5.0.5":
+ "integrity" "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw=="
+ "resolved" "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz"
+ "version" "5.1.8"
+
+"image-size@^0.6.0":
+ "integrity" "sha512-47xSUiQioGaB96nqtp5/q55m0aBQSQdyIloMOc/x+QVTDZLNmXE892IIDrJ0hM1A5vcNUDD5tDffkSP5lCaIIA=="
+ "resolved" "https://registry.npmjs.org/image-size/-/image-size-0.6.3.tgz"
+ "version" "0.6.3"
+
+"import-fresh@^2.0.0":
+ "integrity" "sha1-2BNVwVYS04bGH53dOSLUMEgipUY="
+ "resolved" "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz"
+ "version" "2.0.0"
+ dependencies:
+ "caller-path" "^2.0.0"
+ "resolve-from" "^3.0.0"
+
+"import-fresh@^3.0.0", "import-fresh@^3.2.1":
+ "integrity" "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw=="
+ "resolved" "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz"
+ "version" "3.3.0"
+ dependencies:
+ "parent-module" "^1.0.0"
+ "resolve-from" "^4.0.0"
+
+"import-local@^3.0.2":
+ "integrity" "sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA=="
+ "resolved" "https://registry.npmjs.org/import-local/-/import-local-3.0.2.tgz"
+ "version" "3.0.2"
+ dependencies:
+ "pkg-dir" "^4.2.0"
+ "resolve-cwd" "^3.0.0"
+
+"imurmurhash@^0.1.4":
+ "integrity" "sha1-khi5srkoojixPcT7a21XbyMUU+o="
+ "resolved" "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz"
+ "version" "0.1.4"
+
+"inflight@^1.0.4":
+ "integrity" "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk="
+ "resolved" "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"
+ "version" "1.0.6"
+ dependencies:
+ "once" "^1.3.0"
+ "wrappy" "1"
+
+"inherits@^2.0.3", "inherits@~2.0.3", "inherits@2", "inherits@2.0.4":
+ "integrity" "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
+ "resolved" "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"
+ "version" "2.0.4"
+
+"internal-slot@^1.0.3":
+ "integrity" "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA=="
+ "resolved" "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz"
+ "version" "1.0.3"
+ dependencies:
+ "get-intrinsic" "^1.1.0"
+ "has" "^1.0.3"
+ "side-channel" "^1.0.4"
+
+"interpret@^1.0.0":
+ "integrity" "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA=="
+ "resolved" "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz"
+ "version" "1.4.0"
+
+"invariant@^2.2.4":
+ "integrity" "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA=="
+ "resolved" "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz"
+ "version" "2.2.4"
+ dependencies:
+ "loose-envify" "^1.0.0"
+
+"ip@^1.1.5":
+ "integrity" "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo="
+ "resolved" "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz"
+ "version" "1.1.5"
+
+"is-accessor-descriptor@^0.1.6":
+ "integrity" "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY="
+ "resolved" "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz"
+ "version" "0.1.6"
+ dependencies:
+ "kind-of" "^3.0.2"
+
+"is-accessor-descriptor@^1.0.0":
+ "integrity" "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ=="
+ "resolved" "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz"
+ "version" "1.0.0"
+ dependencies:
+ "kind-of" "^6.0.0"
+
+"is-arrayish@^0.2.1":
+ "integrity" "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0="
+ "resolved" "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz"
+ "version" "0.2.1"
+
+"is-arrayish@^0.3.1":
+ "integrity" "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ=="
+ "resolved" "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz"
+ "version" "0.3.2"
+
+"is-bigint@^1.0.1":
+ "integrity" "sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA=="
+ "resolved" "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.2.tgz"
+ "version" "1.0.2"
+
+"is-binary-path@^1.0.0":
+ "integrity" "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg="
+ "resolved" "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz"
+ "version" "1.0.1"
+ dependencies:
+ "binary-extensions" "^1.0.0"
+
+"is-binary-path@~2.1.0":
+ "integrity" "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="
+ "resolved" "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz"
+ "version" "2.1.0"
+ dependencies:
+ "binary-extensions" "^2.0.0"
+
+"is-boolean-object@^1.1.0":
+ "integrity" "sha512-bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng=="
+ "resolved" "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.1.tgz"
+ "version" "1.1.1"
+ dependencies:
+ "call-bind" "^1.0.2"
+
+"is-buffer@^1.1.5":
+ "integrity" "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w=="
+ "resolved" "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz"
+ "version" "1.1.6"
+
+"is-callable@^1.1.4", "is-callable@^1.2.3":
+ "integrity" "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ=="
+ "resolved" "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz"
+ "version" "1.2.3"
+
+"is-ci@^2.0.0":
+ "integrity" "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w=="
+ "resolved" "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz"
+ "version" "2.0.0"
+ dependencies:
+ "ci-info" "^2.0.0"
+
+"is-core-module@^2.2.0":
+ "integrity" "sha512-TXCMSDsEHMEEZ6eCA8rwRDbLu55MRGmrctljsBX/2v1d9/GzqHOxW5c5oPSgrUt2vBFXebu9rGqckXGPWOlYpg=="
+ "resolved" "https://registry.npmjs.org/is-core-module/-/is-core-module-2.5.0.tgz"
+ "version" "2.5.0"
+ dependencies:
+ "has" "^1.0.3"
+
+"is-data-descriptor@^0.1.4":
+ "integrity" "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y="
+ "resolved" "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz"
+ "version" "0.1.4"
+ dependencies:
+ "kind-of" "^3.0.2"
+
+"is-data-descriptor@^1.0.0":
+ "integrity" "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ=="
+ "resolved" "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz"
+ "version" "1.0.0"
+ dependencies:
+ "kind-of" "^6.0.0"
+
+"is-date-object@^1.0.1":
+ "integrity" "sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A=="
+ "resolved" "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.4.tgz"
+ "version" "1.0.4"
+
+"is-descriptor@^0.1.0":
+ "integrity" "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg=="
+ "resolved" "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz"
+ "version" "0.1.6"
+ dependencies:
+ "is-accessor-descriptor" "^0.1.6"
+ "is-data-descriptor" "^0.1.4"
+ "kind-of" "^5.0.0"
+
+"is-descriptor@^1.0.0", "is-descriptor@^1.0.2":
+ "integrity" "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg=="
+ "resolved" "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz"
+ "version" "1.0.2"
+ dependencies:
+ "is-accessor-descriptor" "^1.0.0"
+ "is-data-descriptor" "^1.0.0"
+ "kind-of" "^6.0.2"
+
+"is-directory@^0.3.1":
+ "integrity" "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE="
+ "resolved" "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz"
+ "version" "0.3.1"
+
+"is-docker@^2.0.0":
+ "integrity" "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ=="
+ "resolved" "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz"
+ "version" "2.2.1"
+
+"is-extendable@^0.1.0", "is-extendable@^0.1.1":
+ "integrity" "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik="
+ "resolved" "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz"
+ "version" "0.1.1"
+
+"is-extendable@^0.1.1":
+ "integrity" "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik="
+ "resolved" "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz"
+ "version" "0.1.1"
+
+"is-extendable@^1.0.1":
+ "integrity" "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA=="
+ "resolved" "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz"
+ "version" "1.0.1"
+ dependencies:
+ "is-plain-object" "^2.0.4"
+
+"is-extglob@^2.1.1":
+ "integrity" "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI="
+ "resolved" "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz"
+ "version" "2.1.1"
+
+"is-fullwidth-code-point@^2.0.0":
+ "integrity" "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8="
+ "resolved" "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"
+ "version" "2.0.0"
+
+"is-fullwidth-code-point@^3.0.0":
+ "integrity" "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="
+ "resolved" "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz"
+ "version" "3.0.0"
+
+"is-generator-fn@^2.0.0":
+ "integrity" "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ=="
+ "resolved" "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz"
+ "version" "2.1.0"
+
+"is-glob@^4.0.0", "is-glob@^4.0.1", "is-glob@~4.0.1":
+ "integrity" "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg=="
+ "resolved" "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz"
+ "version" "4.0.1"
+ dependencies:
+ "is-extglob" "^2.1.1"
+
+"is-negative-zero@^2.0.1":
+ "integrity" "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w=="
+ "resolved" "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz"
+ "version" "2.0.1"
+
+"is-number-object@^1.0.4":
+ "integrity" "sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw=="
+ "resolved" "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.5.tgz"
+ "version" "1.0.5"
+
+"is-number@^3.0.0":
+ "integrity" "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU="
+ "resolved" "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz"
+ "version" "3.0.0"
+ dependencies:
+ "kind-of" "^3.0.2"
+
+"is-number@^7.0.0":
+ "integrity" "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="
+ "resolved" "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz"
+ "version" "7.0.0"
+
+"is-plain-object@^2.0.3", "is-plain-object@^2.0.4":
+ "integrity" "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og=="
+ "resolved" "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz"
+ "version" "2.0.4"
+ dependencies:
+ "isobject" "^3.0.1"
+
+"is-potential-custom-element-name@^1.0.1":
+ "integrity" "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ=="
+ "resolved" "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz"
+ "version" "1.0.1"
+
+"is-regex@^1.1.3":
+ "integrity" "sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ=="
+ "resolved" "https://registry.npmjs.org/is-regex/-/is-regex-1.1.3.tgz"
+ "version" "1.1.3"
+ dependencies:
+ "call-bind" "^1.0.2"
+ "has-symbols" "^1.0.2"
+
+"is-stream@^1.1.0":
+ "integrity" "sha1-EtSj3U5o4Lec6428hBc66A2RykQ="
+ "resolved" "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz"
+ "version" "1.1.0"
+
+"is-stream@^2.0.0":
+ "integrity" "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg=="
+ "resolved" "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz"
+ "version" "2.0.1"
+
+"is-string@^1.0.5", "is-string@^1.0.6":
+ "integrity" "sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w=="
+ "resolved" "https://registry.npmjs.org/is-string/-/is-string-1.0.6.tgz"
+ "version" "1.0.6"
+
+"is-symbol@^1.0.2", "is-symbol@^1.0.3":
+ "integrity" "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg=="
+ "resolved" "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz"
+ "version" "1.0.4"
+ dependencies:
+ "has-symbols" "^1.0.2"
+
+"is-typedarray@^1.0.0":
+ "integrity" "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo="
+ "resolved" "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz"
+ "version" "1.0.0"
+
+"is-windows@^1.0.2":
+ "integrity" "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA=="
+ "resolved" "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz"
+ "version" "1.0.2"
+
+"is-wsl@^1.1.0":
+ "integrity" "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0="
+ "resolved" "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz"
+ "version" "1.1.0"
+
+"is-wsl@^2.2.0":
+ "integrity" "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww=="
+ "resolved" "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz"
+ "version" "2.2.0"
+ dependencies:
+ "is-docker" "^2.0.0"
+
+"isarray@~1.0.0", "isarray@1.0.0":
+ "integrity" "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
+ "resolved" "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"
+ "version" "1.0.0"
+
+"isexe@^2.0.0":
+ "integrity" "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA="
+ "resolved" "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz"
+ "version" "2.0.0"
+
+"isobject@^2.0.0":
+ "integrity" "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk="
+ "resolved" "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz"
+ "version" "2.1.0"
+ dependencies:
+ "isarray" "1.0.0"
+
+"isobject@^3.0.0", "isobject@^3.0.1":
+ "integrity" "sha1-TkMekrEalzFjaqH5yNHMvP2reN8="
+ "resolved" "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz"
+ "version" "3.0.1"
+
+"istanbul-lib-coverage@^3.0.0":
+ "integrity" "sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg=="
+ "resolved" "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz"
+ "version" "3.0.0"
+
+"istanbul-lib-instrument@^4.0.0", "istanbul-lib-instrument@^4.0.3":
+ "integrity" "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ=="
+ "resolved" "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz"
+ "version" "4.0.3"
+ dependencies:
+ "@babel/core" "^7.7.5"
+ "@istanbuljs/schema" "^0.1.2"
+ "istanbul-lib-coverage" "^3.0.0"
+ "semver" "^6.3.0"
+
+"istanbul-lib-report@^3.0.0":
+ "integrity" "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw=="
+ "resolved" "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz"
+ "version" "3.0.0"
+ dependencies:
+ "istanbul-lib-coverage" "^3.0.0"
+ "make-dir" "^3.0.0"
+ "supports-color" "^7.1.0"
+
+"istanbul-lib-source-maps@^4.0.0":
+ "integrity" "sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg=="
+ "resolved" "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz"
+ "version" "4.0.0"
+ dependencies:
+ "debug" "^4.1.1"
+ "istanbul-lib-coverage" "^3.0.0"
+ "source-map" "^0.6.1"
+
+"istanbul-reports@^3.0.2":
+ "integrity" "sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw=="
+ "resolved" "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.2.tgz"
+ "version" "3.0.2"
+ dependencies:
+ "html-escaper" "^2.0.0"
+ "istanbul-lib-report" "^3.0.0"
+
+"jest-changed-files@^26.6.2":
+ "integrity" "sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ=="
+ "resolved" "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "@jest/types" "^26.6.2"
+ "execa" "^4.0.0"
+ "throat" "^5.0.0"
+
+"jest-cli@^26.6.3":
+ "integrity" "sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg=="
+ "resolved" "https://registry.npmjs.org/jest-cli/-/jest-cli-26.6.3.tgz"
+ "version" "26.6.3"
+ dependencies:
+ "@jest/core" "^26.6.3"
+ "@jest/test-result" "^26.6.2"
+ "@jest/types" "^26.6.2"
+ "chalk" "^4.0.0"
+ "exit" "^0.1.2"
+ "graceful-fs" "^4.2.4"
+ "import-local" "^3.0.2"
+ "is-ci" "^2.0.0"
+ "jest-config" "^26.6.3"
+ "jest-util" "^26.6.2"
+ "jest-validate" "^26.6.2"
+ "prompts" "^2.0.1"
+ "yargs" "^15.4.1"
+
+"jest-config@^26.6.3":
+ "integrity" "sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg=="
+ "resolved" "https://registry.npmjs.org/jest-config/-/jest-config-26.6.3.tgz"
+ "version" "26.6.3"
+ dependencies:
+ "@babel/core" "^7.1.0"
+ "@jest/test-sequencer" "^26.6.3"
+ "@jest/types" "^26.6.2"
+ "babel-jest" "^26.6.3"
+ "chalk" "^4.0.0"
+ "deepmerge" "^4.2.2"
+ "glob" "^7.1.1"
+ "graceful-fs" "^4.2.4"
+ "jest-environment-jsdom" "^26.6.2"
+ "jest-environment-node" "^26.6.2"
+ "jest-get-type" "^26.3.0"
+ "jest-jasmine2" "^26.6.3"
+ "jest-regex-util" "^26.0.0"
+ "jest-resolve" "^26.6.2"
+ "jest-util" "^26.6.2"
+ "jest-validate" "^26.6.2"
+ "micromatch" "^4.0.2"
+ "pretty-format" "^26.6.2"
+
+"jest-diff@^26.6.2":
+ "integrity" "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA=="
+ "resolved" "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "chalk" "^4.0.0"
+ "diff-sequences" "^26.6.2"
+ "jest-get-type" "^26.3.0"
+ "pretty-format" "^26.6.2"
+
+"jest-docblock@^26.0.0":
+ "integrity" "sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w=="
+ "resolved" "https://registry.npmjs.org/jest-docblock/-/jest-docblock-26.0.0.tgz"
+ "version" "26.0.0"
+ dependencies:
+ "detect-newline" "^3.0.0"
+
+"jest-each@^26.6.2":
+ "integrity" "sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A=="
+ "resolved" "https://registry.npmjs.org/jest-each/-/jest-each-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "@jest/types" "^26.6.2"
+ "chalk" "^4.0.0"
+ "jest-get-type" "^26.3.0"
+ "jest-util" "^26.6.2"
+ "pretty-format" "^26.6.2"
+
+"jest-environment-jsdom@^26.6.2":
+ "integrity" "sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q=="
+ "resolved" "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "@jest/environment" "^26.6.2"
+ "@jest/fake-timers" "^26.6.2"
+ "@jest/types" "^26.6.2"
+ "@types/node" "*"
+ "jest-mock" "^26.6.2"
+ "jest-util" "^26.6.2"
+ "jsdom" "^16.4.0"
+
+"jest-environment-node@^26.6.2":
+ "integrity" "sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag=="
+ "resolved" "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "@jest/environment" "^26.6.2"
+ "@jest/fake-timers" "^26.6.2"
+ "@jest/types" "^26.6.2"
+ "@types/node" "*"
+ "jest-mock" "^26.6.2"
+ "jest-util" "^26.6.2"
+
+"jest-get-type@^26.3.0":
+ "integrity" "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig=="
+ "resolved" "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz"
+ "version" "26.3.0"
+
+"jest-haste-map@^26.5.2", "jest-haste-map@^26.6.2":
+ "integrity" "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w=="
+ "resolved" "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "@jest/types" "^26.6.2"
+ "@types/graceful-fs" "^4.1.2"
+ "@types/node" "*"
+ "anymatch" "^3.0.3"
+ "fb-watchman" "^2.0.0"
+ "graceful-fs" "^4.2.4"
+ "jest-regex-util" "^26.0.0"
+ "jest-serializer" "^26.6.2"
+ "jest-util" "^26.6.2"
+ "jest-worker" "^26.6.2"
+ "micromatch" "^4.0.2"
+ "sane" "^4.0.3"
+ "walker" "^1.0.7"
+ optionalDependencies:
+ "fsevents" "^2.1.2"
+
+"jest-jasmine2@^26.6.3":
+ "integrity" "sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg=="
+ "resolved" "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-26.6.3.tgz"
+ "version" "26.6.3"
+ dependencies:
+ "@babel/traverse" "^7.1.0"
+ "@jest/environment" "^26.6.2"
+ "@jest/source-map" "^26.6.2"
+ "@jest/test-result" "^26.6.2"
+ "@jest/types" "^26.6.2"
+ "@types/node" "*"
+ "chalk" "^4.0.0"
+ "co" "^4.6.0"
+ "expect" "^26.6.2"
+ "is-generator-fn" "^2.0.0"
+ "jest-each" "^26.6.2"
+ "jest-matcher-utils" "^26.6.2"
+ "jest-message-util" "^26.6.2"
+ "jest-runtime" "^26.6.3"
+ "jest-snapshot" "^26.6.2"
+ "jest-util" "^26.6.2"
+ "pretty-format" "^26.6.2"
+ "throat" "^5.0.0"
+
+"jest-leak-detector@^26.6.2":
+ "integrity" "sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg=="
+ "resolved" "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "jest-get-type" "^26.3.0"
+ "pretty-format" "^26.6.2"
+
+"jest-matcher-utils@^26.6.2":
+ "integrity" "sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw=="
+ "resolved" "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "chalk" "^4.0.0"
+ "jest-diff" "^26.6.2"
+ "jest-get-type" "^26.3.0"
+ "pretty-format" "^26.6.2"
+
+"jest-message-util@^26.6.2":
+ "integrity" "sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA=="
+ "resolved" "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "@babel/code-frame" "^7.0.0"
+ "@jest/types" "^26.6.2"
+ "@types/stack-utils" "^2.0.0"
+ "chalk" "^4.0.0"
+ "graceful-fs" "^4.2.4"
+ "micromatch" "^4.0.2"
+ "pretty-format" "^26.6.2"
+ "slash" "^3.0.0"
+ "stack-utils" "^2.0.2"
+
+"jest-mock@^26.6.2":
+ "integrity" "sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew=="
+ "resolved" "https://registry.npmjs.org/jest-mock/-/jest-mock-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "@jest/types" "^26.6.2"
+ "@types/node" "*"
+
+"jest-pnp-resolver@^1.2.2":
+ "integrity" "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w=="
+ "resolved" "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz"
+ "version" "1.2.2"
+
+"jest-regex-util@^26.0.0":
+ "integrity" "sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A=="
+ "resolved" "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-26.0.0.tgz"
+ "version" "26.0.0"
+
+"jest-resolve-dependencies@^26.6.3":
+ "integrity" "sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg=="
+ "resolved" "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-26.6.3.tgz"
+ "version" "26.6.3"
+ dependencies:
+ "@jest/types" "^26.6.2"
+ "jest-regex-util" "^26.0.0"
+ "jest-snapshot" "^26.6.2"
+
+"jest-resolve@*", "jest-resolve@^26.6.2":
+ "integrity" "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ=="
+ "resolved" "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "@jest/types" "^26.6.2"
+ "chalk" "^4.0.0"
+ "graceful-fs" "^4.2.4"
+ "jest-pnp-resolver" "^1.2.2"
+ "jest-util" "^26.6.2"
+ "read-pkg-up" "^7.0.1"
+ "resolve" "^1.18.1"
+ "slash" "^3.0.0"
+
+"jest-runner@^26.6.3":
+ "integrity" "sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ=="
+ "resolved" "https://registry.npmjs.org/jest-runner/-/jest-runner-26.6.3.tgz"
+ "version" "26.6.3"
+ dependencies:
+ "@jest/console" "^26.6.2"
+ "@jest/environment" "^26.6.2"
+ "@jest/test-result" "^26.6.2"
+ "@jest/types" "^26.6.2"
+ "@types/node" "*"
+ "chalk" "^4.0.0"
+ "emittery" "^0.7.1"
+ "exit" "^0.1.2"
+ "graceful-fs" "^4.2.4"
+ "jest-config" "^26.6.3"
+ "jest-docblock" "^26.0.0"
+ "jest-haste-map" "^26.6.2"
+ "jest-leak-detector" "^26.6.2"
+ "jest-message-util" "^26.6.2"
+ "jest-resolve" "^26.6.2"
+ "jest-runtime" "^26.6.3"
+ "jest-util" "^26.6.2"
+ "jest-worker" "^26.6.2"
+ "source-map-support" "^0.5.6"
+ "throat" "^5.0.0"
+
+"jest-runtime@^26.6.3":
+ "integrity" "sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw=="
+ "resolved" "https://registry.npmjs.org/jest-runtime/-/jest-runtime-26.6.3.tgz"
+ "version" "26.6.3"
+ dependencies:
+ "@jest/console" "^26.6.2"
+ "@jest/environment" "^26.6.2"
+ "@jest/fake-timers" "^26.6.2"
+ "@jest/globals" "^26.6.2"
+ "@jest/source-map" "^26.6.2"
+ "@jest/test-result" "^26.6.2"
+ "@jest/transform" "^26.6.2"
+ "@jest/types" "^26.6.2"
+ "@types/yargs" "^15.0.0"
+ "chalk" "^4.0.0"
+ "cjs-module-lexer" "^0.6.0"
+ "collect-v8-coverage" "^1.0.0"
+ "exit" "^0.1.2"
+ "glob" "^7.1.3"
+ "graceful-fs" "^4.2.4"
+ "jest-config" "^26.6.3"
+ "jest-haste-map" "^26.6.2"
+ "jest-message-util" "^26.6.2"
+ "jest-mock" "^26.6.2"
+ "jest-regex-util" "^26.0.0"
+ "jest-resolve" "^26.6.2"
+ "jest-snapshot" "^26.6.2"
+ "jest-util" "^26.6.2"
+ "jest-validate" "^26.6.2"
+ "slash" "^3.0.0"
+ "strip-bom" "^4.0.0"
+ "yargs" "^15.4.1"
+
+"jest-serializer@^26.6.2":
+ "integrity" "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g=="
+ "resolved" "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "@types/node" "*"
+ "graceful-fs" "^4.2.4"
+
+"jest-snapshot@^26.6.2":
+ "integrity" "sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og=="
+ "resolved" "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "@babel/types" "^7.0.0"
+ "@jest/types" "^26.6.2"
+ "@types/babel__traverse" "^7.0.4"
+ "@types/prettier" "^2.0.0"
+ "chalk" "^4.0.0"
+ "expect" "^26.6.2"
+ "graceful-fs" "^4.2.4"
+ "jest-diff" "^26.6.2"
+ "jest-get-type" "^26.3.0"
+ "jest-haste-map" "^26.6.2"
+ "jest-matcher-utils" "^26.6.2"
+ "jest-message-util" "^26.6.2"
+ "jest-resolve" "^26.6.2"
+ "natural-compare" "^1.4.0"
+ "pretty-format" "^26.6.2"
+ "semver" "^7.3.2"
+
+"jest-util@^26.6.2":
+ "integrity" "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q=="
+ "resolved" "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "@jest/types" "^26.6.2"
+ "@types/node" "*"
+ "chalk" "^4.0.0"
+ "graceful-fs" "^4.2.4"
+ "is-ci" "^2.0.0"
+ "micromatch" "^4.0.2"
+
+"jest-validate@^26.5.2", "jest-validate@^26.6.2":
+ "integrity" "sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ=="
+ "resolved" "https://registry.npmjs.org/jest-validate/-/jest-validate-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "@jest/types" "^26.6.2"
+ "camelcase" "^6.0.0"
+ "chalk" "^4.0.0"
+ "jest-get-type" "^26.3.0"
+ "leven" "^3.1.0"
+ "pretty-format" "^26.6.2"
+
+"jest-watcher@^26.6.2":
+ "integrity" "sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ=="
+ "resolved" "https://registry.npmjs.org/jest-watcher/-/jest-watcher-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "@jest/test-result" "^26.6.2"
+ "@jest/types" "^26.6.2"
+ "@types/node" "*"
+ "ansi-escapes" "^4.2.1"
+ "chalk" "^4.0.0"
+ "jest-util" "^26.6.2"
+ "string-length" "^4.0.1"
+
+"jest-worker@^26.0.0", "jest-worker@^26.6.2":
+ "integrity" "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ=="
+ "resolved" "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "@types/node" "*"
+ "merge-stream" "^2.0.0"
+ "supports-color" "^7.0.0"
+
+"jest@^26.6.3":
+ "integrity" "sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q=="
+ "resolved" "https://registry.npmjs.org/jest/-/jest-26.6.3.tgz"
+ "version" "26.6.3"
+ dependencies:
+ "@jest/core" "^26.6.3"
+ "import-local" "^3.0.2"
+ "jest-cli" "^26.6.3"
+
+"jetifier@^1.6.2":
+ "integrity" "sha512-3Zi16h6L5tXDRQJTb221cnRoVG9/9OvreLdLU2/ZjRv/GILL+2Cemt0IKvkowwkDpvouAU1DQPOJ7qaiHeIdrw=="
+ "resolved" "https://registry.npmjs.org/jetifier/-/jetifier-1.6.8.tgz"
+ "version" "1.6.8"
+
+"joi@^17.2.1":
+ "integrity" "sha512-gDPOwQ5sr+BUxXuPDGrC1pSNcVR/yGGcTI0aCnjYxZEa3za60K/iCQ+OFIkEHWZGVCUcUlXlFKvMmrlmxrG6UQ=="
+ "resolved" "https://registry.npmjs.org/joi/-/joi-17.4.1.tgz"
+ "version" "17.4.1"
+ dependencies:
+ "@hapi/hoek" "^9.0.0"
+ "@hapi/topo" "^5.0.0"
+ "@sideway/address" "^4.1.0"
+ "@sideway/formula" "^3.0.0"
+ "@sideway/pinpoint" "^2.0.0"
+
+"js-tokens@^3.0.0 || ^4.0.0", "js-tokens@^4.0.0":
+ "integrity" "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
+ "resolved" "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz"
+ "version" "4.0.0"
+
+"js-yaml@^3.13.1":
+ "integrity" "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g=="
+ "resolved" "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz"
+ "version" "3.14.1"
+ dependencies:
+ "argparse" "^1.0.7"
+ "esprima" "^4.0.0"
+
+"jsc-android@^245459.0.0":
+ "integrity" "sha512-wkjURqwaB1daNkDi2OYYbsLnIdC/lUM2nPXQKRs5pqEU9chDg435bjvo+LSaHotDENygHQDHe+ntUkkw2gwMtg=="
+ "resolved" "https://registry.npmjs.org/jsc-android/-/jsc-android-245459.0.0.tgz"
+ "version" "245459.0.0"
+
+"jscodeshift@^0.11.0":
+ "integrity" "sha512-SdRK2C7jjs4k/kT2mwtO07KJN9RnjxtKn03d9JVj6c3j9WwaLcFYsICYDnLAzY0hp+wG2nxl+Cm2jWLiNVYb8g=="
+ "resolved" "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.11.0.tgz"
+ "version" "0.11.0"
+ dependencies:
+ "@babel/core" "^7.1.6"
+ "@babel/parser" "^7.1.6"
+ "@babel/plugin-proposal-class-properties" "^7.1.0"
+ "@babel/plugin-proposal-nullish-coalescing-operator" "^7.1.0"
+ "@babel/plugin-proposal-optional-chaining" "^7.1.0"
+ "@babel/plugin-transform-modules-commonjs" "^7.1.0"
+ "@babel/preset-flow" "^7.0.0"
+ "@babel/preset-typescript" "^7.1.0"
+ "@babel/register" "^7.0.0"
+ "babel-core" "^7.0.0-bridge.0"
+ "colors" "^1.1.2"
+ "flow-parser" "0.*"
+ "graceful-fs" "^4.2.4"
+ "micromatch" "^3.1.10"
+ "neo-async" "^2.5.0"
+ "node-dir" "^0.1.17"
+ "recast" "^0.20.3"
+ "temp" "^0.8.1"
+ "write-file-atomic" "^2.3.0"
+
+"jsdom@^16.4.0":
+ "integrity" "sha512-Ty1vmF4NHJkolaEmdjtxTfSfkdb8Ywarwf63f+F8/mDD1uLSSWDxDuMiZxiPhwunLrn9LOSVItWj4bLYsLN3Dg=="
+ "resolved" "https://registry.npmjs.org/jsdom/-/jsdom-16.6.0.tgz"
+ "version" "16.6.0"
+ dependencies:
+ "abab" "^2.0.5"
+ "acorn" "^8.2.4"
+ "acorn-globals" "^6.0.0"
+ "cssom" "^0.4.4"
+ "cssstyle" "^2.3.0"
+ "data-urls" "^2.0.0"
+ "decimal.js" "^10.2.1"
+ "domexception" "^2.0.1"
+ "escodegen" "^2.0.0"
+ "form-data" "^3.0.0"
+ "html-encoding-sniffer" "^2.0.1"
+ "http-proxy-agent" "^4.0.1"
+ "https-proxy-agent" "^5.0.0"
+ "is-potential-custom-element-name" "^1.0.1"
+ "nwsapi" "^2.2.0"
+ "parse5" "6.0.1"
+ "saxes" "^5.0.1"
+ "symbol-tree" "^3.2.4"
+ "tough-cookie" "^4.0.0"
+ "w3c-hr-time" "^1.0.2"
+ "w3c-xmlserializer" "^2.0.0"
+ "webidl-conversions" "^6.1.0"
+ "whatwg-encoding" "^1.0.5"
+ "whatwg-mimetype" "^2.3.0"
+ "whatwg-url" "^8.5.0"
+ "ws" "^7.4.5"
+ "xml-name-validator" "^3.0.0"
+
+"jsesc@^2.5.1":
+ "integrity" "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA=="
+ "resolved" "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz"
+ "version" "2.5.2"
+
+"jsesc@~0.5.0":
+ "integrity" "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0="
+ "resolved" "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz"
+ "version" "0.5.0"
+
+"json-parse-better-errors@^1.0.1":
+ "integrity" "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw=="
+ "resolved" "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz"
+ "version" "1.0.2"
+
+"json-parse-even-better-errors@^2.3.0":
+ "integrity" "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w=="
+ "resolved" "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz"
+ "version" "2.3.1"
+
+"json-schema-traverse@^0.4.1":
+ "integrity" "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
+ "resolved" "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"
+ "version" "0.4.1"
+
+"json-stable-stringify-without-jsonify@^1.0.1":
+ "integrity" "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE="
+ "resolved" "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"
+ "version" "1.0.1"
+
+"json5@^2.1.2":
+ "integrity" "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA=="
+ "resolved" "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz"
+ "version" "2.2.0"
+ dependencies:
+ "minimist" "^1.2.5"
+
+"jsonfile@^2.1.0":
+ "integrity" "sha1-NzaitCi4e72gzIO1P6PWM6NcKug="
+ "resolved" "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz"
+ "version" "2.4.0"
+ optionalDependencies:
+ "graceful-fs" "^4.1.6"
+
+"jsonfile@^4.0.0":
+ "integrity" "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss="
+ "resolved" "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz"
+ "version" "4.0.0"
+ optionalDependencies:
+ "graceful-fs" "^4.1.6"
+
+"jsonify@~0.0.0":
+ "integrity" "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM="
+ "resolved" "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz"
+ "version" "0.0.0"
+
+"jsx-ast-utils@^2.4.1 || ^3.0.0":
+ "integrity" "sha512-EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q=="
+ "resolved" "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.2.0.tgz"
+ "version" "3.2.0"
+ dependencies:
+ "array-includes" "^3.1.2"
+ "object.assign" "^4.1.2"
+
+"kind-of@^3.0.2", "kind-of@^3.0.3":
+ "integrity" "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ="
+ "resolved" "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz"
+ "version" "3.2.2"
+ dependencies:
+ "is-buffer" "^1.1.5"
+
+"kind-of@^3.2.0":
+ "integrity" "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ="
+ "resolved" "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz"
+ "version" "3.2.2"
+ dependencies:
+ "is-buffer" "^1.1.5"
+
+"kind-of@^4.0.0":
+ "integrity" "sha1-IIE989cSkosgc3hpGkUGb65y3Vc="
+ "resolved" "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz"
+ "version" "4.0.0"
+ dependencies:
+ "is-buffer" "^1.1.5"
+
+"kind-of@^5.0.0":
+ "integrity" "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw=="
+ "resolved" "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz"
+ "version" "5.1.0"
+
+"kind-of@^6.0.0", "kind-of@^6.0.2":
+ "integrity" "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="
+ "resolved" "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz"
+ "version" "6.0.3"
+
+"klaw@^1.0.0":
+ "integrity" "sha1-QIhDO0azsbolnXh4XY6W9zugJDk="
+ "resolved" "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz"
+ "version" "1.3.1"
+ optionalDependencies:
+ "graceful-fs" "^4.1.9"
+
+"kleur@^3.0.3":
+ "integrity" "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w=="
+ "resolved" "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz"
+ "version" "3.0.3"
+
+"leven@^3.1.0":
+ "integrity" "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A=="
+ "resolved" "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz"
+ "version" "3.1.0"
+
+"levn@^0.4.1":
+ "integrity" "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ=="
+ "resolved" "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz"
+ "version" "0.4.1"
+ dependencies:
+ "prelude-ls" "^1.2.1"
+ "type-check" "~0.4.0"
+
+"levn@~0.3.0":
+ "integrity" "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4="
+ "resolved" "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz"
+ "version" "0.3.0"
+ dependencies:
+ "prelude-ls" "~1.1.2"
+ "type-check" "~0.3.2"
+
+"lines-and-columns@^1.1.6":
+ "integrity" "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA="
+ "resolved" "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz"
+ "version" "1.1.6"
+
+"locate-path@^3.0.0":
+ "integrity" "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A=="
+ "resolved" "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz"
+ "version" "3.0.0"
+ dependencies:
+ "p-locate" "^3.0.0"
+ "path-exists" "^3.0.0"
+
+"locate-path@^5.0.0":
+ "integrity" "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g=="
+ "resolved" "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz"
+ "version" "5.0.0"
+ dependencies:
+ "p-locate" "^4.1.0"
+
+"lodash._reinterpolate@^3.0.0":
+ "integrity" "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0="
+ "resolved" "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz"
+ "version" "3.0.0"
+
+"lodash.debounce@^4.0.8":
+ "integrity" "sha1-gteb/zCmfEAF/9XiUVMArZyk168="
+ "resolved" "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz"
+ "version" "4.0.8"
+
+"lodash.frompairs@^4.0.1":
+ "integrity" "sha1-vE5SB/onV8E25XNhTpZkUGsrG9I="
+ "resolved" "https://registry.npmjs.org/lodash.frompairs/-/lodash.frompairs-4.0.1.tgz"
+ "version" "4.0.1"
+
+"lodash.isequal@^4.5.0":
+ "integrity" "sha1-QVxEePK8wwEgwizhDtMib30+GOA="
+ "resolved" "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz"
+ "version" "4.5.0"
+
+"lodash.isstring@^4.0.1":
+ "integrity" "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE="
+ "resolved" "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz"
+ "version" "4.0.1"
+
+"lodash.omit@^4.5.0":
+ "integrity" "sha1-brGa5aHuHdnfC5aeZs4Lf6MLXmA="
+ "resolved" "https://registry.npmjs.org/lodash.omit/-/lodash.omit-4.5.0.tgz"
+ "version" "4.5.0"
+
+"lodash.pick@^4.4.0":
+ "integrity" "sha1-UvBWEP/53tQiYRRB7R/BI6AwAbM="
+ "resolved" "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz"
+ "version" "4.4.0"
+
+"lodash.template@^4.5.0":
+ "integrity" "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A=="
+ "resolved" "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz"
+ "version" "4.5.0"
+ dependencies:
+ "lodash._reinterpolate" "^3.0.0"
+ "lodash.templatesettings" "^4.0.0"
+
+"lodash.templatesettings@^4.0.0":
+ "integrity" "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ=="
+ "resolved" "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz"
+ "version" "4.2.0"
+ dependencies:
+ "lodash._reinterpolate" "^3.0.0"
+
+"lodash.throttle@^4.1.1":
+ "integrity" "sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ="
+ "resolved" "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz"
+ "version" "4.1.1"
+
+"lodash@^4.17.10", "lodash@^4.17.11", "lodash@^4.17.14", "lodash@^4.17.15", "lodash@^4.17.19", "lodash@^4.7.0":
+ "integrity" "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
+ "resolved" "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz"
+ "version" "4.17.21"
+
+"log-symbols@^2.2.0":
+ "integrity" "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg=="
+ "resolved" "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz"
+ "version" "2.2.0"
+ dependencies:
+ "chalk" "^2.0.1"
+
+"logkitty@^0.7.1":
+ "integrity" "sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ=="
+ "resolved" "https://registry.npmjs.org/logkitty/-/logkitty-0.7.1.tgz"
+ "version" "0.7.1"
+ dependencies:
+ "ansi-fragments" "^0.2.1"
+ "dayjs" "^1.8.15"
+ "yargs" "^15.1.0"
+
+"loose-envify@^1.0.0", "loose-envify@^1.1.0", "loose-envify@^1.4.0":
+ "integrity" "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q=="
+ "resolved" "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz"
+ "version" "1.4.0"
+ dependencies:
+ "js-tokens" "^3.0.0 || ^4.0.0"
+
+"lru-cache@^6.0.0":
+ "integrity" "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="
+ "resolved" "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz"
+ "version" "6.0.0"
+ dependencies:
+ "yallist" "^4.0.0"
+
+"make-dir@^2.0.0":
+ "integrity" "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA=="
+ "resolved" "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz"
+ "version" "2.1.0"
+ dependencies:
+ "pify" "^4.0.1"
+ "semver" "^5.6.0"
+
+"make-dir@^2.1.0":
+ "integrity" "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA=="
+ "resolved" "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz"
+ "version" "2.1.0"
+ dependencies:
+ "pify" "^4.0.1"
+ "semver" "^5.6.0"
+
+"make-dir@^3.0.0":
+ "integrity" "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw=="
+ "resolved" "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz"
+ "version" "3.1.0"
+ dependencies:
+ "semver" "^6.0.0"
+
+"makeerror@1.0.x":
+ "integrity" "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw="
+ "resolved" "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz"
+ "version" "1.0.11"
+ dependencies:
+ "tmpl" "1.0.x"
+
+"map-cache@^0.2.2":
+ "integrity" "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8="
+ "resolved" "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz"
+ "version" "0.2.2"
+
+"map-visit@^1.0.0":
+ "integrity" "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48="
+ "resolved" "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz"
+ "version" "1.0.0"
+ dependencies:
+ "object-visit" "^1.0.0"
+
+"merge-stream@^2.0.0":
+ "integrity" "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w=="
+ "resolved" "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz"
+ "version" "2.0.0"
+
+"metro-babel-register@0.64.0":
+ "integrity" "sha512-Kf6YvE3kIRumGnjK0Q9LqGDIdnsX9eFGtNBmBuCVDuB9wGGA/5CgX8We8W7Y44dz1RGTcHJRhfw5iGg+pwC3aQ=="
+ "resolved" "https://registry.npmjs.org/metro-babel-register/-/metro-babel-register-0.64.0.tgz"
+ "version" "0.64.0"
+ dependencies:
+ "@babel/core" "^7.0.0"
+ "@babel/plugin-proposal-class-properties" "^7.0.0"
+ "@babel/plugin-proposal-nullish-coalescing-operator" "^7.0.0"
+ "@babel/plugin-proposal-optional-chaining" "^7.0.0"
+ "@babel/plugin-transform-flow-strip-types" "^7.0.0"
+ "@babel/plugin-transform-modules-commonjs" "^7.0.0"
+ "@babel/register" "^7.0.0"
+ "escape-string-regexp" "^1.0.5"
+
+"metro-babel-transformer@0.64.0":
+ "integrity" "sha512-itZaxKTgmKGEZWxNzbSZBc22NngrMZzoUNuU92aHSTGkYi2WH4XlvzEHsstmIKHMsRVKl75cA+mNmgk4gBFJKw=="
+ "resolved" "https://registry.npmjs.org/metro-babel-transformer/-/metro-babel-transformer-0.64.0.tgz"
+ "version" "0.64.0"
+ dependencies:
+ "@babel/core" "^7.0.0"
+ "metro-source-map" "0.64.0"
+ "nullthrows" "^1.1.1"
+
+"metro-cache-key@0.64.0":
+ "integrity" "sha512-O9B65G8L/fopck45ZhdRosyVZdMtUQuX5mBWEC1NRj02iWBIUPLmYMjrunqIe8vHipCMp3DtTCm/65IlBmO8jg=="
+ "resolved" "https://registry.npmjs.org/metro-cache-key/-/metro-cache-key-0.64.0.tgz"
+ "version" "0.64.0"
+
+"metro-cache@0.64.0":
+ "integrity" "sha512-QvGfxe/1QQYM9XOlR8W1xqE9eHDw/AgJIgYGn/TxZxBu9Zga+Rgs1omeSZju45D8w5VWgMr83ma5kACgzvOecg=="
+ "resolved" "https://registry.npmjs.org/metro-cache/-/metro-cache-0.64.0.tgz"
+ "version" "0.64.0"
+ dependencies:
+ "metro-core" "0.64.0"
+ "mkdirp" "^0.5.1"
+ "rimraf" "^2.5.4"
+
+"metro-config@^0.64.0", "metro-config@0.64.0":
+ "integrity" "sha512-QhM4asnX5KhlRWaugwVGNNXhX0Z85u5nK0UQ/A90bBb4xWyXqUe20e788VtdA75rkQiiI6wXTCIHWT0afbnjwQ=="
+ "resolved" "https://registry.npmjs.org/metro-config/-/metro-config-0.64.0.tgz"
+ "version" "0.64.0"
+ dependencies:
+ "cosmiconfig" "^5.0.5"
+ "jest-validate" "^26.5.2"
+ "metro" "0.64.0"
+ "metro-cache" "0.64.0"
+ "metro-core" "0.64.0"
+ "metro-runtime" "0.64.0"
+
+"metro-core@^0.64.0", "metro-core@0.64.0":
+ "integrity" "sha512-v8ZQ5j72EaUwamQ8pLfHlOHTyp7SbdazvHPzFGDpHnwIQqIT0Bw3Syg8R4regTlVG3ngpeSEAi005UITljmMcQ=="
+ "resolved" "https://registry.npmjs.org/metro-core/-/metro-core-0.64.0.tgz"
+ "version" "0.64.0"
+ dependencies:
+ "jest-haste-map" "^26.5.2"
+ "lodash.throttle" "^4.1.1"
+ "metro-resolver" "0.64.0"
+
+"metro-hermes-compiler@0.64.0":
+ "integrity" "sha512-CLAjVDWGAoGhbi2ZyPHnH5YDdfrDIx6+tzFWfHGIMTZkYBXsYta9IfYXBV8lFb6BIbrXLjlXZAOoosknetMPOA=="
+ "resolved" "https://registry.npmjs.org/metro-hermes-compiler/-/metro-hermes-compiler-0.64.0.tgz"
+ "version" "0.64.0"
+
+"metro-inspector-proxy@0.64.0":
+ "integrity" "sha512-KywbH3GNSz9Iqw4UH3smgaV2dBHHYMISeN7ORntDL/G+xfgPc6vt13d+zFb907YpUcXj5N0vdoiAHI5V/0y8IA=="
+ "resolved" "https://registry.npmjs.org/metro-inspector-proxy/-/metro-inspector-proxy-0.64.0.tgz"
+ "version" "0.64.0"
+ dependencies:
+ "connect" "^3.6.5"
+ "debug" "^2.2.0"
+ "ws" "^1.1.5"
+ "yargs" "^15.3.1"
+
+"metro-minify-uglify@0.64.0":
+ "integrity" "sha512-DRwRstqXR5qfte9Nuwoov5dRXxL7fJeVlO5fGyOajWeO3+AgPjvjXh/UcLJqftkMWTPGUFuzAD5/7JC5v5FLWw=="
+ "resolved" "https://registry.npmjs.org/metro-minify-uglify/-/metro-minify-uglify-0.64.0.tgz"
+ "version" "0.64.0"
+ dependencies:
+ "uglify-es" "^3.1.9"
+
+"metro-react-native-babel-preset@^0.64.0", "metro-react-native-babel-preset@0.64.0":
+ "integrity" "sha512-HcZ0RWQRuJfpPiaHyFQJzcym+/dDIVUPwUAXWoub/C4GkGu+mPjp8vqK6g0FxokCnnI2TK0gZTza2IDfiNNscQ=="
+ "resolved" "https://registry.npmjs.org/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.64.0.tgz"
+ "version" "0.64.0"
+ dependencies:
+ "@babel/core" "^7.0.0"
+ "@babel/plugin-proposal-class-properties" "^7.0.0"
+ "@babel/plugin-proposal-export-default-from" "^7.0.0"
+ "@babel/plugin-proposal-nullish-coalescing-operator" "^7.0.0"
+ "@babel/plugin-proposal-object-rest-spread" "^7.0.0"
+ "@babel/plugin-proposal-optional-catch-binding" "^7.0.0"
+ "@babel/plugin-proposal-optional-chaining" "^7.0.0"
+ "@babel/plugin-syntax-dynamic-import" "^7.0.0"
+ "@babel/plugin-syntax-export-default-from" "^7.0.0"
+ "@babel/plugin-syntax-flow" "^7.2.0"
+ "@babel/plugin-syntax-nullish-coalescing-operator" "^7.0.0"
+ "@babel/plugin-syntax-optional-chaining" "^7.0.0"
+ "@babel/plugin-transform-arrow-functions" "^7.0.0"
+ "@babel/plugin-transform-block-scoping" "^7.0.0"
+ "@babel/plugin-transform-classes" "^7.0.0"
+ "@babel/plugin-transform-computed-properties" "^7.0.0"
+ "@babel/plugin-transform-destructuring" "^7.0.0"
+ "@babel/plugin-transform-exponentiation-operator" "^7.0.0"
+ "@babel/plugin-transform-flow-strip-types" "^7.0.0"
+ "@babel/plugin-transform-for-of" "^7.0.0"
+ "@babel/plugin-transform-function-name" "^7.0.0"
+ "@babel/plugin-transform-literals" "^7.0.0"
+ "@babel/plugin-transform-modules-commonjs" "^7.0.0"
+ "@babel/plugin-transform-object-assign" "^7.0.0"
+ "@babel/plugin-transform-parameters" "^7.0.0"
+ "@babel/plugin-transform-react-display-name" "^7.0.0"
+ "@babel/plugin-transform-react-jsx" "^7.0.0"
+ "@babel/plugin-transform-react-jsx-self" "^7.0.0"
+ "@babel/plugin-transform-react-jsx-source" "^7.0.0"
+ "@babel/plugin-transform-regenerator" "^7.0.0"
+ "@babel/plugin-transform-runtime" "^7.0.0"
+ "@babel/plugin-transform-shorthand-properties" "^7.0.0"
+ "@babel/plugin-transform-spread" "^7.0.0"
+ "@babel/plugin-transform-sticky-regex" "^7.0.0"
+ "@babel/plugin-transform-template-literals" "^7.0.0"
+ "@babel/plugin-transform-typescript" "^7.5.0"
+ "@babel/plugin-transform-unicode-regex" "^7.0.0"
+ "@babel/template" "^7.0.0"
+ "react-refresh" "^0.4.0"
+
+"metro-react-native-babel-transformer@^0.64.0", "metro-react-native-babel-transformer@0.64.0":
+ "integrity" "sha512-K1sHO3ODBFCr7uEiCQ4RvVr+cQg0EHQF8ChVPnecGh/WDD8udrTq9ECwB0dRfMjAvlsHtRUlJm6ZSI8UPgum2w=="
+ "resolved" "https://registry.npmjs.org/metro-react-native-babel-transformer/-/metro-react-native-babel-transformer-0.64.0.tgz"
+ "version" "0.64.0"
+ dependencies:
+ "@babel/core" "^7.0.0"
+ "babel-preset-fbjs" "^3.3.0"
+ "metro-babel-transformer" "0.64.0"
+ "metro-react-native-babel-preset" "0.64.0"
+ "metro-source-map" "0.64.0"
+ "nullthrows" "^1.1.1"
+
+"metro-resolver@^0.64.0", "metro-resolver@0.64.0":
+ "integrity" "sha512-cJ26Id8Zf+HmS/1vFwu71K3u7ep/+HeXXAJIeVDYf+niE7AWB9FijyMtAlQgbD8elWqv1leJCnQ/xHRFBfGKYA=="
+ "resolved" "https://registry.npmjs.org/metro-resolver/-/metro-resolver-0.64.0.tgz"
+ "version" "0.64.0"
+ dependencies:
+ "absolute-path" "^0.0.0"
+
+"metro-runtime@^0.64.0", "metro-runtime@0.64.0":
+ "integrity" "sha512-m7XbWOaIOeFX7YcxUhmnOi6Pg8EaeL89xyZ+quZyZVF1aNoTr4w8FfbKxvijpjsytKHIZtd+43m2Wt5JrqyQmQ=="
+ "resolved" "https://registry.npmjs.org/metro-runtime/-/metro-runtime-0.64.0.tgz"
+ "version" "0.64.0"
+
+"metro-source-map@0.64.0":
+ "integrity" "sha512-OCG2rtcp5cLEGYvAbfkl6mEc0J2FPRP4/UCEly+juBk7hawS9bCBMBfhJm/HIsvY1frk6nT2Vsl1O8YBbwyx2g=="
+ "resolved" "https://registry.npmjs.org/metro-source-map/-/metro-source-map-0.64.0.tgz"
+ "version" "0.64.0"
+ dependencies:
+ "@babel/traverse" "^7.0.0"
+ "@babel/types" "^7.0.0"
+ "invariant" "^2.2.4"
+ "metro-symbolicate" "0.64.0"
+ "nullthrows" "^1.1.1"
+ "ob1" "0.64.0"
+ "source-map" "^0.5.6"
+ "vlq" "^1.0.0"
+
+"metro-symbolicate@0.64.0":
+ "integrity" "sha512-qIi+YRrDWnLVmydj6gwidYLPaBsakZRibGWSspuXgHAxOI3UuLwlo4dpQ73Et0gyHjI7ZvRMRY8JPiOntf9AQQ=="
+ "resolved" "https://registry.npmjs.org/metro-symbolicate/-/metro-symbolicate-0.64.0.tgz"
+ "version" "0.64.0"
+ dependencies:
+ "invariant" "^2.2.4"
+ "metro-source-map" "0.64.0"
+ "nullthrows" "^1.1.1"
+ "source-map" "^0.5.6"
+ "through2" "^2.0.1"
+ "vlq" "^1.0.0"
+
+"metro-transform-plugins@0.64.0":
+ "integrity" "sha512-iTIRBD/wBI98plfxj8jAoNUUXfXLNlyvcjPtshhpGvdwu9pzQilGfnDnOaaK+vbITcOk9w5oQectXyJwAqTr1A=="
+ "resolved" "https://registry.npmjs.org/metro-transform-plugins/-/metro-transform-plugins-0.64.0.tgz"
+ "version" "0.64.0"
+ dependencies:
+ "@babel/core" "^7.0.0"
+ "@babel/generator" "^7.5.0"
+ "@babel/template" "^7.0.0"
+ "@babel/traverse" "^7.0.0"
+ "nullthrows" "^1.1.1"
+
+"metro-transform-worker@0.64.0":
+ "integrity" "sha512-wegRtK8GyLF6IPZRBJp+zsORgA4iX0h1DRpknyAMDCtSbJ4VU2xV/AojteOgAsDvY3ucAGsvfuZLNDJHUdUNHQ=="
+ "resolved" "https://registry.npmjs.org/metro-transform-worker/-/metro-transform-worker-0.64.0.tgz"
+ "version" "0.64.0"
+ dependencies:
+ "@babel/core" "^7.0.0"
+ "@babel/generator" "^7.5.0"
+ "@babel/parser" "^7.0.0"
+ "@babel/types" "^7.0.0"
+ "babel-preset-fbjs" "^3.3.0"
+ "metro" "0.64.0"
+ "metro-babel-transformer" "0.64.0"
+ "metro-cache" "0.64.0"
+ "metro-cache-key" "0.64.0"
+ "metro-hermes-compiler" "0.64.0"
+ "metro-source-map" "0.64.0"
+ "metro-transform-plugins" "0.64.0"
+ "nullthrows" "^1.1.1"
+
+"metro@^0.64.0", "metro@0.64.0":
+ "integrity" "sha512-G2OC08Rzfs0kqnSEuKo2yZxR+/eNUpA93Ru45c60uN0Dw3HPrDi+ZBipgFftC6iLE0l+6hu8roFFIofotWxybw=="
+ "resolved" "https://registry.npmjs.org/metro/-/metro-0.64.0.tgz"
+ "version" "0.64.0"
+ dependencies:
+ "@babel/code-frame" "^7.0.0"
+ "@babel/core" "^7.0.0"
+ "@babel/generator" "^7.5.0"
+ "@babel/parser" "^7.0.0"
+ "@babel/template" "^7.0.0"
+ "@babel/traverse" "^7.0.0"
+ "@babel/types" "^7.0.0"
+ "absolute-path" "^0.0.0"
+ "accepts" "^1.3.7"
+ "async" "^2.4.0"
+ "chalk" "^4.0.0"
+ "ci-info" "^2.0.0"
+ "connect" "^3.6.5"
+ "debug" "^2.2.0"
+ "denodeify" "^1.2.1"
+ "error-stack-parser" "^2.0.6"
+ "fs-extra" "^1.0.0"
+ "graceful-fs" "^4.1.3"
+ "image-size" "^0.6.0"
+ "invariant" "^2.2.4"
+ "jest-haste-map" "^26.5.2"
+ "jest-worker" "^26.0.0"
+ "lodash.throttle" "^4.1.1"
+ "metro-babel-register" "0.64.0"
+ "metro-babel-transformer" "0.64.0"
+ "metro-cache" "0.64.0"
+ "metro-cache-key" "0.64.0"
+ "metro-config" "0.64.0"
+ "metro-core" "0.64.0"
+ "metro-hermes-compiler" "0.64.0"
+ "metro-inspector-proxy" "0.64.0"
+ "metro-minify-uglify" "0.64.0"
+ "metro-react-native-babel-preset" "0.64.0"
+ "metro-resolver" "0.64.0"
+ "metro-runtime" "0.64.0"
+ "metro-source-map" "0.64.0"
+ "metro-symbolicate" "0.64.0"
+ "metro-transform-plugins" "0.64.0"
+ "metro-transform-worker" "0.64.0"
+ "mime-types" "^2.1.27"
+ "mkdirp" "^0.5.1"
+ "node-fetch" "^2.2.0"
+ "nullthrows" "^1.1.1"
+ "rimraf" "^2.5.4"
+ "serialize-error" "^2.1.0"
+ "source-map" "^0.5.6"
+ "strip-ansi" "^6.0.0"
+ "temp" "0.8.3"
+ "throat" "^5.0.0"
+ "ws" "^1.1.5"
+ "yargs" "^15.3.1"
+
+"micromatch@^3.1.10":
+ "integrity" "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg=="
+ "resolved" "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz"
+ "version" "3.1.10"
+ dependencies:
+ "arr-diff" "^4.0.0"
+ "array-unique" "^0.3.2"
+ "braces" "^2.3.1"
+ "define-property" "^2.0.2"
+ "extend-shallow" "^3.0.2"
+ "extglob" "^2.0.4"
+ "fragment-cache" "^0.2.1"
+ "kind-of" "^6.0.2"
+ "nanomatch" "^1.2.9"
+ "object.pick" "^1.3.0"
+ "regex-not" "^1.0.0"
+ "snapdragon" "^0.8.1"
+ "to-regex" "^3.0.2"
+
+"micromatch@^3.1.4":
+ "integrity" "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg=="
+ "resolved" "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz"
+ "version" "3.1.10"
+ dependencies:
+ "arr-diff" "^4.0.0"
+ "array-unique" "^0.3.2"
+ "braces" "^2.3.1"
+ "define-property" "^2.0.2"
+ "extend-shallow" "^3.0.2"
+ "extglob" "^2.0.4"
+ "fragment-cache" "^0.2.1"
+ "kind-of" "^6.0.2"
+ "nanomatch" "^1.2.9"
+ "object.pick" "^1.3.0"
+ "regex-not" "^1.0.0"
+ "snapdragon" "^0.8.1"
+ "to-regex" "^3.0.2"
+
+"micromatch@^4.0.2":
+ "integrity" "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg=="
+ "resolved" "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz"
+ "version" "4.0.4"
+ dependencies:
+ "braces" "^3.0.1"
+ "picomatch" "^2.2.3"
+
+"mime-db@>= 1.43.0 < 2", "mime-db@1.49.0":
+ "integrity" "sha512-CIc8j9URtOVApSFCQIF+VBkX1RwXp/oMMOrqdyXSBXq5RWNEsRfyj1kiRnQgmNXmHxPoFIxOroKA3zcU9P+nAA=="
+ "resolved" "https://registry.npmjs.org/mime-db/-/mime-db-1.49.0.tgz"
+ "version" "1.49.0"
+
+"mime-types@^2.1.12", "mime-types@^2.1.27", "mime-types@~2.1.24":
+ "integrity" "sha512-hJGaVS4G4c9TSMYh2n6SQAGrC4RnfU+daP8G7cSCmaqNjiOoUY0VHCMS42pxnQmVF1GWwFhbHWn3RIxCqTmZ9A=="
+ "resolved" "https://registry.npmjs.org/mime-types/-/mime-types-2.1.32.tgz"
+ "version" "2.1.32"
+ dependencies:
+ "mime-db" "1.49.0"
+
+"mime@^2.4.1":
+ "integrity" "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg=="
+ "resolved" "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz"
+ "version" "2.5.2"
+
+"mime@1.6.0":
+ "integrity" "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="
+ "resolved" "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz"
+ "version" "1.6.0"
+
+"mimic-fn@^1.0.0":
+ "integrity" "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ=="
+ "resolved" "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz"
+ "version" "1.2.0"
+
+"mimic-fn@^2.1.0":
+ "integrity" "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg=="
+ "resolved" "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz"
+ "version" "2.1.0"
+
+"minimatch@^3.0.2", "minimatch@^3.0.4":
+ "integrity" "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA=="
+ "resolved" "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz"
+ "version" "3.0.4"
+ dependencies:
+ "brace-expansion" "^1.1.7"
+
+"minimist@^1.1.1", "minimist@^1.2.0", "minimist@^1.2.5":
+ "integrity" "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="
+ "resolved" "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz"
+ "version" "1.2.5"
+
+"mixin-deep@^1.2.0":
+ "integrity" "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA=="
+ "resolved" "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz"
+ "version" "1.3.2"
+ dependencies:
+ "for-in" "^1.0.2"
+ "is-extendable" "^1.0.1"
+
+"mkdirp@^0.5.1":
+ "integrity" "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ=="
+ "resolved" "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz"
+ "version" "0.5.5"
+ dependencies:
+ "minimist" "^1.2.5"
+
+"ms@2.0.0":
+ "integrity" "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
+ "resolved" "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"
+ "version" "2.0.0"
+
+"ms@2.1.1":
+ "integrity" "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg=="
+ "resolved" "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz"
+ "version" "2.1.1"
+
+"ms@2.1.2":
+ "integrity" "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
+ "resolved" "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"
+ "version" "2.1.2"
+
+"nanoid@^3.1.15":
+ "integrity" "sha512-FiB0kzdP0FFVGDKlRLEQ1BgDzU87dy5NnzjeW9YZNt+/c3+q82EQDUwniSAUxp/F0gFNI1ZhKU1FqYsMuqZVnw=="
+ "resolved" "https://registry.npmjs.org/nanoid/-/nanoid-3.1.23.tgz"
+ "version" "3.1.23"
+
+"nanomatch@^1.2.9":
+ "integrity" "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA=="
+ "resolved" "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz"
+ "version" "1.2.13"
+ dependencies:
+ "arr-diff" "^4.0.0"
+ "array-unique" "^0.3.2"
+ "define-property" "^2.0.2"
+ "extend-shallow" "^3.0.2"
+ "fragment-cache" "^0.2.1"
+ "is-windows" "^1.0.2"
+ "kind-of" "^6.0.2"
+ "object.pick" "^1.3.0"
+ "regex-not" "^1.0.0"
+ "snapdragon" "^0.8.1"
+ "to-regex" "^3.0.1"
+
+"natural-compare@^1.4.0":
+ "integrity" "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc="
+ "resolved" "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz"
+ "version" "1.4.0"
+
+"negotiator@0.6.2":
+ "integrity" "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw=="
+ "resolved" "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz"
+ "version" "0.6.2"
+
+"neo-async@^2.5.0":
+ "integrity" "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw=="
+ "resolved" "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz"
+ "version" "2.6.2"
+
+"nice-try@^1.0.4":
+ "integrity" "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ=="
+ "resolved" "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz"
+ "version" "1.0.5"
+
+"nocache@^2.1.0":
+ "integrity" "sha512-0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q=="
+ "resolved" "https://registry.npmjs.org/nocache/-/nocache-2.1.0.tgz"
+ "version" "2.1.0"
+
+"node-dir@^0.1.17":
+ "integrity" "sha1-X1Zl2TNRM1yqvvjxxVRRbPXx5OU="
+ "resolved" "https://registry.npmjs.org/node-dir/-/node-dir-0.1.17.tgz"
+ "version" "0.1.17"
+ dependencies:
+ "minimatch" "^3.0.2"
+
+"node-fetch@^2.2.0", "node-fetch@^2.6.0", "node-fetch@2.6.1":
+ "integrity" "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw=="
+ "resolved" "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz"
+ "version" "2.6.1"
+
+"node-int64@^0.4.0":
+ "integrity" "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs="
+ "resolved" "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz"
+ "version" "0.4.0"
+
+"node-modules-regexp@^1.0.0":
+ "integrity" "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA="
+ "resolved" "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz"
+ "version" "1.0.0"
+
+"node-notifier@^8.0.0":
+ "integrity" "sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg=="
+ "resolved" "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.2.tgz"
+ "version" "8.0.2"
+ dependencies:
+ "growly" "^1.3.0"
+ "is-wsl" "^2.2.0"
+ "semver" "^7.3.2"
+ "shellwords" "^0.1.1"
+ "uuid" "^8.3.0"
+ "which" "^2.0.2"
+
+"node-releases@^1.1.71":
+ "integrity" "sha512-uW7fodD6pyW2FZNZnp/Z3hvWKeEW1Y8R1+1CnErE8cXFXzl5blBOoVB41CvMer6P6Q0S5FXDwcHgFd1Wj0U9zg=="
+ "resolved" "https://registry.npmjs.org/node-releases/-/node-releases-1.1.73.tgz"
+ "version" "1.1.73"
+
+"node-stream-zip@^1.9.1":
+ "integrity" "sha512-SKXyiBy9DBemsPHf/piHT00Y+iPK+zwru1G6+8UdOBzITnmmPMHYBMV6M1znyzyhDhUFQW0HEmbGiPqtp51M6Q=="
+ "resolved" "https://registry.npmjs.org/node-stream-zip/-/node-stream-zip-1.14.0.tgz"
+ "version" "1.14.0"
+
+"normalize-package-data@^2.5.0":
+ "integrity" "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA=="
+ "resolved" "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz"
+ "version" "2.5.0"
+ dependencies:
+ "hosted-git-info" "^2.1.4"
+ "resolve" "^1.10.0"
+ "semver" "2 || 3 || 4 || 5"
+ "validate-npm-package-license" "^3.0.1"
+
+"normalize-path@^2.1.1":
+ "integrity" "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk="
+ "resolved" "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz"
+ "version" "2.1.1"
+ dependencies:
+ "remove-trailing-separator" "^1.0.1"
+
+"normalize-path@^3.0.0", "normalize-path@~3.0.0":
+ "integrity" "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="
+ "resolved" "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz"
+ "version" "3.0.0"
+
+"npm-run-path@^2.0.0":
+ "integrity" "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8="
+ "resolved" "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz"
+ "version" "2.0.2"
+ dependencies:
+ "path-key" "^2.0.0"
+
+"npm-run-path@^4.0.0":
+ "integrity" "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw=="
+ "resolved" "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz"
+ "version" "4.0.1"
+ dependencies:
+ "path-key" "^3.0.0"
+
+"nullthrows@^1.1.1":
+ "integrity" "sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw=="
+ "resolved" "https://registry.npmjs.org/nullthrows/-/nullthrows-1.1.1.tgz"
+ "version" "1.1.1"
+
+"nwsapi@^2.2.0":
+ "integrity" "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ=="
+ "resolved" "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz"
+ "version" "2.2.0"
+
+"ob1@0.64.0":
+ "integrity" "sha512-CO1N+5dhvy+MoAwxz8+fymEUcwsT4a+wHhrHFb02LppcJdHxgcBWviwEhUwKOD2kLMQ7ijrrzybOqpGcqEtvpQ=="
+ "resolved" "https://registry.npmjs.org/ob1/-/ob1-0.64.0.tgz"
+ "version" "0.64.0"
+
+"object-assign@^4.1.0", "object-assign@^4.1.1":
+ "integrity" "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM="
+ "resolved" "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz"
+ "version" "4.1.1"
+
+"object-copy@^0.1.0":
+ "integrity" "sha1-fn2Fi3gb18mRpBupde04EnVOmYw="
+ "resolved" "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz"
+ "version" "0.1.0"
+ dependencies:
+ "copy-descriptor" "^0.1.0"
+ "define-property" "^0.2.5"
+ "kind-of" "^3.0.3"
+
+"object-inspect@^1.11.0", "object-inspect@^1.9.0":
+ "integrity" "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg=="
+ "resolved" "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz"
+ "version" "1.11.0"
+
+"object-keys@^1.0.12", "object-keys@^1.1.1":
+ "integrity" "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA=="
+ "resolved" "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz"
+ "version" "1.1.1"
+
+"object-visit@^1.0.0":
+ "integrity" "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs="
+ "resolved" "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz"
+ "version" "1.0.1"
+ dependencies:
+ "isobject" "^3.0.0"
+
+"object.assign@^4.1.0", "object.assign@^4.1.2":
+ "integrity" "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ=="
+ "resolved" "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz"
+ "version" "4.1.2"
+ dependencies:
+ "call-bind" "^1.0.0"
+ "define-properties" "^1.1.3"
+ "has-symbols" "^1.0.1"
+ "object-keys" "^1.1.1"
+
+"object.entries@^1.1.4":
+ "integrity" "sha512-h4LWKWE+wKQGhtMjZEBud7uLGhqyLwj8fpHOarZhD2uY3C9cRtk57VQ89ke3moByLXMedqs3XCHzyb4AmA2DjA=="
+ "resolved" "https://registry.npmjs.org/object.entries/-/object.entries-1.1.4.tgz"
+ "version" "1.1.4"
+ dependencies:
+ "call-bind" "^1.0.2"
+ "define-properties" "^1.1.3"
+ "es-abstract" "^1.18.2"
+
+"object.fromentries@^2.0.4":
+ "integrity" "sha512-EsFBshs5RUUpQEY1D4q/m59kMfz4YJvxuNCJcv/jWwOJr34EaVnG11ZrZa0UHB3wnzV1wx8m58T4hQL8IuNXlQ=="
+ "resolved" "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.4.tgz"
+ "version" "2.0.4"
+ dependencies:
+ "call-bind" "^1.0.2"
+ "define-properties" "^1.1.3"
+ "es-abstract" "^1.18.0-next.2"
+ "has" "^1.0.3"
+
+"object.pick@^1.3.0":
+ "integrity" "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c="
+ "resolved" "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz"
+ "version" "1.3.0"
+ dependencies:
+ "isobject" "^3.0.1"
+
+"object.values@^1.1.4":
+ "integrity" "sha512-TnGo7j4XSnKQoK3MfvkzqKCi0nVe/D9I9IjwTNYdb/fxYHpjrluHVOgw0AF6jrRFGMPHdfuidR09tIDiIvnaSg=="
+ "resolved" "https://registry.npmjs.org/object.values/-/object.values-1.1.4.tgz"
+ "version" "1.1.4"
+ dependencies:
+ "call-bind" "^1.0.2"
+ "define-properties" "^1.1.3"
+ "es-abstract" "^1.18.2"
+
+"on-finished@~2.3.0":
+ "integrity" "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc="
+ "resolved" "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz"
+ "version" "2.3.0"
+ dependencies:
+ "ee-first" "1.1.1"
+
+"on-headers@~1.0.2":
+ "integrity" "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA=="
+ "resolved" "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz"
+ "version" "1.0.2"
+
+"once@^1.3.0", "once@^1.3.1", "once@^1.4.0":
+ "integrity" "sha1-WDsap3WWHUsROsF9nFC6753Xa9E="
+ "resolved" "https://registry.npmjs.org/once/-/once-1.4.0.tgz"
+ "version" "1.4.0"
+ dependencies:
+ "wrappy" "1"
+
+"onetime@^2.0.0":
+ "integrity" "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ="
+ "resolved" "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz"
+ "version" "2.0.1"
+ dependencies:
+ "mimic-fn" "^1.0.0"
+
+"onetime@^5.1.0":
+ "integrity" "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg=="
+ "resolved" "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz"
+ "version" "5.1.2"
+ dependencies:
+ "mimic-fn" "^2.1.0"
+
+"open@^6.2.0":
+ "integrity" "sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg=="
+ "resolved" "https://registry.npmjs.org/open/-/open-6.4.0.tgz"
+ "version" "6.4.0"
+ dependencies:
+ "is-wsl" "^1.1.0"
+
+"opencollective-postinstall@^2.0.3":
+ "integrity" "sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q=="
+ "resolved" "https://registry.npmjs.org/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz"
+ "version" "2.0.3"
+
+"optionator@^0.8.1":
+ "integrity" "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA=="
+ "resolved" "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz"
+ "version" "0.8.3"
+ dependencies:
+ "deep-is" "~0.1.3"
+ "fast-levenshtein" "~2.0.6"
+ "levn" "~0.3.0"
+ "prelude-ls" "~1.1.2"
+ "type-check" "~0.3.2"
+ "word-wrap" "~1.2.3"
+
+"optionator@^0.9.1":
+ "integrity" "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw=="
+ "resolved" "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz"
+ "version" "0.9.1"
+ dependencies:
+ "deep-is" "^0.1.3"
+ "fast-levenshtein" "^2.0.6"
+ "levn" "^0.4.1"
+ "prelude-ls" "^1.2.1"
+ "type-check" "^0.4.0"
+ "word-wrap" "^1.2.3"
+
+"options@>=0.0.5":
+ "integrity" "sha1-7CLTEoBrtT5zF3Pnza788cZDEo8="
+ "resolved" "https://registry.npmjs.org/options/-/options-0.0.6.tgz"
+ "version" "0.0.6"
+
+"ora@^3.4.0":
+ "integrity" "sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg=="
+ "resolved" "https://registry.npmjs.org/ora/-/ora-3.4.0.tgz"
+ "version" "3.4.0"
+ dependencies:
+ "chalk" "^2.4.2"
+ "cli-cursor" "^2.1.0"
+ "cli-spinners" "^2.0.0"
+ "log-symbols" "^2.2.0"
+ "strip-ansi" "^5.2.0"
+ "wcwidth" "^1.0.1"
+
+"os-tmpdir@^1.0.0":
+ "integrity" "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ="
+ "resolved" "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz"
+ "version" "1.0.2"
+
+"p-each-series@^2.1.0":
+ "integrity" "sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA=="
+ "resolved" "https://registry.npmjs.org/p-each-series/-/p-each-series-2.2.0.tgz"
+ "version" "2.2.0"
+
+"p-finally@^1.0.0":
+ "integrity" "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4="
+ "resolved" "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz"
+ "version" "1.0.0"
+
+"p-limit@^2.0.0", "p-limit@^2.2.0":
+ "integrity" "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w=="
+ "resolved" "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz"
+ "version" "2.3.0"
+ dependencies:
+ "p-try" "^2.0.0"
+
+"p-locate@^3.0.0":
+ "integrity" "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ=="
+ "resolved" "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz"
+ "version" "3.0.0"
+ dependencies:
+ "p-limit" "^2.0.0"
+
+"p-locate@^4.1.0":
+ "integrity" "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A=="
+ "resolved" "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz"
+ "version" "4.1.0"
+ dependencies:
+ "p-limit" "^2.2.0"
+
+"p-try@^2.0.0":
+ "integrity" "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="
+ "resolved" "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz"
+ "version" "2.2.0"
+
+"parent-module@^1.0.0":
+ "integrity" "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g=="
+ "resolved" "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz"
+ "version" "1.0.1"
+ dependencies:
+ "callsites" "^3.0.0"
+
+"parse-json@^4.0.0":
+ "integrity" "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA="
+ "resolved" "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz"
+ "version" "4.0.0"
+ dependencies:
+ "error-ex" "^1.3.1"
+ "json-parse-better-errors" "^1.0.1"
+
+"parse-json@^5.0.0":
+ "integrity" "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg=="
+ "resolved" "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz"
+ "version" "5.2.0"
+ dependencies:
+ "@babel/code-frame" "^7.0.0"
+ "error-ex" "^1.3.1"
+ "json-parse-even-better-errors" "^2.3.0"
+ "lines-and-columns" "^1.1.6"
+
+"parse5@6.0.1":
+ "integrity" "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw=="
+ "resolved" "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz"
+ "version" "6.0.1"
+
+"parseurl@~1.3.3":
+ "integrity" "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ=="
+ "resolved" "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz"
+ "version" "1.3.3"
+
+"pascalcase@^0.1.1":
+ "integrity" "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ="
+ "resolved" "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz"
+ "version" "0.1.1"
+
+"path-exists@^3.0.0":
+ "integrity" "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU="
+ "resolved" "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz"
+ "version" "3.0.0"
+
+"path-exists@^4.0.0":
+ "integrity" "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w=="
+ "resolved" "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz"
+ "version" "4.0.0"
+
+"path-is-absolute@^1.0.0":
+ "integrity" "sha1-F0uSaHNVNP+8es5r9TpanhtcX18="
+ "resolved" "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"
+ "version" "1.0.1"
+
+"path-key@^2.0.0", "path-key@^2.0.1":
+ "integrity" "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A="
+ "resolved" "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz"
+ "version" "2.0.1"
+
+"path-key@^3.0.0", "path-key@^3.1.0":
+ "integrity" "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="
+ "resolved" "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz"
+ "version" "3.1.1"
+
+"path-parse@^1.0.6":
+ "integrity" "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
+ "resolved" "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz"
+ "version" "1.0.7"
+
+"picomatch@^2.0.4", "picomatch@^2.2.1", "picomatch@^2.2.3":
+ "integrity" "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw=="
+ "resolved" "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz"
+ "version" "2.3.0"
+
+"pify@^4.0.1":
+ "integrity" "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g=="
+ "resolved" "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz"
+ "version" "4.0.1"
+
+"pirates@^4.0.0", "pirates@^4.0.1":
+ "integrity" "sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA=="
+ "resolved" "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz"
+ "version" "4.0.1"
+ dependencies:
+ "node-modules-regexp" "^1.0.0"
+
+"pkg-dir@^3.0.0":
+ "integrity" "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw=="
+ "resolved" "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz"
+ "version" "3.0.0"
+ dependencies:
+ "find-up" "^3.0.0"
+
+"pkg-dir@^4.2.0":
+ "integrity" "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ=="
+ "resolved" "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz"
+ "version" "4.2.0"
+ dependencies:
+ "find-up" "^4.0.0"
+
+"plist@^3.0.1":
+ "integrity" "sha512-MSrkwZBdQ6YapHy87/8hDU8MnIcyxBKjeF+McXnr5A9MtffPewTs7G3hlpodT5TacyfIyFTaJEhh3GGcmasTgQ=="
+ "resolved" "https://registry.npmjs.org/plist/-/plist-3.0.2.tgz"
+ "version" "3.0.2"
+ dependencies:
+ "base64-js" "^1.5.1"
+ "xmlbuilder" "^9.0.7"
+ "xmldom" "^0.5.0"
+
+"posix-character-classes@^0.1.0":
+ "integrity" "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs="
+ "resolved" "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz"
+ "version" "0.1.1"
+
+"postcss-value-parser@^4.0.2":
+ "integrity" "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ=="
+ "resolved" "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz"
+ "version" "4.1.0"
+
+"prelude-ls@^1.2.1":
+ "integrity" "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g=="
+ "resolved" "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz"
+ "version" "1.2.1"
+
+"prelude-ls@~1.1.2":
+ "integrity" "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ="
+ "resolved" "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz"
+ "version" "1.1.2"
+
+"prettier-linter-helpers@^1.0.0":
+ "integrity" "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w=="
+ "resolved" "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz"
+ "version" "1.0.0"
+ dependencies:
+ "fast-diff" "^1.1.2"
+
+"prettier@^2.0.2", "prettier@^2.3.2", "prettier@>= 1.13.0", "prettier@>=1.13.0":
+ "integrity" "sha512-lnJzDfJ66zkMy58OL5/NY5zp70S7Nz6KqcKkXYzn2tMVrNxvbqaBpg7H3qHaLxCJ5lNMsGuM8+ohS7cZrthdLQ=="
+ "resolved" "https://registry.npmjs.org/prettier/-/prettier-2.3.2.tgz"
+ "version" "2.3.2"
+
+"pretty-format@^26.5.2", "pretty-format@^26.6.2":
+ "integrity" "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg=="
+ "resolved" "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "@jest/types" "^26.6.2"
+ "ansi-regex" "^5.0.0"
+ "ansi-styles" "^4.0.0"
+ "react-is" "^17.0.1"
+
+"process-nextick-args@~2.0.0":
+ "integrity" "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="
+ "resolved" "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz"
+ "version" "2.0.1"
+
+"progress@^2.0.0":
+ "integrity" "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA=="
+ "resolved" "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz"
+ "version" "2.0.3"
+
+"promise@^7.1.1":
+ "integrity" "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg=="
+ "resolved" "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz"
+ "version" "7.3.1"
+ dependencies:
+ "asap" "~2.0.3"
+
+"promise@^8.0.3":
+ "integrity" "sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q=="
+ "resolved" "https://registry.npmjs.org/promise/-/promise-8.1.0.tgz"
+ "version" "8.1.0"
+ dependencies:
+ "asap" "~2.0.6"
+
+"prompts@^2.0.1", "prompts@^2.4.0":
+ "integrity" "sha512-EQyfIuO2hPDsX1L/blblV+H7I0knhgAd82cVneCwcdND9B8AuCDuRcBH6yIcG4dFzlOUqbazQqwGjx5xmsNLuQ=="
+ "resolved" "https://registry.npmjs.org/prompts/-/prompts-2.4.1.tgz"
+ "version" "2.4.1"
+ dependencies:
+ "kleur" "^3.0.3"
+ "sisteransi" "^1.0.5"
+
+"prop-types@^15.6.2", "prop-types@^15.7.2":
+ "integrity" "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ=="
+ "resolved" "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz"
+ "version" "15.7.2"
+ dependencies:
+ "loose-envify" "^1.4.0"
+ "object-assign" "^4.1.1"
+ "react-is" "^16.8.1"
+
+"psl@^1.1.33":
+ "integrity" "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ=="
+ "resolved" "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz"
+ "version" "1.8.0"
+
+"pump@^3.0.0":
+ "integrity" "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww=="
+ "resolved" "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz"
+ "version" "3.0.0"
+ dependencies:
+ "end-of-stream" "^1.1.0"
+ "once" "^1.3.1"
+
+"punycode@^2.1.0", "punycode@^2.1.1":
+ "integrity" "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="
+ "resolved" "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz"
+ "version" "2.1.1"
+
+"query-string@^6.13.6":
+ "integrity" "sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw=="
+ "resolved" "https://registry.npmjs.org/query-string/-/query-string-6.14.1.tgz"
+ "version" "6.14.1"
+ dependencies:
+ "decode-uri-component" "^0.2.0"
+ "filter-obj" "^1.1.0"
+ "split-on-first" "^1.0.0"
+ "strict-uri-encode" "^2.0.0"
+
+"range-parser@~1.2.1":
+ "integrity" "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="
+ "resolved" "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz"
+ "version" "1.2.1"
+
+"react-devtools-core@^4.6.0":
+ "integrity" "sha512-cE7tkSUkGCDxTA79pntDGJCBgzNN/XxA3kgPdXujdfSfEfVhzrItQIEsN0kCN/hJJACDvH2Q8p5+tJb/K4B3qA=="
+ "resolved" "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.14.0.tgz"
+ "version" "4.14.0"
+ dependencies:
+ "shell-quote" "^1.6.1"
+ "ws" "^7"
+
+"react-is@^16.12.0 || ^17.0.0", "react-is@^17.0.1", "react-is@>= 16.8.0":
+ "integrity" "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w=="
+ "resolved" "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz"
+ "version" "17.0.2"
+
+"react-is@^16.13.0":
+ "integrity" "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
+ "resolved" "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz"
+ "version" "16.13.1"
+
+"react-is@^16.7.0":
+ "integrity" "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
+ "resolved" "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz"
+ "version" "16.13.1"
+
+"react-is@^16.8.1":
+ "integrity" "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
+ "resolved" "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz"
+ "version" "16.13.1"
+
+"react-native-codegen@^0.0.6":
+ "integrity" "sha512-cMvrUelD81wiPitEPiwE/TCNscIVauXxmt4NTGcy18HrUd0WRWXfYzAQGXm0eI87u3NMudNhqFj2NISJenxQHg=="
+ "resolved" "https://registry.npmjs.org/react-native-codegen/-/react-native-codegen-0.0.6.tgz"
+ "version" "0.0.6"
+ dependencies:
+ "flow-parser" "^0.121.0"
+ "jscodeshift" "^0.11.0"
+ "nullthrows" "^1.1.1"
+
+"react-native-drop-shadow@^0.0.2":
+ "integrity" "sha512-zaUCd9OwwKRK4sd6dQrl3s/W7gX43gK2XjViO60ta6oTyohUP0xcuFjO+hhgo+bNPyPgPQxkIWluaWZKnqcbhw=="
+ "resolved" "https://registry.npmjs.org/react-native-drop-shadow/-/react-native-drop-shadow-0.0.2.tgz"
+ "version" "0.0.2"
+ dependencies:
+ "logkitty" "^0.7.1"
+
+"react-native-elements@^3.4.2":
+ "integrity" "sha512-m0eAWOn7JuR1wNTNY0WHuaqst4LI/gFE4N5Bbyfsc4DiryWsMST7aAg5w/Gos4IexWIzhLKCIkPxthND1m/8Xg=="
+ "resolved" "https://registry.npmjs.org/react-native-elements/-/react-native-elements-3.4.2.tgz"
+ "version" "3.4.2"
+ dependencies:
+ "@types/react-native-vector-icons" "^6.4.6"
+ "color" "^3.1.2"
+ "deepmerge" "^4.2.2"
+ "hoist-non-react-statics" "^3.3.2"
+ "lodash.isequal" "^4.5.0"
+ "opencollective-postinstall" "^2.0.3"
+ "react-native-ratings" "8.0.4"
+ "react-native-size-matters" "^0.3.1"
+
+"react-native-gesture-handler@^1.10.3", "react-native-gesture-handler@>= 1.0.0":
+ "integrity" "sha512-cBGMi1IEsIVMgoox4RvMx7V2r6bNKw0uR1Mu1o7NbuHS6BRSVLq0dP34l2ecnPlC+jpWd3le6Yg1nrdCjby2Mw=="
+ "resolved" "https://registry.npmjs.org/react-native-gesture-handler/-/react-native-gesture-handler-1.10.3.tgz"
+ "version" "1.10.3"
+ dependencies:
+ "@egjs/hammerjs" "^2.0.17"
+ "fbjs" "^3.0.0"
+ "hoist-non-react-statics" "^3.3.0"
+ "invariant" "^2.2.4"
+ "prop-types" "^15.7.2"
+
+"react-native-image-pan-zoom@^2.1.12":
+ "integrity" "sha512-BF66XeP6dzuANsPmmFsJshM2Jyh/Mo1t8FsGc1L9Q9/sVP8MJULDabB1hms+eAoqgtyhMr5BuXV3E1hJ5U5H6Q=="
+ "resolved" "https://registry.npmjs.org/react-native-image-pan-zoom/-/react-native-image-pan-zoom-2.1.12.tgz"
+ "version" "2.1.12"
+
+"react-native-image-zoom-viewer@^3.0.1":
+ "integrity" "sha512-la6s5DNSuq4GCRLsi5CZ29FPjgTpdCuGIRdO5T9rUrAtxrlpBPhhSnHrbmPVxsdtOUvxHacTh2Gfa9+RraMZQA=="
+ "resolved" "https://registry.npmjs.org/react-native-image-zoom-viewer/-/react-native-image-zoom-viewer-3.0.1.tgz"
+ "version" "3.0.1"
+ dependencies:
+ "react-native-image-pan-zoom" "^2.1.12"
+
+"react-native-iphone-x-helper@^1.0.3", "react-native-iphone-x-helper@^1.3.0":
+ "integrity" "sha512-HOf0jzRnq2/aFUcdCJ9w9JGzN3gdEg0zFE4FyYlp4jtidqU03D5X7ZegGKfT1EWteR0gPBGp9ye5T5FvSWi9Yg=="
+ "resolved" "https://registry.npmjs.org/react-native-iphone-x-helper/-/react-native-iphone-x-helper-1.3.1.tgz"
+ "version" "1.3.1"
+
+"react-native-keyboard-aware-scroll-view@^0.9.4":
+ "integrity" "sha512-9Q8lxGvUdEnyL2Q0/VZdcEjHUGjm1lOAMd/3bNnhknoA7RqjJDaRGOQDhOAjVW1iwrKUct+B1old87nIsiX6iw=="
+ "resolved" "https://registry.npmjs.org/react-native-keyboard-aware-scroll-view/-/react-native-keyboard-aware-scroll-view-0.9.4.tgz"
+ "version" "0.9.4"
+ dependencies:
+ "prop-types" "^15.6.2"
+ "react-native-iphone-x-helper" "^1.0.3"
+
+"react-native-ratings@8.0.4":
+ "integrity" "sha512-Xczu5lskIIRD6BEdz9A0jDRpEck/SFxRqiglkXi0u67yAtI1/pcJC76P4MukCbT8K4BPVl+42w83YqXBoBRl7A=="
+ "resolved" "https://registry.npmjs.org/react-native-ratings/-/react-native-ratings-8.0.4.tgz"
+ "version" "8.0.4"
+ dependencies:
+ "lodash" "^4.17.15"
+
+"react-native-safe-area-context@^3.1.9", "react-native-safe-area-context@^3.3.0", "react-native-safe-area-context@>= 0.6.0":
+ "integrity" "sha512-IrCNx56LO9RJ75yCf2CSSO1ceLj3mvxTAF+HWnehaeRIfF4pIcIn3WEUlXulFiha641OKS5X0+1XZCbbQ7pITA=="
+ "resolved" "https://registry.npmjs.org/react-native-safe-area-context/-/react-native-safe-area-context-3.3.0.tgz"
+ "version" "3.3.0"
+
+"react-native-screens@^3.4.0", "react-native-screens@>= 2.0.0-alpha.0 || >= 2.0.0-beta.0 || >= 2.0.0":
+ "integrity" "sha512-cg+q9MRnVdeOcJyvJtqffoXLur/C2wHA/7IO2+FAipzTlgHbbM1mTuSM7qG+SeiQjoIs4mHOEf7A0ziPKW04sA=="
+ "resolved" "https://registry.npmjs.org/react-native-screens/-/react-native-screens-3.4.0.tgz"
+ "version" "3.4.0"
+ dependencies:
+ "warn-once" "^0.1.0"
+
+"react-native-segment-tab@^0.1.1":
+ "integrity" "sha1-WoWxTqtX2LdzhKvdIedkgFmCmRc="
+ "resolved" "https://registry.npmjs.org/react-native-segment-tab/-/react-native-segment-tab-0.1.1.tgz"
+ "version" "0.1.1"
+
+"react-native-segmented-control-tab@^3.4.1":
+ "integrity" "sha512-BNPdlE9Unr0Xabewn8W+FhBMLjssXy9Ey7S7AY0hXlrKrEKFdC9z0yT+eEWd5dLam4T6T4IuGL8b7ZF4uGyWNw=="
+ "resolved" "https://registry.npmjs.org/react-native-segmented-control-tab/-/react-native-segmented-control-tab-3.4.1.tgz"
+ "version" "3.4.1"
+
+"react-native-size-matters@^0.3.1":
+ "integrity" "sha512-mKOfBLIBFBcs9br1rlZDvxD5+mAl8Gfr5CounwJtxI6Z82rGrMO+Kgl9EIg3RMVf3G855a85YVqHJL2f5EDRlw=="
+ "resolved" "https://registry.npmjs.org/react-native-size-matters/-/react-native-size-matters-0.3.1.tgz"
+ "version" "0.3.1"
+
+"react-native-vector-icons@^8.1.0", "react-native-vector-icons@>7.0.0":
+ "integrity" "sha512-sHIdBB6Y0dHaot2fMXgy5J/hhCn5YuyN7SKDNFgPzL8KA1oF2/v7mgYMavnK7LIIs2dJoGnDANKf61dsU+TZlg=="
+ "resolved" "https://registry.npmjs.org/react-native-vector-icons/-/react-native-vector-icons-8.1.0.tgz"
+ "version" "8.1.0"
+ dependencies:
+ "lodash.frompairs" "^4.0.1"
+ "lodash.isequal" "^4.5.0"
+ "lodash.isstring" "^4.0.1"
+ "lodash.omit" "^4.5.0"
+ "lodash.pick" "^4.4.0"
+ "lodash.template" "^4.5.0"
+ "prop-types" "^15.7.2"
+ "yargs" "^16.1.1"
+
+"react-native@*", "react-native@^0.64.2", "react-native@>=0.42.0", "react-native@>=0.48.4", "react-native@>=0.61.5", "react-native@>=0.64.0-rc.0 || 0.0.0-*":
+ "integrity" "sha512-Ty/fFHld9DcYsFZujXYdeVjEhvSeQcwuTGXezyoOkxfiGEGrpL/uwUZvMzwShnU4zbbTKDu2PAm/uwuOittRGA=="
+ "resolved" "https://registry.npmjs.org/react-native/-/react-native-0.64.2.tgz"
+ "version" "0.64.2"
+ dependencies:
+ "@jest/create-cache-key-function" "^26.5.0"
+ "@react-native-community/cli" "^5.0.1-alpha.1"
+ "@react-native-community/cli-platform-android" "^5.0.1-alpha.1"
+ "@react-native-community/cli-platform-ios" "^5.0.1-alpha.1"
+ "@react-native/assets" "1.0.0"
+ "@react-native/normalize-color" "1.0.0"
+ "@react-native/polyfills" "1.0.0"
+ "abort-controller" "^3.0.0"
+ "anser" "^1.4.9"
+ "base64-js" "^1.1.2"
+ "event-target-shim" "^5.0.1"
+ "hermes-engine" "~0.7.0"
+ "invariant" "^2.2.4"
+ "jsc-android" "^245459.0.0"
+ "metro-babel-register" "0.64.0"
+ "metro-react-native-babel-transformer" "0.64.0"
+ "metro-runtime" "0.64.0"
+ "metro-source-map" "0.64.0"
+ "nullthrows" "^1.1.1"
+ "pretty-format" "^26.5.2"
+ "promise" "^8.0.3"
+ "prop-types" "^15.7.2"
+ "react-devtools-core" "^4.6.0"
+ "react-native-codegen" "^0.0.6"
+ "react-refresh" "^0.4.0"
+ "regenerator-runtime" "^0.13.2"
+ "scheduler" "^0.20.1"
+ "shelljs" "^0.8.4"
+ "stacktrace-parser" "^0.1.3"
+ "use-subscription" "^1.0.0"
+ "whatwg-fetch" "^3.0.0"
+ "ws" "^6.1.4"
+
+"react-refresh@^0.4.0":
+ "integrity" "sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA=="
+ "resolved" "https://registry.npmjs.org/react-refresh/-/react-refresh-0.4.3.tgz"
+ "version" "0.4.3"
+
+"react-shallow-renderer@^16.13.1":
+ "integrity" "sha512-rkIMcQi01/+kxiTE9D3fdS959U1g7gs+/rborw++42m1O9FAQiNI/UNRZExVUoAOprn4umcXf+pFRou8i4zuBg=="
+ "resolved" "https://registry.npmjs.org/react-shallow-renderer/-/react-shallow-renderer-16.14.1.tgz"
+ "version" "16.14.1"
+ dependencies:
+ "object-assign" "^4.1.1"
+ "react-is" "^16.12.0 || ^17.0.0"
+
+"react-test-renderer@17.0.1":
+ "integrity" "sha512-/dRae3mj6aObwkjCcxZPlxDFh73XZLgvwhhyON2haZGUEhiaY5EjfAdw+d/rQmlcFwdTpMXCSGVk374QbCTlrA=="
+ "resolved" "https://registry.npmjs.org/react-test-renderer/-/react-test-renderer-17.0.1.tgz"
+ "version" "17.0.1"
+ dependencies:
+ "object-assign" "^4.1.1"
+ "react-is" "^17.0.1"
+ "react-shallow-renderer" "^16.13.1"
+ "scheduler" "^0.20.1"
+
+"react@*", "react@^16.0.0 || ^17.0.0", "react@^16.8.0 || ^17.0.0", "react@^17.0.1", "react@>= 16.8.0", "react@17.0.1":
+ "integrity" "sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w=="
+ "resolved" "https://registry.npmjs.org/react/-/react-17.0.1.tgz"
+ "version" "17.0.1"
+ dependencies:
+ "loose-envify" "^1.1.0"
+ "object-assign" "^4.1.1"
+
+"read-pkg-up@^7.0.1":
+ "integrity" "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg=="
+ "resolved" "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz"
+ "version" "7.0.1"
+ dependencies:
+ "find-up" "^4.1.0"
+ "read-pkg" "^5.2.0"
+ "type-fest" "^0.8.1"
+
+"read-pkg@^5.2.0":
+ "integrity" "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg=="
+ "resolved" "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz"
+ "version" "5.2.0"
+ dependencies:
+ "@types/normalize-package-data" "^2.4.0"
+ "normalize-package-data" "^2.5.0"
+ "parse-json" "^5.0.0"
+ "type-fest" "^0.6.0"
+
+"readable-stream@^2.0.2", "readable-stream@~2.3.6":
+ "integrity" "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw=="
+ "resolved" "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz"
+ "version" "2.3.7"
+ dependencies:
+ "core-util-is" "~1.0.0"
+ "inherits" "~2.0.3"
+ "isarray" "~1.0.0"
+ "process-nextick-args" "~2.0.0"
+ "safe-buffer" "~5.1.1"
+ "string_decoder" "~1.1.1"
+ "util-deprecate" "~1.0.1"
+
+"readdirp@^2.2.1":
+ "integrity" "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ=="
+ "resolved" "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz"
+ "version" "2.2.1"
+ dependencies:
+ "graceful-fs" "^4.1.11"
+ "micromatch" "^3.1.10"
+ "readable-stream" "^2.0.2"
+
+"readdirp@~3.6.0":
+ "integrity" "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA=="
+ "resolved" "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz"
+ "version" "3.6.0"
+ dependencies:
+ "picomatch" "^2.2.1"
+
+"recast@^0.20.3":
+ "integrity" "sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ=="
+ "resolved" "https://registry.npmjs.org/recast/-/recast-0.20.5.tgz"
+ "version" "0.20.5"
+ dependencies:
+ "ast-types" "0.14.2"
+ "esprima" "~4.0.0"
+ "source-map" "~0.6.1"
+ "tslib" "^2.0.1"
+
+"rechoir@^0.6.2":
+ "integrity" "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q="
+ "resolved" "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz"
+ "version" "0.6.2"
+ dependencies:
+ "resolve" "^1.1.6"
+
+"regenerate-unicode-properties@^8.2.0":
+ "integrity" "sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA=="
+ "resolved" "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz"
+ "version" "8.2.0"
+ dependencies:
+ "regenerate" "^1.4.0"
+
+"regenerate@^1.4.0":
+ "integrity" "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A=="
+ "resolved" "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz"
+ "version" "1.4.2"
+
+"regenerator-runtime@^0.13.2", "regenerator-runtime@^0.13.4":
+ "integrity" "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA=="
+ "resolved" "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz"
+ "version" "0.13.9"
+
+"regenerator-transform@^0.14.2":
+ "integrity" "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw=="
+ "resolved" "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz"
+ "version" "0.14.5"
+ dependencies:
+ "@babel/runtime" "^7.8.4"
+
+"regex-not@^1.0.0", "regex-not@^1.0.2":
+ "integrity" "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A=="
+ "resolved" "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz"
+ "version" "1.0.2"
+ dependencies:
+ "extend-shallow" "^3.0.2"
+ "safe-regex" "^1.1.0"
+
+"regexp.prototype.flags@^1.3.1":
+ "integrity" "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA=="
+ "resolved" "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz"
+ "version" "1.3.1"
+ dependencies:
+ "call-bind" "^1.0.2"
+ "define-properties" "^1.1.3"
+
+"regexpp@^3.0.0", "regexpp@^3.1.0":
+ "integrity" "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg=="
+ "resolved" "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz"
+ "version" "3.2.0"
+
+"regexpu-core@^4.7.1":
+ "integrity" "sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ=="
+ "resolved" "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz"
+ "version" "4.7.1"
+ dependencies:
+ "regenerate" "^1.4.0"
+ "regenerate-unicode-properties" "^8.2.0"
+ "regjsgen" "^0.5.1"
+ "regjsparser" "^0.6.4"
+ "unicode-match-property-ecmascript" "^1.0.4"
+ "unicode-match-property-value-ecmascript" "^1.2.0"
+
+"regjsgen@^0.5.1":
+ "integrity" "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A=="
+ "resolved" "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz"
+ "version" "0.5.2"
+
+"regjsparser@^0.6.4":
+ "integrity" "sha512-ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ=="
+ "resolved" "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.9.tgz"
+ "version" "0.6.9"
+ dependencies:
+ "jsesc" "~0.5.0"
+
+"remove-trailing-separator@^1.0.1":
+ "integrity" "sha1-wkvOKig62tW8P1jg1IJJuSN52O8="
+ "resolved" "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz"
+ "version" "1.1.0"
+
+"repeat-element@^1.1.2":
+ "integrity" "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ=="
+ "resolved" "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz"
+ "version" "1.1.4"
+
+"repeat-string@^1.6.1":
+ "integrity" "sha1-jcrkcOHIirwtYA//Sndihtp15jc="
+ "resolved" "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz"
+ "version" "1.6.1"
+
+"require-directory@^2.1.1":
+ "integrity" "sha1-jGStX9MNqxyXbiNE/+f3kqam30I="
+ "resolved" "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz"
+ "version" "2.1.1"
+
+"require-main-filename@^2.0.0":
+ "integrity" "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg=="
+ "resolved" "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz"
+ "version" "2.0.0"
+
+"resolve-cwd@^3.0.0":
+ "integrity" "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg=="
+ "resolved" "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz"
+ "version" "3.0.0"
+ dependencies:
+ "resolve-from" "^5.0.0"
+
+"resolve-from@^3.0.0":
+ "integrity" "sha1-six699nWiBvItuZTM17rywoYh0g="
+ "resolved" "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz"
+ "version" "3.0.0"
+
+"resolve-from@^4.0.0":
+ "integrity" "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="
+ "resolved" "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz"
+ "version" "4.0.0"
+
+"resolve-from@^5.0.0":
+ "integrity" "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw=="
+ "resolved" "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz"
+ "version" "5.0.0"
+
+"resolve-url@^0.2.1":
+ "integrity" "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo="
+ "resolved" "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz"
+ "version" "0.2.1"
+
+"resolve@^1.1.6", "resolve@^1.10.0", "resolve@^1.12.0", "resolve@^1.14.2", "resolve@^1.18.1":
+ "integrity" "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A=="
+ "resolved" "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz"
+ "version" "1.20.0"
+ dependencies:
+ "is-core-module" "^2.2.0"
+ "path-parse" "^1.0.6"
+
+"resolve@^2.0.0-next.3":
+ "integrity" "sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q=="
+ "resolved" "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.3.tgz"
+ "version" "2.0.0-next.3"
+ dependencies:
+ "is-core-module" "^2.2.0"
+ "path-parse" "^1.0.6"
+
+"restore-cursor@^2.0.0":
+ "integrity" "sha1-n37ih/gv0ybU/RYpI9YhKe7g368="
+ "resolved" "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz"
+ "version" "2.0.0"
+ dependencies:
+ "onetime" "^2.0.0"
+ "signal-exit" "^3.0.2"
+
+"ret@~0.1.10":
+ "integrity" "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg=="
+ "resolved" "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz"
+ "version" "0.1.15"
+
+"rimraf@^2.5.4", "rimraf@2.6.3":
+ "integrity" "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA=="
+ "resolved" "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz"
+ "version" "2.6.3"
+ dependencies:
+ "glob" "^7.1.3"
+
+"rimraf@^3.0.0":
+ "integrity" "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA=="
+ "resolved" "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz"
+ "version" "3.0.2"
+ dependencies:
+ "glob" "^7.1.3"
+
+"rimraf@~2.2.6":
+ "integrity" "sha1-5Dm+Kq7jJzIZUnMPmaiSnk/FBYI="
+ "resolved" "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz"
+ "version" "2.2.8"
+
+"rsvp@^4.8.4":
+ "integrity" "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA=="
+ "resolved" "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz"
+ "version" "4.8.5"
+
+"safe-buffer@~5.1.0", "safe-buffer@~5.1.1", "safe-buffer@5.1.2":
+ "integrity" "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
+ "resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"
+ "version" "5.1.2"
+
+"safe-regex@^1.1.0":
+ "integrity" "sha1-QKNmnzsHfR6UPURinhV91IAjvy4="
+ "resolved" "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz"
+ "version" "1.1.0"
+ dependencies:
+ "ret" "~0.1.10"
+
+"safer-buffer@>= 2.1.2 < 3":
+ "integrity" "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
+ "resolved" "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"
+ "version" "2.1.2"
+
+"sane@^4.0.3":
+ "integrity" "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA=="
+ "resolved" "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz"
+ "version" "4.1.0"
+ dependencies:
+ "@cnakazawa/watch" "^1.0.3"
+ "anymatch" "^2.0.0"
+ "capture-exit" "^2.0.0"
+ "exec-sh" "^0.3.2"
+ "execa" "^1.0.0"
+ "fb-watchman" "^2.0.0"
+ "micromatch" "^3.1.4"
+ "minimist" "^1.1.1"
+ "walker" "~1.0.5"
+
+"sax@^1.2.1":
+ "integrity" "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="
+ "resolved" "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz"
+ "version" "1.2.4"
+
+"saxes@^5.0.1":
+ "integrity" "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw=="
+ "resolved" "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz"
+ "version" "5.0.1"
+ dependencies:
+ "xmlchars" "^2.2.0"
+
+"scheduler@^0.20.1":
+ "integrity" "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ=="
+ "resolved" "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz"
+ "version" "0.20.2"
+ dependencies:
+ "loose-envify" "^1.1.0"
+ "object-assign" "^4.1.1"
+
+"semver@^5.5.0":
+ "integrity" "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ=="
+ "resolved" "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz"
+ "version" "5.7.1"
+
+"semver@^5.6.0":
+ "integrity" "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ=="
+ "resolved" "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz"
+ "version" "5.7.1"
+
+"semver@^6.0.0", "semver@^6.1.1", "semver@^6.1.2", "semver@^6.3.0":
+ "integrity" "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
+ "resolved" "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz"
+ "version" "6.3.0"
+
+"semver@^7.2.1":
+ "integrity" "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ=="
+ "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz"
+ "version" "7.3.5"
+ dependencies:
+ "lru-cache" "^6.0.0"
+
+"semver@^7.3.2":
+ "integrity" "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ=="
+ "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz"
+ "version" "7.3.5"
+ dependencies:
+ "lru-cache" "^6.0.0"
+
+"semver@2 || 3 || 4 || 5":
+ "integrity" "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ=="
+ "resolved" "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz"
+ "version" "5.7.1"
+
+"semver@7.0.0":
+ "integrity" "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A=="
+ "resolved" "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz"
+ "version" "7.0.0"
+
+"send@0.17.1":
+ "integrity" "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg=="
+ "resolved" "https://registry.npmjs.org/send/-/send-0.17.1.tgz"
+ "version" "0.17.1"
+ dependencies:
+ "debug" "2.6.9"
+ "depd" "~1.1.2"
+ "destroy" "~1.0.4"
+ "encodeurl" "~1.0.2"
+ "escape-html" "~1.0.3"
+ "etag" "~1.8.1"
+ "fresh" "0.5.2"
+ "http-errors" "~1.7.2"
+ "mime" "1.6.0"
+ "ms" "2.1.1"
+ "on-finished" "~2.3.0"
+ "range-parser" "~1.2.1"
+ "statuses" "~1.5.0"
+
+"serialize-error@^2.1.0":
+ "integrity" "sha1-ULZ51WNc34Rme9yOWa9OW4HV9go="
+ "resolved" "https://registry.npmjs.org/serialize-error/-/serialize-error-2.1.0.tgz"
+ "version" "2.1.0"
+
+"serve-static@^1.13.1":
+ "integrity" "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg=="
+ "resolved" "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz"
+ "version" "1.14.1"
+ dependencies:
+ "encodeurl" "~1.0.2"
+ "escape-html" "~1.0.3"
+ "parseurl" "~1.3.3"
+ "send" "0.17.1"
+
+"set-blocking@^2.0.0":
+ "integrity" "sha1-BF+XgtARrppoA93TgrJDkrPYkPc="
+ "resolved" "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz"
+ "version" "2.0.0"
+
+"set-value@^2.0.0", "set-value@^2.0.1":
+ "integrity" "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw=="
+ "resolved" "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz"
+ "version" "2.0.1"
+ dependencies:
+ "extend-shallow" "^2.0.1"
+ "is-extendable" "^0.1.1"
+ "is-plain-object" "^2.0.3"
+ "split-string" "^3.0.1"
+
+"setimmediate@^1.0.5":
+ "integrity" "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU="
+ "resolved" "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz"
+ "version" "1.0.5"
+
+"setprototypeof@1.1.1":
+ "integrity" "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw=="
+ "resolved" "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz"
+ "version" "1.1.1"
+
+"shallow-clone@^3.0.0":
+ "integrity" "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA=="
+ "resolved" "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz"
+ "version" "3.0.1"
+ dependencies:
+ "kind-of" "^6.0.2"
+
+"shallowequal@^1.1.0":
+ "integrity" "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ=="
+ "resolved" "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz"
+ "version" "1.1.0"
+
+"shebang-command@^1.2.0":
+ "integrity" "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo="
+ "resolved" "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz"
+ "version" "1.2.0"
+ dependencies:
+ "shebang-regex" "^1.0.0"
+
+"shebang-command@^2.0.0":
+ "integrity" "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA=="
+ "resolved" "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz"
+ "version" "2.0.0"
+ dependencies:
+ "shebang-regex" "^3.0.0"
+
+"shebang-regex@^1.0.0":
+ "integrity" "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM="
+ "resolved" "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz"
+ "version" "1.0.0"
+
+"shebang-regex@^3.0.0":
+ "integrity" "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="
+ "resolved" "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz"
+ "version" "3.0.0"
+
+"shell-quote@^1.6.1", "shell-quote@1.6.1":
+ "integrity" "sha1-9HgZSczkAmlxJ0MOo7PFR29IF2c="
+ "resolved" "https://registry.npmjs.org/shell-quote/-/shell-quote-1.6.1.tgz"
+ "version" "1.6.1"
+ dependencies:
+ "array-filter" "~0.0.0"
+ "array-map" "~0.0.0"
+ "array-reduce" "~0.0.0"
+ "jsonify" "~0.0.0"
+
+"shelljs@^0.8.4":
+ "integrity" "sha512-7gk3UZ9kOfPLIAbslLzyWeGiEqx9e3rxwZM0KE6EL8GlGwjym9Mrlx5/p33bWTu9YG6vcS4MBxYZDHYr5lr8BQ=="
+ "resolved" "https://registry.npmjs.org/shelljs/-/shelljs-0.8.4.tgz"
+ "version" "0.8.4"
+ dependencies:
+ "glob" "^7.0.0"
+ "interpret" "^1.0.0"
+ "rechoir" "^0.6.2"
+
+"shellwords@^0.1.1":
+ "integrity" "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww=="
+ "resolved" "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz"
+ "version" "0.1.1"
+
+"side-channel@^1.0.4":
+ "integrity" "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw=="
+ "resolved" "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz"
+ "version" "1.0.4"
+ dependencies:
+ "call-bind" "^1.0.0"
+ "get-intrinsic" "^1.0.2"
+ "object-inspect" "^1.9.0"
+
+"signal-exit@^3.0.0", "signal-exit@^3.0.2":
+ "integrity" "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA=="
+ "resolved" "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz"
+ "version" "3.0.3"
+
+"simple-plist@^1.0.0":
+ "integrity" "sha512-pKMCVKvZbZTsqYR6RKgLfBHkh2cV89GXcA/0CVPje3sOiNOnXA8+rp/ciAMZ7JRaUdLzlEM6JFfUn+fS6Nt3hg=="
+ "resolved" "https://registry.npmjs.org/simple-plist/-/simple-plist-1.1.1.tgz"
+ "version" "1.1.1"
+ dependencies:
+ "bplist-creator" "0.0.8"
+ "bplist-parser" "0.2.0"
+ "plist" "^3.0.1"
+
+"simple-swizzle@^0.2.2":
+ "integrity" "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo="
+ "resolved" "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz"
+ "version" "0.2.2"
+ dependencies:
+ "is-arrayish" "^0.3.1"
+
+"sisteransi@^1.0.5":
+ "integrity" "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg=="
+ "resolved" "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz"
+ "version" "1.0.5"
+
+"slash@^2.0.0":
+ "integrity" "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A=="
+ "resolved" "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz"
+ "version" "2.0.0"
+
+"slash@^3.0.0":
+ "integrity" "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q=="
+ "resolved" "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz"
+ "version" "3.0.0"
+
+"slice-ansi@^2.0.0", "slice-ansi@^2.1.0":
+ "integrity" "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ=="
+ "resolved" "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz"
+ "version" "2.1.0"
+ dependencies:
+ "ansi-styles" "^3.2.0"
+ "astral-regex" "^1.0.0"
+ "is-fullwidth-code-point" "^2.0.0"
+
+"snapdragon-node@^2.0.1":
+ "integrity" "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw=="
+ "resolved" "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz"
+ "version" "2.1.1"
+ dependencies:
+ "define-property" "^1.0.0"
+ "isobject" "^3.0.0"
+ "snapdragon-util" "^3.0.1"
+
+"snapdragon-util@^3.0.1":
+ "integrity" "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ=="
+ "resolved" "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz"
+ "version" "3.0.1"
+ dependencies:
+ "kind-of" "^3.2.0"
+
+"snapdragon@^0.8.1":
+ "integrity" "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg=="
+ "resolved" "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz"
+ "version" "0.8.2"
+ dependencies:
+ "base" "^0.11.1"
+ "debug" "^2.2.0"
+ "define-property" "^0.2.5"
+ "extend-shallow" "^2.0.1"
+ "map-cache" "^0.2.2"
+ "source-map" "^0.5.6"
+ "source-map-resolve" "^0.5.0"
+ "use" "^3.1.0"
+
+"source-map-resolve@^0.5.0":
+ "integrity" "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw=="
+ "resolved" "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz"
+ "version" "0.5.3"
+ dependencies:
+ "atob" "^2.1.2"
+ "decode-uri-component" "^0.2.0"
+ "resolve-url" "^0.2.1"
+ "source-map-url" "^0.4.0"
+ "urix" "^0.1.0"
+
+"source-map-support@^0.5.16", "source-map-support@^0.5.6":
+ "integrity" "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw=="
+ "resolved" "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz"
+ "version" "0.5.19"
+ dependencies:
+ "buffer-from" "^1.0.0"
+ "source-map" "^0.6.0"
+
+"source-map-url@^0.4.0":
+ "integrity" "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw=="
+ "resolved" "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz"
+ "version" "0.4.1"
+
+"source-map@^0.5.0", "source-map@^0.5.6":
+ "integrity" "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+ "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz"
+ "version" "0.5.7"
+
+"source-map@^0.6.0":
+ "integrity" "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"
+ "version" "0.6.1"
+
+"source-map@^0.6.1":
+ "integrity" "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"
+ "version" "0.6.1"
+
+"source-map@^0.7.3":
+ "integrity" "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ=="
+ "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz"
+ "version" "0.7.3"
+
+"source-map@~0.6.1":
+ "integrity" "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"
+ "version" "0.6.1"
+
+"spdx-correct@^3.0.0":
+ "integrity" "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w=="
+ "resolved" "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz"
+ "version" "3.1.1"
+ dependencies:
+ "spdx-expression-parse" "^3.0.0"
+ "spdx-license-ids" "^3.0.0"
+
+"spdx-exceptions@^2.1.0":
+ "integrity" "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A=="
+ "resolved" "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz"
+ "version" "2.3.0"
+
+"spdx-expression-parse@^3.0.0":
+ "integrity" "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q=="
+ "resolved" "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz"
+ "version" "3.0.1"
+ dependencies:
+ "spdx-exceptions" "^2.1.0"
+ "spdx-license-ids" "^3.0.0"
+
+"spdx-license-ids@^3.0.0":
+ "integrity" "sha512-Ki212dKK4ogX+xDo4CtOZBVIwhsKBEfsEEcwmJfLQzirgc2jIWdzg40Unxz/HzEUqM1WFzVlQSMF9kZZ2HboLQ=="
+ "resolved" "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.9.tgz"
+ "version" "3.0.9"
+
+"split-on-first@^1.0.0":
+ "integrity" "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw=="
+ "resolved" "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz"
+ "version" "1.1.0"
+
+"split-string@^3.0.1", "split-string@^3.0.2":
+ "integrity" "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw=="
+ "resolved" "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz"
+ "version" "3.1.0"
+ dependencies:
+ "extend-shallow" "^3.0.0"
+
+"sprintf-js@~1.0.2":
+ "integrity" "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw="
+ "resolved" "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"
+ "version" "1.0.3"
+
+"stack-utils@^2.0.2":
+ "integrity" "sha512-gL//fkxfWUsIlFL2Tl42Cl6+HFALEaB1FU76I/Fy+oZjRreP7OPMXFlGbxM7NQsI0ZpUfw76sHnv0WNYuTb7Iw=="
+ "resolved" "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.3.tgz"
+ "version" "2.0.3"
+ dependencies:
+ "escape-string-regexp" "^2.0.0"
+
+"stackframe@^1.1.1":
+ "integrity" "sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA=="
+ "resolved" "https://registry.npmjs.org/stackframe/-/stackframe-1.2.0.tgz"
+ "version" "1.2.0"
+
+"stacktrace-parser@^0.1.3":
+ "integrity" "sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg=="
+ "resolved" "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz"
+ "version" "0.1.10"
+ dependencies:
+ "type-fest" "^0.7.1"
+
+"static-extend@^0.1.1":
+ "integrity" "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY="
+ "resolved" "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz"
+ "version" "0.1.2"
+ dependencies:
+ "define-property" "^0.2.5"
+ "object-copy" "^0.1.0"
+
+"statuses@>= 1.5.0 < 2", "statuses@~1.5.0":
+ "integrity" "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow="
+ "resolved" "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz"
+ "version" "1.5.0"
+
+"stream-buffers@~2.2.0":
+ "integrity" "sha1-kdX1Ew0c75bc+n9yaUUYh0HQnuQ="
+ "resolved" "https://registry.npmjs.org/stream-buffers/-/stream-buffers-2.2.0.tgz"
+ "version" "2.2.0"
+
+"strict-uri-encode@^2.0.0":
+ "integrity" "sha1-ucczDHBChi9rFC3CdLvMWGbONUY="
+ "resolved" "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz"
+ "version" "2.0.0"
+
+"string_decoder@~1.1.1":
+ "integrity" "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="
+ "resolved" "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz"
+ "version" "1.1.1"
+ dependencies:
+ "safe-buffer" "~5.1.0"
+
+"string-length@^4.0.1":
+ "integrity" "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ=="
+ "resolved" "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz"
+ "version" "4.0.2"
+ dependencies:
+ "char-regex" "^1.0.2"
+ "strip-ansi" "^6.0.0"
+
+"string-width@^3.0.0":
+ "integrity" "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w=="
+ "resolved" "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz"
+ "version" "3.1.0"
+ dependencies:
+ "emoji-regex" "^7.0.1"
+ "is-fullwidth-code-point" "^2.0.0"
+ "strip-ansi" "^5.1.0"
+
+"string-width@^4.1.0", "string-width@^4.2.0":
+ "integrity" "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA=="
+ "resolved" "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz"
+ "version" "4.2.2"
+ dependencies:
+ "emoji-regex" "^8.0.0"
+ "is-fullwidth-code-point" "^3.0.0"
+ "strip-ansi" "^6.0.0"
+
+"string.prototype.matchall@^4.0.5":
+ "integrity" "sha512-Z5ZaXO0svs0M2xd/6By3qpeKpLKd9mO4v4q3oMEQrk8Ck4xOD5d5XeBOOjGrmVZZ/AHB1S0CgG4N5r1G9N3E2Q=="
+ "resolved" "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.5.tgz"
+ "version" "4.0.5"
+ dependencies:
+ "call-bind" "^1.0.2"
+ "define-properties" "^1.1.3"
+ "es-abstract" "^1.18.2"
+ "get-intrinsic" "^1.1.1"
+ "has-symbols" "^1.0.2"
+ "internal-slot" "^1.0.3"
+ "regexp.prototype.flags" "^1.3.1"
+ "side-channel" "^1.0.4"
+
+"string.prototype.trimend@^1.0.4":
+ "integrity" "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A=="
+ "resolved" "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz"
+ "version" "1.0.4"
+ dependencies:
+ "call-bind" "^1.0.2"
+ "define-properties" "^1.1.3"
+
+"string.prototype.trimstart@^1.0.4":
+ "integrity" "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw=="
+ "resolved" "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz"
+ "version" "1.0.4"
+ dependencies:
+ "call-bind" "^1.0.2"
+ "define-properties" "^1.1.3"
+
+"strip-ansi@^5.0.0":
+ "integrity" "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA=="
+ "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz"
+ "version" "5.2.0"
+ dependencies:
+ "ansi-regex" "^4.1.0"
+
+"strip-ansi@^5.1.0":
+ "integrity" "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA=="
+ "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz"
+ "version" "5.2.0"
+ dependencies:
+ "ansi-regex" "^4.1.0"
+
+"strip-ansi@^5.2.0":
+ "integrity" "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA=="
+ "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz"
+ "version" "5.2.0"
+ dependencies:
+ "ansi-regex" "^4.1.0"
+
+"strip-ansi@^6.0.0":
+ "integrity" "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w=="
+ "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz"
+ "version" "6.0.0"
+ dependencies:
+ "ansi-regex" "^5.0.0"
+
+"strip-bom@^4.0.0":
+ "integrity" "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w=="
+ "resolved" "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz"
+ "version" "4.0.0"
+
+"strip-eof@^1.0.0":
+ "integrity" "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8="
+ "resolved" "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz"
+ "version" "1.0.0"
+
+"strip-final-newline@^2.0.0":
+ "integrity" "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA=="
+ "resolved" "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz"
+ "version" "2.0.0"
+
+"strip-json-comments@^3.1.0", "strip-json-comments@^3.1.1":
+ "integrity" "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig=="
+ "resolved" "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz"
+ "version" "3.1.1"
+
+"styled-components@^5.3.0", "styled-components@>= 2":
+ "integrity" "sha512-bPJKwZCHjJPf/hwTJl6TbkSZg/3evha+XPEizrZUGb535jLImwDUdjTNxXqjjaASt2M4qO4AVfoHJNe3XB/tpQ=="
+ "resolved" "https://registry.npmjs.org/styled-components/-/styled-components-5.3.0.tgz"
+ "version" "5.3.0"
+ dependencies:
+ "@babel/helper-module-imports" "^7.0.0"
+ "@babel/traverse" "^7.4.5"
+ "@emotion/is-prop-valid" "^0.8.8"
+ "@emotion/stylis" "^0.8.4"
+ "@emotion/unitless" "^0.7.4"
+ "babel-plugin-styled-components" ">= 1.12.0"
+ "css-to-react-native" "^3.0.0"
+ "hoist-non-react-statics" "^3.0.0"
+ "shallowequal" "^1.1.0"
+ "supports-color" "^5.5.0"
+
+"sudo-prompt@^9.0.0":
+ "integrity" "sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw=="
+ "resolved" "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-9.2.1.tgz"
+ "version" "9.2.1"
+
+"supports-color@^5.3.0", "supports-color@^5.5.0":
+ "integrity" "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow=="
+ "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz"
+ "version" "5.5.0"
+ dependencies:
+ "has-flag" "^3.0.0"
+
+"supports-color@^7.0.0":
+ "integrity" "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="
+ "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz"
+ "version" "7.2.0"
+ dependencies:
+ "has-flag" "^4.0.0"
+
+"supports-color@^7.1.0":
+ "integrity" "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="
+ "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz"
+ "version" "7.2.0"
+ dependencies:
+ "has-flag" "^4.0.0"
+
+"supports-hyperlinks@^2.0.0":
+ "integrity" "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ=="
+ "resolved" "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz"
+ "version" "2.2.0"
+ dependencies:
+ "has-flag" "^4.0.0"
+ "supports-color" "^7.0.0"
+
+"symbol-tree@^3.2.4":
+ "integrity" "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw=="
+ "resolved" "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz"
+ "version" "3.2.4"
+
+"table@^5.2.3":
+ "integrity" "sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug=="
+ "resolved" "https://registry.npmjs.org/table/-/table-5.4.6.tgz"
+ "version" "5.4.6"
+ dependencies:
+ "ajv" "^6.10.2"
+ "lodash" "^4.17.14"
+ "slice-ansi" "^2.1.0"
+ "string-width" "^3.0.0"
+
+"temp@^0.8.1", "temp@0.8.3":
+ "integrity" "sha1-4Ma8TSa5AxJEEOT+2BEDAU38H1k="
+ "resolved" "https://registry.npmjs.org/temp/-/temp-0.8.3.tgz"
+ "version" "0.8.3"
+ dependencies:
+ "os-tmpdir" "^1.0.0"
+ "rimraf" "~2.2.6"
+
+"terminal-link@^2.0.0":
+ "integrity" "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ=="
+ "resolved" "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz"
+ "version" "2.1.1"
+ dependencies:
+ "ansi-escapes" "^4.2.1"
+ "supports-hyperlinks" "^2.0.0"
+
+"test-exclude@^6.0.0":
+ "integrity" "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w=="
+ "resolved" "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz"
+ "version" "6.0.0"
+ dependencies:
+ "@istanbuljs/schema" "^0.1.2"
+ "glob" "^7.1.4"
+ "minimatch" "^3.0.4"
+
+"text-table@^0.2.0":
+ "integrity" "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ="
+ "resolved" "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz"
+ "version" "0.2.0"
+
+"throat@^5.0.0":
+ "integrity" "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA=="
+ "resolved" "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz"
+ "version" "5.0.0"
+
+"through2@^2.0.1":
+ "integrity" "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ=="
+ "resolved" "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz"
+ "version" "2.0.5"
+ dependencies:
+ "readable-stream" "~2.3.6"
+ "xtend" "~4.0.1"
+
+"tmpl@1.0.x":
+ "integrity" "sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE="
+ "resolved" "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz"
+ "version" "1.0.4"
+
+"to-fast-properties@^2.0.0":
+ "integrity" "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4="
+ "resolved" "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz"
+ "version" "2.0.0"
+
+"to-object-path@^0.3.0":
+ "integrity" "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68="
+ "resolved" "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz"
+ "version" "0.3.0"
+ dependencies:
+ "kind-of" "^3.0.2"
+
+"to-regex-range@^2.1.0":
+ "integrity" "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg="
+ "resolved" "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz"
+ "version" "2.1.1"
+ dependencies:
+ "is-number" "^3.0.0"
+ "repeat-string" "^1.6.1"
+
+"to-regex-range@^5.0.1":
+ "integrity" "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ=="
+ "resolved" "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz"
+ "version" "5.0.1"
+ dependencies:
+ "is-number" "^7.0.0"
+
+"to-regex@^3.0.1", "to-regex@^3.0.2":
+ "integrity" "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw=="
+ "resolved" "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz"
+ "version" "3.0.2"
+ dependencies:
+ "define-property" "^2.0.2"
+ "extend-shallow" "^3.0.2"
+ "regex-not" "^1.0.2"
+ "safe-regex" "^1.1.0"
+
+"toidentifier@1.0.0":
+ "integrity" "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw=="
+ "resolved" "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz"
+ "version" "1.0.0"
+
+"tough-cookie@^4.0.0":
+ "integrity" "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg=="
+ "resolved" "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz"
+ "version" "4.0.0"
+ dependencies:
+ "psl" "^1.1.33"
+ "punycode" "^2.1.1"
+ "universalify" "^0.1.2"
+
+"tr46@^2.1.0":
+ "integrity" "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw=="
+ "resolved" "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz"
+ "version" "2.1.0"
+ dependencies:
+ "punycode" "^2.1.1"
+
+"tslib@^1.8.1":
+ "integrity" "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
+ "resolved" "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz"
+ "version" "1.14.1"
+
+"tslib@^2.0.1":
+ "integrity" "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg=="
+ "resolved" "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz"
+ "version" "2.3.0"
+
+"tsutils@^3.17.1":
+ "integrity" "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA=="
+ "resolved" "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz"
+ "version" "3.21.0"
+ dependencies:
+ "tslib" "^1.8.1"
+
+"type-check@^0.4.0", "type-check@~0.4.0":
+ "integrity" "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew=="
+ "resolved" "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz"
+ "version" "0.4.0"
+ dependencies:
+ "prelude-ls" "^1.2.1"
+
+"type-check@~0.3.2":
+ "integrity" "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I="
+ "resolved" "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz"
+ "version" "0.3.2"
+ dependencies:
+ "prelude-ls" "~1.1.2"
+
+"type-detect@4.0.8":
+ "integrity" "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g=="
+ "resolved" "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz"
+ "version" "4.0.8"
+
+"type-fest@^0.21.3":
+ "integrity" "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w=="
+ "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz"
+ "version" "0.21.3"
+
+"type-fest@^0.6.0":
+ "integrity" "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg=="
+ "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz"
+ "version" "0.6.0"
+
+"type-fest@^0.7.1":
+ "integrity" "sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg=="
+ "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.7.1.tgz"
+ "version" "0.7.1"
+
+"type-fest@^0.8.1":
+ "integrity" "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA=="
+ "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz"
+ "version" "0.8.1"
+
+"typedarray-to-buffer@^3.1.5":
+ "integrity" "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q=="
+ "resolved" "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz"
+ "version" "3.1.5"
+ dependencies:
+ "is-typedarray" "^1.0.0"
+
+"ua-parser-js@^0.7.18":
+ "integrity" "sha512-6Gurc1n//gjp9eQNXjD9O3M/sMwVtN5S8Lv9bvOYBfKfDNiIIhqiyi01vMBO45u4zkDE420w/e0se7Vs+sIg+g=="
+ "resolved" "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.28.tgz"
+ "version" "0.7.28"
+
+"uglify-es@^3.1.9":
+ "integrity" "sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ=="
+ "resolved" "https://registry.npmjs.org/uglify-es/-/uglify-es-3.3.9.tgz"
+ "version" "3.3.9"
+ dependencies:
+ "commander" "~2.13.0"
+ "source-map" "~0.6.1"
+
+"ultron@1.0.x":
+ "integrity" "sha1-rOEWq1V80Zc4ak6I9GhTeMiy5Po="
+ "resolved" "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz"
+ "version" "1.0.2"
+
+"unbox-primitive@^1.0.1":
+ "integrity" "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw=="
+ "resolved" "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz"
+ "version" "1.0.1"
+ dependencies:
+ "function-bind" "^1.1.1"
+ "has-bigints" "^1.0.1"
+ "has-symbols" "^1.0.2"
+ "which-boxed-primitive" "^1.0.2"
+
+"unicode-canonical-property-names-ecmascript@^1.0.4":
+ "integrity" "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ=="
+ "resolved" "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz"
+ "version" "1.0.4"
+
+"unicode-match-property-ecmascript@^1.0.4":
+ "integrity" "sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg=="
+ "resolved" "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz"
+ "version" "1.0.4"
+ dependencies:
+ "unicode-canonical-property-names-ecmascript" "^1.0.4"
+ "unicode-property-aliases-ecmascript" "^1.0.4"
+
+"unicode-match-property-value-ecmascript@^1.2.0":
+ "integrity" "sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ=="
+ "resolved" "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz"
+ "version" "1.2.0"
+
+"unicode-property-aliases-ecmascript@^1.0.4":
+ "integrity" "sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg=="
+ "resolved" "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz"
+ "version" "1.1.0"
+
+"union-value@^1.0.0":
+ "integrity" "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg=="
+ "resolved" "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz"
+ "version" "1.0.1"
+ dependencies:
+ "arr-union" "^3.1.0"
+ "get-value" "^2.0.6"
+ "is-extendable" "^0.1.1"
+ "set-value" "^2.0.1"
+
+"universalify@^0.1.0", "universalify@^0.1.2":
+ "integrity" "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg=="
+ "resolved" "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz"
+ "version" "0.1.2"
+
+"unpipe@~1.0.0":
+ "integrity" "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw="
+ "resolved" "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz"
+ "version" "1.0.0"
+
+"unset-value@^1.0.0":
+ "integrity" "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk="
+ "resolved" "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz"
+ "version" "1.0.0"
+ dependencies:
+ "has-value" "^0.3.1"
+ "isobject" "^3.0.0"
+
+"upath@^1.1.1":
+ "integrity" "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg=="
+ "resolved" "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz"
+ "version" "1.2.0"
+
+"uri-js@^4.2.2":
+ "integrity" "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg=="
+ "resolved" "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz"
+ "version" "4.4.1"
+ dependencies:
+ "punycode" "^2.1.0"
+
+"urix@^0.1.0":
+ "integrity" "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI="
+ "resolved" "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz"
+ "version" "0.1.0"
+
+"use-subscription@^1.0.0":
+ "integrity" "sha512-Xv2a1P/yReAjAbhylMfFplFKj9GssgTwN7RlcTxBujFQcloStWNDQdc4g4NRWH9xS4i/FDk04vQBptAXoF3VcA=="
+ "resolved" "https://registry.npmjs.org/use-subscription/-/use-subscription-1.5.1.tgz"
+ "version" "1.5.1"
+ dependencies:
+ "object-assign" "^4.1.1"
+
+"use@^3.1.0":
+ "integrity" "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ=="
+ "resolved" "https://registry.npmjs.org/use/-/use-3.1.1.tgz"
+ "version" "3.1.1"
+
+"util-deprecate@~1.0.1":
+ "integrity" "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8="
+ "resolved" "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"
+ "version" "1.0.2"
+
+"utils-merge@1.0.1":
+ "integrity" "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM="
+ "resolved" "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz"
+ "version" "1.0.1"
+
+"uuid@^3.3.2":
+ "integrity" "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="
+ "resolved" "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz"
+ "version" "3.4.0"
+
+"uuid@^8.3.0":
+ "integrity" "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="
+ "resolved" "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz"
+ "version" "8.3.2"
+
+"v8-compile-cache@^2.0.3":
+ "integrity" "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA=="
+ "resolved" "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz"
+ "version" "2.3.0"
+
+"v8-to-istanbul@^7.0.0":
+ "integrity" "sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow=="
+ "resolved" "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.1.2.tgz"
+ "version" "7.1.2"
+ dependencies:
+ "@types/istanbul-lib-coverage" "^2.0.1"
+ "convert-source-map" "^1.6.0"
+ "source-map" "^0.7.3"
+
+"validate-npm-package-license@^3.0.1":
+ "integrity" "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew=="
+ "resolved" "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz"
+ "version" "3.0.4"
+ dependencies:
+ "spdx-correct" "^3.0.0"
+ "spdx-expression-parse" "^3.0.0"
+
+"vary@~1.1.2":
+ "integrity" "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw="
+ "resolved" "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz"
+ "version" "1.1.2"
+
+"vlq@^1.0.0":
+ "integrity" "sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w=="
+ "resolved" "https://registry.npmjs.org/vlq/-/vlq-1.0.1.tgz"
+ "version" "1.0.1"
+
+"w3c-hr-time@^1.0.2":
+ "integrity" "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ=="
+ "resolved" "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz"
+ "version" "1.0.2"
+ dependencies:
+ "browser-process-hrtime" "^1.0.0"
+
+"w3c-xmlserializer@^2.0.0":
+ "integrity" "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA=="
+ "resolved" "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz"
+ "version" "2.0.0"
+ dependencies:
+ "xml-name-validator" "^3.0.0"
+
+"walker@^1.0.7", "walker@~1.0.5":
+ "integrity" "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs="
+ "resolved" "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz"
+ "version" "1.0.7"
+ dependencies:
+ "makeerror" "1.0.x"
+
+"warn-once@^0.1.0":
+ "integrity" "sha512-recZTSvuaH/On5ZU5ywq66y99lImWqzP93+AiUo9LUwG8gXHW+LJjhOd6REJHm7qb0niYqrEQJvbHSQfuJtTqA=="
+ "resolved" "https://registry.npmjs.org/warn-once/-/warn-once-0.1.0.tgz"
+ "version" "0.1.0"
+
+"wcwidth@^1.0.1":
+ "integrity" "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g="
+ "resolved" "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz"
+ "version" "1.0.1"
+ dependencies:
+ "defaults" "^1.0.3"
+
+"webidl-conversions@^5.0.0":
+ "integrity" "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA=="
+ "resolved" "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz"
+ "version" "5.0.0"
+
+"webidl-conversions@^6.1.0":
+ "integrity" "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w=="
+ "resolved" "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz"
+ "version" "6.1.0"
+
+"whatwg-encoding@^1.0.5":
+ "integrity" "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw=="
+ "resolved" "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz"
+ "version" "1.0.5"
+ dependencies:
+ "iconv-lite" "0.4.24"
+
+"whatwg-fetch@^3.0.0":
+ "integrity" "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA=="
+ "resolved" "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz"
+ "version" "3.6.2"
+
+"whatwg-mimetype@^2.3.0":
+ "integrity" "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g=="
+ "resolved" "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz"
+ "version" "2.3.0"
+
+"whatwg-url@^8.0.0", "whatwg-url@^8.5.0":
+ "integrity" "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg=="
+ "resolved" "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz"
+ "version" "8.7.0"
+ dependencies:
+ "lodash" "^4.7.0"
+ "tr46" "^2.1.0"
+ "webidl-conversions" "^6.1.0"
+
+"which-boxed-primitive@^1.0.2":
+ "integrity" "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg=="
+ "resolved" "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz"
+ "version" "1.0.2"
+ dependencies:
+ "is-bigint" "^1.0.1"
+ "is-boolean-object" "^1.1.0"
+ "is-number-object" "^1.0.4"
+ "is-string" "^1.0.5"
+ "is-symbol" "^1.0.3"
+
+"which-module@^2.0.0":
+ "integrity" "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho="
+ "resolved" "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz"
+ "version" "2.0.0"
+
+"which@^1.2.9":
+ "integrity" "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ=="
+ "resolved" "https://registry.npmjs.org/which/-/which-1.3.1.tgz"
+ "version" "1.3.1"
+ dependencies:
+ "isexe" "^2.0.0"
+
+"which@^2.0.1", "which@^2.0.2":
+ "integrity" "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="
+ "resolved" "https://registry.npmjs.org/which/-/which-2.0.2.tgz"
+ "version" "2.0.2"
+ dependencies:
+ "isexe" "^2.0.0"
+
+"word-wrap@^1.2.3", "word-wrap@~1.2.3":
+ "integrity" "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ=="
+ "resolved" "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz"
+ "version" "1.2.3"
+
+"wrap-ansi@^6.2.0":
+ "integrity" "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA=="
+ "resolved" "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz"
+ "version" "6.2.0"
+ dependencies:
+ "ansi-styles" "^4.0.0"
+ "string-width" "^4.1.0"
+ "strip-ansi" "^6.0.0"
+
+"wrap-ansi@^7.0.0":
+ "integrity" "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="
+ "resolved" "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz"
+ "version" "7.0.0"
+ dependencies:
+ "ansi-styles" "^4.0.0"
+ "string-width" "^4.1.0"
+ "strip-ansi" "^6.0.0"
+
+"wrappy@1":
+ "integrity" "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8="
+ "resolved" "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"
+ "version" "1.0.2"
+
+"write-file-atomic@^2.3.0":
+ "integrity" "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ=="
+ "resolved" "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz"
+ "version" "2.4.3"
+ dependencies:
+ "graceful-fs" "^4.1.11"
+ "imurmurhash" "^0.1.4"
+ "signal-exit" "^3.0.2"
+
+"write-file-atomic@^3.0.0":
+ "integrity" "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q=="
+ "resolved" "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz"
+ "version" "3.0.3"
+ dependencies:
+ "imurmurhash" "^0.1.4"
+ "is-typedarray" "^1.0.0"
+ "signal-exit" "^3.0.2"
+ "typedarray-to-buffer" "^3.1.5"
+
+"write@1.0.3":
+ "integrity" "sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig=="
+ "resolved" "https://registry.npmjs.org/write/-/write-1.0.3.tgz"
+ "version" "1.0.3"
+ dependencies:
+ "mkdirp" "^0.5.1"
+
+"ws@^1.1.0":
+ "integrity" "sha512-o3KqipXNUdS7wpQzBHSe180lBGO60SoK0yVo3CYJgb2MkobuWuBX6dhkYP5ORCLd55y+SaflMOV5fqAB53ux4w=="
+ "resolved" "https://registry.npmjs.org/ws/-/ws-1.1.5.tgz"
+ "version" "1.1.5"
+ dependencies:
+ "options" ">=0.0.5"
+ "ultron" "1.0.x"
+
+"ws@^1.1.5":
+ "integrity" "sha512-o3KqipXNUdS7wpQzBHSe180lBGO60SoK0yVo3CYJgb2MkobuWuBX6dhkYP5ORCLd55y+SaflMOV5fqAB53ux4w=="
+ "resolved" "https://registry.npmjs.org/ws/-/ws-1.1.5.tgz"
+ "version" "1.1.5"
+ dependencies:
+ "options" ">=0.0.5"
+ "ultron" "1.0.x"
+
+"ws@^6.1.4":
+ "integrity" "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw=="
+ "resolved" "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz"
+ "version" "6.2.2"
+ dependencies:
+ "async-limiter" "~1.0.0"
+
+"ws@^7", "ws@^7.4.5":
+ "integrity" "sha512-kQ/dHIzuLrS6Je9+uv81ueZomEwH0qVYstcAQ4/Z93K8zeko9gtAbttJWzoC5ukqXY1PpoouV3+VSOqEAFt5wg=="
+ "resolved" "https://registry.npmjs.org/ws/-/ws-7.5.3.tgz"
+ "version" "7.5.3"
+
+"xcode@^2.0.0":
+ "integrity" "sha512-uCrmPITrqTEzhn0TtT57fJaNaw8YJs1aCzs+P/QqxsDbvPZSv7XMPPwXrKvHtD6pLjBM/NaVwraWJm8q83Y4iQ=="
+ "resolved" "https://registry.npmjs.org/xcode/-/xcode-2.1.0.tgz"
+ "version" "2.1.0"
+ dependencies:
+ "simple-plist" "^1.0.0"
+ "uuid" "^3.3.2"
+
+"xml-name-validator@^3.0.0":
+ "integrity" "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw=="
+ "resolved" "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz"
+ "version" "3.0.0"
+
+"xmlbuilder@^9.0.7":
+ "integrity" "sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0="
+ "resolved" "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz"
+ "version" "9.0.7"
+
+"xmlchars@^2.2.0":
+ "integrity" "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw=="
+ "resolved" "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz"
+ "version" "2.2.0"
+
+"xmldoc@^1.1.2":
+ "integrity" "sha512-ruPC/fyPNck2BD1dpz0AZZyrEwMOrWTO5lDdIXS91rs3wtm4j+T8Rp2o+zoOYkkAxJTZRPOSnOGei1egoRmKMQ=="
+ "resolved" "https://registry.npmjs.org/xmldoc/-/xmldoc-1.1.2.tgz"
+ "version" "1.1.2"
+ dependencies:
+ "sax" "^1.2.1"
+
+"xmldom@^0.5.0":
+ "integrity" "sha512-Foaj5FXVzgn7xFzsKeNIde9g6aFBxTPi37iwsno8QvApmtg7KYrr+OPyRHcJF7dud2a5nGRBXK3n0dL62Gf7PA=="
+ "resolved" "https://registry.npmjs.org/xmldom/-/xmldom-0.5.0.tgz"
+ "version" "0.5.0"
+
+"xtend@~4.0.1":
+ "integrity" "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="
+ "resolved" "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz"
+ "version" "4.0.2"
+
+"y18n@^4.0.0":
+ "integrity" "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ=="
+ "resolved" "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz"
+ "version" "4.0.3"
+
+"y18n@^5.0.5":
+ "integrity" "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA=="
+ "resolved" "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz"
+ "version" "5.0.8"
+
+"yallist@^4.0.0":
+ "integrity" "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
+ "resolved" "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz"
+ "version" "4.0.0"
+
+"yargs-parser@^18.1.2":
+ "integrity" "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ=="
+ "resolved" "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz"
+ "version" "18.1.3"
+ dependencies:
+ "camelcase" "^5.0.0"
+ "decamelize" "^1.2.0"
+
+"yargs-parser@^20.2.2":
+ "integrity" "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w=="
+ "resolved" "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz"
+ "version" "20.2.9"
+
+"yargs@^15.1.0", "yargs@^15.3.1", "yargs@^15.4.1":
+ "integrity" "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A=="
+ "resolved" "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz"
+ "version" "15.4.1"
+ dependencies:
+ "cliui" "^6.0.0"
+ "decamelize" "^1.2.0"
+ "find-up" "^4.1.0"
+ "get-caller-file" "^2.0.1"
+ "require-directory" "^2.1.1"
+ "require-main-filename" "^2.0.0"
+ "set-blocking" "^2.0.0"
+ "string-width" "^4.2.0"
+ "which-module" "^2.0.0"
+ "y18n" "^4.0.0"
+ "yargs-parser" "^18.1.2"
+
+"yargs@^16.1.1":
+ "integrity" "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw=="
+ "resolved" "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz"
+ "version" "16.2.0"
+ dependencies:
+ "cliui" "^7.0.2"
+ "escalade" "^3.1.1"
+ "get-caller-file" "^2.0.5"
+ "require-directory" "^2.1.1"
+ "string-width" "^4.2.0"
+ "y18n" "^5.0.5"
+ "yargs-parser" "^20.2.2"
diff --git a/App/package-lock.json b/App/package-lock.json
new file mode 100644
index 0000000..48e341a
--- /dev/null
+++ b/App/package-lock.json
@@ -0,0 +1,3 @@
+{
+ "lockfileVersion": 1
+}
diff --git "a/document/img/UX/\353\202\264 \354\230\267\354\236\245 - \353\202\264 \354\225\204\353\260\224\355\203\200 \354\266\224\352\260\200.png" "b/document/img/UX/\353\202\264 \354\230\267\354\236\245 - \353\202\264 \354\225\204\353\260\224\355\203\200 \354\266\224\352\260\200.png"
new file mode 100644
index 0000000..ec53a04
Binary files /dev/null and "b/document/img/UX/\353\202\264 \354\230\267\354\236\245 - \353\202\264 \354\225\204\353\260\224\355\203\200 \354\266\224\352\260\200.png" differ
diff --git "a/document/img/UX/\353\202\264\354\225\204\353\260\224\355\203\200 \354\260\215\352\270\260.png" "b/document/img/UX/\353\202\264\354\225\204\353\260\224\355\203\200 \354\260\215\352\270\260.png"
new file mode 100644
index 0000000..02ad533
Binary files /dev/null and "b/document/img/UX/\353\202\264\354\225\204\353\260\224\355\203\200 \354\260\215\352\270\260.png" differ